mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 13:39:16 +01:00
Extra train warnings
Decided to add some warnings to the upper part of the train if you fly one tile away that any further WILL kill you. I feel that one was less obvious.
This commit is contained in:
@@ -272,3 +272,17 @@ var/global/list/tele_landmarks = list() // Terrible, but the alternative is loop
|
||||
/obj/effect/step_trigger/death/fly_off
|
||||
deathmessage = "You get caught up in the slipstream of the train and quickly dragged down into the tracks. Your body is brutally smashed into the electrified rails and then sucked right under a carriage. No one is finding that mess, thankfully."
|
||||
deathalert = "tried to fly away from the train but was died horribly in the process."
|
||||
|
||||
//warning
|
||||
|
||||
/obj/effect/step_trigger/warning
|
||||
var/warningmessage = "Warning!"
|
||||
icon_state = "warnmarker"
|
||||
|
||||
/obj/effect/step_trigger/warning/Trigger(var/atom/movable/A)
|
||||
if(isliving(A))
|
||||
to_chat(A, "<span class='warning'>[warningmessage]</span>")
|
||||
|
||||
/obj/effect/step_trigger/warning/train_edge
|
||||
warningmessage = "The wind billowing alongside the train is extremely strong here! Any movement could easily pull you down beneath the carriages, return to the train immediately!"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user