Skip to content

Commit

Permalink
move antag item
Browse files Browse the repository at this point in the history
  • Loading branch information
Salted-Zen committed Oct 28, 2023
1 parent 10c2c2c commit 56dd87f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
5 changes: 2 additions & 3 deletions code/modules/mining/lavaland/megafauna_loot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,8 @@
#undef HIEROPHANT_BLINK_RANGE
#undef HIEROPHANT_BLINK_COOLDOWN

//Bubblegum: Mayhem in a Bottle, H.E.C.K. Suit, Soulscythe

/obj/item/mayhem
//Bubblegum: H.E.C.K. Suit, Soulscythe
/obj/item/mayhem //Monke Edit - Removed from bubblegums drop pool - given to curator
name = "mayhem in a bottle"
desc = "A magically infused bottle of blood, the scent of which will drive anyone nearby into a murderous frenzy."
icon = 'icons/obj/wizard.dmi'
Expand Down
7 changes: 1 addition & 6 deletions code/modules/mining/lavaland/necropolis_chests.dm
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,7 @@

/obj/structure/closet/crate/necropolis/bubblegum/PopulateContents()
new /obj/item/clothing/suit/hooded/hostile_environment(src)
var/loot = rand(1,2)
switch(loot)
if(1)
new /obj/item/mayhem(src)
if(2)
new /obj/item/soulscythe(src)
new /obj/item/soulscythe(src) //monke edit - removes mayhem in a bottle due to self antag risks - moved to curator exclusive

/obj/structure/closet/crate/necropolis/bubblegum/crusher
name = "bloody bubblegum chest"
Expand Down
10 changes: 10 additions & 0 deletions monkestation/code/modules/uplink/uplink_items/job.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,13 @@
cost = 1
item = /obj/item/storage/book/bible/mini
restricted_roles = list(JOB_CHAPLAIN, JOB_CLOWN)

/datum/uplink_item/role_restricted/mayhem
name = "Bottle Of Mayhem"
desc = "This fragile relic was found within a bloody, flesh covered ruin within the depths of lavaland.\
After careful analysis, we have determined that it will induce a murderous psycosis within anyone around it when it is smashed.\
Beware, you have to smash it in your hands, and you will be caught in the psycosis, you will not be safe... use with extreme caution."
progression_minimum = 0 MINUTES
cost = 20
item = /obj/item/mayhem
restricted_roles = list(JOB_CURATOR)

0 comments on commit 56dd87f

Please sign in to comment.