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:
SyncIt21
2023-07-31 00:52:11 +05:30
committed by GitHub
parent 9b734cdaf8
commit 6a55c540da
@@ -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)