1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
2024-12-19 11:52:36 +01:00

69 lines
876 B
TypeScript
Raw 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 '../Delta Species'
const card: Card = {
name: {
en: "Bagon δ",
fr: "Draby δ",
de: "Kindwurm"
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
371,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Fire",
],
name: {
en: "Ember",
fr: "Flammèche",
de: "Ember"
},
effect: {
en: "Discard a Fire Energy card attached to Bagon.",
fr: "Défaussez une carte Énergie attachée à Draby.",
de: "Discard a Energy card attached to Bagon."
},
damage: 30,
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Fire",
value: "-30"
},
{
type: "Fighting",
value: "-30"
},
],
}
export default card