1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01:59 +00:00

feat: Add Twilight Masquerade (#491)

This commit is contained in:
2024-05-24 08:48:44 +02:00
committed by GitHub
parent d48971c95e
commit 8a4a93af8f
227 changed files with 13148 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
set: Set,
name: {
en: "Love Ball",
fr: "Love Ball",
es: "Amor Ball",
it: "Love Ball",
pt: "Bola Amor",
de: "Sympaball"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Search your deck for a Pokémon with the same name as 1 of your opponent's Pokémon in play, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck un Pokémon du même nom que l'un des Pokémon en jeu de votre adversaire, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 Pokémon que tenga el mismo nombre que uno de los Pokémon en juego de tu rival, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo un Pokémon con lo stesso nome di uno dei Pokémon in gioco del tuo avversario, mostralo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por um Pokémon no seu baralho que tenha o mesmo nome de 1 dos Pokémon do seu oponente em jogo, revele-o e coloque-o na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach 1 Pokémon mit demselben Namen wie 1 Pokémon deines Gegners im Spiel, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Item",
regulationMark: "H"
}
export default card