From ae44649950a8e5767ab26e921fb64d257859e629 Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Thu, 25 Mar 2021 18:15:48 -0300 Subject: [PATCH] ported the clear PDA --- .../cargo/blackmarket/blackmarket_items/consumables.dm | 1 - .../cargo/blackmarket/blackmarket_items/misc.dm | 10 ++++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm b/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm index ea57c2a3b6..76e5452062 100644 --- a/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm +++ b/code/modules/cargo/blackmarket/blackmarket_items/consumables.dm @@ -66,7 +66,6 @@ price_min = 100 price_max = 200 availability_prob = 100 - // add new drinks here var/list/counter = list( /datum/reagent/consumable/ethanol/gintonic, diff --git a/code/modules/cargo/blackmarket/blackmarket_items/misc.dm b/code/modules/cargo/blackmarket/blackmarket_items/misc.dm index c8cc733a4c..bc3827c9bb 100644 --- a/code/modules/cargo/blackmarket/blackmarket_items/misc.dm +++ b/code/modules/cargo/blackmarket/blackmarket_items/misc.dm @@ -10,6 +10,15 @@ stock_max = 6 availability_prob = 80 +/datum/blackmarket_item/misc/clear_pda + name = "Clear PDA" + desc = "Show off your style with this limited edition clear PDA!." + item = /obj/item/pda/clear + price_min = 250 + price_max = 600 + stock_max = 4 + availability_prob = 50 + /datum/blackmarket_item/misc/shoulder_holster name = "Shoulder holster" desc = "Yeehaw, hardboiled friends! This holster is the first step in your dream of becoming a detective and being allowed to shoot real guns!" @@ -61,3 +70,4 @@ stock_min = 3 stock_max = 6 availability_prob = 100 +