1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

73 lines
1.3 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Blaziken V",
fr: "Braségali V",
es: "Blaziken V",
it: "Blaziken V",
pt: "Blaziken V",
de: "Lohgock V"
},
illustrator: "Ayaka Yoshida",
rarity: "Rare",
category: "Pokemon",
hp: 210,
types: ["Fire"],
attacks: [{
name: {
en: "High Jump Kick",
fr: "Pied Voltige",
es: "Patada Salto Alta",
it: "Calcinvolo",
pt: "Chute de Pulo Alto",
de: "Turmkick"
},
damage: 50,
cost: ["Colorless", "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: 210,
cost: ["Fire", "Fire", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card