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: "xy3-79", localId: 79, // Card informations name: { en: "Lickilicky", fr: "Coudlangue", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 463, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/79/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/79/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/79/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/79/high", }, }, evolveFrom: { en: "Lickitung", fr: "Excelangue", }, tags: [ Tag.STAGE1, ], illustrator: "Hajime Kusajima", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Knock Off", fr: "Sabotage", }, text: { en: "Discard a random card from your opponent's hand.", fr: "Défaussez au hasard une carte de la main de votre adversaire.", }, damage: 50 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Lickichop", fr: "Poing Baveux", }, text: { en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 4, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card