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-HGSS17", localId: "HGSS17", // Card informations name: { en: "Minun", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 312, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS17/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS17/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "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