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: "bw11-90", localId: 90, // Card informations name: { en: "Zoroark", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 571, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/90/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/90/high.png", }, }, evolveFrom: { en: "Zorua", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Brutal Bash", }, text: { en: "Does 20 damage times the number of Darkness Pokémon you have in play.", }, damage: 20 },{ cost: [ Type.DARKNESS, Type.DARKNESS ], name: { en: "Dark Rush", }, text: { en: "Does 20 damage times the number of damage counters on this Pokémon.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card