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.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Sea of Nothingness",
fr: "Océan du Néant",
es: "Mar de la Nada",
it: "Mare Vacuo",
pt: "Mar Vazio",
de: "See des Nichts"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Les États Spéciaux ne sont pas retirés lorsque les Pokémon (les vôtres et ceux de votre adversaire) évoluent ou dés-évoluent.",
en: "Special Conditions are not removed when Pokémon (both yours and your opponents) evolve or devolve.",
es: "No se eliminan las Condiciones Especiales cuando evolucionan o involucionan Pokémon (tanto tuyos como de tu rival).",
it: "Le condizioni speciali non vengono rimosse quando i Pokémon, sia tuoi che del tuo avversario, si evolvono o se ne annulla levoluzione.",
pt: "As Condições Especiais não são removidas quando os Pokémon (seus e do seu oponente) evoluem ou revertem sua evolução.",
de: "Spezielle Zustände verlieren ihre Wirkung nicht, wenn Pokémon (deine und die deines Gegners) sich entwickeln oder rückentwicklen."
},
trainerType: "Stadium",
}
export default card