Files
CHOMPStation2/code/game/gamemodes/blob/blobs/factory.dm
mport2004@gmail.com 88c867ea25 Fixed a supply shuttle runtime due to the stamping missing a null check.
Added a null check to cleanbots and new player preferences.
Did a bit of blob and antimatter work.


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3919 316c924e-a436-60f5-8080-3fe189b3f50e
2012-06-26 01:20:19 +00:00

24 lines
432 B
Plaintext

/obj/effect/blob/factory
name = "porous blob"
icon = 'blob.dmi'
icon_state = "blob_factory"
health = 100
brute_resist = 1
fire_resist = 2
var/list/spores = list()
var/max_spores = 4
update_icon()
if(health <= 0)
playsound(src.loc, 'splat.ogg', 50, 1)
del(src)
return
return
run_action()
if(spores.len >= max_spores) return 0
new/obj/effect/critter/blob(src.loc, src)
return 1