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-HGSS16", localId: "HGSS16", // Card informations name: { en: "Plusle", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 311, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS16/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS16/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Collect", }, text: { en: "Draw 2 cards.", }, },{ cost: [ Type.LIGHTNING ], name: { en: "Thunder Jolt", }, text: { en: "Flip a coin. If tails, this attack does 10 damage to Plusle.", }, damage: 20 }], 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