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: "pop2-3", localId: 3, // Card informations name: { en: "Raikou", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 243, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop2/3/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop2/3/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Roar", }, text: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.", }, },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Thunder", }, text: { en: "Flip a coin. If tails, Raikou does 20 damage to itself.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "POP Series 2", code: "pop2" } } export default card