mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
54
data/Scarlet & Violet/Stellar Crown/087.ts
Normal file
54
data/Scarlet & Violet/Stellar Crown/087.ts
Normal file
@ -0,0 +1,54 @@
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user