Skip to content
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
16 changes: 14 additions & 2 deletions mods/persistence/modules/chargen/vending/science.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/obj/machinery/vending/infini/science
name = "NanoSci Plus"
desc = "Medical drug & science dispenser."
name = "FrontierTek Plus"
desc = "An automated synthesizer machine that can print basic science and medical equipment, in addition to an assortment of medical supplies and drugs."
icon_state = "med"
icon_deny = "med-deny"
icon_vend = "med-vend"
Expand All @@ -19,3 +19,15 @@
/obj/item/chargen_box/science/oxyloss = 999
)
idle_power_usage = 211 //refrigerator - believe it or not, this is actually the average power consumption of a refrigerated vending machine according to NRCan.

/obj/machinery/vending/infini/science/basic
name = "FrontierTek Plus Minus"
desc = "An automated synthesizer that can print basic science and medical equipment. This vendor in particular seems to lack the appropriate modules to synthesize medicine."
base_type = /obj/machinery/vending/infini/science/basic
products = list(
/obj/item/chargen_box/science/rnd = 999,
/obj/item/chargen_box/science/chem = 999,
/obj/item/chargen_box/science/emt = 999,
/obj/item/chargen_box/science/surgery = 999
)