Files
evilew 10ef9e374a Nanotrasen to GATO - comments
I know it's a mess, but the least I can do is add comments anywhere I can
2024-11-19 01:59:28 +01:00

74 lines
2.2 KiB
Plaintext

/datum/blackmarket_item/misc
category = "Miscellaneous"
/datum/blackmarket_item/misc/cap_gun
name = "Cap Gun"
desc = "Prank your friends with this harmless gun! Harmlessness guranteed."
item = /obj/item/toy/gun
price_min = 50
price_max = 200
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!"
item = /obj/item/storage/belt/holster
price_min = 400
price_max = 800
stock_max = 8
availability_prob = 60
/datum/blackmarket_item/misc/holywater
name = "Flask of holy water"
desc = "Father Lootius' own brand of ready-made holy water."
item = /obj/item/reagent_containers/food/drinks/bottle/holywater
price_min = 400
price_max = 600
stock_max = 3
availability_prob = 40
/datum/blackmarket_item/misc/holywater/spawn_item(loc)
if (prob(6.66))
return new /obj/item/reagent_containers/glass/beaker/unholywater(loc)
return ..()
/datum/blackmarket_item/misc/strange_seed
name = "Strange Seeds"
desc = "An Exotic Variety of seed that can contain anything from glow to acid."
item = /obj/item/seeds/random
price_min = 450
price_max = 650
stock_min = 2
stock_max = 5
availability_prob = 100
/datum/blackmarket_item/misc/smugglers_satchel
name = "Smuggler's Satchel"
desc = "This easily hidden satchel can become a versatile tool to anybody with the desire to keep certain items out of sight and out of mind."
item = /obj/item/storage/backpack/satchel/flat
price_min = 750
price_max = 1000
stock_max = 2
availability_prob = 30
/datum/blackmarket_item/misc/internals_box
name = "Internals Box"
desc = "The same one GATO gives you before starting the shift. Totally not stolen from a dead space-man floating in space." //GS13 - Nanotrasen to GATO
item = /obj/item/storage/box/survival
price_min = 250
price_max = 350
stock_min = 3
stock_max = 6
availability_prob = 100