1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32: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
2.3 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: "Life Forest ◇",
fr: "Forêt Vitale ◇",
es: "Bosque Vida ◇",
it: "Foresta della Vita ◇",
pt: "Floresta da Vida ◇",
de: "Lebenswald ◇"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Trainer",
set: Set,
trainerType: "Stadium",
effect: {
en: "Once during each players turn, that player may heal 60 damage and remove all Special Conditions from 1 of their Grass Pokémon.\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: "Une seule fois pendant le tour de chaque joueur, ce joueur peut soigner 60 dégâts et retirer tous les États Spéciaux de lun de ses Pokémon Grass.\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: "Una vez durante el turno de cada jugador, ese jugador puede curar 60 puntos de daño y eliminar todas las Condiciones Especiales de 1 de sus Pokémon Grass.\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: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può curare uno dei suoi Pokémon Grass da 60 danni e rimuovere tutte le condizioni speciali che lo influenzano.\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: "Uma vez durante a vez de jogar de cada jogador, aquele jogador pode curar 60 pontos de dano e remover todas as Condições Especiais de 1 dos próprios Pokémon Grass.\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: "Einmal während des Zuges jedes Spielers kann der Spieler bei 1 seiner Grass-Pokémon 60 Schadenspunkte heilen und alle Speziellen Zustände von jenem Pokémon entfernen.\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