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: "xy0-17", localId: 17, // Card informations name: { en: "Mightyena", fr: "Grahyèna", }, hp: 90, type: [ Type.DARKNESS, ], dexId: 262, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy0/17/low", fr: "https://assets.tcgdex.net/fr/xy/xy0/17/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy0/17/high", fr: "https://assets.tcgdex.net/fr/xy/xy0/17/high", }, }, evolveFrom: { en: "Poochyena", fr: "Medhyèna", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Hard Bite", fr: "Morsure Profonde", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Kalos Starter Set", code: "xy0" } } export default card