Skip to content

A study case of the main JS Frameworks and backend tecnologies using pokémons

Notifications You must be signed in to change notification settings

vanderleisilva/pokemon-battle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 

Repository files navigation

pokemon-battle

This is a project that aims to demonstrate a simple Pokémon battle game, using a variety of frontend and backend technologies and then to highlight the pros and cons in our perspective of which one.

Live demo

Pokemon Battle using VueJS or using ReactJS

  • Complete list of availables frontend projects click here;
  • Complete list of availables backend projects click here;

API structure

Route Method Description
/all GET List all available characters
/select POST The user selected character
/hit POST The user selected attack

API data structure

/all

Param Out
{[
    "name" : "Pikachu",
    "type" : "electric",
    "avatar" : "avatarurl.extension",
    "attacks" : [
        {
            "name": "thunderbolt",
            "power": 50,
            "type" : "electric",
            "accuracy": 70
        },
        {
            "name" : "tackle",
            "power": 30,
            "type" : "normal",
            "accuracy": 85
        }
    ],
    "health" : 75,
    "agility": 95,
    "attack": 65,
    "defense": 55
]}

/select

Param In
{
    "name" : "Pikachu"
}
Param Out
{
    "player" : {
        "name" : "Pikachu",
        "type" : "electric",
        "avatar" : "avatarurl.extension",
        "attacks" : [
            {
                "name": "thunderbolt",
                "power": 50,
                "type" : "electric",
                "accuracy": 70
            },
            {
                "name" : "tackle",
                "power": 30,
                "type" : "normal",
                "accuracy": 85
            }
        ],
        "health" : 75,
        "agility": 95,
        "attack": 65,
        "defense": 55
    },
    "against" : {
        "name" : "Charmander",
        "type" : "fire",
        "avatar" : "avatarurl.extension",
        "attacks" : [
            {
                "name": "flame",
                "power": 50,
                "type" : "fire",
                "accuracy": 85
            }
        ],
        "health" : 75,
        "agility": 95,
        "attack": 55,
        "defense": 55
    }
}

/hit

Param In
{
    "player" : {
        "name" : "Pikachu",
        "currentHealth" : 60,
        "attack" : "tackle"
    },
    "against" : {
        "name" : "Charmander",
        "currentHealth" : 50
    }
}
Param Out
{
    "player" : {
        "name" : "Pikachu",
        "currentHealth" : 53,
        "damage" : 5,
        "desc" : "",
        "desc_id" : 1
    },
    "against" : {
        "name" : "Charmander",
        "currentHealth" : 45,
        "attack" : "flame",
        "damage" : 7,
        "desc" : "Critical Hit",
        "desc_id" : 3
    }
}
Hit description IDs (desc_id)
Id Description
1 Normal
2 Missed
3 Critical Hit
4 Super effective attack
5 Not very effective attack
6 Not effective attack
12 Super effective and critical attack
15 Not very effective but critical attack

References

PokeApi and Bulbapedia

About

A study case of the main JS Frameworks and backend tecnologies using pokémons

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published