From 13033bd7bb8ac16035f948d59b2eb5e3f95d599c Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Thu, 25 Mar 2021 18:09:35 -0300 Subject: [PATCH] availability for items tweaked, internals box added --- .../blackmarket/blackmarket_items/consumables.dm | 12 ++++++------ .../cargo/blackmarket/blackmarket_items/misc.dm | 10 ++++++++++ .../cargo/blackmarket/blackmarket_items/tools.dm | 10 ++++++---- .../cargo/blackmarket/blackmarket_items/weapons.dm | 11 ++++++++++- 4 files changed, 32 insertions(+), 11 deletions(-) diff --git a/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm b/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm index 80a8ff400c..ea57c2a3b6 100644 --- a/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm +++ b/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm @@ -14,10 +14,10 @@ name = "Box of Donk Pockets" desc = "A well packaged box containing the favourite snack of every spacefarer." item = /obj/item/storage/box/donkpockets - stock_min = 2 - stock_max = 5 - price_min = 325 - price_max = 400 + stock_min = 5 + stock_max = 10 + price_min = 250 + price_max = 350 availability_prob = 100 /datum/blackmarket_item/consumable/suspicious_pills @@ -63,8 +63,8 @@ item = /obj/item/reagent_containers/food/drinks/drinkingglass stock_min = 10 stock_max = 15 - price_min = 50 - price_max = 130 + price_min = 100 + price_max = 200 availability_prob = 100 // add new drinks here diff --git a/code/modules/cargo/blackmarket/blackmarket_items/misc.dm b/code/modules/cargo/blackmarket/blackmarket_items/misc.dm index 9f5cb841e4..c8cc733a4c 100644 --- a/code/modules/cargo/blackmarket/blackmarket_items/misc.dm +++ b/code/modules/cargo/blackmarket/blackmarket_items/misc.dm @@ -51,3 +51,13 @@ price_max = 1000 stock_max = 2 availability_prob = 30 + +/datum/blackmarket_item/misc/internals_box + name = "Internals Box" + desc = "The same one Nanotrase gives you before starting the shift. Totally not stolen from a dead space-man floating in space." + item = /obj/item/storage/box/survival + price_min = 250 + price_max = 350 + stock_min = 3 + stock_max = 6 + availability_prob = 100 diff --git a/code/modules/cargo/blackmarket/blackmarket_items/tools.dm b/code/modules/cargo/blackmarket/blackmarket_items/tools.dm index 644211debf..f0b2c2143f 100644 --- a/code/modules/cargo/blackmarket/blackmarket_items/tools.dm +++ b/code/modules/cargo/blackmarket/blackmarket_items/tools.dm @@ -70,8 +70,9 @@ item = /obj/item/clothing/glasses/science price_min = 200 price_max = 300 - stock_max = 5 - availability_prob = 80 + stock_min = 3 + stock_max = 7 + availability_prob = 100 /datum/blackmarket_item/tool/meson_goggles name = "Meson Goggles" @@ -79,5 +80,6 @@ item = /obj/item/clothing/glasses/meson price_min = 200 price_max = 300 - stock_max = 5 - availability_prob = 80 + stock_min = 3 + stock_max = 7 + availability_prob = 100 diff --git a/code/modules/cargo/blackmarket/blackmarket_items/weapons.dm b/code/modules/cargo/blackmarket/blackmarket_items/weapons.dm index 4978d688ae..96c45dd686 100644 --- a/code/modules/cargo/blackmarket/blackmarket_items/weapons.dm +++ b/code/modules/cargo/blackmarket/blackmarket_items/weapons.dm @@ -38,4 +38,13 @@ price_min = 100 price_max = 400 stock_max = 2 - availability_prob = 50 + availability_prob = 40 + +/datum/blackmarket_item/weapon/smoke_grenade + name = "Smoke Grenade" + desc = "Used for obcuring a large area with thick smoke." + item = /obj/item/grenade/smokebomb + price_min = 100 + price_max = 300 + stock_max = 3 + availability_prob = 75