1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Power Plant",
fr: "Centrale dÉnergie",
es: "Central Energía",
it: "Centrale Elettrica",
pt: "Usina Elétrica",
de: "Kraftwerk"
},
illustrator: "aky CG Works",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Les Pokémon-GX et Pokémon-EX en jeu (les vôtres et ceux de votre adversaire) nont pas de talent.",
en: "Pokémon-GX and Pokémon-EX in play (both yours and your opponents) have no Abilities.",
es: "Los Pokémon-GX y Pokémon-EX en juego (tanto tuyos como de tu rival) no tienen ninguna habilidad.",
it: "Le abilità dei Pokémon-GX e dei Pokémon-EX in gioco, sia tuoi che del tuo avversario, non hanno effetto.",
pt: "Os Pokémon-GX e Pokémon-EX em jogo (seus e do seu oponente) não têm Habilidades.",
de: "Pokémon-GX und Pokémon-EX im Spiel (deine und die deines Gegners) haben keine Fähigkeiten."
},
trainerType: "Stadium",
}
export default card