Merge pull request #105 from alex-gh/blob_rebalance

Blob rebalance
This commit is contained in:
ZomgPonies
2014-01-03 11:18:06 -08:00
5 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -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()
+1 -1
View File
@@ -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]."
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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)
+5
View File
@@ -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)