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: "bwp-BW19", localId: "BW19", // Card informations name: { en: "Zoroark", fr: "Zoroark", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 571, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW19/low.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW19/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW19/high.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW19/high.png", }, }, evolveFrom: { en: "Zorua", fr: "Zorua", }, tags: [ Tag.STAGE1, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Punishment", fr: "Punition", }, text: { en: "If the Defending Pokémon is a Stage 2 Pokémon, this attack does 20 more damage.", fr: "Si le Pokémon Défenseur est un Pokémon de Niveau 2, cette attaque inflige 20 dégâts supplémentaires", }, damage: 20 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Snarl", fr: "Aboiement", }, text: { en: "During your opponent's next turn, damage from the Defending Pokémon attacks is reduced by 20.", fr: "Pendant le prochain tour de votre adversaire, les dégâts infligés par les attaques du Pokémon Défenseur sont réduits de 20.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card