1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

67 lines
1014 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Bagon",
fr: "Draby",
es: "Bagon",
it: "Bagon",
pt: "Bagon",
de: "Kindwurm"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Dragon"],
stage: "Basic",
illustrator: "ryoma uratsuka",
attacks: [{
name: {
en: "Gnaw",
fr: "Ronge",
es: "Roer",
it: "Rosicchiamento",
pt: "Gnaw",
de: "Nagen"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
en: "Headbutt",
fr: "Coup d'Boule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Headbutt",
de: "Kopfnuss"
},
damage: 30,
cost: ["Fire", "Water"]
}],
retreat: 2,
dexId: [371],
description: {
en: "Some theories suggest that its behavior of forcefully bashing its head into things stimulates cells that affect its evolution."
},
regulationMark: "E"
}
export default card