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: "sm3-56", localId: 56, // Card informations name: { en: "Venipede", fr: "Venipatte", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 543, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm3/56/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/56/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm3/56/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/56/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Bug Bite", fr: "Piqûre", }, 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 40 more damage.", fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 40 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Burning Shadows", code: "sm3" } } export default card