mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
69 lines
1.1 KiB
TypeScript
69 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celestial Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bagon",
|
||
fr: "Draby",
|
||
es: "Bagon",
|
||
it: "Bagon",
|
||
pt: "Bagon",
|
||
de: "Kindwurm"
|
||
},
|
||
illustrator: "sui",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
371,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Reckless Charge",
|
||
fr: "Attaque Imprudente",
|
||
es: "Carga Descuidada",
|
||
it: "Carica Avventata",
|
||
pt: "Carga Indomável",
|
||
de: "Waghalsiger Sturmangriff"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon does 10 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige 10 dégâts.",
|
||
es: "Este Pokémon se hace 10 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge 10 danni a se stesso.",
|
||
pt: "Este Pokémon causa 10 pontos de dano a si mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 10 Schadenspunkte zu."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|