mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
50
data/Sword & Shield/Brilliant Stars/024.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/024.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Chimchar",
|
||||
fr: "Ouisticram",
|
||||
es: "Chimchar",
|
||||
it: "Chimchar",
|
||||
pt: "Chimchar",
|
||||
de: "Panflam"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Ember",
|
||||
fr: "Flammèche",
|
||||
es: "Ascuas",
|
||||
it: "Braciere",
|
||||
pt: "Brasa",
|
||||
de: "Glut"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
it: "Scarta un'Energia da questo Pokémon.",
|
||||
pt: "Descarte 1 Energia deste Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user