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

42 lines
1.3 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: "Hypnotoxic Laser",
fr: "Laser Hypnotoxique",
es: "Láser Hipnotóxico",
it: "Raggio Ipnotossico",
pt: "Laser Hipnotóxico",
de: "Hypnotoxinlaser"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est aussi Endormi.",
en: "Your opponents Active Pokémon is now Poisoned. Flip a coin. If heads, your opponents Active Pokémon is also Asleep.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Lanza una moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Dormido también.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene anche addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente também ficará Adormecido.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Wirf 1 Münze. Bei „Kopf“ schläft das Aktive Pokémon jetzt auch noch."
},
trainerType: "Item",
}
export default card