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: "si1-16", localId: 16, // Card informations name: { en: "Lickitung", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 108, image: { low: { en: "https://assets.tcgdex.net/en/neo/si1/16/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/si1/16/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 23, name: "Naoyo Kimura" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Lick Wounds", }, text: { en: "Flip a coin. If heads, choose 1 Pokémon (yours or your opponent's) with damage counters on it and remove 2 damage counters from it (1 if it only has 1).", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tongue Stretch", }, text: { en: "Flip a coin. If heads, choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. Don't apply Weakness and Resistance.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Southern Islands", code: "si1" } } export default card