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-HGSS17", localId: "HGSS17", // Card informations name: { en: "Minun", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 312, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", }, text: { en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", }, },{ cost: [ Type.LIGHTNING ], name: { en: "Tag Team Boost", }, text: { en: "If Plusle is on your Bench, this attack does 10 damage plus 20 more damage.", }, damage: 10 }], 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