1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 16:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

31 lines
1.9 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Thunder Mountain ◇",
fr: "Mont Tonnerre ◇",
es: "Montaña Trueno ◇",
it: "Monte del Tuono ◇",
pt: "Montanha Trovejante ◇",
de: "Donnerberg ◇"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Trainer",
set: Set,
trainerType: "Stadium",
effect: {
en: "The attacks of Lightning Pokémon (both yours and your opponents) cost Lightning less.\n\nWhenever any player plays an Item or Supporter card from their hand, prevent all effects of that card done to this Stadium card.",
fr: "Les attaques des Pokémon Lightning (les vôtres et ceux de votre adversaire) coûtent Lightning de moins.\n\nChaque fois quun joueur joue une carte Objet ou une carte Supporter de sa main, évitez tous les effets de cette carte-là sur cette carte Stade.",
es: "Los ataques de los Pokémon Lightning (tanto tuyos como de tu rival) cuestan Lightning menos.\n\nCada vez que algún jugador juegue 1 carta de Objeto o de Partidario de su mano, evita todos los efectos de esa carta infligidos a esta carta de Estadio.",
it: "Gli attacchi dei Pokémon Lightning, sia tuoi che del tuo avversario, costano Lightning in meno.\n\nOgni volta che un giocatore gioca una delle carte Strumento o Aiuto che ha in mano, previeni tutti gli effetti di quella carta su questa carta Stadio.",
pt: "Os ataques dos Pokémon Lightning (seus e do seu oponente) custam Lightning a menos.\n\nSempre que algum jogador jogar uma carta de Item ou de Apoiador da própria mão, prevenirá todos os efeitos daquela carta causados a esta carta de Estádio.",
de: "Die Kosten der Attacken der Lightning-Pokémon (deiner und der deines Gegners) verringern sich um Lightning.\n\nVerhindere jedes Mal, wenn ein Spieler eine Item- oder Unterstützerkarte aus seiner Hand spielt, alle Effekte jener Karte, die dieser Stadionkarte zugefügt werden."
}
}
export default card