Skip to content

Commit

Permalink
miner loot rate tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Dec 18, 2023
1 parent f027a0c commit 50cf704
Showing 1 changed file with 18 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,16 @@
/datum/outfit/generic/miner/pre_equip(mob/living/carbon/human/H, visualsOnly)
. = ..()
if(prob(75))
uniform = pick(/obj/item/clothing/under/rank/cargo/miner/lavaland, /obj/item/clothing/under/rank/cargo/miner, /obj/item/clothing/under/rank/cargo/miner/lavaland/old)
if(prob(50))
uniform = pick(/obj/item/clothing/under/rank/cargo/miner/lavaland, /obj/item/clothing/under/rank/cargo/miner)
if(prob(25))
suit = pickweight(list(
/obj/item/clothing/suit/hooded/explorer = 18,
/obj/item/clothing/suit/hooded/cloak/goliath = 2
)
)
if(prob(75))
back = /obj/item/storage/backpack/explorer
if(prob(75))
belt = pickweight(list(
/obj/item/storage/belt/mining = 2,
/obj/item/storage/belt/mining/alt = 2
Expand All @@ -172,33 +180,28 @@
)
if(prob(75))
gloves = /obj/item/clothing/gloves/color/black
if(prob(75))
shoes = /obj/item/clothing/shoes/workboots/mining
if(prob(75))
mask = /obj/item/clothing/mask/gas/explorer
if(prob(45))
if(prob(50))
glasses = /obj/item/clothing/glasses/meson
if(prob(20))
suit = pickweight(list(
/obj/item/clothing/suit/hooded/explorer = 18,
/obj/item/clothing/suit/hooded/cloak/goliath = 2
)
)
if(prob(30))
if(prob(50))
r_pocket = pickweight(list(
/obj/item/stack/marker_beacon = 20,
/obj/item/spacecash/bundle/mediumrand = 7,
/obj/item/reagent_containers/hypospray/medipen/survival = 2,
/obj/item/borg/upgrade/modkit/damage = 1
)
)
if(prob(10))
if(prob(25))
l_pocket = pickweight(list(
/obj/item/spacecash/bundle/mediumrand = 7,
/obj/item/spacecash/bundle/mediumrand = 5,
/obj/item/reagent_containers/hypospray/medipen/survival = 2,
/obj/item/borg/upgrade/modkit/cooldown = 1
)
)
if(prob(95))
back = /obj/item/storage/backpack/explorer
if(prob(75))
for(var/count in 1 to 3)
if(prob(70))
backpack_contents += pickweight(list(
Expand Down Expand Up @@ -228,7 +231,7 @@
)
)
)
else
else if (prob(75))
back = /obj/item/kinetic_crusher
backpack_contents = list()

Expand Down

0 comments on commit 50cf704

Please sign in to comment.