mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-16 13:12:22 +00:00
Research QoL changes (#6042)
* Research QoL changes * Reverts changes relating to blanket print times and Protolathe storage * Actually changes the design print time. Why do you hate me github. * Fixes an enter key error caused by the editor. * Actually does all of the things I needed to do like a smart person Which apparently I am not. * Fixes a newline Because goddamn it the online editor hates me too.
This commit is contained in:
committed by
Mechoid
parent
ed13e9d748
commit
b9af45b2da
@@ -396,6 +396,21 @@
|
|||||||
max_w_class = ITEMSIZE_NORMAL
|
max_w_class = ITEMSIZE_NORMAL
|
||||||
max_storage_space = 100
|
max_storage_space = 100
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/part_replacer/adv
|
||||||
|
name = "advanced rapid part exchange device"
|
||||||
|
desc = "Special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity"
|
||||||
|
icon_state = "RPED"
|
||||||
|
w_class = ITEMSIZE_HUGE
|
||||||
|
can_hold = list(/obj/item/weapon/stock_parts)
|
||||||
|
storage_slots = 200
|
||||||
|
use_to_pickup = 1
|
||||||
|
allow_quick_gather = 1
|
||||||
|
allow_quick_empty = 1
|
||||||
|
collection_mode = 1
|
||||||
|
display_contents_with_number = 1
|
||||||
|
max_w_class = ITEMSIZE_NORMAL
|
||||||
|
max_storage_space = 400
|
||||||
|
|
||||||
/obj/item/weapon/stock_parts
|
/obj/item/weapon/stock_parts
|
||||||
name = "stock part"
|
name = "stock part"
|
||||||
desc = "What?"
|
desc = "What?"
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
/datum/design/item/stock_part
|
/datum/design/item/stock_part
|
||||||
build_type = PROTOLATHE
|
build_type = PROTOLATHE
|
||||||
|
time = 3 //Sets an independent time for stock parts, currently one third normal print time.
|
||||||
|
|
||||||
/datum/design/item/stock_part/AssembleDesignName()
|
/datum/design/item/stock_part/AssembleDesignName()
|
||||||
..()
|
..()
|
||||||
@@ -237,7 +238,7 @@
|
|||||||
build_path = /obj/item/weapon/stock_parts/subspace/transmitter
|
build_path = /obj/item/weapon/stock_parts/subspace/transmitter
|
||||||
sort_string = "UAAAG"
|
sort_string = "UAAAG"
|
||||||
|
|
||||||
// RPED lives here because it handles stock parts
|
// RPEDs live here because they handle stock parts
|
||||||
/datum/design/item/stock_part/RPED
|
/datum/design/item/stock_part/RPED
|
||||||
name = "Rapid Part Exchange Device"
|
name = "Rapid Part Exchange Device"
|
||||||
desc = "Special mechanical module made to store, sort, and apply standard machine parts."
|
desc = "Special mechanical module made to store, sort, and apply standard machine parts."
|
||||||
@@ -246,3 +247,12 @@
|
|||||||
materials = list(DEFAULT_WALL_MATERIAL = 15000, "glass" = 5000)
|
materials = list(DEFAULT_WALL_MATERIAL = 15000, "glass" = 5000)
|
||||||
build_path = /obj/item/weapon/storage/part_replacer
|
build_path = /obj/item/weapon/storage/part_replacer
|
||||||
sort_string = "CBAAA"
|
sort_string = "CBAAA"
|
||||||
|
|
||||||
|
/datum/design/item/stock_part/ARPED
|
||||||
|
name = "Advanced Rapid Part Exchange Device"
|
||||||
|
desc = "Special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity."
|
||||||
|
id = "arped"
|
||||||
|
req_tech = list(TECH_ENGINEERING = 5, TECH_MATERIAL = 5)
|
||||||
|
materials = list(DEFAULT_WALL_MATERIAL = 30000, "glass" = 10000)
|
||||||
|
build_path = /obj/item/weapon/storage/part_replacer/adv
|
||||||
|
sort_string = "CBAAB"
|
||||||
Reference in New Issue
Block a user