Adds New PoI Features + Bonus PoI (#5796)

* Adds cliffs.

* Finishes lava and polishes the other things.

* Hopefully finished with all the new shinies.
This commit is contained in:
Neerti
2019-01-10 17:17:43 -05:00
committed by Anewbe
parent 11ff7b1ca3
commit afa149ca2f
40 changed files with 980 additions and 125 deletions
+3 -1
View File
@@ -3,9 +3,11 @@
w_class = ITEMSIZE_NO_CONTAINER
var/climbable
var/climb_delay = 3.5 SECONDS
var/breakable
var/parts
var/list/climbers = list()
var/block_turf_edges = FALSE // If true, turf edge icons will not be made on the turf this occupies.
/obj/structure/Destroy()
if(parts)
@@ -99,7 +101,7 @@
usr.visible_message("<span class='warning'>[user] starts climbing onto \the [src]!</span>")
climbers |= user
if(!do_after(user,(issmall(user) ? 20 : 34)))
if(!do_after(user,(issmall(user) ? climb_delay * 0.6 : climb_delay)))
climbers -= user
return