1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Camping Gear",
fr: "Kit de Camping",
es: "Kit de Acampada",
it: "Kit da campeggio",
pt: "Equipamento de Camping",
de: "Camping-Set"
},
illustrator: "sadaji",
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Search your deck for a card and put it into your hand. Then, shuffle your deck. Your turn ends.",
fr: "Cherchez dans votre deck une carte, puis ajoutez-la à votre main. Mélangez ensuite votre deck. Votre tour se termine.",
es: "Busca en tu baraja 1 carta y ponla en tu mano. Después, baraja las cartas de tu baraja. Tu turno termina.",
it: "Cerca nel tuo mazzo una carta e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo. Il tuo turno finisce.",
pt: "Procure por 1 carta no seu baralho e coloque-a na sua mão. Em seguida, embaralhe o seu baralho. O seu turno acaba.",
de: "Durchsuche dein Deck nach 1 Karte und nimm sie auf deine Hand. Mische anschließend dein Deck. Dein Zug endet."
},
trainerType: "Item",
regulationMark: "E"
}
export default card