diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm index bd448f493bd1..fc3870497e57 100644 --- a/code/game/turfs/walls/wall_types.dm +++ b/code/game/turfs/walls/wall_types.dm @@ -1149,6 +1149,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) icon_state = "thickmembrane" wall_type = "thickmembrane" +/* /obj/structure/alien/movable_wall/reflective name = "shifting resin reflective wall" desc = "Weird hardened slime solidified into a fine, smooth wall." @@ -1204,7 +1205,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) /obj/structure/alien/movable_wall/reflective/ex_act(severity, explosion_direction, source, mob/source_mob) return ..(severity * explosive_multiplier, explosion_direction, source, source_mob) - +*/ //############## END MOVABLES /turf/closed/wall/resin/reflective diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/palatine/palatine_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/palatine/palatine_abilities.dm index 12e23bfe9fc8..e89ac2961b74 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/palatine/palatine_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/palatine/palatine_abilities.dm @@ -7,7 +7,8 @@ GLOBAL_LIST_INIT(resin_build_order_palatine, list( /datum/resin_construction/resin_obj/sticky_resin, /datum/resin_construction/resin_obj/resin_spike, /datum/resin_construction/resin_obj/movable/thick_wall, - /datum/resin_construction/resin_obj/movable/thick_membrane + /datum/resin_construction/resin_obj/movable/thick_membrane, + /datum/resin_construction/resin_obj/resin_node // /datum/resin_construction/resin_obj/movable/reflective_royal )) diff --git a/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm b/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm index 1b9874f9e3f8..85ece4f515ce 100644 --- a/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm +++ b/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm @@ -341,11 +341,13 @@ GLOBAL_VAR_INIT(resin_lz_allowed, FALSE) construction_name = "thick resin membrane" build_path = /obj/structure/alien/movable_wall/membrane/thick +/* /datum/resin_construction/resin_obj/movable/reflective_royal name = "Movable Royal Reflective Wall" desc = "A thick resin membrane that can be moved onto any adjacent tile, as long as there are weeds. Reflects incoming projectiles." construction_name = "reflective resin wall" build_path = /obj/structure/alien/movable_wall/reflective +*/ // Remote Weed Nodes for originally coded for Resin Whisperers /datum/resin_construction/resin_obj/resin_node