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: "hgssp-HGSS19", localId: "HGSS19", // Card informations name: { en: "Raikou", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 243, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Noriko Hotta", attacks: [{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Zap Cannon", }, text: { en: "During your next turn, Raikou can't use Zap Cannon.", }, damage: 70 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "HGSS Black Star Promos", code: "hgssp" } } export default card