1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

59 lines
852 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Crabrawler",
fr: "Crabagarre",
es: "Crabrawler",
it: "Crabrawler",
pt: "Crabrawler",
de: "Krabbox"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Vise Grip",
fr: "Force Poigne",
es: "Agarre",
it: "Presa",
pt: "Agarramento Compressor",
de: "Klammer"
},
damage: 20
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Crabhammer",
fr: "Pince-Masse",
es: "Martillazo",
it: "Martellata",
pt: "Martelo Caranguejo",
de: "Krabbhammer"
},
damage: 50
}],
retreat: 3,
regulationMark: "H",
variants: {
holo: false
}
}
export default card