mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-30 07:27:57 +01:00
@@ -24,7 +24,7 @@ var/list/blob_nodes = list()
|
||||
var/blob_point_rate = 3
|
||||
|
||||
var/blobwincount = 700
|
||||
var/stage_2_threshold = 0.75
|
||||
var/stage_2_threshold = 0.66
|
||||
|
||||
var/list/infected_crew = list()
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
intercepttext += "2. Detonate the Nuke located in the Station's Vault.<BR>"
|
||||
intercepttext += "Nuclear Authentication Code: [nukecode] <BR>"
|
||||
intercepttext += "Message ends."
|
||||
|
||||
spawn(10) world << sound('sound/effects/siren.ogg')
|
||||
for (var/mob/living/silicon/ai/aiPlayer in player_list)
|
||||
if (aiPlayer.client)
|
||||
var/law = "The station is under quarantine, prevent biological entities from leaving the station at all costs while minimizing collateral damage. The nuclear failsafe must be activated at any cost, the code is: [nukecode]."
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
return 0
|
||||
if(spore_delay > world.time)
|
||||
return 0
|
||||
spore_delay = world.time + 100 // 10 seconds
|
||||
spore_delay = world.time + 300 // 30 seconds
|
||||
new/mob/living/simple_animal/hostile/blobspore(src.loc, src)
|
||||
return 1
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
if(resource_delay > world.time)
|
||||
return 0
|
||||
|
||||
resource_delay = world.time + 60 // 6 seconds
|
||||
resource_delay = world.time + 120 // 12 seconds
|
||||
|
||||
if(overmind)
|
||||
overmind.add_points(1)
|
||||
|
||||
@@ -239,6 +239,11 @@
|
||||
src << "There is no blob adjacent to you."
|
||||
return
|
||||
|
||||
var/mob/M = locate() in T
|
||||
if(M && !(M.stat))
|
||||
src << "You can't expand to a tile containing a living entity."
|
||||
return
|
||||
|
||||
if(!can_buy(5))
|
||||
return
|
||||
OB.expand(T, 0)
|
||||
|
||||
Reference in New Issue
Block a user