1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

89 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../BREAKpoint'
const card: Card = {
name: {
en: "Arcanine",
fr: "Arcanin",
es: "Arcanine",
it: "Arcanine",
pt: "Arcanine",
de: "Arkani"
},
illustrator: "match",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
59,
],
hp: 110,
types: [
"Fire",
],
evolveFrom: {
en: "Growlithe",
fr: "Caninos",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Flop",
fr: "Flop",
es: "Vuelta",
it: "Tonfo",
pt: "Baque",
de: "Plumps"
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
es: "Lanzallamas",
it: "Lanciafiamme",
pt: "Lança-Chamas",
de: "Flammenwurf"
},
effect: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
es: "Descarta 1 Energía unida a este Pokémon.",
it: "Scarta unEnergia assegnata a questo Pokémon.",
pt: "Descarte uma Energia ligada a este Pokémon.",
de: "Lege 1 an dieses Pokémon angelegte Energie auf deinen Ablagestapel."
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card