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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo3/21/high.png", }, }, evolveFrom: { en: "Pikachu", }, tags: [ Tag.STAGE1, ], illustrator: { id: 103, name: "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