diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 47c812a99e..1f7e43ba1a 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -25,6 +25,10 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \ new/datum/stack_recipe("brown comfy chair", /obj/structure/bed/chair/comfy/brown, 2, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("lime comfy chair", /obj/structure/bed/chair/comfy/lime, 2, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("teal comfy chair", /obj/structure/bed/chair/comfy/teal, 2, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("red comfy chair", /obj/structure/bed/chair/comfy/red, 2, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("blue comfy chair", /obj/structure/bed/chair/comfy/blue, 2, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("purple comfy chair", /obj/structure/bed/chair/comfy/purp, 2, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("green comfy chair", /obj/structure/bed/chair/comfy/green, 2, one_per_turf = 1, on_floor = 1), \ ), 2), \ null, \ new/datum/stack_recipe("table parts", /obj/item/weapon/table_parts, 2), \ diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index 4d01daafaa..5c4728313b 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -105,21 +105,33 @@ overlays -= armrest /obj/structure/bed/chair/comfy/brown - color = rgb(255,113,0) + color = rgb(141,70,0) + +/obj/structure/bed/chair/comfy/red + color = rgb(218,2,10) + +/obj/structure/bed/chair/comfy/teal + color = rgb(0,234,250) + +/obj/structure/bed/chair/comfy/black + color = rgb(60,60,60) + +/obj/structure/bed/chair/comfy/green + color = rgb(1,196,8) + +/obj/structure/bed/chair/comfy/purp + color = rgb(112,2,176) + +/obj/structure/bed/chair/comfy/blue + color = rgb(2,9,210) /obj/structure/bed/chair/comfy/beige color = rgb(255,253,195) -/obj/structure/bed/chair/comfy/teal - color = rgb(0,255,255) - /obj/structure/bed/chair/office anchored = 0 buckle_movable = 1 -/obj/structure/bed/chair/comfy/black - color = rgb(167,164,153) - /obj/structure/bed/chair/comfy/lime color = rgb(255,251,0) diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index fd82f52556..9c19f3da13 100644 Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ