mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
Removes ERT from standard gameplay. The Horizon now sends distress beacons for other Overmap vessels instead. Barricades and crew armoury buff. (#14371)
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
var/deflating = FALSE
|
||||
var/undeploy_path = null
|
||||
var/torn_path = null
|
||||
var/health = 50.0
|
||||
var/health = 15
|
||||
|
||||
/obj/structure/inflatable/wall
|
||||
name = "inflatable wall"
|
||||
@@ -60,6 +60,10 @@
|
||||
return ..()
|
||||
|
||||
/obj/structure/inflatable/CanPass(atom/movable/mover, turf/target, height=0, air_group=0)
|
||||
if(isprojectile(mover))
|
||||
visible_message(SPAN_DANGER("\The [src] rapidly deflates!"))
|
||||
deflate(TRUE)
|
||||
return TRUE
|
||||
return FALSE
|
||||
|
||||
/obj/structure/inflatable/bullet_act(var/obj/item/projectile/Proj)
|
||||
@@ -67,6 +71,8 @@
|
||||
if(!proj_damage)
|
||||
return
|
||||
|
||||
bullet_ping(Proj)
|
||||
|
||||
health -= proj_damage
|
||||
..()
|
||||
if(health <= 0)
|
||||
@@ -199,6 +205,10 @@
|
||||
return state
|
||||
if(istype(mover, /obj/effect/beam))
|
||||
return !opacity
|
||||
if(isprojectile(mover))
|
||||
visible_message(SPAN_DANGER("\The [src] rapidly deflates!"))
|
||||
deflate(TRUE)
|
||||
return TRUE
|
||||
return !density
|
||||
|
||||
/obj/structure/inflatable/door/proc/TryToSwitchState(mob/user)
|
||||
|
||||
Reference in New Issue
Block a user