diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 288bc9de225..6d3b4088e78 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -485,6 +485,14 @@ /obj/structure/window/shuttle/skrell ) +/obj/structure/window/shuttle/scc + icon = 'icons/turf/shuttles_unique/scc_shuttle_pieces.dmi' + icon_state = "scc_window" + basestate = "scc_window" + health = 160 + maxhealth = 160 + smooth = 0 + /obj/structure/window/shuttle/crescent desc = "It looks rather strong." diff --git a/code/game/turfs/simulated/shuttle_turfs.dm b/code/game/turfs/simulated/shuttle_turfs.dm index 94fbe327f6a..c5e103dd4b2 100644 --- a/code/game/turfs/simulated/shuttle_turfs.dm +++ b/code/game/turfs/simulated/shuttle_turfs.dm @@ -150,6 +150,12 @@ smooth = null canSmoothWith = null +/turf/simulated/wall/shuttle/scc + icon = 'icons/turf/smooth/scc_shuttle.dmi' + +/turf/simulated/wall/shuttle/scc/cardinal + smooth = SMOOTH_MORE + //--Unique Shuttles--// /turf/simulated/wall/shuttle/unique @@ -399,6 +405,12 @@ icon = 'icons/turf/shuttles_unique/distress_shuttle.dmi' icon_state = "6,2" +//scc shuttle pieces + +/turf/simulated/wall/shuttle/unique/scc + name = "shuttle hull" + icon = 'icons/turf/shuttles_unique/scc_shuttle_pieces.dmi' + icon_state = "c1" //--Floors--// diff --git a/html/changelogs/alberyk-newshuttlewalls.yml b/html/changelogs/alberyk-newshuttlewalls.yml new file mode 100644 index 00000000000..9506b206c76 --- /dev/null +++ b/html/changelogs/alberyk-newshuttlewalls.yml @@ -0,0 +1,6 @@ +author: Alberyk, Kyres1 + +delete-after: True + +changes: + - rscadd: "Added new SCC themed shuttle walls and windows." diff --git a/icons/turf/shuttles_unique/scc_shuttle_pieces.dmi b/icons/turf/shuttles_unique/scc_shuttle_pieces.dmi new file mode 100644 index 00000000000..c53ee02156b Binary files /dev/null and b/icons/turf/shuttles_unique/scc_shuttle_pieces.dmi differ diff --git a/icons/turf/smooth/scc_shuttle.dmi b/icons/turf/smooth/scc_shuttle.dmi new file mode 100644 index 00000000000..69371cf64b7 Binary files /dev/null and b/icons/turf/smooth/scc_shuttle.dmi differ