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: "bw2-38", localId: 38, // Card informations name: { en: "Venipede", fr: "Venipatte", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 543, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/38/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/38/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/38/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/38/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Poison Sting", fr: "Dard-Venin", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tackle", fr: "Charge", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card