Ventcrawl port from Bay12/VG (#852)

Original code from /vg/, port credit goes to Zuhayr.
This commit is contained in:
Bedshaped
2016-09-10 22:36:07 +03:00
committed by skull132
parent 804851f6f6
commit 1668df7f9c
21 changed files with 350 additions and 155 deletions
+9
View File
@@ -0,0 +1,9 @@
/mob/living/proc/ventcrawl()
set name = "Crawl through Vent"
set desc = "Enter an air vent and crawl through the pipe system."
set category = "Abilities"
if(paralysis || restrained())
return
var/pipe = start_ventcrawl()
if(pipe)
handle_ventcrawl()