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:
47
data/Sword & Shield/Lost Origin/086.ts
Normal file
47
data/Sword & Shield/Lost Origin/086.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Machop",
|
||||
fr: "Machoc",
|
||||
es: "Machop",
|
||||
it: "Machop",
|
||||
pt: "Machop",
|
||||
de: "Machollo"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Punch",
|
||||
fr: "Koud'Poing",
|
||||
es: "Puño",
|
||||
it: "Pugno",
|
||||
pt: "Soco",
|
||||
de: "Boxhieb"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user