mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
41
data/Sword & Shield/Brilliant Stars/042.ts
Normal file
41
data/Sword & Shield/Brilliant Stars/042.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cubchoo",
|
||||
fr: "Polarhume",
|
||||
es: "Cubchoo",
|
||||
it: "Cubchoo",
|
||||
pt: "Cubchoo",
|
||||
de: "Petznief"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Chilly",
|
||||
fr: "Glacial",
|
||||
es: "Fresquito",
|
||||
it: "Addiaccio",
|
||||
pt: "Frio",
|
||||
de: "Frösteln"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user