import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Anorith δ", fr: "Anorith δ ESPÈCES DELTA" }, illustrator: "Hajime Kusajima", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 347, ], hp: 70, types: [ "Metal", ], evolveFrom: { en: "Claw Fossil", }, stage: "Stage1", attacks: [ { cost: [ "Metal", ], name: { en: "Metal Claw", fr: "Griffe acier" }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Rising Lunge", fr: "Botte secrète" }, effect: { en: "Flip a coin. If heads, this attack does 30 damage plus 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 20 dégâts supplémentaires." }, damage: "30+", }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card