mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* 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>
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
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 c’est face, le Pokémon Actif de votre adversaire est aussi Endormi.",
|
||
en: "Your opponent’s Active Pokémon is now Poisoned. Flip a coin. If heads, your opponent’s 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
|