mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
61
data/Scarlet & Violet/Stellar Crown/004.ts
Normal file
61
data/Scarlet & Violet/Stellar Crown/004.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Celebi",
|
||||
fr: "Celebi",
|
||||
es: "Celebi",
|
||||
it: "Celebi",
|
||||
pt: "Celebi",
|
||||
de: "Celebi"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
es: "Coleccionar",
|
||||
it: "Tassa",
|
||||
pt: "Coleta",
|
||||
de: "Sammeln"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre uma carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Leaf Step",
|
||||
fr: "Enjambée de Feuillage",
|
||||
es: "Paso Hoja",
|
||||
it: "Passofoglia",
|
||||
pt: "Passo de Folha",
|
||||
de: "Blattschritt"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user