mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
41
data/Sword & Shield/Brilliant Stars/107.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/107.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gible",
|
||||
fr: "Griknot",
|
||||
es: "Gible",
|
||||
it: "Gible",
|
||||
pt: "Gible",
|
||||
de: "Kaumalat"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Dragon"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Gnaw",
|
||||
fr: "Ronge",
|
||||
es: "Roer",
|
||||
it: "Rosicchiamento",
|
||||
pt: "Roída",
|
||||
de: "Nagen"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user