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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/79/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/79/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/79/high.png", }, }, evolveFrom: { en: "Lickitung", fr: "Excelangue", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "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