import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex2-27", localId: 27, // Card informations name: { en: "Anorith", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 347, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/27/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/27/high.png", }, }, evolveFrom: { en: "Claw Fossil", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Fast Evolution", }, text: { en: "Search your deck for an Evolution card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Pierce", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card