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

93 lines
1.6 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: "Lickitung",
fr: "Excelangue",
es: "Lickitung",
it: "Lickitung",
pt: "Lickitung",
de: "Schlurp"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
108,
],
hp: 100,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Lap Up",
fr: "Gobeur",
es: "A Lengüetazos",
it: "Leccatina",
pt: "Sobrepor-se",
de: "Auflecken"
},
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
es: "Roba 3 cartas.",
it: "Pesca tre carte.",
pt: "Compre 3 cartas.",
de: "Ziehe 3 Karten."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Slam",
fr: "Souplesse",
es: "Atizar",
it: "Schianto",
pt: "Pancada Brusca",
de: "Slam"
},
effect: {
en: "Flip 2 coins. This attack does 50 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
es: "Lanza 2 monedas. Este ataque hace 50 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 50 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 50 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 50 Schadenspunkte pro Kopf zu."
},
damage: "50×",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card