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: "ex16-18", localId: 18, // Card informations name: { en: "Mightyena", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 262, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/18/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/18/high.png", }, }, evolveFrom: { en: "Poochyena", }, tags: [ Tag.STAGE1, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Plunder", }, text: { en: "Before doing damage, discard all Trainer cards attached to the Defending Pokémon.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Dark Burst", }, text: { en: "If Sidney's Stadium is in play, this attack does 50 damage plus 20 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card