import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Anorith", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 347, ], hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Claw Fossil", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", ], name: { en: "Slash", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Double Scratch", }, effect: { en: "Flip 2 coins. This attack does 40 damage times the number of heads.", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card