Skip to content

Commit

Permalink
TGS Test Merge (#6088)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blue authored and Blue committed Oct 20, 2023
2 parents d0d6939 + 8171c1f commit be3ce8f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
12 changes: 11 additions & 1 deletion code/game/objects/structures/stool_bed_chair_nest/chairs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -547,13 +547,23 @@

//Apidean Chairs!
/obj/structure/bed/chair/apidean
name = "\improper Apidean throne"
desc = "This waxy chair is designed to allow creatures with insectoid abdomens to lounge comfortably."
icon_state = "bee-throne"
base_icon = "bee-throne"
picked_up_item = null

/obj/structure/bed/chair/apidean/Initialize(mapload, new_material)
. = ..(mapload, "wax", null)

/obj/structure/bed/chair/apidean_throne
name = "\improper Apidean throne"
desc = "This waxy chair is designed to allow creatures with insectoid abdomens to lounge comfortably. Typically reserved for the Apidean upper class."
icon_state = "queenthrone"
base_icon = "queenthrone"
picked_up_item = null

/obj/structure/bed/chair/apidean/Initialize(mapload, new_material)
/obj/structure/bed/chair/apidean_throne/Initialize(mapload, new_material)
. = ..(mapload, "wax", null)

//Wax Stools for Bees! I've put it here because it shouldn't inherit stool properties.
Expand Down
7 changes: 6 additions & 1 deletion code/modules/materials/definitions/misc/wax.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,13 @@
cost = 1,
)
. += create_stack_recipe_datum(
name = "royal throne",
name = "apidean chair",
product = /obj/structure/bed/chair/apidean,
cost = 5,
)
. += create_stack_recipe_datum(
name = "apidean throne",
product = /obj/structure/bed/chair/apidean_throne,
cost = 10,
time = 2 SECONDS,
)
Expand Down
Binary file modified icons/clothing/suit/armor/utilitarian.dmi
Binary file not shown.
Binary file modified icons/obj/furniture_vr.dmi
Binary file not shown.

0 comments on commit be3ce8f

Please sign in to comment.