mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 14:08:31 +01:00
[MIRROR] Adds a new positive quirk, "Spacer Born". [MDB IGNORE] (#22520)
* Adds a new positive quirk, "Spacer Born". * Update quirks.dm * Update quirks.dm oops * No combining with oversized quirk * Update quirks.dm this is why I don't edit in the web app * Removes HUMAN_ONLY flag --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: Bloop <vinylspiders@gmail.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
This commit is contained in:
co-authored by
MrMelbert
Bloop
Giz
parent
f031bac85c
commit
032f45f939
@@ -1715,3 +1715,20 @@
|
||||
required_drink_type = /datum/reagent/medicine/coagulant/seraka_extract
|
||||
name = "glass of seraka extract"
|
||||
desc = "Deeply savoury, bitter, and makes your blood clot up in your veins. A great drink, all things considered."
|
||||
|
||||
/datum/reagent/medicine/ondansetron
|
||||
name = "Ondansetron"
|
||||
description = "Prevents nausea and vomiting. May cause drowsiness and wear."
|
||||
reagent_state = LIQUID
|
||||
color = "#74d3ff"
|
||||
metabolization_rate = 0.5 * REAGENTS_METABOLISM
|
||||
ph = 10.6
|
||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
|
||||
|
||||
/datum/reagent/medicine/ondansetron/on_mob_life(mob/living/carbon/M, seconds_per_tick, times_fired)
|
||||
. = ..()
|
||||
if(SPT_PROB(8, seconds_per_tick))
|
||||
M.adjust_drowsiness(2 SECONDS * REM * seconds_per_tick)
|
||||
if(SPT_PROB(15, seconds_per_tick) && !M.getStaminaLoss())
|
||||
M.adjustStaminaLoss(10)
|
||||
M.adjust_disgust(-10 * REM * seconds_per_tick)
|
||||
|
||||
@@ -385,3 +385,10 @@
|
||||
results = list(/datum/reagent/consumable/sugar = 1)
|
||||
required_reagents = list(/datum/reagent/medicine/coagulant/seraka_extract = 1, /datum/reagent/lye = 1)
|
||||
reaction_tags = REACTION_TAG_EASY
|
||||
|
||||
/datum/chemical_reaction/medicine/ondansetron
|
||||
results = list(/datum/reagent/medicine/ondansetron = 3)
|
||||
required_reagents = list(/datum/reagent/fuel/oil = 1, /datum/reagent/nitrogen = 1, /datum/reagent/oxygen = 1)
|
||||
required_catalysts = list(/datum/reagent/consumable/ethanol = 3)
|
||||
optimal_ph_max = 11
|
||||
reaction_tags = REACTION_TAG_EASY | REACTION_TAG_HEALING | REACTION_TAG_OTHER | REACTION_TAG_DRUG
|
||||
|
||||
@@ -45,6 +45,12 @@
|
||||
list_reagents = list(/datum/reagent/medicine/c2/synthflesh = 20)
|
||||
icon_state = "bandaid_both"
|
||||
|
||||
/obj/item/reagent_containers/pill/patch/ondansetron
|
||||
name = "ondansetron patch"
|
||||
desc = "Alleviates nausea. May cause drowsiness."
|
||||
list_reagents = list(/datum/reagent/medicine/ondansetron = 10)
|
||||
icon_state = "bandaid_toxin"
|
||||
|
||||
// Patch styles for chem master
|
||||
|
||||
/obj/item/reagent_containers/pill/patch/style
|
||||
|
||||
@@ -306,6 +306,13 @@
|
||||
list_reagents = list(/datum/reagent/iron = 30)
|
||||
rename_with_volume = TRUE
|
||||
|
||||
/obj/item/reagent_containers/pill/gravitum
|
||||
name = "gravitum pill"
|
||||
desc = "Used in weight loss. In a way."
|
||||
icon_state = "pill8"
|
||||
list_reagents = list(/datum/reagent/gravitum = 5)
|
||||
rename_with_volume = TRUE
|
||||
|
||||
// Pill styles for chem master
|
||||
|
||||
/obj/item/reagent_containers/pill/style
|
||||
|
||||
Reference in New Issue
Block a user