mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
[MIRROR] A few mapping glamour objects (#11303)
Co-authored-by: SatinIsle <98125273+SatinIsle@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
58198ead84
commit
af855f38c0
@@ -280,6 +280,9 @@
|
|||||||
/obj/structure/simple_door/cult/Initialize(mapload,var/material_name)
|
/obj/structure/simple_door/cult/Initialize(mapload,var/material_name)
|
||||||
. = ..(mapload, material_name || MAT_CULT)
|
. = ..(mapload, material_name || MAT_CULT)
|
||||||
|
|
||||||
|
/obj/structure/simple_door/glamour/Initialize(mapload,var/material_name)
|
||||||
|
. = ..(mapload, material_name || MAT_GLAMOUR)
|
||||||
|
|
||||||
/obj/structure/simple_door/cult/TryToSwitchState(atom/user)
|
/obj/structure/simple_door/cult/TryToSwitchState(atom/user)
|
||||||
if(isliving(user))
|
if(isliving(user))
|
||||||
var/mob/living/L = user
|
var/mob/living/L = user
|
||||||
|
|||||||
@@ -247,3 +247,11 @@
|
|||||||
material = get_material_by_name("holowood")
|
material = get_material_by_name("holowood")
|
||||||
. = ..()
|
. = ..()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/obj/structure/table/bench/glamour
|
||||||
|
icon_state = "plain_preview"
|
||||||
|
color = "#fffce6"
|
||||||
|
|
||||||
|
/obj/structure/table/bench/glamour/Initialize(mapload)
|
||||||
|
material = get_material_by_name(MAT_GLAMOUR)
|
||||||
|
. = ..()
|
||||||
|
|||||||
@@ -46,3 +46,17 @@
|
|||||||
/obj/structure/table/rack/shelf/wood/Initialize(mapload)
|
/obj/structure/table/rack/shelf/wood/Initialize(mapload)
|
||||||
material = get_material_by_name(MAT_WOOD)
|
material = get_material_by_name(MAT_WOOD)
|
||||||
. = ..()
|
. = ..()
|
||||||
|
|
||||||
|
/obj/structure/table/rack/glamour
|
||||||
|
color = "#fffbe6"
|
||||||
|
|
||||||
|
/obj/structure/table/rack/glamour/Initialize(mapload)
|
||||||
|
material = get_material_by_name(MAT_GLAMOUR)
|
||||||
|
. = ..()
|
||||||
|
|
||||||
|
/obj/structure/table/rack/shelf/glamour
|
||||||
|
color = "#fffbe6"
|
||||||
|
|
||||||
|
/obj/structure/table/rack/shelf/glamour/Initialize(mapload)
|
||||||
|
material = get_material_by_name(MAT_GLAMOUR)
|
||||||
|
. = ..()
|
||||||
|
|||||||
Reference in New Issue
Block a user