1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +00:00

feat: Added Lost Origin datas (#360)

This commit is contained in:
2022-09-14 00:24:11 +02:00
committed by GitHub
parent 7467090e2c
commit 0146baaf82
248 changed files with 16467 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
set: Set,
name: {
en: "Goomy",
fr: "Mucuscule",
es: "Goomy",
it: "Goomy",
pt: "Goomy",
de: "Viscora"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Dragon"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 10
}, {
cost: ["Water", "Metal"],
name: {
en: "Melt",
fr: "Dissolution",
es: "Derretir",
it: "Liquefazione",
pt: "Derreter",
de: "Schmelzen"
},
damage: 30
}],
retreat: 2,
regulationMark: "F",
variants: {
"normal": true,
"reverse": true,
"holo": false
}
}
export default card