1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06: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

42 lines
1.0 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 '../Unified Minds'
const card: Card = {
name: {
en: "Dark City",
fr: "Sombreville",
es: "Ciudad Oscura",
it: "Città Oscura",
pt: "Cidade Escura",
de: "Dunkelstadt"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Les Pokémon Darkness de base en jeu (les vôtres et ceux de votre adversaire) nont pas de Coût de Retraite.",
en: "Basic Darkness Pokémon in play (both yours and your opponents) have no Retreat Cost.",
es: "Los Pokémon Darkness Básicos en juego (tanto tuyos como de tu rival) no tienen ningún Coste de Retirada.",
it: "I Pokémon Base Darkness in gioco, sia tuoi che del tuo avversario, non hanno costo di ritirata.",
pt: "Pokémon Darkness Básicos em jogo (seus e do seu oponente) não têm custo de Recuo.",
de: "Darkness-Basis-Pokémon im Spiel (deine und die deines Gegners) haben keine Rückzugskosten."
},
trainerType: "Stadium",
}
export default card