1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 13:21:58 +00:00

feat: add database update (#825)

This commit is contained in:
2025-07-19 18:58:03 +02:00
committed by GitHub
parent aa68bfccf2
commit 651346dff7
354 changed files with 21377 additions and 7 deletions

View File

@@ -0,0 +1,34 @@
import { Card } from "../../../interfaces"
import Set from "../White Flare"
const card: Card = {
set: Set,
name: {
en: "Hilda",
fr: "Ludvina",
de: "Lotta",
it: "Anita",
pt: "Hilda",
es: "Liza",
'es-mx': "Liza"
},
rarity: "Special illustration rare",
category: "Trainer",
effect: {
en: "Search your deck for an Evolution Pokémon and an Energy card, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck un Pokémon Évolutif et une carte Énergie, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
de: "Durchsuche dein Deck nach 1 Entwicklungs-Pokémon und 1 Energiekarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck.",
it: "Cerca nel tuo mazzo un Pokémon Evoluzione e una carta Energia, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por um Pokémon de Evolução e uma carta de Energia no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.",
es: "Busca en tu baraja 1 carta de Pokémon Evolución y 1 carta de Energía, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
'es-mx': "Busca en tu mazo 1 carta de Pokémon Evolución y 1 carta de Energía, muéstralas y ponlas en tu mano. Después, baraja las cartas de tu mazo."
},
trainerType: "Supporter",
regulationMark: "I"
}
export default card