import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Anorith", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 347, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Claw Fossil", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Solid Shell", }, effect: { en: "Any damage done to Anorith by attacks is reduced by 10 (after applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Fury Cutter", }, effect: { en: "Flip 3 coins. If 1 of them is heads, this attack does 10 damage plus 10 more damage. If 2 of them are heads, this attack does 10 damage plus 30 more damage. If all of them are heads, this attack does 10 damage plus 50 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card