1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

88 lines
2.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 '../Plasma Storm'
const card: Card = {
name: {
en: "Lugia-EX",
fr: "Lugia-EX",
es: "Lugia-EX",
it: "Lugia-EX",
pt: "Lugia-EX",
de: "Lugia-EX"
},
illustrator: "Toyste Beach",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
249,
],
hp: 180,
types: [
"Colorless",
],
suffix: "EX",
abilities: [
{
type: "Ability",
name: {
en: "Overflow",
fr: "Débordement",
es: "Superávit",
it: "Eccedenza",
pt: "Transbordo",
de: "Extrapreis"
},
effect: {
en: "If your opponents Pokémon is Knocked Out by damage from an attack of this Pokémon, take 1 more Prize card.",
fr: "Si le Pokémon de votre adversaire est mis K.O. par les dégâts dune attaque de ce Pokémon, récupérez 1 carte Récompense supplémentaire.",
es: "Si el Pokémon de tu rival queda Fuera de Combate por el daño de un ataque de este Pokémon, coge 1 carta de Premio más.",
it: "Se un Pokémon del tuo avversario viene messo K.O. dal danno di un attacco di questo Pokémon, prendi una carta Premio in più.",
pt: "Se o Pokémon do seu oponente for Nocauteado por danos causados pelo ataque deste Pokémon, pegue mais 1 card de Prêmio.",
de: "Wenn das Pokémon deines Gegners durch Schaden eines Angriffs dieses Pokémon kampfunfähig wird, nimm 1 zusätzliche Preiskarte."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Plasma Gale",
fr: "Bourrasque Plasma",
},
effect: {
en: "Discard a Plasma Energy attached to this Pokémon. If you can't discard a Plasma Energy, this attack does nothing.",
fr: "Défaussez une Énergie Plasma attachée à ce Pokémon. Si vous ne pouvez pas défausser une Énergie Plasma, cette attaque ne fait rien.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card