mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 18:47:50 +00:00
38 lines
913 B
TypeScript
38 lines
913 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shrouded Fable"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Dangerous Laser",
|
|
fr: "Laser Dangereux",
|
|
es: "Láser Peligroso",
|
|
it: "Laser Pericoloso",
|
|
pt: "Laser Perigoso",
|
|
de: "Gefährlicher Laser"
|
|
},
|
|
|
|
rarity: "ACE SPEC Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Your opponent's Active Pokémon is now Burned and Confused.",
|
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé et Confus.",
|
|
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Quemado.",
|
|
it: "Il Pokémon attivo del tuo avversario viene bruciato e confuso.",
|
|
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Queimado.",
|
|
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt und verwirrt."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|