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.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 '../Celestial Storm'
const card: Card = {
name: {
en: "The Masked Royal",
fr: "Royal Mask",
es: "Royale, el Enmascarado",
it: "Mister Royale",
pt: "Real Mascarado",
de: "Mask Royale"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Attachez une carte Énergie de base de votre main à lun de vos Pokémon Grass, Fire ou Water de Niveau 2.",
en: "Attach a basic Energy card from your hand to one of your Stage 2 Grass, Fire, or Water Pokémon.",
es: "Une 1 carta de Energía Básica de tu mano a 1 de tus Pokémon Grass, Fire o Water de Fase 2.",
it: "Assegna a uno dei tuoi Pokémon Grass, Fire o Water di Fase 2 una carta Energia base dalla tua mano.",
pt: "Ligue 1 carta de Energia básica da sua mão a 1 dos seus Pokémon Grass, Fire, ou Water Estágio 2.",
de: "Lege 1 Basis-Energiekarte aus deiner Hand an 1 deiner Grass-, Fire- oder Water-Phase-2-Pokémon an."
},
trainerType: "Supporter",
}
export default card