Skip to content

Commit

Permalink
Merge pull request sojourn-13#5738 from Bamhalazam/statues
Browse files Browse the repository at this point in the history
Statues and Signposts
  • Loading branch information
Trilbyspaceclone authored Oct 8, 2024
2 parents bbd6414 + 434c412 commit 3138219
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions code/game/objects/structures/statues.dm
Original file line number Diff line number Diff line change
@@ -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

Binary file modified icons/obj/stationobjs.dmi
Binary file not shown.
Binary file added icons/obj/statue_large.dmi
Binary file not shown.
1 change: 1 addition & 0 deletions sojourn-station.dme
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3138219

Please sign in to comment.