//lavaland_surface_syndicate_base1.dmm and it's modules /obj/modular_map_root/syndicatebase config_file = "strings/modular_maps/syndicatebase.toml" /obj/structure/closet/crate/secure/freezer/commsagent name = "Assorted Tongues And Tongue Accessories" desc = "Unearthing this was probably a mistake." /obj/structure/closet/crate/secure/freezer/commsagent/PopulateContents() . = ..() //Contains a variety of less exotic tongues (And tongue accessories) for the comms agent to mess with. new /obj/item/organ/tongue(src) new /obj/item/organ/tongue/lizard(src) new /obj/item/organ/tongue/fly(src) new /obj/item/organ/tongue/zombie(src) new /obj/item/organ/tongue/bone(src) new /obj/item/organ/tongue/robot(src) //DANGER! CRYSTAL HYPERSTRUCTURE- new /obj/item/organ/tongue/ethereal(src) new /obj/item/autosurgeon/syndicate/commsagent(src) new /obj/item/book/granter/sign_language(src) new /obj/item/clothing/gloves/radio(src) /obj/machinery/power/supermatter_crystal/shard/syndicate name = "syndicate supermatter shard" desc = "Your benefactors conveniently neglected to mention it's already assembled." anchored = TRUE radio_key = /obj/item/encryptionkey/syndicate emergency_channel = "Syndicate" warning_channel = "Syndicate" include_in_cims = FALSE /obj/machinery/power/supermatter_crystal/shard/syndicate/attackby(obj/item/item, mob/living/user, list/modifiers, list/attack_modifiers) if(istype(item, /obj/item/scalpel/supermatter)) //You can already yoink the docs as a free objective win, another would be just gross to_chat(user, span_danger("This shard's already in Syndicate custody, taking it again could cause more harm than good.")) return else . = ..()