Remove Bear Attack (#3611)

No one seems to like it.
Associated Thread: https://forums.aurorastation.org/viewtopic.php?f=18&t=8579
This commit is contained in:
Lohikar
2017-10-14 15:59:45 -05:00
committed by Erki
parent 28c9403ae2
commit ec6d6be46f
5 changed files with 4 additions and 36 deletions

View File

@@ -1,34 +0,0 @@
/datum/event/bear_attack
startWhen = 2
announceWhen = 20
var/list/possible_turfs = list()
var/spawn_type
var/spawn_number
ic_name = "a dangerous bioweapon"
/datum/event/bear_attack/setup()
for(var/areapath in typesof(/area/maintenance))
var/area/A = locate(areapath)
for(var/turf/simulated/floor/F in A.contents)
if(turf_clear(F))
possible_turfs |= F
if (severity <= EVENT_LEVEL_MODERATE)//Moderate spacebear event disabled by head developer veto
spawn_type = /mob/living/simple_animal/hostile/bear
spawn_number = rand(8,16)
else
spawn_type = /mob/living/simple_animal/hostile/bear/spatial
spawn_number = rand(4,6)
/datum/event/bear_attack/start()
var/i
for (i = 0,i < spawn_number, i++)
new spawn_type(pick(possible_turfs))
/datum/event/bear_attack/announce()
if (severity <= EVENT_LEVEL_MODERATE)
command_announcement.Announce("Unidentified lifesigns detected coming aboard [station_name()]. Secure any exterior access, including ducting and ventilation.", "Lifesign Alert", new_sound = 'sound/AI/aliens.ogg')
else
command_announcement.Announce("Highly dangerous bioweapons have escaped from a nearby research facility and boarded [station_name()]. Station security is advised to be on high alert.", "Lifesign Alert", new_sound = 'sound/AI/bears.ogg')

View File

@@ -176,7 +176,6 @@ var/global/list/severity_to_string = list(EVENT_LEVEL_MUNDANE = "Mundane", EVENT
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 40, list(ASSIGNMENT_ENGINEER = 10),1),
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 75, list(ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_GARDENER = 20), 1),
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Viral Infection", /datum/event/viral_infection, 20, list(ASSIGNMENT_MEDICAL = 15), 1),
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Bluespace Bears", /datum/event/bear_attack, 25, list(ASSIGNMENT_SECURITY = 10), 1),
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Spider Infestation",/datum/event/spider_infestation, 25, list(ASSIGNMENT_SECURITY = 10, ASSIGNMENT_MEDICAL = 5), 1)
)