mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
Fix HeartGold SoulSilver datas (#73)
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Jumpluff",
|
||||
fr: "Cotovol",
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
189,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Skiploom",
|
||||
fr: "Floravol",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -35,10 +39,10 @@ const card: Card = {
|
||||
fr: "Attaque en masse",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage times the number of Pokémon in play (both yours and your opponent's).",
|
||||
en: "Does 10 damage times the number of Pokémon in play (both yours and your opponent’s).",
|
||||
fr: "Inflige 10 dégâts multiplié par le nombre de Pokémon en jeu (les vôtres et ceux de votre adversaire).",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -50,19 +54,21 @@ const card: Card = {
|
||||
fr: "Feuille garde",
|
||||
},
|
||||
effect: {
|
||||
en: "During your opponent's next turn, any damage done to Jumpluff by attacks is reduced by 30 (after applying Weakness and Resistance).",
|
||||
en: "During your opponent’s next turn, any damage done to Jumpluff by attacks is reduced by 30 (after applying Weakness and Resistance).",
|
||||
fr: "Tous les dégâts infligés à Cotovol par des attaques pendant le prochain tour de votre adversaire sont réduits de 30 (après application de la Faiblesse et de la Résistance).",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -70,9 +76,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 0,
|
||||
|
||||
description: {
|
||||
en: "Once it catches the wind, it deftly controls its cotton-puff spores—it can even float around the world."
|
||||
},
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: true,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user