mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
54
data/Scarlet & Violet/Obsidian Flames/114.ts
Normal file
54
data/Scarlet & Violet/Obsidian Flames/114.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Crabagarre",
|
||||
en: "Crabrawler",
|
||||
es: "Crabrawler",
|
||||
it: "Crabrawler",
|
||||
pt: "Crabrawler",
|
||||
de: "Krabbox"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Coud'Phalange",
|
||||
en: "Knuckle Punch",
|
||||
es: "Puño con Nudillos",
|
||||
it: "Noccapugno",
|
||||
pt: "Soco com Punho",
|
||||
de: "Knöchelhieb"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Poing Magnum",
|
||||
en: "Magnum Punch",
|
||||
es: "Puño Mágnum",
|
||||
it: "Superpugno",
|
||||
pt: "Soco Magnum",
|
||||
de: "Magnum-Schlag"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user