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: "neo3-21", localId: 21, // Card informations name: { en: "Raichu", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 26, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo3/21/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo3/21/high", }, }, evolveFrom: { en: "Pikachu", }, tags: [ Tag.STAGE1, ], illustrator: "Masako Yamashita", attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Thundershock", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.LIGHTNING ], name: { en: "Lightning Strike", }, text: { en: "You may discard all Energy cards attached to Raichu. If you do, this attack does 80 damage.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Neo Revelation", code: "neo3" } } export default card