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:
Alberyk
2017-10-07 07:15:34 -03:00
committed by Erki
parent 8bcdf16989
commit 01990fb1e8
9 changed files with 495 additions and 4 deletions

View File

@@ -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)