some moire

This commit is contained in:
Kashargul
2024-12-06 21:54:05 +01:00
parent 80edcd2c3d
commit 429398bdd7
231 changed files with 2484 additions and 1945 deletions
@@ -6,7 +6,7 @@ CIRCUITS BELOW
build_type = IMPRINTER
req_tech = list(TECH_DATA = 2)
materials = list(MAT_GLASS = 2000)
chemicals = list("sacid" = 20)
chemicals = list(REAGENT_ID_SACID = 20)
time = 5
/datum/design/circuit/AssembleDesignName()
@@ -515,7 +515,7 @@ CIRCUITS BELOW
id = "durand_main"
req_tech = list(TECH_DATA = 4)
materials = list(MAT_GLASS = 2000, MAT_GRAPHITE = 1250)
chemicals = list("sacid" = 20)
chemicals = list(REAGENT_ID_SACID = 20)
build_path = /obj/item/circuitboard/mecha/durand/main
sort_string = "NAADA"
@@ -524,7 +524,7 @@ CIRCUITS BELOW
id = "durand_peri"
req_tech = list(TECH_DATA = 4)
materials = list(MAT_GLASS = 2000, MAT_GRAPHITE = 1250)
chemicals = list("sacid" = 20)
chemicals = list(REAGENT_ID_SACID = 20)
build_path = /obj/item/circuitboard/mecha/durand/peripherals
sort_string = "NAADB"
@@ -533,7 +533,7 @@ CIRCUITS BELOW
id = "durand_targ"
req_tech = list(TECH_DATA = 4, TECH_COMBAT = 2)
materials = list(MAT_GLASS = 2000, MAT_GRAPHITE = 1250)
chemicals = list("sacid" = 20)
chemicals = list(REAGENT_ID_SACID = 20)
build_path = /obj/item/circuitboard/mecha/durand/targeting
sort_string = "NAADC"
@@ -3,7 +3,7 @@
build_type = IMPRINTER
req_tech = list(TECH_DATA = 3)
materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 1000)
chemicals = list("pacid" = 10)
chemicals = list(REAGENT_ID_PACID = 10)
time = 5
/datum/design/circuit/disk/AssembleDesignName()
+6 -6
View File
@@ -19,7 +19,7 @@
id = "rust_core_control"
req_tech = list("programming" = 4, "engineering" = 4)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, "sacid" = 20)
materials = list(MAT_GLASS = 2000, REAGENT_ID_SACID = 20)
build_path = "/obj/item/circuitboard/rust_core_control"
/datum/design/rust_fuel_control
@@ -28,7 +28,7 @@
id = "rust_fuel_control"
req_tech = list("programming" = 4, "engineering" = 4)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, "sacid" = 20)
materials = list(MAT_GLASS = 2000, REAGENT_ID_SACID = 20)
build_path = "/obj/item/circuitboard/rust_fuel_control"
/datum/design/rust_fuel_port
@@ -37,7 +37,7 @@
id = "rust_fuel_port"
req_tech = list("engineering" = 4, "materials" = 5)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, "sacid" = 20, MAT_URANIUM = 3000)
materials = list(MAT_GLASS = 2000, REAGENT_ID_SACID = 20, MAT_URANIUM = 3000)
build_path = "/obj/item/module/rust_fuel_port"
/datum/design/rust_fuel_compressor
@@ -46,7 +46,7 @@
id = "rust_fuel_compressor"
req_tech = list("materials" = 6, "phorontech" = 4)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, "sacid" = 20, MAT_PHORON = 3000, MAT_DIAMOND = 1000)
materials = list(MAT_GLASS = 2000, REAGENT_ID_SACID = 20, MAT_PHORON = 3000, MAT_DIAMOND = 1000)
build_path = "/obj/item/module/rust_fuel_compressor"
/datum/design/rust_core
@@ -55,7 +55,7 @@
id = "pacman"
req_tech = list(bluespace = 3, phorontech = 4, magnets = 5, powerstorage = 6)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, "sacid" = 20, MAT_PHORON = 3000, MAT_DIAMOND = 2000)
materials = list(MAT_GLASS = 2000, REAGENT_ID_SACID = 20, MAT_PHORON = 3000, MAT_DIAMOND = 2000)
build_path = "/obj/item/circuitboard/rust_core"
/datum/design/rust_injector
@@ -64,6 +64,6 @@
id = "pacman"
req_tech = list(powerstorage = 3, engineering = 4, phorontech = 4, materials = 6)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, "sacid" = 20, MAT_PHORON = 3000, MAT_URANIUM = 2000)
materials = list(MAT_GLASS = 2000, REAGENT_ID_SACID = 20, MAT_PHORON = 3000, MAT_URANIUM = 2000)
build_path = "/obj/item/circuitboard/rust_core"
*/