mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
71 lines
1.1 KiB
TypeScript
71 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [463],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lickilicky",
|
|
fr: "Coudlangue",
|
|
es: "Lickilicky",
|
|
it: "Lickilicky",
|
|
pt: "Lickilicky",
|
|
de: "Schlurplek"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Colorless"],
|
|
|
|
evolveFrom: {
|
|
en: "Lickitung",
|
|
fr: "Excelangue",
|
|
es: "Lickitung",
|
|
it: "Lickitung",
|
|
pt: "Lickitung",
|
|
de: "Schlurp"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["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: 50
|
|
}, {
|
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Heavy Impact",
|
|
fr: "Gros Impact",
|
|
es: "Impacto Pesado",
|
|
it: "Impatto Pesante",
|
|
pt: "Impacto Pesado",
|
|
de: "Schwerer Einschlag"
|
|
},
|
|
|
|
damage: 130
|
|
}],
|
|
|
|
retreat: 4,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |