1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +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 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Electropower",
fr: "Électropuissance",
es: "Electropoder",
it: "Potenziatore Elettrico",
pt: "Eletropoder",
de: "Elektrokraft"
},
illustrator: "Eske Yoshinob",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Pendant ce tour, les attaques de vos Pokémon Lightning infligent 30 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
en: "During this turn, your Lightning Pokémons attacks do 30 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
es: "Durante este turno, los ataques de tus Pokémon Lightning hacen 30 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Durante questo turno, gli attacchi dei tuoi Pokémon Lightning infliggono 30 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Durante esta rodada, os ataques dos seus Pokémon Lightning causam 30 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).",
de: "Während dieses Zuges fügen die Attacken deiner Lightning-Pokémon dem Aktiven Pokémon deines Gegners 30 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
trainerType: "Item",
}
export default card