1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add shrouded fable cards (#525)

This commit is contained in:
2024-08-25 02:44:42 +02:00
committed by GitHub
parent 80f483ab66
commit cfd6d5c0e8
101 changed files with 5742 additions and 1 deletions

View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
set: Set,
name: {
en: "Axew",
fr: "Coupenotte",
es: "Axew",
it: "Axew",
pt: "Axew",
de: "Milza"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Dragon"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10
}, {
cost: ["Fighting", "Metal"],
name: {
en: "Sharp Fang",
fr: "Croc Aiguisé",
es: "Colmillo Afilado",
it: "Zannaffilata",
pt: "Presa Afiada",
de: "Scharfe Fänge"
},
damage: 30
}],
retreat: 2,
regulationMark: "H"
}
export default card