diff --git a/code/modules/cargo/bounties/science.dm b/code/modules/cargo/bounties/science.dm index c543872565..ad03b2f393 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 breakthroughs 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 begun 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 = 2500 + 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 Supermatter Shard to help create the breeding grounds for an unstable part of space to harvest any anomalies we want. It worked a little too 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 = "due 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 we are 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 possible." + 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)