1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

84 lines
1.3 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 '../Deoxys'
const card: Card = {
name: {
en: "Bagon",
fr: "Draby",
de: "Kindwurm"
},
illustrator: "Takao Unno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
371,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Singe",
fr: "Roussir",
de: "Singe"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Burned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Brûlé.",
de: "Flip a coin. If heads, the Defending Pokémon Pokémon is now Burned."
},
},
{
cost: [
"Water",
],
name: {
en: "Doubleslap",
fr: "Torgnoles",
de: "Doubleslap"
},
effect: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.",
de: "Flip 2 coins. This attack does 10 damage times the number of heads."
},
damage: "10x",
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Fire",
value: "-30"
},
{
type: "Fighting",
value: "-30"
},
],
}
export default card