1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

89 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Lickilicky",
fr: "Coudlangue",
es: "Lickilicky",
it: "Lickilicky",
pt: "Lickilicky",
de: "Schlurplek"
},
illustrator: "Suwama Chiaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
463,
],
hp: 130,
types: [
"Colorless",
],
evolveFrom: {
en: "Lickitung",
fr: "Excelangue",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Rollout",
fr: "Roulade",
es: "Desenrollar",
it: "Rotolamento",
pt: "Rolagem",
de: "Walzer"
},
damage: 40,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Licks Go Crazy",
fr: "Langue Acérée",
es: "A lo Loco",
it: "Leccate Pazze",
pt: "Lambidas Malucas",
de: "Schleckwahnsinn"
},
effect: {
en: "Discard a random card from your opponents hand, discard the top card of your opponents deck, and discard an Energy from your opponents Active Pokémon.",
fr: "Défaussez au hasard une carte de la main de votre adversaire, défaussez la carte du dessus du deck de votre adversaire, et défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Descarta 1 carta aleatoria de la mano de tu rival, descarta la primera carta de la baraja de tu rival y descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta una carta a caso dalla mano del tuo avversario, scarta la prima carta del suo mazzo e scarta unEnergia assegnata al suo Pokémon attivo.",
pt: "Descarte 1 carta aleatória da mão do seu oponente, descarte a primeira carta do baralho do seu oponente e descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel, lege die oberste Karte vom Deck deines Gegners auf seinen Ablagestapel und lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card