diff --git a/code/game/objects/structures/false_walls.dm b/code/game/objects/structures/false_walls.dm index 6081462ac8d..fbeabb1231f 100644 --- a/code/game/objects/structures/false_walls.dm +++ b/code/game/objects/structures/false_walls.dm @@ -293,6 +293,7 @@ mineral = "metal" walltype = "iron" canSmoothWith = list(/obj/structure/falsewall/iron, /turf/closed/wall/mineral/iron) + /obj/structure/falsewall/abductor name = "alien wall" desc = "A wall with alien alloy plating." @@ -300,4 +301,22 @@ icon_state = "abductor" mineral = "abductor" walltype = "abductor" - canSmoothWith = list(/obj/structure/falsewall/abductor, /turf/closed/wall/mineral/abductor) \ No newline at end of file + canSmoothWith = list(/obj/structure/falsewall/abductor, /turf/closed/wall/mineral/abductor) + +/obj/structure/falsewall/titanium + name = "titanium wall" + desc = "A light-weight titanium wall used in shuttles." + icon = 'icons/turf/walls/shuttle_wall.dmi' + icon_state = "shuttle" + mineral = "titanium" + walltype = "shuttle" + canSmoothWith = list(/turf/closed/wall/mineral/titanium, /obj/machinery/door/airlock/shuttle, /obj/machinery/door/airlock/, /turf/closed/wall/shuttle, /obj/structure/window/shuttle, /obj/structure/shuttle/engine, /obj/structure/shuttle/engine/heater, ) + +/obj/structure/falsewall/plastitanium + name = "plastitanium wall" + desc = "An evil wall of plasma and titanium." + icon = 'icons/turf/shuttle.dmi' + icon_state = "wall3" + mineral = "plastitanium" + walltype = "syndieshuttle" + smooth = SMOOTH_FALSE \ No newline at end of file diff --git a/code/game/turfs/simulated/walls_mineral.dm b/code/game/turfs/simulated/walls_mineral.dm index bd1550c166f..2be75979ea4 100644 --- a/code/game/turfs/simulated/walls_mineral.dm +++ b/code/game/turfs/simulated/walls_mineral.dm @@ -198,7 +198,7 @@ smooth = SMOOTH_FALSE /turf/closed/wall/mineral/titanium //has to use this path due to how building walls works - name = "wall" + name = "titanium wall" desc = "A light-weight titanium wall used in shuttles." icon = 'icons/turf/walls/shuttle_wall.dmi' icon_state = "map-shuttle" @@ -243,7 +243,8 @@ T.transform = transform /turf/closed/wall/mineral/plastitanium - name = "wall" + name = "plastitanium wall" + desc = "An evil wall of plasma and titanium." walltype = "syndieshuttle" icon = 'icons/turf/shuttle.dmi' icon_state = "wall3" diff --git a/icons/turf/shuttle.dmi b/icons/turf/shuttle.dmi index 1a7fa3c9bdc..63dd9450506 100644 Binary files a/icons/turf/shuttle.dmi and b/icons/turf/shuttle.dmi differ diff --git a/icons/turf/walls/shuttle_wall.dmi b/icons/turf/walls/shuttle_wall.dmi index 818095f4dff..9fb671beeb5 100644 Binary files a/icons/turf/walls/shuttle_wall.dmi and b/icons/turf/walls/shuttle_wall.dmi differ