mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
- The folders themselves are now finished - Next I'll go through each file and organize them - Lastly I'll start pulling the object definitions out of /code/defines/ and put them into their respective files. **Note to committers** Make sure the .dme file updates when you update to this revision. If necessary delete the .dme and svn-update. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4546 316c924e-a436-60f5-8080-3fe189b3f50e
29 lines
336 B
Plaintext
29 lines
336 B
Plaintext
obj/structure
|
|
icon = 'icons/obj/structures.dmi'
|
|
|
|
obj/structure/blob_act()
|
|
if(prob(50))
|
|
del(src)
|
|
|
|
obj/structure/ex_act(severity)
|
|
switch(severity)
|
|
if(1.0)
|
|
del(src)
|
|
return
|
|
if(2.0)
|
|
if(prob(50))
|
|
del(src)
|
|
return
|
|
if(3.0)
|
|
return
|
|
|
|
obj/structure/meteorhit(obj/O as obj)
|
|
del(src)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|