are what to display on your Pokémon's show page:  The pokemon's name The image of the pokemon An unordered list of the Pokemon's types (eg. water, poison, etc). The pokemon's stats for HP, ATTACK, and DEFENSE. Routes Your app should use RESTful routes: Index GET /pokemon Show GET /pokemon/:id New

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Here are what to display on your Pokémon's show page: 

The pokemon's name

The image of the pokemon

An unordered list of the Pokemon's types (eg. water, poison, etc).

The pokemon's stats for HP, ATTACK, and DEFENSE.

Routes

Your app should use RESTful routes:

Index

GET /pokemon

Show

GET /pokemon/:id

New

GET /pokemon/new

Edit

GET /pokemon/:id/edit

Create

POST /pokemon

Update

PUT /pokemon/:id

Destroy

DELETE /pokemon/:id

This is the module.js file 

module.exports = [
  {
    id: "001",
    name: "Bulbasaur",
    img: "http://img.pokemondb.net/artwork/bulbasaur.jpg",
    type: [
      "Grass",
      "Poison"
    ],
    stats: {
      hp: "45",
      attack: "49",
      defense: "49",
      spattack: "65",
      spdefense: "65",
      speed: "45"
    },
    moves: {
      level: [{
        learnedat: "",
        name: "tackle",
        gen: "V"
      }, {
        learnedat: "3",
        name: "growl",
        gen: "V"
      }, {
        learnedat: "7",
        name: "leech seed",
        gen: "V"
      }, {
        learnedat: "9",
        name: "vine whip",
        gen: "V"
      }, {
        learnedat: "13",
        name: "poison powder",
        gen: "V"
      }, {
        learnedat: "13",
        name: "sleep powder",
        gen: "V"
      }, {
        learnedat: "15",
        name: "take down",
        gen: "V"
      }, {
        learnedat: "19",
        name: "razor leaf",
        gen: "V"
      }, {
        learnedat: "21",
        name: "sweet scent",
        gen: "V"
      }, {
        learnedat: "25",
        name: "growth",
        gen: "V"
      }, {
        learnedat: "27",
        name: "double-edge",
        gen: "V"
      }, {
        learnedat: "31",
        name: "worry seed",
        gen: "V"
      }, {
        learnedat: "33",
        name: "synthesis",
        gen: "V"
      }, {
        learnedat: "37",
        name: "seed bomb",
        gen: "V"
      }],
      tmhm: [{
        learnedat: "tm06",
        name: "toxic",
        gen: "V"
      }, {
        learnedat: "tm09",
        name: "venoshock",
        gen: "V"
      }, {
        learnedat: "tm10",
        name: "hidden power",
        gen: "V"
      }, {
        learnedat: "tm11",
        name: "sunny day",
        gen: "V"
      }, {
        learnedat: "tm16",
        name: "light screen",
        gen: "V"
      }, {
        learnedat: "tm17",
        name: "protect",
        gen: "V"
      }, {
        learnedat: "tm20",
        name: "safeguard",
        gen: "V"
      }, {
        learnedat: "tm21",
        name: "frustration",
        gen: "V"
      }, {
        learnedat: "tm22",
        name: "solarbeam",
        gen: "V"
      }, {
        learnedat: "tm27",
        name: "return",
        gen: "V"
      }, {
        learnedat: "tm32",
        name: "double team",
        gen: "V"
      }, {
        learnedat: "tm36",
        name: "sludge bomb",
        gen: "V"
      }, {
        learnedat: "tm42",
        name: "facade",
        gen: "V"
      }, {
        learnedat: "tm44",
        name: "rest",
        gen: "V"
      }, {
        learnedat: "tm45",
        name: "attract",
        gen: "V"
      }, {
        learnedat: "tm48",
        name: "round",
        gen: "V"
      }, {
        learnedat: "tm49",
        name: "echoed voice",
        gen: "V"
      }, {
        learnedat: "tm53",
        name: "energy ball",
        gen: "V"
      }, {
        learnedat: "tm70",
        name: "flash",
        gen: "V"
      }, {
        learnedat: "tm75",
        name: "swords dance",
        gen: "V"
      }, {
        learnedat: "tm86",
        name: "grass knot",
        gen: "V"
      }, {
        learnedat: "tm87",
        name: "swagger",
        gen: "V"
      }, {
        learnedat: "tm90",
        name: "substitute",
        gen: "V"
      }, {
        learnedat: "tm94",
        name: "rock smash",
        gen: "V"
      }, {
        learnedat: "hm01",
        name: "cut",
        gen: "V"
      }, {
        learnedat: "hm04",
        name: "strength",
        gen: "V"
      }],
      egg: [{
        name: "skull bash",
        gen: "V"
      }, {
        name: "charm",
        gen: "V"
      }, {
        name: "petal dance",
        gen: "V"
      }, {
        name: "magical leaf",
        gen: "V"
      }, {
        name: "grasswhistle",
        gen: "V"
      }, {
        name: "curse",
        gen: "V"
      }, {
        name: "ingrain",
        gen: "V"
      }, {
        name: "nature power",
        gen: "V"
      }, {
        name: "amnesia",
        gen: "V"
      }, {
        name: "leaf storm",
        gen: "V"
      }, {
        name: "power whip",
        gen: "V"
      }, {
        name: "sludge",
        gen: "V"
      }, {
        name: "endure",
        gen: "V"
      }, {
        name: "giga drain",
        gen: "V"
      }],
      tutor: [{
        name: "grass pledge",
        gen: "V"
      }],
      gen34: [{
        name: "bullet seed",
        method: "Gen IV TM09"
      }, {
        name: "secret power",
        method: "Gen IV TM43"
      }, {
        name: "captivate",
        method: "Gen IV TM78"
      }, {
        name: "sleep talk",
        method: "Gen IV TM82"
      }, 
      }]

I want to look like the picture a provide

Pokemon Manager
Bulbasaur
Edit
Delete
Ivysaur
Edit Delete
Venusaur
Edit Delete
Charmander
Edit Delete
Add a Pokemon
Charmeleon
Edit Delete
Transcribed Image Text:Pokemon Manager Bulbasaur Edit Delete Ivysaur Edit Delete Venusaur Edit Delete Charmander Edit Delete Add a Pokemon Charmeleon Edit Delete
Expert Solution
Step 1 Introduction to program

It is defined as is a sequence or set of instructions in a programming language for a computer to execute. Computer

programs are one component of software which also includes documentation and other intangible components.

 

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Best Practices Checklist
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education