1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

61 lines
842 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
dexId: [688],
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