mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-10 06:34:45 +01:00
104 lines
4.3 KiB
Plaintext
104 lines
4.3 KiB
Plaintext
#define TS_HIGHPOP_TRIGGER 80
|
|
|
|
/datum/event/spider_terror
|
|
name = "terror spiders"
|
|
announceWhen = 240
|
|
noAutoEnd = TRUE
|
|
nominal_severity = EVENT_LEVEL_DISASTER
|
|
role_weights = list(ASSIGNMENT_SECURITY = 2, ASSIGNMENT_CREW = 0.8, ASSIGNMENT_MEDICAL = 2.5)
|
|
role_requirements = list(ASSIGNMENT_SECURITY = 3, ASSIGNMENT_CREW = 45, ASSIGNMENT_MEDICAL = 4)
|
|
var/spawncount = 1
|
|
var/successSpawn = FALSE //So we don't make a command report if nothing gets spawned.
|
|
/// Specific type of terror spawn
|
|
var/infestation_type
|
|
|
|
/datum/event/spider_terror/setup()
|
|
announceWhen = rand(announceWhen, announceWhen + 30)
|
|
spawncount = 1
|
|
|
|
/datum/event/spider_terror/announce(false_alarm)
|
|
if(successSpawn || false_alarm)
|
|
GLOB.major_announcement.Announce("Terror Spider infestation detected aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/effects/siren-spooky.ogg', new_sound2 = 'sound/AI/outbreak_terror.ogg')
|
|
else
|
|
log_and_message_admins("Warning: Could not spawn any mobs for event Terror Spiders")
|
|
|
|
/datum/event/spider_terror/start()
|
|
// It is necessary to wrap this to avoid the event triggering repeatedly.
|
|
INVOKE_ASYNC(src, PROC_REF(wrappedstart))
|
|
|
|
/// Terror spider costs are calculated independently from the event itself
|
|
/datum/event/spider_terror/event_resource_cost()
|
|
return list()
|
|
|
|
/datum/event/spider_terror/process()
|
|
// End the event once all spiders, eggs and spiderlings are gone from the station Z level.
|
|
if(!length(event_category_cost(EVENT_TERROR_SPIDERS)) && successSpawn)
|
|
kill()
|
|
. = ..()
|
|
|
|
/datum/event/spider_terror/proc/wrappedstart()
|
|
var/spider_type
|
|
if(!infestation_type)
|
|
if((length(GLOB.clients)) < TS_HIGHPOP_TRIGGER)
|
|
infestation_type = pick(TS_INFESTATION_PRINCE_SPIDER, TS_INFESTATION_WHITE_SPIDER, TS_INFESTATION_PRINCESS_SPIDER)
|
|
else
|
|
infestation_type = pick(TS_INFESTATION_PRINCE_SPIDER, TS_INFESTATION_WHITE_SPIDER, TS_INFESTATION_PRINCESS_SPIDER, TS_INFESTATION_QUEEN_SPIDER)
|
|
switch(infestation_type)
|
|
if(TS_INFESTATION_PRINCE_SPIDER)
|
|
// Fairly weak. Dangerous in single combat but has little staying power. Always gets whittled down.
|
|
spider_type = /mob/living/simple_animal/hostile/poison/terror_spider/prince
|
|
spawncount = 1
|
|
if(TS_INFESTATION_WHITE_SPIDER)
|
|
// Variable. Depends how many they infect.
|
|
spider_type = /mob/living/simple_animal/hostile/poison/terror_spider/white
|
|
spawncount = 2
|
|
if(TS_INFESTATION_PRINCESS_SPIDER)
|
|
// Pretty strong.
|
|
spider_type = /mob/living/simple_animal/hostile/poison/terror_spider/queen/princess
|
|
spawncount = 3
|
|
if(TS_INFESTATION_QUEEN_SPIDER)
|
|
// Strongest, only used during highpop.
|
|
spider_type = /mob/living/simple_animal/hostile/poison/terror_spider/queen
|
|
spawncount = 1
|
|
var/list/candidates = SSghost_spawns.poll_candidates("Do you want to play as a terror spider?", null, TRUE, source = spider_type)
|
|
if(length(candidates) < spawncount)
|
|
message_admins("Warning: not enough players volunteered to be terrors. Could only spawn [length(candidates)] out of [spawncount]!")
|
|
var/list/vents = get_valid_vent_spawns(exclude_mobs_nearby = TRUE)
|
|
if(!length(vents))
|
|
message_admins("Warning: No suitable vents detected for spawning terrors. Force picking from station vents regardless of state!")
|
|
vents = get_valid_vent_spawns(unwelded_only = FALSE, min_network_size = 0)
|
|
while(spawncount && length(vents) && length(candidates))
|
|
var/obj/vent = pick_n_take(vents)
|
|
var/mob/living/simple_animal/hostile/poison/terror_spider/S = new spider_type(vent.loc)
|
|
var/mob/M = pick_n_take(candidates)
|
|
S.key = M.key
|
|
dust_if_respawnable(M)
|
|
S.forceMove(vent)
|
|
S.add_ventcrawl(vent)
|
|
SEND_SOUND(S, sound('sound/ambience/antag/terrorspider.ogg'))
|
|
S.give_intro_text()
|
|
spawncount--
|
|
successSpawn = TRUE
|
|
if(!successSpawn)
|
|
kill()
|
|
SSticker.record_biohazard_start(infestation_type)
|
|
SSevents.biohazards_this_round += infestation_type
|
|
|
|
/datum/event/spider_terror/prince
|
|
name = "terror prince"
|
|
infestation_type = TS_INFESTATION_PRINCE_SPIDER
|
|
|
|
/datum/event/spider_terror/white
|
|
name = "white terror spiders"
|
|
infestation_type = TS_INFESTATION_WHITE_SPIDER
|
|
|
|
/datum/event/spider_terror/princess
|
|
name = "princess terror spiders"
|
|
infestation_type = TS_INFESTATION_PRINCESS_SPIDER
|
|
|
|
/datum/event/spider_terror/queen
|
|
name = "queen of terror spiders"
|
|
infestation_type = TS_INFESTATION_QUEEN_SPIDER
|
|
|
|
#undef TS_HIGHPOP_TRIGGER
|