1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

42 lines
1.1 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 '../Plasma Storm'
const card: Card = {
name: {
en: "Plasma Frigate",
fr: "Frégate Plasma",
es: "Fragata Plasma",
it: "Fregata Plasma",
pt: "Fragata de Plasma",
de: "Plasma-Fregatte"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Chacun des Pokémon auquel de lÉnergie Plasma est attachée (les vôtres et ceux de votre adversaire) na pas de Faiblesse.",
en: "Each Pokémon that has any Plasma Energy attached to it (both yours and your opponents) has no Weakness.",
es: "Los Pokémon que tengan alguna Energía Plasma unida a ellos (tanto tuyos como de tu rival) no tendrán ninguna Debilidad.",
it: "I Pokémon che hanno delle Energie Plasma assegnate, sia tuoi che del tuo avversario, non hanno debolezza.",
pt: "Qualquer Pokémon que possuir alguma Energia de Plasma ligada a ele (seu e do seu oponente) não terá Fraquezas.",
de: "Jedes Pokémon (deine und die deines Gegners), an dem Plasma-Energie angelegt ist, hat keine Schwäche."
},
trainerType: "Stadium",
}
export default card