mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 03:55:11 +01:00
Module duplicator has cheaper costs for circuit duplication (#77180)
## About The Pull Request Fixes #77158 > this is pretty clearly a relic of the resource cost rebalance. Yes it is. `cost_per_component` var had a fixed value of 1000. Now it's value is 1 /10th of `SHEET_MATERIAL_AMOUNT `
This commit is contained in:
@@ -304,16 +304,15 @@
|
||||
icon = 'icons/obj/machines/wiremod_fab.dmi'
|
||||
icon_state = "module-fab-idle"
|
||||
circuit = /obj/item/circuitboard/machine/module_duplicator
|
||||
|
||||
/// The internal material bus
|
||||
var/datum/component/remote_materials/materials
|
||||
|
||||
density = TRUE
|
||||
|
||||
///The internal material bus
|
||||
var/datum/component/remote_materials/materials
|
||||
///List of designs scanned and saved
|
||||
var/list/scanned_designs = list()
|
||||
|
||||
var/cost_per_component = 1000
|
||||
|
||||
///Constant material cost per component
|
||||
var/cost_per_component = SHEET_MATERIAL_AMOUNT / 10
|
||||
///Cost efficiency of this machine
|
||||
var/efficiency_coeff = 1
|
||||
|
||||
/obj/machinery/module_duplicator/Initialize(mapload)
|
||||
|
||||
Reference in New Issue
Block a user