Fix Commit

This commit is contained in:
GhostActual
2022-04-18 15:56:17 -04:00
parent 9cdd3560e0
commit d8c9f0fe42
4 changed files with 141 additions and 24 deletions
+19 -3
View File
@@ -17,7 +17,6 @@
/datum/design/item/powercell/basic
name = "basic"
build_type = PROTOLATHE | MECHFAB
id = "basic_cell"
req_tech = list(TECH_POWER = 1)
materials = list(MAT_STEEL = 700, MAT_GLASS = 50)
@@ -27,7 +26,6 @@
/datum/design/item/powercell/high
name = "high-capacity"
build_type = PROTOLATHE | MECHFAB
id = "high_cell"
req_tech = list(TECH_POWER = 2)
materials = list(MAT_STEEL = 700, MAT_GLASS = 60)
@@ -69,4 +67,22 @@
materials = list(MAT_STEEL = 700, MAT_GLASS = 50)
build_path = /obj/item/weapon/cell/device/weapon
category = list("Misc")
sort_string = "BAABB"
sort_string = "BAABB"
/datum/design/item/powercell/mecha/high
name = "high-capacity mecha"
id = "high_mech_cell"
req_tech = list(TECH_POWER = 3, TECH_MATERIAL = 3)
materials = list(MAT_STEEL = 600, MAT_SILVER = 150, MAT_GLASS = 70)
build_path = /obj/item/weapon/cell/mech/high
category = list("Misc")
sort_string = "BAACA"
/datum/design/item/powercell/mecha/super
name = "super-capacity mecha"
id = "super_mech_cell"
req_tech = list(TECH_POWER = 5, TECH_MATERIAL = 4)
materials = list(MAT_STEEL = 500, MAT_GOLD = 200, MAT_SILVER = 200, MAT_GLASS = 80)
build_path = /obj/item/weapon/cell/mech/super
category = list("Misc")
sort_string = "BAACB"