mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-27 15:17:21 +01:00
613 lines
17 KiB
Plaintext
613 lines
17 KiB
Plaintext
/obj/structure/bed/chair //YES, chairs are a type of bed, which are a type of stool. This works, believe me. -Pete
|
|
name = "chair"
|
|
desc = "You sit in this. Either by will or force."
|
|
icon_state = "chair_preview"
|
|
base_icon = "chair"
|
|
buckle_dir = 0
|
|
buckle_lying = 0 //force people to sit up in chairs when buckled
|
|
var/propelled = 0 // Check for fire-extinguisher-driven chairs
|
|
|
|
/obj/structure/bed/chair/Initialize()
|
|
. = ..()
|
|
update_layer()
|
|
|
|
/obj/structure/bed/chair/attackby(obj/item/W as obj, mob/user as mob)
|
|
..()
|
|
if(!padding_material && istype(W, /obj/item/assembly/shock_kit))
|
|
var/obj/item/assembly/shock_kit/SK = W
|
|
if(!SK.status)
|
|
to_chat(user, "<span class='notice'>\The [SK] is not ready to be attached!</span>")
|
|
return
|
|
user.drop_item()
|
|
var/obj/structure/bed/chair/e_chair/E = new (src.loc, material.name)
|
|
playsound(src, 'sound/items/Deconstruct.ogg', 50, 1)
|
|
E.set_dir(dir)
|
|
E.part = SK
|
|
SK.loc = E
|
|
SK.master = E
|
|
qdel(src)
|
|
|
|
/obj/structure/bed/chair/attack_tk(mob/user as mob)
|
|
if(has_buckled_mobs())
|
|
..()
|
|
else
|
|
rotate_clockwise()
|
|
return
|
|
|
|
/obj/structure/bed/chair/post_buckle_mob()
|
|
update_icon()
|
|
|
|
/obj/structure/bed/chair/update_icon()
|
|
..()
|
|
if(has_buckled_mobs())
|
|
var/cache_key = "[base_icon]-armrest-[padding_material ? padding_material.name : "no_material"]"
|
|
if(isnull(stool_cache[cache_key]))
|
|
var/image/I = image(icon, "[base_icon]_armrest")
|
|
I.plane = MOB_PLANE
|
|
I.layer = ABOVE_MOB_LAYER
|
|
if(padding_material)
|
|
I.color = padding_material.icon_colour
|
|
stool_cache[cache_key] = I
|
|
add_overlay(stool_cache[cache_key])
|
|
|
|
/obj/structure/bed/chair/proc/update_layer()
|
|
if(src.dir == NORTH)
|
|
plane = MOB_PLANE
|
|
layer = MOB_LAYER + 0.1
|
|
else
|
|
reset_plane_and_layer()
|
|
|
|
/obj/structure/bed/chair/set_dir()
|
|
..()
|
|
update_layer()
|
|
if(has_buckled_mobs())
|
|
for(var/A in buckled_mobs)
|
|
var/mob/living/L = A
|
|
L.set_dir(dir)
|
|
|
|
/obj/structure/bed/chair/verb/rotate_clockwise()
|
|
set name = "Rotate Chair Clockwise"
|
|
set category = "Object"
|
|
set src in oview(1)
|
|
|
|
if(!usr || !isturf(usr.loc))
|
|
return
|
|
if(usr.stat || usr.restrained())
|
|
return
|
|
if(ismouse(usr) || (isobserver(usr) && !config.ghost_interaction))
|
|
return
|
|
|
|
src.set_dir(turn(src.dir, 270))
|
|
|
|
/obj/structure/bed/chair/shuttle
|
|
name = "chair"
|
|
desc = "Please remain seated while the overhead sign is illuminated."
|
|
icon_state = "shuttlechair"
|
|
color = null
|
|
base_icon = "shuttlechair"
|
|
applies_material_colour = 0
|
|
|
|
/obj/structure/bed/chair/shuttle_padded
|
|
icon_state = "shuttlechair2"
|
|
base_icon = "shuttlechair2"
|
|
color = null
|
|
applies_material_colour = 0
|
|
|
|
/obj/structure/bed/chair/comfy
|
|
name = "comfy chair"
|
|
desc = "It's a chair. It looks comfy."
|
|
icon_state = "comfychair"
|
|
base_icon = "comfychair"
|
|
|
|
/obj/structure/bed/chair/comfy/update_icon()
|
|
..()
|
|
var/image/I = image(icon, "[base_icon]_over")
|
|
I.layer = ABOVE_MOB_LAYER
|
|
I.plane = MOB_PLANE
|
|
I.color = material.icon_colour
|
|
add_overlay(I)
|
|
if(padding_material)
|
|
I = image(icon, "[base_icon]_padding_over")
|
|
I.layer = ABOVE_MOB_LAYER
|
|
I.plane = MOB_PLANE
|
|
I.color = padding_material.icon_colour
|
|
add_overlay(I)
|
|
|
|
/obj/structure/bed/chair/comfy/brown/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, MAT_LEATHER)
|
|
|
|
/obj/structure/bed/chair/comfy/red/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "carpet")
|
|
|
|
/obj/structure/bed/chair/comfy/teal/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "teal")
|
|
|
|
/obj/structure/bed/chair/comfy/black/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "black")
|
|
|
|
/obj/structure/bed/chair/comfy/green/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "green")
|
|
|
|
/obj/structure/bed/chair/comfy/purp/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "purple")
|
|
|
|
/obj/structure/bed/chair/comfy/blue/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "blue")
|
|
|
|
/obj/structure/bed/chair/comfy/beige/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "beige")
|
|
|
|
/obj/structure/bed/chair/comfy/lime/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "lime")
|
|
|
|
/obj/structure/bed/chair/comfy/yellow/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "yellow")
|
|
|
|
/obj/structure/bed/chair/comfy/orange/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "orange")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded
|
|
name = "rounded chair"
|
|
desc = "It's a rounded chair. It looks comfy."
|
|
icon_state = "roundedchair"
|
|
base_icon = "roundedchair"
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/brown/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, MAT_LEATHER)
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/red/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "carpet")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/teal/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "teal")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/black/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "black")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/green/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "green")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/purple/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "purple")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/blue/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "blue")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/beige/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "beige")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/lime/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "lime")
|
|
|
|
/obj/structure/bed/chair/comfy/rounded/yellow/Initialize(var/ml,var/newmaterial)
|
|
. = ..(ml, MAT_STEEL, "yellow")
|
|
|
|
/obj/structure/bed/chair/office
|
|
anchored = 0
|
|
buckle_movable = 1
|
|
|
|
/obj/structure/bed/chair/office/update_icon()
|
|
return
|
|
|
|
/obj/structure/bed/chair/office/attackby(obj/item/W as obj, mob/user as mob)
|
|
if(istype(W,/obj/item/stack) || W.is_wirecutter())
|
|
return
|
|
..()
|
|
|
|
/obj/structure/bed/chair/office/Moved(atom/old_loc, direction, forced = FALSE)
|
|
. = ..()
|
|
|
|
playsound(src, 'sound/effects/roll.ogg', 100, 1)
|
|
|
|
/obj/structure/bed/chair/office/handle_buckled_mob_movement(atom/new_loc, direction)
|
|
for(var/A in buckled_mobs)
|
|
var/mob/living/occupant = A
|
|
occupant.buckled = null
|
|
occupant.Move(src.loc)
|
|
occupant.buckled = src
|
|
if (occupant && (src.loc != occupant.loc))
|
|
if (propelled)
|
|
for (var/mob/O in src.loc)
|
|
if (O != occupant)
|
|
Bump(O)
|
|
else
|
|
unbuckle_mob()
|
|
|
|
/obj/structure/bed/chair/office/handle_buckled_mob_movement(atom/new_loc, direction, movetime)
|
|
for(var/A in buckled_mobs)
|
|
var/mob/living/occupant = A
|
|
occupant.buckled = null
|
|
occupant.Move(loc, direction, movetime)
|
|
occupant.buckled = src
|
|
if (occupant && (loc != occupant.loc))
|
|
if (propelled)
|
|
for (var/mob/O in src.loc)
|
|
if (O != occupant)
|
|
Bump(O)
|
|
else
|
|
unbuckle_mob()
|
|
|
|
/obj/structure/bed/chair/office/Bump(atom/A)
|
|
..()
|
|
if(!has_buckled_mobs()) return
|
|
|
|
if(propelled)
|
|
for(var/a in buckled_mobs)
|
|
var/mob/living/occupant = unbuckle_mob(a)
|
|
|
|
var/def_zone = ran_zone()
|
|
var/blocked = occupant.run_armor_check(def_zone, "melee")
|
|
var/soaked = occupant.get_armor_soak(def_zone, "melee")
|
|
occupant.throw_at(A, 3, propelled)
|
|
occupant.apply_effect(6, STUN, blocked)
|
|
occupant.apply_effect(6, WEAKEN, blocked)
|
|
occupant.apply_effect(6, STUTTER, blocked)
|
|
occupant.apply_damage(10, BRUTE, def_zone, blocked, soaked)
|
|
playsound(src, 'sound/weapons/punch1.ogg', 50, 1, -1)
|
|
if(istype(A, /mob/living))
|
|
var/mob/living/victim = A
|
|
def_zone = ran_zone()
|
|
blocked = victim.run_armor_check(def_zone, "melee")
|
|
soaked = victim.get_armor_soak(def_zone, "melee")
|
|
victim.apply_effect(6, STUN, blocked)
|
|
victim.apply_effect(6, WEAKEN, blocked)
|
|
victim.apply_effect(6, STUTTER, blocked)
|
|
victim.apply_damage(10, BRUTE, def_zone, blocked, soaked)
|
|
occupant.visible_message("<span class='danger'>[occupant] crashed into \the [A]!</span>")
|
|
|
|
/obj/structure/bed/chair/office/light
|
|
icon_state = "officechair_white"
|
|
|
|
/obj/structure/bed/chair/office/dark
|
|
icon_state = "officechair_dark"
|
|
|
|
// Chair types
|
|
/obj/structure/bed/chair/wood
|
|
name = "wooden chair"
|
|
desc = "Old is never too old to not be in fashion."
|
|
base_icon = "wooden_chair"
|
|
icon_state = "wooden_chair_preview"
|
|
color = WOOD_COLOR_FURNITURE
|
|
applies_material_colour = 0
|
|
|
|
/obj/structure/bed/chair/wood/update_icon()
|
|
return
|
|
|
|
/obj/structure/bed/chair/wood/walnut
|
|
name = "walnut chair"
|
|
color = WOOD_COLOR_RICH
|
|
|
|
/obj/structure/bed/chair/wood/pine
|
|
name = "pinewood chair"
|
|
color = WOOD_COLOR_PALE
|
|
|
|
/obj/structure/bed/chair/wood/ebony
|
|
name = "ebony chair"
|
|
color = WOOD_COLOR_BLACK
|
|
|
|
/obj/structure/bed/chair/wood/mahogany
|
|
name = "mahogany chair"
|
|
color = WOOD_COLOR_CHOCOLATE
|
|
|
|
/obj/structure/bed/chair/wood/attackby(obj/item/W as obj, mob/user as mob)
|
|
if(istype(W,/obj/item/stack) || W.is_wirecutter())
|
|
return
|
|
..()
|
|
|
|
/obj/structure/bed/chair/wood/Initialize(var/ml, var/newmaterial)
|
|
. = ..(ml, MAT_WOOD)
|
|
|
|
/obj/structure/bed/chair/wood/wings
|
|
icon_state = "wooden_chair_wings"
|
|
|
|
/obj/structure/bed/chair/wood/walnut/wings
|
|
icon_state = "wooden_chair_wings"
|
|
|
|
/obj/structure/bed/chair/wood/pine/wings
|
|
icon_state = "wooden_chair_wings"
|
|
|
|
/obj/structure/bed/chair/wood/ebony/wings
|
|
icon_state = "wooden_chair_wings"
|
|
|
|
/obj/structure/bed/chair/wood/mahogany/wings
|
|
icon_state = "wooden_chair_wings"
|
|
|
|
//Eris Chairs
|
|
|
|
/obj/structure/bed/chair/modern_chair
|
|
name = "modern chair"
|
|
desc = "It's like sitting in an egg."
|
|
icon_state = "modern_chair"
|
|
color = null
|
|
base_icon = "modern_chair"
|
|
applies_material_colour = 0
|
|
|
|
/obj/structure/bed/chair/modern_chair/Initialize()
|
|
. = ..()
|
|
var/image/I = image(icon, "[base_icon]_over")
|
|
I.layer = ABOVE_MOB_LAYER
|
|
I.plane = MOB_PLANE
|
|
add_overlay(I)
|
|
|
|
/obj/structure/bed/chair/modern_bar_stool
|
|
name = "bar stool"
|
|
desc = "How vibrant!"
|
|
icon_state = "modern_stool"
|
|
color = null
|
|
base_icon = "modern_stool"
|
|
applies_material_colour = 0
|
|
|
|
/obj/structure/bed/chair/backed_grey
|
|
name = "grey chair"
|
|
desc = "Also available in red."
|
|
icon_state = "onestar_chair_grey"
|
|
color = null
|
|
base_icon = "onestar_chair_grey"
|
|
applies_material_colour = 0
|
|
|
|
/obj/structure/bed/chair/backed_red
|
|
name = "red chair"
|
|
desc = "Also available in grey."
|
|
icon_state = "onestar_chair_red"
|
|
color = null
|
|
base_icon = "onestar_chair_red"
|
|
applies_material_colour = 0
|
|
|
|
//sofa
|
|
|
|
/obj/structure/bed/chair/sofa
|
|
name = "sofa"
|
|
desc = "It's a sofa. You sit on it. Possibly with someone else."
|
|
icon = 'icons/obj/sofas.dmi'
|
|
base_icon = "sofamiddle"
|
|
icon_state = "sofamiddle"
|
|
applies_material_colour = 1
|
|
var/sofa_material = "carpet"
|
|
var/corner_piece = FALSE
|
|
|
|
/obj/structure/bed/chair/sofa/update_icon()
|
|
if(applies_material_colour && sofa_material)
|
|
var/datum/material/color_material = get_material_by_name(sofa_material)
|
|
color = color_material.icon_colour
|
|
|
|
if(sofa_material == "carpet")
|
|
name = "red [initial(name)]"
|
|
else
|
|
name = "[sofa_material] [initial(name)]"
|
|
|
|
/obj/structure/bed/chair/sofa/update_layer()
|
|
// Corner east/west should be on top of mobs, any other state's north should be.
|
|
if((corner_piece && ((dir & EAST) || (dir & WEST))) || (!corner_piece && (dir & NORTH)))
|
|
plane = MOB_PLANE
|
|
layer = MOB_LAYER + 0.1
|
|
else
|
|
reset_plane_and_layer()
|
|
|
|
/obj/structure/bed/chair/sofa/left
|
|
icon_state = "sofaend_left"
|
|
base_icon = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/right
|
|
icon_state = "sofaend_right"
|
|
base_icon = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/corner
|
|
icon_state = "sofacorner"
|
|
base_icon = "sofacorner"
|
|
corner_piece = TRUE
|
|
|
|
// Wooden nonsofa - no corners
|
|
/obj/structure/bed/chair/sofa/pew
|
|
name = "pew bench"
|
|
desc = "If they want you to go to church, why do they make these so uncomfortable?"
|
|
base_icon = "pewmiddle"
|
|
icon_state = "pewmiddle"
|
|
applies_material_colour = FALSE
|
|
|
|
/obj/structure/bed/chair/sofa/pew/left
|
|
icon_state = "pewend_left"
|
|
base_icon = "pewend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/pew/right
|
|
icon_state = "pewend_right"
|
|
base_icon = "pewend_right"
|
|
|
|
// Corporate sofa - one color fits all
|
|
/obj/structure/bed/chair/sofa/corp
|
|
name = "black leather sofa"
|
|
desc = "How corporate!"
|
|
base_icon = "corp_sofamiddle"
|
|
icon_state = "corp_sofamiddle"
|
|
applies_material_colour = FALSE
|
|
|
|
/obj/structure/bed/chair/sofa/corp/left
|
|
icon_state = "corp_sofaend_left"
|
|
base_icon = "corp_sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/corp/right
|
|
icon_state = "corp_sofaend_right"
|
|
base_icon = "corp_sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/corp/corner
|
|
icon_state = "corp_sofacorner"
|
|
base_icon = "corp_sofacorner"
|
|
corner_piece = TRUE
|
|
|
|
//Metal benches
|
|
|
|
/obj/structure/bed/chair/sofa/bench
|
|
name = "metal bench"
|
|
desc = "Almost as comfortable as waiting at a shuttle station for hours on end."
|
|
base_icon = "benchmiddle"
|
|
icon_state = "benchmiddle"
|
|
applies_material_colour = FALSE
|
|
color = null
|
|
var/padding_color = "#CC0000"
|
|
|
|
/obj/structure/bed/chair/sofa/bench/Initialize()
|
|
. = ..()
|
|
var/mutable_appearance/MA
|
|
MA = mutable_appearance(icon, icon_state = "o[icon_state]")
|
|
// If we're north-facing, metal goes above mob, padding overlay goes below mob.
|
|
if((dir & NORTH) && !corner_piece)
|
|
plane = MOB_PLANE
|
|
layer = ABOVE_MOB_LAYER
|
|
MA.color = padding_color
|
|
add_overlay(MA)
|
|
|
|
/obj/structure/bed/chair/sofa/bench/left
|
|
icon_state = "bench_left"
|
|
base_icon = "bench_left"
|
|
|
|
/obj/structure/bed/chair/sofa/bench/right
|
|
icon_state = "bench_right"
|
|
base_icon = "bench_right"
|
|
|
|
/obj/structure/bed/chair/sofa/bench/corner
|
|
icon_state = "benchcorner"
|
|
base_icon = "benchcorner"
|
|
|
|
|
|
//color variations
|
|
|
|
/obj/structure/bed/chair/sofa
|
|
sofa_material = "carpet"
|
|
|
|
/obj/structure/bed/chair/sofa/brown
|
|
sofa_material = "leather"
|
|
|
|
/obj/structure/bed/chair/sofa/teal
|
|
sofa_material = "teal"
|
|
|
|
/obj/structure/bed/chair/sofa/black
|
|
sofa_material = "black"
|
|
|
|
/obj/structure/bed/chair/sofa/green
|
|
sofa_material = "green"
|
|
|
|
/obj/structure/bed/chair/sofa/purp
|
|
sofa_material = "purple"
|
|
|
|
/obj/structure/bed/chair/sofa/blue
|
|
sofa_material = "blue"
|
|
|
|
/obj/structure/bed/chair/sofa/beige
|
|
sofa_material = "beige"
|
|
|
|
/obj/structure/bed/chair/sofa/lime
|
|
sofa_material = "lime"
|
|
|
|
/obj/structure/bed/chair/sofa/yellow
|
|
sofa_material = "yellow"
|
|
|
|
/obj/structure/bed/chair/sofa/orange
|
|
sofa_material = "orange"
|
|
|
|
//sofa directions
|
|
|
|
/obj/structure/bed/chair/sofa/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/brown/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/brown/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/brown/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/teal/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/teal/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/teal/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/black/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/black/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/black/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/green/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/green/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/green/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/purp/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/purp/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/purp/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/blue/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/blue/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/blue/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/beige/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/beige/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/beige/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/lime/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/lime/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/lime/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/yellow/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/yellow/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/yellow/corner
|
|
icon_state = "sofacorner"
|
|
|
|
/obj/structure/bed/chair/sofa/orange/left
|
|
icon_state = "sofaend_left"
|
|
|
|
/obj/structure/bed/chair/sofa/orange/right
|
|
icon_state = "sofaend_right"
|
|
|
|
/obj/structure/bed/chair/sofa/orange/corner
|
|
icon_state = "sofacorner"
|
|
|
|
// Sivian wood subtype for mapping.
|
|
/obj/structure/bed/chair/sifwood/Initialize(var/ml, var/newmaterial)
|
|
. = ..(ml, MAT_SIFWOOD)
|
|
|
|
/obj/structure/bed/chair/sifwood/wings
|
|
icon_state = "wooden_chair_wings"
|