import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Lickitung", fr: "Excelangue" }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 108, ], hp: 90, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tongue Wrap", fr: "Léchouille" }, effect: { 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: [ "Colorless", "Colorless", ], name: { en: "Supersonic", fr: "Ultrason" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus." }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], description: { fr: "Il peut projeter sa langue comme un caméléon. Tout contact avec elle provoque une irritation." } } export default card