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:
50
data/Scarlet & Violet/Stellar Crown/026.ts
Normal file
50
data/Scarlet & Violet/Stellar Crown/026.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scorbunny",
|
||||
fr: "Flambino",
|
||||
es: "Scorbunny",
|
||||
it: "Scorbunny",
|
||||
pt: "Scorbunny",
|
||||
de: "Hopplo"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-Attaque",
|
||||
es: "Ataque Rápido",
|
||||
it: "Attacco Rapido",
|
||||
pt: "Ataque Rápido",
|
||||
de: "Ruckzuckhieb"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.",
|
||||
es: "Lanza 1 moneda. Si sale cara, este ataque hace 10 puntos de daño más.",
|
||||
it: "Lancia una moneta. Se esce testa, questo attacco infligge 10 danni in più.",
|
||||
pt: "Jogue uma moeda. Se sair cara, este ataque causará 10 pontos de dano a mais.",
|
||||
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 10 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "10+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user