1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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.1 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Mount Lanakila",
fr: "Mont Lanakila",
es: "Monte Lanakila",
it: "Monte Lanakila",
pt: "Monte Lanakila",
de: "Mount Lanakila"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Le Coût de Retraite de chaque Pokémon de base en jeu (les vôtres et ceux de votre adversaire) est augmenté de Colorless.",
en: "The Retreat Cost of each Basic Pokémon in play (both yours and your opponents) is Colorless more.",
es: "El Coste de Retirada de cada Pokémon Básico en juego (tanto tuyos como de tu rival) es de Colorless más.",
it: "Il costo di ritirata di ciascun Pokémon Base in gioco, sia tuoi che del tuo avversario, aumenta di Colorless.",
pt: "O custo de Recuo de cada Pokémon Básico em jogo (seus e do seu oponente) será Colorless a mais.",
de: "Die Rückzugskosten jedes Basis-Pokémon im Spiel (deiner und der deines Gegners) erhöhen sich um Colorless."
},
trainerType: "Stadium",
}
export default card