mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
655 B
TypeScript
48 lines
655 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [108],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lickitung",
|
|
fr: "Excelangue",
|
|
es: "Lickitung",
|
|
it: "Lickitung",
|
|
pt: "Lickitung",
|
|
de: "Schlurp"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Drool",
|
|
fr: "Gluant",
|
|
es: "Babeo",
|
|
it: "Sbavare",
|
|
pt: "Babar",
|
|
de: "Sabbern"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 4,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |