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: "ecard3-H25", localId: "H25", // Card informations name: { en: "Raichu", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 26, evolveFrom: { en: "Pikachu", }, tags: [ Tag.STAGE1, ], illustrator: "Yuka Morii", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Zzzap", }, text: { en: "This attack does 20 damage to each Pokémon with a Poké", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Lightning Storm", }, text: { en: "Flip a coin. If tails, put 2 damage counters on Raichu.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card