Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions code/modules/ruins/lavaland_ruin_code.dm
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@
var/obj/item/stack/O = I
var/species = golem_shell_species_types[O.merge_type]
if(species)
if(istype(O, /obj/item/stack/sheet/runed_metal) && !iscultist(user))
to_chat(user, "<span class='warning'>Only one with forbidden knowledge could hope to work this metal...</span>")
return
if(istype(O, /obj/item/stack/tile/brass) && !is_servant_of_ratvar(user))
to_chat(user, "<span class='danger'>[src] seems far too fragile and rigid to build with.</span>")
return
if(O.use(10))
to_chat(user, "You finish up the golem shell with ten sheets of [O].")
new shell_type(get_turf(src), species, user)
Expand Down