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: "xy1-73", localId: 73, // Card informations name: { en: "Zoroark", fr: "Zoroark", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 571, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy1/73/low", fr: "https://assets.tcgdex.net/fr/xy/xy1/73/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy1/73/high", fr: "https://assets.tcgdex.net/fr/xy/xy1/73/high", }, }, evolveFrom: { en: "Zorua", fr: "Zorua", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.DARKNESS ], name: { en: "Corner", fr: "Coinçage", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Night Claw", fr: "Griffe Nocturne", }, text: { en: "Flip a coin. If tails, discard 2 Energy attached to this Pokémon.", fr: "Lancez une pièce. Si c'est pile, défaussez 2 Énergies attachées à ce Pokémon.", }, damage: 100 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "XY", code: "xy1" } } export default card