1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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.5 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 '../Team Up'
const card: Card = {
name: {
en: "Nita",
fr: "Nix",
es: "Nocta",
it: "Notturna",
pt: "Anita",
de: "Nuit"
},
illustrator: "Kagemaru Himeno",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Vous ne pouvez jouer cette carte que si le Pokémon Actif de votre adversaire est un Pokémon de base.\n\nPlacez une Énergie du Pokémon Actif de votre adversaire sur le dessus de son deck.",
en: "You can play this card only if your opponents Active Pokémon is a Basic Pokémon.\n\nPut an Energy from your opponents Active Pokémon on top of their deck.",
es: "Puedes jugar esta carta solo si el Pokémon Activo de tu rival es un Pokémon Básico.\n\nPon 1 Energía del Pokémon Activo de tu rival en la parte superior de su baraja.",
it: "Puoi giocare questa carta solo se il Pokémon attivo del tuo avversario è un Pokémon Base.\n\nPrendi unEnergia dal Pokémon attivo del tuo avversario e mettila in cima al suo mazzo.",
pt: "Você só pode jogar esta carta se o Pokémon Ativo do seu oponente for um Pokémon Básico.\n\nColoque 1 Energia do Pokémon Ativo do seu oponente como a primeira carta do baralho dele(a).",
de: "Du kannst diese Karte nur spielen, wenn das Aktive Pokémon deines Gegners ein Basis-Pokémon ist.\n\nLege 1 Energie vom Aktiven Pokémon deines Gegners oben auf sein Deck."
},
trainerType: "Supporter",
}
export default card