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: "neo4-111", localId: 111, // Card informations name: { en: "Shining Raichu", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 26, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo4/111/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo4/111/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Hironobu Yoshida", attacks: [{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.WATER, Type.WATER ], name: { en: "Thundersquall", }, text: { en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to that Pokémon for each Energy attached to Shining Raichu. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Neo Destiny", code: "neo4" } } export default card