1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

80 lines
1.4 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Crown Zenith"
const card: Card = {
dexId: [637],
set: Set,
name: {
en: "Volcarona",
fr: "Pyrax",
es: "Volcarona",
it: "Volcarona",
pt: "Volcarona",
de: "Ramoth"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Fire"],
evolveFrom: {
en: "Larvesta",
fr: "Pyronille",
es: "Larvesta",
it: "Larvesta",
pt: "Larvesta",
de: "Ignivor"
},
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
en: "Will-O-Wisp",
fr: "Feu Follet",
es: "Fuego Fatuo",
it: "Fuocofatuo",
pt: "Fogo Fátuo",
de: "Irrlicht"
},
damage: 40
}, {
cost: ["Fire", "Colorless"],
name: {
en: "Volcanic Heat",
fr: "Chaleur Volcanique",
es: "Calor Volcánico",
it: "Calore Vulcanico",
pt: "Calor Vulcânico",
de: "Vulkanhitze"
},
effect: {
en: "During your next turn, this Pokémon can't attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 120
}],
retreat: 2,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card