import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Lickitung", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 108, ], hp: 90, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tongue Wrap", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Supersonic", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card