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

85 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 '../Unified Minds'
const card: Card = {
name: {
en: "Lickitung",
fr: "Excelangue",
es: "Lickitung",
it: "Lickitung",
pt: "Lickitung",
de: "Schlurp"
},
illustrator: "tetsuya koizumi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
108,
],
hp: 100,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Heavy Draw",
fr: "Pioche Massive",
es: "Robo Pesado",
it: "Pesca Grossa",
pt: "Compra Pesada",
de: "Gewichtiger Zug"
},
effect: {
en: "Draw a card for each of your Pokémon in play that has a Retreat Cost of exactly 4.",
fr: "Piochez une carte pour chacun de vos Pokémon en jeu qui a un Coût de Retraite de 4.",
es: "Roba 1 carta por cada uno de tus Pokémon en juego que tenga un Coste de Retirada de exactamente 4.",
it: "Pesca una carta per ogni tuo Pokémon in gioco che abbia un costo di ritirata esattamente pari a quattro.",
pt: "Compre 1 carta para cada um dos seus Pokémon em jogo que tiver um custo de Recuo de exatamente 4.",
de: "Ziehe 1 Karte für jedes deiner Pokémon im Spiel, das Rückzugskosten von genau 4 hat."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Tongue Slap",
fr: "Gros Coup de Langue",
es: "Bofetón Lengua",
it: "Linguasberla",
pt: "Tapa de Língua",
de: "Zungenschelle"
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card