mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
91 lines
1.8 KiB
TypeScript
91 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Roaring Skies'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bagon",
|
||
fr: "Draby",
|
||
es: "Bagon",
|
||
it: "Bagon",
|
||
pt: "Bagon",
|
||
de: "Kindwurm"
|
||
},
|
||
illustrator: "kirisAki",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
371,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Leer",
|
||
fr: "Groz'Yeux",
|
||
es: "Malicioso",
|
||
it: "Fulmisguardo",
|
||
pt: "Encarar",
|
||
de: "Silberblick"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||
pt: "Jogue uma moeda. Se sair cara, este Pokémon Ativo do seu oponente será Paralisado.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Almost Flight",
|
||
fr: "Tentative d'Envol",
|
||
es: "Casi Vuelo",
|
||
it: "Vorrei Volare",
|
||
pt: "Quase Voo",
|
||
de: "Flugfieber"
|
||
},
|
||
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 de danos a ele mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 10 Schadenspunkte zu."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|