1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +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

92 lines
2.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Ultra Prism'
const card: Card = {
name: {
en: "Lickilicky",
fr: "Coudlangue",
es: "Lickilicky",
it: "Lickilicky",
pt: "Lickilicky",
de: "Schlurplek"
},
illustrator: "Yumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
463,
],
hp: 130,
types: [
"Colorless",
],
evolveFrom: {
en: "Lickitung",
fr: "Excelangue",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Dangerous Lick",
fr: "Lécher Dangereux",
es: "Lametazo Peligroso",
it: "Leccata Pericolosa",
pt: "Lambida Perigosa",
de: "Gefährlicher Schlecker"
},
effect: {
en: "Flip a coin until you get tails. This attack does 50 more damage for each heads. If the first flip is tails, your opponents Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce jusquà ce que vous obteniez un côté pile. Cette attaque inflige 50 dégâts supplémentaires pour chaque côté face. Si le premier lancer est pile, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 50 puntos de daño más por cada cara. Si sale cruz en el primer lanzamiento, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 50 danni in più ogni volta che esce testa. Se la prima volta esce croce, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 1 moeda até sair coroa. Este ataque causa 50 pontos de dano a mais para cada cara. Se a primeira jogada sair coroa, o Pokémon Ativo do seu oponente será Paralisado.",
de: "Wirf so lang 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Diese Attacke fügt 50 Schadenspunkte mehr pro Kopf zu. Wenn das Ergebnis des ersten Münzwurfs Zahl ist, ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
damage: "50+",
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
es: "Placaje Giro",
it: "Rollazione",
pt: "Golpe de Colisão Rolante",
de: "Rolltackle"
},
damage: 110,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card