1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

42 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Mt. Coronet",
fr: "Mont Couronné",
es: "Monte Corona",
it: "Monte Corona",
pt: "Monte Coronete",
de: "Kraterberg"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Une seule fois pendant le tour de chaque joueur, ce joueur peut placer 2 cartes Énergie Metal de sa pile de défausse dans sa main.",
en: "Once during each players turn, that player may put 2 Metal Energy cards from their discard pile into their hand.",
es: "Una vez durante el turno de cada jugador, ese jugador puede poner 2 cartas de Energía Metal de su pila de descartes en su mano.",
it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può prendere due carte Energia Metal dalla propria pila degli scarti e aggiungerle alle carte che ha in mano.",
pt: "Uma vez durante a vez de jogar de cada jogador, aquele jogador pode colocar 2 cartas de Energia Metal da própria pilha de descarte na própria mão.",
de: "Einmal während des Zuges jedes Spielers kann der Spieler 2 Metal-Energiekarten aus seinem Ablagestapel auf seine Hand nehmen."
},
trainerType: "Stadium",
}
export default card