mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 20:36:15 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
38 lines
1.8 KiB
TypeScript
38 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Amulet of Hope",
|
|
fr: "Amulette de l'Espoir",
|
|
es: "Amuleto Esperanza",
|
|
it: "Amuleto della Speranza",
|
|
pt: "Amuleto da Esperança",
|
|
de: "Amulett der Hoffnung"
|
|
},
|
|
|
|
rarity: "ACE SPEC Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "If the Pokémon this card is attached to is Knocked Out by damage from an attack from your opponent's Pokémon, search your deck for up to 3 cards and put them into your hand. Then, shuffle your deck.",
|
|
fr: "Si le Pokémon auquel cette carte est attachée est mis K.O. par les dégâts d'une attaque de l'un des Pokémon de votre adversaire, cherchez dans votre deck jusqu'à 3 cartes, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
|
es: "Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, busca en tu baraja hasta 3 cartas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Se il Pokémon a cui è assegnata questa carta viene messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario, cerca nel tuo mazzo fino a tre carte e aggiungile a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Se o Pokémon ao qual esta carta está ligada for Nocauteado pelo dano de um ataque dos Pokémon do seu oponente, procure por até 3 cartas no seu baralho e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch Schaden einer Attacke von Pokémon deines Gegners kampfunfähig wird, durchsuche dein Deck nach bis zu 3 Karten und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
|
},
|
|
|
|
trainerType: "Tool",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|