mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
37 lines
1.9 KiB
TypeScript
37 lines
1.9 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paradox Rift"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Larry",
|
|
fr: "Okuba",
|
|
es: "Laureano",
|
|
it: "Ubaldo",
|
|
pt: "Lauro",
|
|
de: "Aoki"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, search your deck for up to 2 Pokémon, reveal them, and put them into your hand. If tails, search your deck for a Basic Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
|
fr: "Lancez une pièce. Si c'est face, cherchez dans votre deck jusqu'à 2 Pokémon, montrez-les, puis ajoutez-les à votre main. Si c'est pile, cherchez dans votre deck un Pokémon de base, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
|
es: "Lanza 1 moneda. Si sale cara, busca en tu baraja hasta 2 Pokémon, enséñalos y ponlos en tu mano. Si sale cruz, busca en tu baraja 1 Pokémon Básico, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Lancia una moneta. Se esce testa, cerca nel tuo mazzo fino a due Pokémon, mostrali e aggiungili alle carte che hai in mano. Se esce croce, cerca nel tuo mazzo un Pokémon Base, mostralo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Jogue uma moeda. Se sair cara, procure por até 2 Pokémon no seu baralho, revele-os e coloque-os na sua mão. Se sair coroa, procure por um Pokémon Básico no seu baralho, revele-o e coloque-o na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Wirf 1 Münze. Durchsuche bei Kopf dein Deck nach bis zu 2 Pokémon, zeige sie deinem Gegner und nimm sie auf deine Hand. Durchsuche bei Zahl dein Deck nach 1 Basis-Pokémon, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card |