1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00
Florian Bouillon a550cf079c
feat: Add Journey Together (#701)
* feat: Add static data for Journey Together

Signed-off-by: Avior <git@avior.me>

* feat: finish naming

Signed-off-by: Avior <git@avior.me>

* should be done

Signed-off-by: Avior <git@avior.me>

* Update index.ts

---------

Signed-off-by: Avior <git@avior.me>
2025-03-29 12:44:17 +01:00

34 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Hop's Bag",
fr: "Sac de Nabil",
es: "Bolsa de Paul",
de: "Hops Tasche",
it: "Borsa di Hop",
pt: "Bolsa do Lupo",
'es-mx': "Bolsa de Paul"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Search your deck for up to 2 Basic Hop's Pokémon and put them onto your Bench. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de Nabil de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 Pokémon de Paul Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Hops-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck.",
it: "Cerca nel tuo mazzo fino a due Pokémon di Hop Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 Pokémon do Lupo Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
'es-mx': "Busca en tu mazo hasta 2 Pokémon de Paul Básicos y ponlos en tu Banca. Después, baraja las cartas de tu mazo."
},
trainerType: "Item",
regulationMark: "I"
}
export default card