From 45892cef7993135fde77e1d62e1dea3b27db5df6 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Fri, 3 Apr 2020 23:33:15 -0400 Subject: [PATCH] Update science.dm --- code/modules/cargo/bounties/science.dm | 47 ++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/code/modules/cargo/bounties/science.dm b/code/modules/cargo/bounties/science.dm index c543872565..6a14317c4a 100644 --- a/code/modules/cargo/bounties/science.dm +++ b/code/modules/cargo/bounties/science.dm @@ -116,3 +116,50 @@ exclude_types = list(/obj/item/stack/ore/bluespace_crystal, /obj/item/stack/sheet/bluespace_crystal, /obj/item/stack/ore/bluespace_crystal/refined) + +/datum/bounty/item/science/noneactive_reactivearmor + name = "Reactive Armor Shells" + description = "Do to the brake throughs in anomalies, we can not keep up in making reactive armor shells, can you send us a few?" + reward = 2000 + required_count = 5 + wanted_types = list(/obj/item/reactive_armour_shell, /obj/item/clothing/suit/armor/reactive) + exclude_types = list(/obj/item/clothing/suit/armor/reactive/repulse, + /obj/item/clothing/suit/armor/reactive/tesla, + /obj/item/clothing/suit/armor/reactive/teleport, + /obj/item/clothing/suit/armor/reactive/stealth, + /obj/item/clothing/suit/armor/reactive/fire) + +/datum/bounty/item/science/anomaly_core + name = "Anomaly Core" + description = "A new theory has begone that each sector of space has different anomalies, this all started when a local station tried to make a fire based reactive suit and failed making a stealth version, please send us a core so we may study it more." + reward = 2000 + required_count = 1 + wanted_types = list(/obj/item/assembly/signaler/anomaly) + +/datum/bounty/item/science/anomaly_neutralizer + name = "Anomaly Neutralizers" + description = "An idea for a long time was to use an unstable Suppermatter Shard to help crate the breeding grounds for an unstable part of space to harvest any anomalies we want. It worked a little to well and now were out of anomaly neutralizers please send us a baker's dozen." + reward = 2500 + required_count = 13 + wanted_types = list(/obj/item/anomaly_neutralizer) + +/datum/bounty/item/science/integrated_circuit_printer + name = "Integrated Circuit Printer" + description = "Do to a paperwork error, a newly made integrated circuit manufacturer line is missing three of its printers needed to operate. Until the paper work is corrected were outsourcing this problem, so please send us three integrated circuit printers." + reward = 2000 + required_count = 3 + wanted_types = list(/obj/item/integrated_circuit_printer) + +/datum/bounty/item/science/integrated_circuit_disks + name = "Integrated Circuit Printer Upgrade Disks" + description = "HR has requested ten more integrated circuit printer upgrade disks, please send them to CC as soon as possable." + reward = 2000 + required_count = 10 //Its just metal + wanted_types = list(/obj/item/disk/integrated_circuit/upgrade) + +/datum/bounty/item/science/nanite_trash + name = "Nanite Based Gear" + description = "CC wants to make nanite based gear available to a new wing of devolvement but lacks the hand held tools to get it full up and running. Please send us any you have." + reward = 2500 + required_count = 20 //Its just metal + wanted_types = list( /obj/item/nanite_remote, /obj/item/nanite_remote/comm, /obj/item/nanite_scanner)