mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
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) n’ont pas de talent.",
|
||
en: "Pokémon-GX and Pokémon-EX in play (both yours and your opponent’s) 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
|