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