import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex2-97", localId: 97, // Card informations name: { en: "Kabutops ex", }, hp: 150, type: [ Type.WATER, ], dexId: 141, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/97/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/97/high", }, }, evolveFrom: { en: "Kabuto", }, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Hyrdocutter", }, text: { en: "Flip a number of coins equal to the amount of Energy attached to Kabutops ex. This attack does 40 damage times the number of heads. You can't flip more than 3 coins in this way.", }, damage: 40 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Spiral Drain", }, text: { en: "Remove 2 damage counters from Kabutops ex (remove 1 if there is only 1).", }, damage: 70 }], weaknesses: [{ type: Type.GRASS, value: "×2" },{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card