mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
60
data/Sword & Shield/Lost Origin/106.ts
Normal file
60
data/Sword & Shield/Lost Origin/106.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Binacle",
|
||||
fr: "Opermine",
|
||||
es: "Binacle",
|
||||
it: "Binacle",
|
||||
pt: "Binacle",
|
||||
de: "Bithora"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Mud-Slap",
|
||||
fr: "Coud'Boue",
|
||||
es: "Bofetón Lodo",
|
||||
it: "Fangosberla",
|
||||
pt: "Tapa de Lama",
|
||||
de: "Lehmschelle"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche",
|
||||
es: "Cuchillada",
|
||||
it: "Lacerazione",
|
||||
pt: "Talho",
|
||||
de: "Schlitzer"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user