-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More botcoins #68
More botcoins #68
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thanks for the new questions! 👍
@@ -510,6 +511,7 @@ const fossilPokemon = () => { | |||
const shiny = isShiny(); | |||
|
|||
const description = ['What Pokémon comes from this fossil?']; | |||
description.push(`||${fossil}||`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
@@ -550,6 +552,7 @@ const pokemonFossil = () => { | |||
const shiny = isShiny(); | |||
|
|||
const description = ['What fossil does this Pokémon come from?']; | |||
description.push(`||${pokemonName}||`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
|
||
const pokemonData = randomFromArray(eligiblePokemon); | ||
const female = isFemale(pokemonData); | ||
const pokemonImage = `${website}assets/images/${shiny ? 'shiny' : ''}pokemon/${pokemonData.id}${female ? '-f' : ''}.png`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Forgot about this, now I need to check if we have it on the other images 🤔
Added 2 more botcoins question and some fix