1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

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

* Some more changes

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

* u

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

* continuing update

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

* Finished ?

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

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

41 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Shopping Center",
fr: "Galerie Marchande",
es: "Galería Comercial",
it: "Galleria Commerciale",
pt: "Shopping Center",
de: "Shoppingcenter"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Once during each player's turn, that player may put a Pokémon Tool attached to 1 of their Pokémon into their hand.",
fr: "Une fois pendant le tour de chaque joueur, ce joueur peut ajouter à sa main un Outil Pokémon attaché à l'un de ses Pokémon.",
es: "Una vez durante el turno de cada jugador, ese jugador puede poner 1 Herramienta Pokémon unida a 1 de sus Pokémon en su mano.",
it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può prendere una carta Oggetto Pokémon assegnata a uno dei suoi Pokémon e aggiungerla alle carte che ha in mano.",
pt: "Uma vez durante o turno de cada jogador, aquele jogador poderá colocar 1 Ferramenta Pokémon ligada a 1 dos próprios Pokémon na própria mão.",
de: "Einmal während des Zuges jedes Spielers kann jener Spieler 1 Pokémon-Ausrüstung, die an 1 seiner Pokémon angelegt ist, auf seine Hand nehmen."
},
trainerType: "Stadium",
illustrator: "Oswaldo KATO",
regulationMark: "E"
}
export default card