mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-03 14:12:29 +00:00
17 lines
590 B
Plaintext
17 lines
590 B
Plaintext
// Initial declaration
|
|
/obj/effect/mazegen
|
|
desc = "You should not be seeing this!"
|
|
icon = 'icons/mob/screen_gen.dmi'
|
|
icon_state = "x2"
|
|
color = "#00FF00"
|
|
|
|
// Windows which cant be taken apart. Thes are subtypes of windows so you can have atoms you can walk in at some dirs bit not others
|
|
/obj/structure/window/reinforced/mazeglass
|
|
name = "maze glass"
|
|
desc = "You cant take this down. Looks like you have to solve the maze."
|
|
resistance_flags = INDESTRUCTIBLE
|
|
|
|
// No taking apart
|
|
/obj/structure/window/reinforced/mazeglass/tool_act(mob/living/user, obj/item/I, tool_type)
|
|
return FALSE
|