diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 1a5b8b9e8e6..9c9e2c49952 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -433,4 +433,17 @@ desc = "It looks rather strong and frosted over. Looks like it might take a few less hits then a normal reinforced window." icon_state = "fwindow" basestate = "fwindow" - health = 30 \ No newline at end of file + health = 30 + +/obj/structure/window/shuttle + name = "shuttle window" + desc = "It looks rather strong. Might take a few good hits to shatter it." + icon = 'icons/obj/podwindows.dmi' + icon_state = "window" + basestate = "window" + health = 40 + reinf = 1 + dir = 5 + + update_icon() //icon_state has to be set manually + return diff --git a/icons/obj/podwindows.dmi b/icons/obj/podwindows.dmi index a88ddb30e4f..7f6e79c9035 100644 Binary files a/icons/obj/podwindows.dmi and b/icons/obj/podwindows.dmi differ