Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion code/modules/mining/lavaland/necropolis_chests.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ GLOBAL_LIST_EMPTY(bloodmen_list)
desc = "It's watching you suspiciously."

/obj/structure/closet/crate/necropolis/tendril/PopulateContents()
var/loot = rand(1,23)
var/loot = rand(1,24)
switch(loot)
if(1)
new /obj/item/shared_storage/red(src)
Expand Down Expand Up @@ -69,6 +69,9 @@ GLOBAL_LIST_EMPTY(bloodmen_list)
new /obj/item/clothing/neck/necklace/memento_mori(src)
if(23)
new /obj/item/rune_scimmy(src)
if(24)
new /obj/item/dnainjector/dwarf(src)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/obj/item/grenade/plastic/miningcharge/mega
/obj/item/grenade/plastic/miningcharge/mega

dwarves like big booms
also to stop the miner mains from crying (they're very ungrateful)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can Miners use this to get mega mining charges faster by deconstructing it

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if they could do that it's still around a 4% chance to even get this from a chest, let alone that you first need to get a chest, and also that you need to disrupt your mining grindset to go topside to get the bombs deconstructed and researched

//KA modkit design discs
/obj/item/disk/design_disk/modkit_disc
name = "KA Mod Disk"
Expand Down