mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Phantom Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Steel Shelter",
|
|
fr: "Bunker d'Acier",
|
|
es: "Refugio de Acero",
|
|
it: "Rifugio Acciaio",
|
|
pt: "Abrigo de Aço",
|
|
de: "Stahlbunker"
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Chaque Pokémon Metal (les vôtres et ceux de votre adversaire) ne peut être affecté par aucun État Spécial. (Retirez tous les États Spéciaux affectant les Pokémon concernés.)",
|
|
en: "Each Metal Pokémon (both yours and your opponent's) can't be affected by any Special Conditions. (Remove any Special Conditions affecting those Pokémon.)",
|
|
es: "Los Pokémon Metal (tanto tuyos como de tu rival) no se pueden ver afectados por ninguna Condición Especial. (Elimina cualquier Condición Especial que afecte a esos Pokémon).",
|
|
it: "Nessun Pokémon Metal, sia tuo che del tuo avversario, può essere influenzato da condizioni speciali (rimuovi tutte le condizioni speciali che influenzano tale Pokémon).",
|
|
pt: "Nenhum Pokémon Metal (seus e do seu oponente) poderá ser afetado por Condições Especiais. (Remova todas as Condições Especiais que afetam esses Pokémon.)",
|
|
de: "Kein Metal-Pokémon (deine und die deines Gegners) kann von Speziellen Zuständen betroffen werden. (Alle Speziellen Zustände auf diesen Pokémon verlieren ihre Wirkung.)"
|
|
},
|
|
trainerType: "Stadium",
|
|
|
|
}
|
|
|
|
export default card
|