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-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.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS16/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "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