1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

feat: Add Astral Radiance (#305)

This commit is contained in:
2022-05-27 01:49:58 +02:00
committed by GitHub
parent a006f77bf4
commit 91865f7f02
247 changed files with 16466 additions and 0 deletions

View File

@ -0,0 +1,39 @@
import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
set: Set,
name: {
en: "Spicy Seasoned Curry",
fr: "Curry Épicé aux Piments",
es: "Curri Picante Especiado",
it: "Curry piccante alle spezie",
pt: "Curry Temperado e Apimentado",
de: "Scharfes Gewürzcurry"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Your Active Pokémon is now Burned. Heal 40 damage from it.",
fr: "Votre Pokémon Actif est maintenant Brûlé. Soignez 40 dégâts de ce Pokémon.",
es: "Tu Pokémon Activo pasa a estar Quemado. Cúrale 40 puntos de daño.",
it: "Il tuo Pokémon attivo viene bruciato. Curalo da 40 danni.",
pt: "O seu Pokémon Ativo agora está Queimado. Cure 40 pontos de dano dele.",
de: "Dein Aktives Pokémon ist jetzt verbrannt. Heile 40 Schadenspunkte bei jenem Pokémon."
},
trainerType: "Item",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card