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:
65
data/Sword & Shield/Lost Origin/075.ts
Normal file
65
data/Sword & Shield/Lost Origin/075.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hisuian Zorua",
|
||||
fr: "Zorua de Hisui",
|
||||
es: "Zorua de Hisui",
|
||||
it: "Zorua di Hisui",
|
||||
pt: "Zorua de Hisui",
|
||||
de: "Hisui-Zorua"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
es: "Coleccionar",
|
||||
it: "Tassa",
|
||||
pt: "Coleta",
|
||||
de: "Sammeln"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre 1 carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Mumble",
|
||||
fr: "Murmure",
|
||||
es: "Farfullar",
|
||||
it: "Borbottio",
|
||||
pt: "Resmungo",
|
||||
de: "Grummeln"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user