turbo nutripump, lore notes and minor junk

- calorite research facility has lore notes (plus I added in a lil extra details or items here and there)
- added in the Nutriment Pump TURBO: it will permanently produce a tiny bit of nutriment, slowly fattening whoever has it implanted. It can be made via Nutri-Tech Tools research tree
- feeder's den has fattening turrets now, a beaker of lipoifier and 2 turbo nutripump autosurgeons
- some code cleaning
- added nutripump implant to the uplink
- small tweaks (fixed typos, changed names)
This commit is contained in:
GDLW
2023-05-11 22:25:07 +02:00
parent a9ca3bebb4
commit 31e0a00f9d
14 changed files with 286 additions and 105 deletions
@@ -1146,29 +1146,3 @@
var/datum/techweb_node/TN = i
TW.add_point_list(TN.research_costs)
return TW.printout_points()
/////////////// GS13 - NUTRITIONAL TECHNOLOGY
/datum/techweb_node/nutri_tech
id = "nutritech"
display_name = "Nutritional Technology"
description = "Ending world hunger was never made easier!"
prereq_ids = list("biotech") // add "engineering" if the designs get complicated later on
design_ids = list("calorite_collar")
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
boost_item_paths = list(/obj/item/gun/energy/fatoray, /obj/item/gun/energy/fatoray/cannon, /obj/item/trash/fatoray_scrap1, /obj/item/trash/fatoray_scrap2)
export_price = 5000
hidden = TRUE
/datum/techweb_node/nutri_tools
id = "nutritech_tools"
display_name = "Nutri-Tech Tools"
description = "Ever wanted to reach your daily caloric intake in just 5 seconds?"
prereq_ids = list("biotech", "adv_engi")
design_ids = list("fatoray_weak", "fatoray_cannon_weak")
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)
boost_item_paths = list(/obj/item/gun/energy/fatoray, /obj/item/gun/energy/fatoray/cannon, /obj/item/trash/fatoray_scrap1, /obj/item/trash/fatoray_scrap2)
export_price = 10000
hidden = TRUE