-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds three new sandstone structures for you to build! (egyptian theme…
…d) (#2101) * curse of rah be upon you * removes a single . how did that get there
- Loading branch information
1 parent
7e43514
commit a5cb617
Showing
8 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
monkestation/code/game/objects/structures/beds_chairs/chair.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
//sandstone chair start | ||
/obj/structure/chair/stool/sandstone | ||
name = "sandstone stool" | ||
desc = "Apply dummy thick cheeks." | ||
icon = 'monkestation/icons/obj/sandstone_structures.dmi' | ||
icon_state = "stool" | ||
resistance_flags = FIRE_PROOF | ||
can_buckle = FALSE | ||
buildstackamount = 1 | ||
item_chair = /obj/item/chair/stool/sandstone | ||
|
||
/obj/item/chair/stool/sandstone | ||
name = "sandstone stool" | ||
icon = 'monkestation/icons/obj/sandstone_structures.dmi' | ||
icon_state = "stool_toppled" | ||
inhand_icon_state = null | ||
origin_type = /obj/structure/chair/stool/sandstone | ||
//sandstone chair end |
14 changes: 14 additions & 0 deletions
14
monkestation/code/game/objects/structures/crates_lockers/crates.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/obj/structure/closet/crate/coffin/sandstonesarcophagus | ||
name = "sandstone sarcophagus" | ||
desc = "It's a burial receptacle for the dearly departed. A sARcophaGUS, it usually contains a caDaVER." | ||
icon = 'monkestation/icons/obj/sandstone_structures.dmi' | ||
icon_state = "sarcophagus" | ||
resistance_flags = FIRE_PROOF | ||
max_integrity = 70 | ||
material_drop = /obj/item/stack/sheet/mineral/sandstone | ||
material_drop_amount = 8 | ||
open_sound = 'sound/machines/wooden_closet_open.ogg' | ||
close_sound = 'sound/machines/wooden_closet_close.ogg' | ||
open_sound_volume = 25 | ||
close_sound_volume = 50 | ||
can_install_electronics = FALSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/obj/structure/table/sandstone | ||
name = "sandstone table" | ||
desc = "Woah! A sandstone TABLE!!" | ||
icon = 'monkestation/icons/obj/smooth_structures/sandstone_table.dmi' | ||
icon_state = "brass_table-0" //brass table is my best friend | ||
base_icon_state = "brass_table" //brass table is my best friend | ||
resistance_flags = FIRE_PROOF | ||
buildstack = /obj/item/stack/sheet/mineral/sandstone | ||
buildstackamount = 6 | ||
framestackamount = 0 | ||
smoothing_groups = SMOOTH_GROUP_SANDSTONE_TABLES | ||
canSmoothWith = SMOOTH_GROUP_SANDSTONE_TABLES |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters