1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

95 lines
1.4 KiB
TypeScript
Raw Permalink 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 '../Kalos Starter Set'
const card: Card = {
name: {
en: "Delphox",
fr: "Goupelin",
es: "Delphox",
it: "Delphox",
pt: "Delphox",
de: "Fennexis"
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
655,
],
hp: 140,
types: [
"Fire",
],
evolveFrom: {
en: "Braixen",
fr: "Roussil",
es: "Braixen",
it: "Braixen",
pt: "Braixen",
de: "Rutena"
},
stage: "Stage2",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Will-O-Wisp",
fr: "Feu Follet",
es: "Llama abrasadora",
it: "Fulminshock",
pt: "Fogo-fátuo",
de: "Irrlicht"
},
damage: 30,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Fire Blast",
fr: "Déflagration",
es: "Llamarada",
it: "Fuocobomba",
pt: "Rajada de Fogo",
de: "Feuersturm"
},
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 un'Energia 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: 120,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card