From 3b24a4fe2fc0e63cedb759d87ec071d181805ca9 Mon Sep 17 00:00:00 2001 From: EdgeLordExe <42111655+EdgeLordExe@users.noreply.github.com> Date: Tue, 7 Jul 2020 00:51:16 +0200 Subject: [PATCH] Miner to cook : Miner changes continue! (#51924) About The Pull Request Miners can no longer get meat hook from necropolis chest, it was moved to being a cook traitor item that costs 11tc. You know it is literally called meat hook, it is thematically better as a chef weapon. Why It's Good For The Game Why? just why? Who the fuck would give miners a weapon that is completely useless against lavaland mobs, but is incredibly good at killing people. Changelog cl balance: Meat hook is now a 11tc cook traitor item. It can no longer be aquired from necropolis chests. sorry miners! /cl --- code/modules/mining/lavaland/necropolis_chests.dm | 12 +++++------- code/modules/uplink/uplink_items.dm | 7 +++++++ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 9eb383c0363..809796c8e3c 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -13,7 +13,7 @@ desc = "It's watching you suspiciously." /obj/structure/closet/crate/necropolis/tendril/PopulateContents() - var/loot = rand(1,22) + var/loot = rand(1,21) switch(loot) if(1) new /obj/item/shared_storage/red(src) @@ -57,17 +57,15 @@ if(16) new /obj/item/immortality_talisman(src) if(17) - new /obj/item/gun/magic/hook(src) - if(18) new /obj/item/voodoo(src) - if(19) + if(18) new /obj/item/book/granter/spell/summonitem(src) - if(20) + if(19) new /obj/item/book_of_babel(src) - if(21) + if(20) new /obj/item/borg/upgrade/modkit/lifesteal(src) new /obj/item/bedsheet/cult(src) - if(22) + if(21) new /obj/item/clothing/neck/necklace/memento_mori(src) //KA modkit design discs diff --git a/code/modules/uplink/uplink_items.dm b/code/modules/uplink/uplink_items.dm index c3f0aea498c..da87e55b4e3 100644 --- a/code/modules/uplink/uplink_items.dm +++ b/code/modules/uplink/uplink_items.dm @@ -2004,3 +2004,10 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) limited_stock = 1 cant_discount = TRUE include_modes = list(/datum/game_mode/nuclear) + +/datum/uplink_item/role_restricted/meathook + name = "Butcher's Meat Hook" + desc = "A brutal cleaver on a long chain, it allows you to pull people to your location." + item = /obj/item/gun/magic/hook + cost = 11 + restricted_roles = list("Cook")