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: "dp3-91", localId: 91, // Card informations name: { en: "Lickitung", fr: "Excelangue", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 108, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp3/91/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp3/91/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp3/91/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp3/91/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Lick", fr: "Léchouille", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Stomp", fr: "Écrasement", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 30 dégâts supplémentaires.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "+20" }], retreat: 3, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Secret Wonders", code: "dp3" } } export default card