import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex6-37", localId: 37, // Card informations name: { en: "Lickitung", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 108, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/37/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/37/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Sumiyoshi Kizuki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Lick", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tongue Whip", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card