mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
89 lines
1.5 KiB
TypeScript
89 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
dexId: [637],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Volcarona",
|
||
fr: "Pyrax",
|
||
es: "Volcarona",
|
||
it: "Volcarona",
|
||
pt: "Volcarona",
|
||
de: "Ramoth"
|
||
},
|
||
|
||
illustrator: "Mika Pikazo",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Fire"],
|
||
|
||
evolveFrom: {
|
||
en: "Larvesta",
|
||
fr: "Pyronille",
|
||
es: "Larvesta",
|
||
it: "Larvesta",
|
||
pt: "Larvesta",
|
||
de: "Ignivor"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Combustion",
|
||
fr: "Fournaise",
|
||
es: "Combustión",
|
||
it: "Fuoco Continuo",
|
||
pt: "Combustão",
|
||
de: "Glühen"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Fire", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Fire Spin",
|
||
fr: "Danse Flammes",
|
||
es: "Giro Fuego",
|
||
it: "Turbofuoco",
|
||
pt: "Chama Furacão",
|
||
de: "Feuerwirbel"
|
||
},
|
||
|
||
effect: {
|
||
en: "Discard 2 Energy from this Pokémon.",
|
||
fr: "Défaussez 2 Énergies de ce Pokémon.",
|
||
es: "Descarta 2 Energías de este Pokémon.",
|
||
it: "Scarta due Energie da questo Pokémon.",
|
||
pt: "Descarte 2 Energias deste Pokémon.",
|
||
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel."
|
||
},
|
||
|
||
damage: 170,
|
||
cost: ["Fire", "Fire", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "According to legends, it was hatched from a flaming cocoon to save people and Pokémon that were suffering from the cold."
|
||
}
|
||
}
|
||
|
||
export default card |