mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 12:02:31 +01:00
Fixes recipes for components that use steel
- Because metal != steel
This commit is contained in:
@@ -720,7 +720,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "hdd_basic"
|
||||
req_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 2000, "glass" = 100)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 2000, "glass" = 100)
|
||||
build_path = /obj/item/weapon/computer_hardware/hard_drive/
|
||||
sort_string = "VBAAA"
|
||||
|
||||
@@ -729,7 +729,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "hdd_advanced"
|
||||
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 4000, "glass" = 200)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 4000, "glass" = 200)
|
||||
build_path = /obj/item/weapon/computer_hardware/hard_drive/advanced
|
||||
sort_string = "VBAAB"
|
||||
|
||||
@@ -738,7 +738,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "hdd_super"
|
||||
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 8000, "glass" = 400)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 8000, "glass" = 400)
|
||||
build_path = /obj/item/weapon/computer_hardware/hard_drive/super
|
||||
sort_string = "VBAAC"
|
||||
|
||||
@@ -747,7 +747,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "hdd_cluster"
|
||||
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 16000, "glass" = 800)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 16000, "glass" = 800)
|
||||
build_path = /obj/item/weapon/computer_hardware/hard_drive/cluster
|
||||
sort_string = "VBAAD"
|
||||
|
||||
@@ -756,7 +756,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "hdd_small"
|
||||
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 4000, "glass" = 200)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 4000, "glass" = 200)
|
||||
build_path = /obj/item/weapon/computer_hardware/hard_drive/small
|
||||
sort_string = "VBAAE"
|
||||
|
||||
@@ -765,7 +765,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "hdd_micro"
|
||||
req_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 2000, "glass" = 100)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 2000, "glass" = 100)
|
||||
build_path = /obj/item/weapon/computer_hardware/hard_drive/micro
|
||||
sort_string = "VBAAF"
|
||||
|
||||
@@ -775,7 +775,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "netcard_basic"
|
||||
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 1)
|
||||
build_type = IMPRINTER
|
||||
materials = list("metal" = 500, "glass" = 100)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 500, "glass" = 100)
|
||||
chemicals = list("sacid" = 20)
|
||||
build_path = /obj/item/weapon/computer_hardware/network_card
|
||||
sort_string = "VBAAG"
|
||||
@@ -785,7 +785,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "netcard_advanced"
|
||||
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 2)
|
||||
build_type = IMPRINTER
|
||||
materials = list("metal" = 1000, "glass" = 200)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 1000, "glass" = 200)
|
||||
chemicals = list("sacid" = 20)
|
||||
build_path = /obj/item/weapon/computer_hardware/network_card/advanced
|
||||
sort_string = "VBAAH"
|
||||
@@ -795,7 +795,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "netcard_wired"
|
||||
req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 3)
|
||||
build_type = IMPRINTER
|
||||
materials = list("metal" = 5000, "glass" = 400)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 5000, "glass" = 400)
|
||||
chemicals = list("sacid" = 20)
|
||||
build_path = /obj/item/weapon/computer_hardware/network_card/wired
|
||||
sort_string = "VBAAI"
|
||||
@@ -837,7 +837,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "cardslot"
|
||||
req_tech = list(TECH_DATA = 2)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 3000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 3000)
|
||||
build_path = /obj/item/weapon/computer_hardware/card_slot
|
||||
sort_string = "VBAAM"
|
||||
|
||||
@@ -847,7 +847,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "nanoprinter"
|
||||
req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 3000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 3000)
|
||||
build_path = /obj/item/weapon/computer_hardware/nano_printer
|
||||
sort_string = "VBAAN"
|
||||
|
||||
@@ -857,7 +857,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "teslalink"
|
||||
req_tech = list(TECH_DATA = 2, TECH_POWER = 3, TECH_ENGINEERING = 2)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 10000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 10000)
|
||||
build_path = /obj/item/weapon/computer_hardware/tesla_link
|
||||
sort_string = "VBAAO"
|
||||
|
||||
@@ -867,7 +867,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "bat_normal"
|
||||
req_tech = list(TECH_POWER = 1, TECH_ENGINEERING = 1)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 2000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 2000)
|
||||
build_path = /obj/item/weapon/computer_hardware/battery_module
|
||||
sort_string = "VBAAP"
|
||||
|
||||
@@ -876,7 +876,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "bat_advanced"
|
||||
req_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 2)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 4000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 4000)
|
||||
build_path = /obj/item/weapon/computer_hardware/battery_module/advanced
|
||||
sort_string = "VBAAQ"
|
||||
|
||||
@@ -885,7 +885,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "bat_super"
|
||||
req_tech = list(TECH_POWER = 3, TECH_ENGINEERING = 3)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 8000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 8000)
|
||||
build_path = /obj/item/weapon/computer_hardware/battery_module/super
|
||||
sort_string = "VBAAR"
|
||||
|
||||
@@ -894,7 +894,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "bat_ultra"
|
||||
req_tech = list(TECH_POWER = 5, TECH_ENGINEERING = 4)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 16000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 16000)
|
||||
build_path = /obj/item/weapon/computer_hardware/battery_module/ultra
|
||||
sort_string = "VBAAS"
|
||||
|
||||
@@ -903,7 +903,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "bat_nano"
|
||||
req_tech = list(TECH_POWER = 1, TECH_ENGINEERING = 1)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 2000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 2000)
|
||||
build_path = /obj/item/weapon/computer_hardware/battery_module/nano
|
||||
sort_string = "VBAAT"
|
||||
|
||||
@@ -912,7 +912,7 @@ other types of metals and chemistry for reagents).
|
||||
id = "bat_micro"
|
||||
req_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 2)
|
||||
build_type = PROTOLATHE
|
||||
materials = list("metal" = 4000)
|
||||
materials = list(DEFAULT_WALL_MATERIAL = 4000)
|
||||
build_path = /obj/item/weapon/computer_hardware/battery_module/micro
|
||||
sort_string = "VBAAU"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user