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: "sm10-64", localId: 64, // Card informations name: { en: "Zubat", fr: "Nosferapti", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 41, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/64/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/64/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/64/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/64/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 89, name: "Sekio" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Bite", fr: "Morsure", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Venoshock", fr: "Choc Venin", }, text: { en: "If your opponent's Active Pokémon is Poisoned, this attack does 50 more damage.", fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 50 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card