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: "hgssp-HGSS19", localId: "HGSS19", // Card informations name: { en: "Raikou", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 243, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS19/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS19/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 63, name: "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