1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 00:29:55 +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.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 '../SM Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Champions Festival",
fr: "Festival des Champions",
es: "Festival de Campeones",
it: "Festa dei Campioni",
pt: "Festival dos Campeões",
de: "Festival der Champions"
},
rarity: "Rare",
category: "Trainer",
effect: {
en: "Once during each players turn, if that player has 6 Pokémon in play, he or she may heal 10 damage from each of his or her Pokémon.",
fr: "Une seule fois pendant le tour de chaque joueur, si ce joueur a 6 Pokémon en jeu, il peut soigner 10 dégâts à chacun de ses Pokémon.",
es: "Una vez durante el turno de cada jugador, si ese jugador tiene a 6 Pokémon en juego, puede curar 10 puntos de daño a cada uno de sus Pokémon.",
it: "Una sola volta durante il turno di ciascun giocatore, se quel giocatore ha sei Pokémon in gioco, può curare 10 danni da ciascuno dei suoi Pokémon.",
pt: "Uma vez durante a vez de jogar de cada jogador, se esse jogador possuir 6 Pokémon em jogo, ele ou ela poderá curar 10 de danos de cada um de seus próprios Pokémon.",
de: "Einmal während seines Zuges darf jeder Spieler, falls er 6 Pokémon im Spiel hat, 10 Schadenspunkte bei jedem seiner Pokémon heilen."
},
trainerType: "Stadium"
}
export default card