1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00
Florian Bouillon dc4d1bd6cb
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>
2021-09-29 21:43:33 +00:00

94 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
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",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Mass Attack",
fr: "Attaque en masse",
},
effect: {
en: "Does 10 damage times the number of Pokémon in play (both yours and your opponents).",
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×",
},
{
cost: [
"Grass",
],
name: {
en: "Leaf Guard",
fr: "Feuille garde",
},
effect: {
en: "During your opponents 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",
value: "-20"
},
],
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