mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
70
data/Sword & Shield/Lost Origin/139.ts
Normal file
70
data/Sword & Shield/Lost Origin/139.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user