mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
72 lines
1.0 KiB
TypeScript
72 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Dragon'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Bagon",
|
|
fr: "Draby",
|
|
de: "Kindwurm"
|
|
},
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
371,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Risky Kick",
|
|
fr: "Coup de pied risqué",
|
|
de: "Risky Kick"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, this attack does nothing.",
|
|
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.",
|
|
de: "Flip a coin. If tails, this attack does nothing."
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Water",
|
|
],
|
|
name: {
|
|
en: "Dragon Eye",
|
|
fr: "Oeil de dragon",
|
|
de: "Dragon Eye"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon is now Asleep.",
|
|
fr: "Le Pokémon Défenseur est maintenant Endormi.",
|
|
de: "The Defending Pokémon is now Asleep."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|