mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
64 lines
670 B
TypeScript
64 lines
670 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Delta Species'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bagon δ",
|
||
fr: "Draby δ",
|
||
de: "Kindwurm"
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
371,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bite",
|
||
fr: "Morsure",
|
||
de: "Bite"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Colorless",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
{
|
||
type: "Fire",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|