mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
[MIRROR] Module duplicator has cheaper costs for circuit duplication [MDB IGNORE] (#22785)
* 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 ` * Module duplicator has cheaper costs for circuit duplication --------- Co-authored-by: SyncIt21 <110812394+SyncIt21@users.noreply.github.com>
This commit is contained in:
committed by
nevimer
co-authored by
SyncIt21
parent
a875500996
commit
d3ff03217e
@@ -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