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/147.ts
Normal file
54
data/Scarlet & Violet/Stellar Crown/147.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Raboot",
|
||||
fr: "Lapyro",
|
||||
es: "Raboot",
|
||||
it: "Raboot",
|
||||
pt: "Raboot",
|
||||
de: "Kickerlo"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Low Sweep",
|
||||
fr: "Balayette",
|
||||
es: "Puntapié",
|
||||
it: "Calciobasso",
|
||||
pt: "Movimento Baixo",
|
||||
de: "Fußtritt"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fire", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Combustion",
|
||||
fr: "Fournaise",
|
||||
es: "Combustión",
|
||||
it: "Fuoco Continuo",
|
||||
pt: "Combustão",
|
||||
de: "Glühen"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user