1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

54 lines
750 B
TypeScript

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