1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

39 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Stormy Mountains",
fr: "Montagnes Orageuses",
es: "Montañas Tormentosas",
it: "Montagne Tempestose",
pt: "Stormy Mountains",
de: "Sturmgebirge"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Once during each players turn, that player may search their deck for a Basic Lightning Pokémon or Basic Dragon Pokémon and put it onto their Bench. Then, that player shuffles their deck.",
fr: "Une fois pendant le tour de chaque joueur, ce joueur peut chercher dans son deck un Pokémon Lightning de base ou un Pokémon Dragon de base, puis le placer sur son Banc. Ce joueur mélange ensuite son deck.",
es: "Una vez durante el turno de cada jugador, ese jugador puede buscar en su baraja 1 Pokémon Lightning Básico o 1 Pokémon Dragon Básico y ponerlo en su Banca. Después, ese jugador baraja las cartas de su baraja.",
it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può cercare nel suo mazzo un Pokémon Base Lightning o Dragon e metterlo nella sua panchina. Poi quel giocatore rimischia le carte del suo mazzo.",
pt: "Once during each players turn, that player may search their deck for a Basic Lightning Pokémon or Basic Dragon Pokémon and put it onto their Bench. Then, that player shuffles their deck.",
de: "Einmal während des Zuges jedes Spielers kann jener Spieler sein Deck nach 1 Basis-Lightning-Pokémon oder Basis-Dragon-Pokémon durchsuchen und es auf seine Bank legen. Anschließend mischt jener Spieler sein Deck."
},
trainerType: "Stadium",
illustrator: "Toyste Beach"
}
export default card