Merge pull request #2150 from CHOMPStationBot/upstream-merge-10584

[MIRROR] Explorer storage items
This commit is contained in:
Nadyr
2021-06-08 01:39:37 -04:00
committed by GitHub
9 changed files with 47 additions and 15 deletions

View File

@@ -118,6 +118,9 @@ Keep outfits simple. Spawn with basic uniforms and minimal gear. Gear instead go
pda_type = /obj/item/device/pda/explorer
id_type = /obj/item/weapon/card/id/exploration
id_pda_assignment = "Explorer"
backpack = /obj/item/weapon/storage/backpack/explorer
satchel_one = /obj/item/weapon/storage/backpack/satchel/explorer
messenger_bag = /obj/item/weapon/storage/backpack/messenger/explorer
flags = OUTFIT_HAS_BACKPACK|OUTFIT_COMPREHENSIVE_SURVIVAL
/decl/hierarchy/outfit/job/pilot
@@ -148,6 +151,9 @@ Keep outfits simple. Spawn with basic uniforms and minimal gear. Gear instead go
pda_type = /obj/item/device/pda/sar
id_type = /obj/item/weapon/card/id/exploration/fm
id_pda_assignment = "Field Medic"
backpack = /obj/item/weapon/storage/backpack/explorer
satchel_one = /obj/item/weapon/storage/backpack/satchel/explorer
messenger_bag = /obj/item/weapon/storage/backpack/messenger/explorer
flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL|OUTFIT_COMPREHENSIVE_SURVIVAL
/decl/hierarchy/outfit/job/pathfinder

View File

@@ -1,7 +1,8 @@
/obj/item/device/bluespaceradio
name = "bluespace radio"
desc = "A powerful radio that uses a tiny bluespace wormhole to send signals directly to subspace receivers and transmitters, bypassing the limitations of subspace."
icon = 'icons/obj/radio.dmi'
icon = 'icons/obj/device_vr.dmi' // VOREStation Edit
icon_override = 'icons/mob/back_vr.dmi' // VOREStation Edit
icon_state = "radiopack"
item_state = "radiopack"
slot_flags = SLOT_BACK
@@ -99,7 +100,8 @@
name = "bluespace radio handset"
desc = "A large walkie talkie attached to the bluespace radio by a retractable cord. It sits comfortably on a slot in the radio when not in use."
bluespace_radio = TRUE
icon_state = "signaller"
icon = 'icons/obj/device_vr.dmi' //VOREStation Edit
icon_state = "handset" //VOREStation Edit
slot_flags = null
w_class = ITEMSIZE_LARGE
canhear_range = 1

View File

@@ -83,21 +83,39 @@
/obj/item/weapon/storage/backpack/ert
max_storage_space = INVENTORY_DUFFLEBAG_SPACE
/obj/item/weapon/storage/backpack/satchel/explorer
name = "explorer satchel"
desc = "A satchel for carrying a large number of supplies easily."
icon = 'icons/obj/clothing/backpack_vr.dmi'
icon_override = 'icons/mob/back_vr.dmi'
item_state = "satchel-explorer"
icon_state = "satchel-explorer"
///Exploration Bags///
/obj/item/weapon/storage/backpack/explorer
name = "explorer backpack"
name = "exploration backpack"
desc = "A backpack for carrying a large number of supplies easily."
icon = 'icons/obj/clothing/backpack_vr.dmi'
icon_override = 'icons/mob/back_vr.dmi'
item_state = "explorerpack"
icon_state = "explorerpack"
icon_state = "explorer"
/obj/item/weapon/storage/backpack/satchel/explorer
name = "exploration satchel"
desc = "A satchel for carrying a large number of supplies easily."
icon = 'icons/obj/clothing/backpack_vr.dmi'
icon_override = 'icons/mob/back_vr.dmi'
icon_state = "explorer_satchel"
item_state_slots = null
/obj/item/weapon/storage/backpack/messenger/explorer
name = "exploration messenger bag"
desc = "A sturdy backpack worn over one shoulder."
icon = 'icons/obj/clothing/backpack_vr.dmi'
icon_override = 'icons/mob/back_vr.dmi'
icon_state = "explorer_courier"
item_state_slots = null
/obj/item/weapon/storage/backpack/dufflebag/explorer
name = "exploration dufflebag"
desc = "A large dufflebag for holding extra supplies."
icon = 'icons/obj/clothing/backpack_vr.dmi'
icon_override = 'icons/mob/back_vr.dmi'
icon_state = "explorer_duffle"
/obj/item/weapon/storage/backpack/satchel/roboticist
name = "roboticist satchel"

View File

@@ -6,9 +6,10 @@
/obj/item/weapon/storage/belt/explorer
name = "explorer's belt"
desc = "A versatile belt with several pouches. It can hold a very wide variety of items, but less items overall than a dedicated belt. Still, it's useful for any explorer who wants to be prepared for anything they might find."
icon_state = "explorer_belt"
icon = 'icons/obj/clothing/belts_vr.dmi'
icon_override = 'icons/mob/belt_vr.dmi'
icon_state = "explo_belt"
item_state = "explorer_belt"
storage_slots = 5 //makes it strictly inferior to any specialized belt as they have seven slots, but it's far more versatile
max_w_class = ITEMSIZE_NORMAL //limits the max size of thing that can be put in, so no using it to hold five laser cannons
max_storage_space = ITEMSIZE_COST_NORMAL * 5
@@ -45,11 +46,16 @@
/obj/item/device/geiger,
/obj/item/device/gps,
/obj/item/device/ano_scanner,
/obj/item/device/cataloguer
/obj/item/device/cataloguer,
/obj/item/device/radio,
/obj/item/device/mapping_unit
)
/obj/item/weapon/storage/belt/explorer/pathfinder
name = "pathfinder's belt"
desc = "A deluxe belt with many pouches. It can hold a very wide variety of items, but less items overall than a dedicated belt. Still, it's useful for any explorer who wants to be prepared for anything they might find."
icon = 'icons/obj/clothing/belts_vr.dmi'
icon_state = "pathfinder_belt"
item_state = "explorer_belt"
storage_slots = 7 //two more, bringing it on par with normal belts
max_storage_space = ITEMSIZE_COST_NORMAL * 7
max_storage_space = ITEMSIZE_COST_NORMAL * 7

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 B

After

Width:  |  Height:  |  Size: 613 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB