From 31d0f4cb1fea75299051ad4f3bd650f243fa496a Mon Sep 17 00:00:00 2001 From: katnep Date: Wed, 29 Mar 2017 22:11:00 +0100 Subject: [PATCH] Mining Vendor Redo (#298) * Mining Vendor Redo basically Re adds all the stuff i added back at the start of 6th port, also re added stimpacks to the lsit becuase i don't see why they needed to be removed from it * whetstone removed whetstone removed * price balances just tweaked the prices of the new bundles to make them actually worth purchasing following a 5 for the price of 4 standard * The final change finishes the requested changes * removes excessive line spacing * removes trailing comma --- code/game/objects/items/weapons/storage/boxes.dm | 10 ++++++++++ code/modules/mining/machine_vending.dm | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 8345f3346c..ecad2dd215 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -184,6 +184,16 @@ for(var/i in 1 to 5) new /obj/item/weapon/reagent_containers/hypospray/medipen/stimpack(src) +/obj/item/weapon/storage/box/medipens/survival + name = "Survival pen bundle" + desc = "a box with several survival pens inside, welcome to immortality!!" + illustration = "syringe" + +/obj/item/weapon/storage/box/medipens/survival/New() + ..() + for(var/i in 1 to 5) + new /obj/item/weapon/reagent_containers/hypospray/medipen/survival(src) + /obj/item/weapon/storage/box/beakers name = "box of beakers" illustration = "beaker" diff --git a/code/modules/mining/machine_vending.dm b/code/modules/mining/machine_vending.dm index 3f5d284fcf..ea64e5b912 100644 --- a/code/modules/mining/machine_vending.dm +++ b/code/modules/mining/machine_vending.dm @@ -51,6 +51,10 @@ new /datum/data/mining_equipment("Drone Ranged Upgrade",/obj/item/device/mine_bot_ugprade/cooldown, 600), new /datum/data/mining_equipment("Drone AI Upgrade", /obj/item/slimepotion/sentience/mining, 1000), new /datum/data/mining_equipment("Jump Boots", /obj/item/clothing/shoes/bhop, 2500), + new /datum/data/mining_equipment("Survival Knife", /obj/item/weapon/kitchen/knife/combat/survival, 350), + new /datum/data/mining_equipment("Survival Pen Economy Pack",/obj/item/weapon/storage/box/medipens/survival, 2000), + new /datum/data/mining_equipment("Stimpack", /obj/item/weapon/reagent_containers/hypospray/medipen/stimpack, 250), + new /datum/data/mining_equipment("Stimpack Economy Pack",/obj/item/weapon/storage/box/medipens/utility, 1000) ) /datum/data/mining_equipment