- Spiders are slower and take more damage from cold/heat.

- Increased the announce time for infestations.
- Made the staff of animation mimics not care about staffs being dropped, they will not attack their creator ever.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5538 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
giacomand@gmail.com
2013-01-13 04:16:31 +00:00
parent 4db6928fb3
commit d9c3a3fd4c
6 changed files with 22 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
/datum/event/alien_infestation
announceWhen = 75
announceWhen = 400
oneShot = 1
var/spawncount = 1
@@ -7,7 +7,7 @@
/datum/event/alien_infestation/setup()
announceWhen = rand(140, 180)
announceWhen = rand(announceWhen, announceWhen + 50)
spawncount = rand(1, 2)
/datum/event/alien_infestation/announce()

View File

@@ -1,12 +1,12 @@
/datum/event/spider_infestation
announceWhen = 75
announceWhen = 400
oneShot = 1
var/spawncount = 1
/datum/event/spider_infestation/setup()
announceWhen = rand(140, 180)
announceWhen = rand(announceWhen, announceWhen + 50)
spawncount = rand(5, 8)
/datum/event/spider_infestation/announce()