mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 03:55:05 +01:00
Repath some satchels (#30427)
* fix satchel interactions * updatepaths name
This commit is contained in:
@@ -174,7 +174,7 @@
|
||||
)
|
||||
|
||||
backpack = /obj/item/storage/backpack/explorer
|
||||
satchel = /obj/item/storage/backpack/satchel/explorer
|
||||
satchel = /obj/item/storage/backpack/satchel_explorer
|
||||
box = /obj/item/storage/box/survival_mining
|
||||
|
||||
/datum/outfit/job/mining/on_mind_initialize(mob/living/carbon/human/H)
|
||||
@@ -251,7 +251,7 @@
|
||||
id = /obj/item/card/id/explorer
|
||||
pda = /obj/item/pda/explorer
|
||||
backpack = /obj/item/storage/backpack/explorer
|
||||
satchel = /obj/item/storage/backpack/satchel/explorer
|
||||
satchel = /obj/item/storage/backpack/satchel_explorer
|
||||
box = /obj/item/storage/box/survival_mining
|
||||
|
||||
/datum/outfit/job/explorer/on_mind_initialize(mob/living/carbon/human/H)
|
||||
@@ -425,7 +425,7 @@
|
||||
bio_chips = list(/obj/item/bio_chip/sad_trombone)
|
||||
|
||||
backpack = /obj/item/storage/backpack/clown
|
||||
satchel = /obj/item/storage/backpack/satchel/clown
|
||||
satchel = /obj/item/storage/backpack/satchel_clown
|
||||
dufflebag = /obj/item/storage/backpack/duffel/clown
|
||||
|
||||
/datum/outfit/job/clown/pre_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
||||
|
||||
+4
-4
@@ -661,7 +661,7 @@
|
||||
/obj/item/clothing/shoes/workboots/mining = 3,
|
||||
/obj/item/clothing/mask/gas/explorer = 3,
|
||||
/obj/item/storage/backpack/explorer = 2,
|
||||
/obj/item/storage/backpack/satchel/explorer = 2,
|
||||
/obj/item/storage/backpack/satchel_explorer = 2,
|
||||
/obj/item/clothing/head/helmet/space/plasmaman/mining = 3,
|
||||
/obj/item/clothing/under/plasmaman/mining = 3)
|
||||
|
||||
@@ -679,7 +679,7 @@
|
||||
/obj/item/clothing/accessory/armband/cargo = 20,
|
||||
/obj/item/clothing/shoes/workboots/mining = 20,
|
||||
/obj/item/storage/backpack/explorer = 50,
|
||||
/obj/item/storage/backpack/satchel/explorer = 50,
|
||||
/obj/item/storage/backpack/satchel_explorer = 50,
|
||||
/obj/item/clothing/head/helmet/space/plasmaman/mining = 60,
|
||||
/obj/item/clothing/under/plasmaman/mining = 60)
|
||||
|
||||
@@ -710,7 +710,7 @@
|
||||
/obj/item/clothing/shoes/jackboots = 3,
|
||||
/obj/item/clothing/mask/gas/explorer = 3,
|
||||
/obj/item/storage/backpack/explorer = 2,
|
||||
/obj/item/storage/backpack/satchel/explorer = 2,
|
||||
/obj/item/storage/backpack/satchel_explorer = 2,
|
||||
/obj/item/clothing/head/helmet/space/plasmaman/expedition = 3,
|
||||
/obj/item/clothing/under/plasmaman/expedition = 3)
|
||||
|
||||
@@ -727,7 +727,7 @@
|
||||
/obj/item/clothing/accessory/armband/cargo = 20,
|
||||
/obj/item/clothing/shoes/jackboots = 20,
|
||||
/obj/item/storage/backpack/explorer = 50,
|
||||
/obj/item/storage/backpack/satchel/explorer = 50,
|
||||
/obj/item/storage/backpack/satchel_explorer = 50,
|
||||
/obj/item/clothing/head/helmet/space/plasmaman/expedition = 60,
|
||||
/obj/item/clothing/under/plasmaman/expedition = 60)
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ GLOBAL_LIST_INIT(human_recipes, list(
|
||||
singular_name = "lizard skin piece"
|
||||
|
||||
GLOBAL_LIST_INIT(lizard_recipes, list(
|
||||
new /datum/stack_recipe("lizard skin handbag", /obj/item/storage/backpack/satchel/lizard, 5, on_floor = TRUE),
|
||||
new /datum/stack_recipe("lizard skin handbag", /obj/item/storage/backpack/satchel_lizard, 5, on_floor = TRUE),
|
||||
))
|
||||
|
||||
/obj/item/stack/sheet/animalhide/lizard/Initialize(mapload, new_amount, merge = TRUE)
|
||||
|
||||
@@ -240,7 +240,7 @@
|
||||
worn_icon_state = "satchel"
|
||||
inhand_icon_state = "satchel"
|
||||
|
||||
/obj/item/storage/backpack/satchel/lizard
|
||||
/obj/item/storage/backpack/satchel_lizard
|
||||
name = "lizard skin handbag"
|
||||
desc = "A handbag made out of what appears to be supple green Unathi skin. A face can be vaguely seen on the front."
|
||||
icon_state = "satchel-lizard"
|
||||
@@ -250,7 +250,7 @@
|
||||
desc = "A deluxe NT Satchel, made of the highest quality leather."
|
||||
icon_state = "satchel-norm"
|
||||
|
||||
/obj/item/storage/backpack/satchel/clown
|
||||
/obj/item/storage/backpack/satchel_clown
|
||||
name = "Tickles Von Squeakerton"
|
||||
desc = "A satchel with extra pockets for all your banana storing needs!"
|
||||
icon_state = "satchel-clown"
|
||||
@@ -267,7 +267,7 @@
|
||||
icon_state = "satchel-atmos"
|
||||
resistance_flags = FIRE_PROOF
|
||||
|
||||
/obj/item/storage/backpack/satchel/explorer
|
||||
/obj/item/storage/backpack/satchel_explorer
|
||||
name = "explorer satchel"
|
||||
desc = "A robust satchel for stashing your loot."
|
||||
icon_state = "satchel-explorer"
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
new /obj/item/clothing/under/plasmaman/mining(src)
|
||||
new /obj/item/storage/backpack/duffel(src)
|
||||
new /obj/item/storage/backpack/explorer(src)
|
||||
new /obj/item/storage/backpack/satchel/explorer(src)
|
||||
new /obj/item/storage/backpack/satchel_explorer(src)
|
||||
|
||||
/obj/structure/closet/secure_closet/miner
|
||||
name = "miner's equipment"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
/obj/structure/closet/secure_closet/clown/populate_contents()
|
||||
new /obj/item/storage/backpack/clown(src)
|
||||
new /obj/item/storage/backpack/duffel/clown(src)
|
||||
new /obj/item/storage/backpack/satchel/clown(src)
|
||||
new /obj/item/storage/backpack/satchel_clown(src)
|
||||
new /obj/item/clothing/under/rank/civilian/clown(src)
|
||||
new /obj/item/clothing/under/rank/civilian/clown/skirt(src)
|
||||
new /obj/item/clothing/under/rank/civilian/clown/sexy(src)
|
||||
|
||||
Reference in New Issue
Block a user