Gives beer and soda dispensers their own circuitboards and Design ID's (#37315)
* new boards * new boards installed * new designs (wow) (woah) * added the new design ids to the biotech node * tested it works, also, that typo fucking stopped it from compiling
This commit is contained in:
@@ -610,6 +610,14 @@
|
|||||||
def_components = list(/obj/item/stock_parts/cell = /obj/item/stock_parts/cell/high)
|
def_components = list(/obj/item/stock_parts/cell = /obj/item/stock_parts/cell/high)
|
||||||
needs_anchored = FALSE
|
needs_anchored = FALSE
|
||||||
|
|
||||||
|
/obj/item/circuitboard/machine/chem_dispenser/drinks
|
||||||
|
name = "Soda Dispenser (Machine Board)"
|
||||||
|
build_path = /obj/machinery/chem_dispenser/drinks
|
||||||
|
|
||||||
|
/obj/item/circuitboard/machine/chem_dispenser/drinks/beer
|
||||||
|
name = "Booze Dispenser (Machine Board)"
|
||||||
|
build_path = /obj/machinery/chem_dispenser/drinks/beer
|
||||||
|
|
||||||
/obj/item/circuitboard/machine/smoke_machine
|
/obj/item/circuitboard/machine/smoke_machine
|
||||||
name = "Smoke Machine (Machine Board)"
|
name = "Smoke Machine (Machine Board)"
|
||||||
build_path = /obj/machinery/smoke_machine
|
build_path = /obj/machinery/smoke_machine
|
||||||
|
|||||||
@@ -413,6 +413,7 @@ obj/machinery/chem_dispenser/proc/work_animation()
|
|||||||
amount = 10
|
amount = 10
|
||||||
pixel_y = 6
|
pixel_y = 6
|
||||||
layer = WALL_OBJ_LAYER
|
layer = WALL_OBJ_LAYER
|
||||||
|
circuit = /obj/item/circuitboard/machine/chem_dispenser/drinks
|
||||||
working_state = null
|
working_state = null
|
||||||
nopower_state = null
|
nopower_state = null
|
||||||
dispensable_reagents = list(
|
dispensable_reagents = list(
|
||||||
@@ -450,6 +451,7 @@ obj/machinery/chem_dispenser/proc/work_animation()
|
|||||||
anchored = TRUE
|
anchored = TRUE
|
||||||
icon = 'icons/obj/chemical.dmi'
|
icon = 'icons/obj/chemical.dmi'
|
||||||
icon_state = "booze_dispenser"
|
icon_state = "booze_dispenser"
|
||||||
|
circuit = /obj/item/circuitboard/machine/chem_dispenser/drinks/beer
|
||||||
dispensable_reagents = list(
|
dispensable_reagents = list(
|
||||||
"beer",
|
"beer",
|
||||||
"kahlua",
|
"kahlua",
|
||||||
|
|||||||
@@ -330,6 +330,22 @@
|
|||||||
category = list ("Misc. Machinery")
|
category = list ("Misc. Machinery")
|
||||||
departmental_flags = DEPARTMENTAL_FLAG_SERVICE
|
departmental_flags = DEPARTMENTAL_FLAG_SERVICE
|
||||||
|
|
||||||
|
/datum/design/board/soda_dispenser
|
||||||
|
name = "Machine Design (Portable Soda Dispenser Board)"
|
||||||
|
desc = "The circuit board for a portable soda dispenser."
|
||||||
|
id = "soda_dispenser"
|
||||||
|
build_path = /obj/item/circuitboard/machine/chem_dispenser/drinks
|
||||||
|
departmental_flags = DEPARTMENTAL_FLAG_SERVICE
|
||||||
|
category = list ("Misc. Machinery")
|
||||||
|
|
||||||
|
/datum/design/board/beer_dispenser
|
||||||
|
name = "Machine Design (Portable Booze Dispenser Board)"
|
||||||
|
desc = "The circuit board for a portable booze dispenser."
|
||||||
|
id = "beer_dispenser"
|
||||||
|
build_path = /obj/item/circuitboard/machine/chem_dispenser/drinks/beer
|
||||||
|
departmental_flags = DEPARTMENTAL_FLAG_SERVICE
|
||||||
|
category = list ("Misc. Machinery")
|
||||||
|
|
||||||
/datum/design/board/slimeprocessor
|
/datum/design/board/slimeprocessor
|
||||||
name = "Machine Design (Slime Processor Board)"
|
name = "Machine Design (Slime Processor Board)"
|
||||||
desc = "The circuit board for a slime processor."
|
desc = "The circuit board for a slime processor."
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
display_name = "Biological Technology"
|
display_name = "Biological Technology"
|
||||||
description = "What makes us tick." //the MC, silly!
|
description = "What makes us tick." //the MC, silly!
|
||||||
prereq_ids = list("base")
|
prereq_ids = list("base")
|
||||||
design_ids = list("chem_heater", "chem_master", "chem_dispenser", "sleeper", "pandemic", "defibmount", "operating")
|
design_ids = list("chem_heater", "chem_master", "chem_dispenser", "sleeper", "pandemic", "defibmount", "operating", "soda_dispenser", "beer_dispenser")
|
||||||
research_cost = 2500
|
research_cost = 2500
|
||||||
export_price = 5000
|
export_price = 5000
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user