1
0
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:
2024-10-09 23:30:26 +02:00
committed by GitHub
parent bbd5d28dc6
commit 4f2c27937a
176 changed files with 9614 additions and 0 deletions

View File

@ -0,0 +1,41 @@
import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Reshiram",
fr: "Reshiram",
es: "Reshiram",
it: "Reshiram",
pt: "Reshiram",
de: "Reshiram"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire", "Colorless", "Colorless"],
name: {
en: "Heat Blast",
fr: "Explosion de Chaleur",
es: "Explosión de Calor",
it: "Caldobomba",
pt: "Raio de Calor",
de: "Hitzestoß"
},
damage: 90
}],
retreat: 2,
regulationMark: "H"
}
export default card