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: "ex9-37", localId: 37, // Card informations name: { en: "Minun", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 312, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/37/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/37/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 23, name: "Naoyo Kimura" }, abilities: [{ id: 162, type: AbilityType.POKEBODY, name: { en: "Electro-guard", }, text: { en: "As long as Minun has any Lightning Energy is attached to it, Minun has no Weakness.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Quick Attack", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card