mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-26 02:02:39 +00:00
* grammar fixes cant - can't removes duplicate the from mobs the pain in your the - treads on the lit the lit - what you can cook with this the - * should fix the merge conflict 0 to FALSE * unconflicts panther will have to be fixed at a later date
17 lines
591 B
Plaintext
17 lines
591 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 can't 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
|