mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
33 lines
490 B
TypeScript
33 lines
490 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Plasma Storm'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Hypnotoxic Laser",
|
|
fr: "Laser Hypnotoxique",
|
|
},
|
|
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.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|