mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
70
data/Sword & Shield/Lost Origin/087.ts
Normal file
70
data/Sword & Shield/Lost Origin/087.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Machoke",
|
||||
fr: "Machopeur",
|
||||
es: "Machoke",
|
||||
it: "Machoke",
|
||||
pt: "Machoke",
|
||||
de: "Maschock"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Machop",
|
||||
fr: "Machoc",
|
||||
es: "Machop",
|
||||
it: "Machop",
|
||||
pt: "Machop",
|
||||
de: "Machollo"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Strength",
|
||||
fr: "Force",
|
||||
es: "Fuerza",
|
||||
it: "Forza",
|
||||
pt: "Força",
|
||||
de: "Stärke"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Seismic Toss",
|
||||
fr: "Frappe Atlas",
|
||||
es: "Sísmico",
|
||||
it: "Movimento Sismico",
|
||||
pt: "Arremesso Sísmico",
|
||||
de: "Geowurf"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user