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: "ex11-24", localId: 24, // Card informations name: { en: "Mightyena δ", }, hp: 70, type: [ Type.DARKNESS, Type.METAL, ], dexId: 262, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/24/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/24/high.png", }, }, evolveFrom: { en: "Poochyena", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Delta Fang", }, text: { en: "If the Defending Pokémon is Pokémon-ex, that Pokémon can't attack during your opponent's next turn.", }, damage: 20 },{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Gang Up", }, text: { en: "Does 10 damage times the number of Darkness Pokémon and Metal Pokémon you have in play.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card