mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
Adds Hereditary Manifold Sickness, a Chronic Illness Quirk (#75035)
## About The Pull Request Adds a new quirk called Chronic Illness. It provides a -12 score as it's a pretty life-altering quirk, but could give way to interesting RP. - Hereditary Manifold Sickness (HMS) can not be cured, it can only be delayed and treated using a new unmakable vaccine called "Sansufentanyl". You spawn with 6 pills and are able to order crates containing 12 more from cargo as it's proprietary to Interdyne. - HMS has 5 stages total. Stage 1 does nothing Stage 2 gives minor effects Stage 3 becomes debilitating Stage 4 is a danger zone. Upon reaching Stage 5, there are 4 possibilities, 1 is a recovery back to stage 1, and the other 3 are deaths which I won't explain here to avoid ruining it. (read the code I guess.) This also adds a new traitor objective to infect someone with HMS. - [x] Correcting the chronic aspect. - [x] Add traitor objective. - [x] Tweaking for fairness. ## Why It's Good For The Game HMS is a new quirk that gives a much more hardcore junky or tumor playstyle. Neglecting HMS can mean the end of your shift. it's not something you want to mess with. It puts a reliance on cargo rather than medical for a quirk and gives a use case for money. (price may be tweaked still). I think it'd be interesting to see if people will start mugging or robbing the vault more to get their life-saving medication. ## Changelog 🆑 add: Interdyne has released a new medication to treat those who are in the wrong timeline! add: Interdyne has also realized this is VERY profitable! They've begun arming their operatives with an autoinjector. /🆑 --------- Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
This commit is contained in:
@@ -120,6 +120,24 @@
|
||||
. = TRUE
|
||||
..()
|
||||
|
||||
/datum/reagent/medicine/sansufentanyl
|
||||
name = "Sansufentanyl"
|
||||
description = "Temporary side effects include - nausea, dizziness, impaired motor coordination."
|
||||
color = "#07e4d1"
|
||||
ph = 6.2
|
||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
|
||||
|
||||
/datum/reagent/medicine/sansufentanyl/on_mob_life(mob/living/carbon/affected_mob, seconds_per_tick, times_fired)
|
||||
affected_mob.adjust_confusion_up_to(3 SECONDS * REM * seconds_per_tick, 5 SECONDS)
|
||||
affected_mob.adjust_dizzy_up_to(6 SECONDS * REM * seconds_per_tick, 12 SECONDS)
|
||||
affected_mob.adjustStaminaLoss(1 * REM * seconds_per_tick)
|
||||
|
||||
if(SPT_PROB(10, seconds_per_tick))
|
||||
to_chat(affected_mob, "You feel confused and disoriented.")
|
||||
if(prob(30))
|
||||
SEND_SOUND(affected_mob, sound('sound/weapons/flash_ring.ogg'))
|
||||
..()
|
||||
|
||||
/datum/reagent/medicine/cryoxadone
|
||||
name = "Cryoxadone"
|
||||
description = "A chemical mixture with almost magical healing powers. Its main limitation is that the patient's body temperature must be under 270K for it to metabolise correctly."
|
||||
|
||||
@@ -143,6 +143,12 @@
|
||||
list_reagents = list(/datum/reagent/medicine/mannitol = 14)
|
||||
rename_with_volume = TRUE
|
||||
|
||||
/obj/item/reagent_containers/pill/sansufentanyl
|
||||
name = "sansufentanyl pill"
|
||||
desc = "Used to treat Hereditary Manifold Sickness. Temporary side effects include - nausea, dizziness, impaired motor coordination."
|
||||
icon_state = "pill19"
|
||||
list_reagents = list(/datum/reagent/medicine/sansufentanyl = 5)
|
||||
|
||||
//Lower quantity mannitol pills (50u pills heal 250 brain damage, 5u pills heal 25)
|
||||
/obj/item/reagent_containers/pill/mannitol/braintumor
|
||||
desc = "Used to treat symptoms for brain tumors."
|
||||
|
||||
Reference in New Issue
Block a user