Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pulse demon summoner warns better #27137

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/game/gamemodes/wizard/spellbook.dm
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@

/datum/spellbook_entry/item/pulsedemonbottle
name = "Living Lightbulb"
desc = "A magically sealed lightbulb confining some manner of electricity based creature. Beware, these creatures are indiscriminate in their shocking antics, and you yourself may become a victim."
desc = "A magically sealed lightbulb confining some manner of electricity based creature. Beware, these creatures are indiscriminate in their shocking antics, and you yourself may become a victim. It is *heavily* advised not to summon it in maints."
item_path = /obj/item/antag_spawner/pulse_demon
category = "Summons"
limit = 3
Expand Down
4 changes: 2 additions & 2 deletions code/modules/antagonists/_common/antag_spawner.dm
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@

/obj/item/antag_spawner/pulse_demon
name = "living lightbulb"
desc = "A magically sealed lightbulb confining some manner of electricity based creature."
desc = "A magically sealed lightbulb confining some manner of electricity based creature. It is *heavily* advised not to summon it in maints."
icon = 'icons/obj/lighting.dmi'
icon_state = "lbulb"
var/shatter_msg = "<span class='notice'>You shatter the bulb, no turning back now!</span>"
Expand All @@ -412,7 +412,7 @@
return

used = TRUE
to_chat(user, "<span class='notice'>You break the seal on the bulb, waiting for the creature to spark to life...</span>")
to_chat(user, "<span class='danger'>You break the seal on the bulb, waiting for the creature to spark to life... you might wish to get to safety!</span>")

var/list/candidates = SSghost_spawns.poll_candidates("Do you want to play as a pulse demon summoned by [user.real_name]?", ROLE_DEMON, TRUE, 10 SECONDS, source = demon_type)

Expand Down