1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] c10020a9a9
editor: change Twilight Masquerade variants (#516)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:16:16 +02:00

36 lines
1.5 KiB
TypeScript

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",
variants: {
holo: false
}
}
export default card