diff --git a/code/game/objects/structures/statues.dm b/code/game/objects/structures/statues.dm new file mode 100644 index 00000000000..43722683010 --- /dev/null +++ b/code/game/objects/structures/statues.dm @@ -0,0 +1,42 @@ +//STATUES + +/obj/structure/statue + name = "statue" + desc = "A monolithic piece of stone carved to represent a person." + icon = 'icons/obj/statue_large.dmi' + icon_state = "statue" + density = TRUE + anchored = TRUE + health = 5000 + +/obj/structure/statue/damaged + name = "damaged statue" + desc = "A monolithic piece of stone carved to represent a person. This one is heavily damaged, with plenty of cracks in the stone and an entire arm missing. It looks less sturdy than the usual statue." + icon = 'icons/obj/statue_large.dmi' + icon_state = "statue_damaged" + health = 500 + +/obj/structure/statue/augustine + name = "absolutist statue" + desc = "A monolithic piece of stone depicting the Cartographer Augustine Brown. The statue is holding a golden cross-staff in the left, and a Davis' quadrant in the right. There is a fresh wreath woven from bay laurels on it's head." + icon = 'icons/obj/statue_large.dmi' + icon_state = "statue" + health = 5000 + +/obj/structure/statue/damaged/augustine + name = "statue" + desc = "A monolithic piece of stone depicting the Cartographer Augustine Brown. The statue is holding up a broken arm which lies shattered at it's feet, and a broken Davis' quadrant in the right. It looks close to crumbling due to the amount of cracks it has." + icon_state = "augustine_damaged" + health = 500 + +//MISC + +/obj/structure/statue/candles + name = "candles" + desc = "Lit candles at the foot of the statue." + icon = 'icons/obj/statue_large.dmi' + icon_state = "statue_candles" + density = FALSE + anchored = TRUE + health = 500 + diff --git a/icons/obj/stationobjs.dmi b/icons/obj/stationobjs.dmi index b4703e457da..b2ccc5fc106 100644 Binary files a/icons/obj/stationobjs.dmi and b/icons/obj/stationobjs.dmi differ diff --git a/icons/obj/statue_large.dmi b/icons/obj/statue_large.dmi new file mode 100644 index 00000000000..e28de4bc48c Binary files /dev/null and b/icons/obj/statue_large.dmi differ diff --git a/sojourn-station.dme b/sojourn-station.dme index e67158e43d4..717cd29d5d0 100644 --- a/sojourn-station.dme +++ b/sojourn-station.dme @@ -1472,6 +1472,7 @@ #include "code\game\objects\structures\signs-security.dm" #include "code\game\objects\structures\signs-warning.dm" #include "code\game\objects\structures\signs.dm" +#include "code\game\objects\structures\statues.dm" #include "code\game\objects\structures\tank_dispenser.dm" #include "code\game\objects\structures\target_stake.dm" #include "code\game\objects\structures\transit_tubes.dm"