Duffle/standard storage/weight alternatives for taur backpacks (#6746)

This commit is contained in:
BlackMajor
2023-08-07 14:48:05 +02:00
committed by GitHub
parent e3cd20ad18
commit 8c9bb95c17
4 changed files with 42 additions and 3 deletions
+5 -2
View File
@@ -370,6 +370,9 @@
contains = list(
/obj/item/weapon/storage/backpack/saddlebag_common,
/obj/item/weapon/storage/backpack/saddlebag_common/robust,
/obj/item/weapon/storage/backpack/saddlebag_common/robust/lightweight, //CHOMPEdit
/obj/item/weapon/storage/backpack/saddlebag_common/vest/heavy, //CHOMPEdit
/obj/item/weapon/storage/backpack/saddlebag_common/lightweight, //CHOMPEdit
/obj/item/weapon/storage/backpack/saddlebag_common/vest
)
cost = 60
@@ -395,7 +398,7 @@
cost = 10
containertype = /obj/structure/closet/crate
containername = "Knights Gear Crate"
/datum/supply_pack/costumes/christmas
name = "Christmas costume pack"
contains = list(
@@ -412,4 +415,4 @@
)
cost = 20
containertype = /obj/structure/closet/crate
containername = "Christmas costume pack"
containername = "Christmas costume pack"
@@ -142,4 +142,22 @@
display_name = "Synthesizer"
description = "Not a portable keyboard"
path = /obj/item/instrument/piano_synth
cost = 3
cost = 3
/datum/gear/utility/saddlebag_common/lightweight
display_name = "saddle bag, common (Light)"
path = /obj/item/weapon/storage/backpack/saddlebag_common/lightweight
slot = slot_back
cost = 2
/datum/gear/utility/saddlebag_common/robust/lightweight
display_name = "saddle bag, robust (Light)"
path = /obj/item/weapon/storage/backpack/saddlebag_common/robust/lightweight
slot = slot_back
cost = 2
/datum/gear/utility/saddlebag_common/vest/heavy
display_name = "taur duty vest (backpack) (Heavy)"
path = /obj/item/weapon/storage/backpack/saddlebag_common/vest/heavy
slot = slot_back
cost = 1
@@ -0,0 +1,17 @@
/obj/item/weapon/storage/backpack/saddlebag_common/lightweight
name = "Taur Saddlebags (Light)"
desc = "A saddle that holds items. Lighter than its heavier cousin, as the cost of storage space."
max_storage_space = INVENTORY_DUFFLEBAG_SPACE //Saddlebags can hold more, like dufflebags
slowdown = 0 //And are slower, too...
/obj/item/weapon/storage/backpack/saddlebag_common/robust/lightweight
name = "Lightweight Saddlebags"
desc = "A saddle that holds items. Lighter than it's robust cousin, at the cost of storage space.."
max_storage_space = INVENTORY_STANDARD_SPACE
slowdown = 0
/obj/item/weapon/storage/backpack/saddlebag_common/vest/heavy
name = "Taur Duty Vest (Heavy)"
desc = "An armored vest with the armor modules replaced with various handy compartments with decent storage capacity. Useless for protection though. Holds more than its lighter cousin.."
max_storage_space = INVENTORY_DUFFLEBAG_SPACE
slowdown = 0.5
+1
View File
@@ -4579,6 +4579,7 @@
#include "modular_chomp\code\game\objects\items\weapons\capture_crystal.dm"
#include "modular_chomp\code\game\objects\items\weapons\cigs_lighters.dm"
#include "modular_chomp\code\game\objects\items\weapons\RCD.dm"
#include "modular_chomp\code\game\objects\items\weapons\storage\backpack.dm"
#include "modular_chomp\code\game\objects\items\weapons\storage\firstaid.dm"
#include "modular_chomp\code\game\objects\random\mapping.dm"
#include "modular_chomp\code\game\objects\structures\desert_planet_structures.dm"