This app is a play on the popular social media site MySpace. The user can search for a specific Pokémon and view many details about the Pokémon that we view as important to gameplay.
A live version of this site can be viewed at alyssadicarlo.github.io/pokepsace
This app was created as a group project in the DigitalCrafts May 2021 full stack web development bootcamp.
- HTML5
- CSS3
- Vanilla JavaScript
- Bulma
- Search for Pokémon
- View Pokémon characteristics & statistics
- Pokédex Number
- Height
- Weight
- Color
- Species
- Type(s)
- Base Att
- Base Sp. Att
- Base Spd
- Base EXP
- Base HP
- Base Def
- Base Sp. Def
- Moves
- Description
- Type
- Power
- Accuracy
- PP
- Damage Class
- Abilities
- Description
The following code fetches Pokémon details which was used in various ways throughout the site.
function fetchPokemonDetails() {
fetch(
`https://pokeapi.co/api/v2/pokemon/${pokemon}`
).then((response) => {
return response.json();
}).then((data) => {
updatePokemonDetails(data);
}).catch((error) => {
return error;
});
};
git clone git@github.com:alyssadicarlo/pokespace.git
cd pokespace
open index.html
GBA Simulator © 2012 – 2013 Jeffrey Pfau