mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-06 07:22:15 +00:00
Adds the sarlaccs and some golden slime fixes (#3533)
-adds the sarlaccs from fowl's old mining pr, to be used in an event and for general adminbus/maybe in the mining mob's future pr -blacklist some mobs from spawning via the golden slime
This commit is contained in:
@@ -68,6 +68,18 @@
|
||||
L.sprint_cost_factor -= cost_added
|
||||
L.sprint_speed_factor -= speed_added
|
||||
|
||||
/datum/modifier/luminous
|
||||
var/lightrange = 0
|
||||
|
||||
/datum/modifier/luminous/activate()
|
||||
..()
|
||||
if (isliving(target))
|
||||
var/mob/living/L = target
|
||||
lightrange = strength
|
||||
L.set_light(lightrange, 1, LIGHT_COLOR_FIRE)
|
||||
|
||||
|
||||
/datum/modifier/luminous/deactivate()
|
||||
..()
|
||||
if (isliving(target))
|
||||
var/mob/living/L = target
|
||||
L.set_light(0)
|
||||
Reference in New Issue
Block a user