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: "Plumeria",
fr: "Apocyne",
es: "Francine",
it: "Plumeria",
pt: "Pluméria",
de: "Fran"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Défaussez 2 cartes de votre main. Dans ce cas, défaussez une Énergie de lun des Pokémon de votre adversaire.",
en: "Discard 2 cards from your hand. If you do, discard an Energy from 1 of your opponents Pokémon.",
es: "Descarta 2 cartas de tu mano. Si lo haces, descarta 1 Energía de 1 de los Pokémon de tu rival.",
it: "Scarta due delle carte che hai in mano. Se lo fai, scarta unEnergia assegnata a uno dei Pokémon del tuo avversario.",
pt: "Descarte 2 cartas da sua mão. Se fizer isto, descarte 1 Energia de 1 dos Pokémon do seu oponente.",
de: "Lege 2 Karten aus deiner Hand auf deinen Ablagestapel. Wenn du das machst, lege 1 Energie von 1 Pokémon deines Gegners auf seinen Ablagestapel."
},
trainerType: "Supporter",
}
export default card