-
Notifications
You must be signed in to change notification settings - Fork 345
BugfixesGaloreV2 #5750
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BugfixesGaloreV2 #5750
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -47,7 +47,7 @@ | |||||
name = "Natural " + name | ||||||
if(data["boozepwr"]) | ||||||
boozepwr = data["boozepwr"] | ||||||
addiction_types = list(/datum/addiction/alcohol = 0.05 * boozepwr) | ||||||
addiction_types += list(/datum/addiction/alcohol = 0.05 * boozepwr) | ||||||
return ..() | ||||||
|
||||||
/datum/reagent/consumable/ethanol/on_mob_life(mob/living/carbon/drinker, seconds_per_tick, times_fired) | ||||||
|
@@ -147,6 +147,7 @@ | |||||
boozepwr = 45 | ||||||
ph = 6 | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 4) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/kahlua/on_mob_life(mob/living/carbon/drinker, seconds_per_tick, times_fired) | ||||||
drinker.set_dizzy_if_lower(10 SECONDS * REM * seconds_per_tick) | ||||||
|
@@ -196,6 +197,7 @@ | |||||
overdose_threshold = 60 | ||||||
taste_description = "jitters and death" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(,/datum/addiction/coffee = 5) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/thirteenloko/on_mob_life(mob/living/carbon/drinker, seconds_per_tick, times_fired) | ||||||
drinker.adjust_drowsiness(-14 SECONDS * REM * seconds_per_tick) | ||||||
|
@@ -628,6 +630,7 @@ | |||||
glass_price = DRINK_PRICE_EASY | ||||||
metabolized_traits = list(TRAIT_FEARLESS, TRAIT_ANALGESIA) | ||||||
var/tough_text | ||||||
addiction_types = list(/datum/addiction/coffee = 1) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/brave_bull/on_mob_metabolize(mob/living/drinker) | ||||||
. = ..() | ||||||
|
@@ -792,6 +795,7 @@ | |||||
taste_description = "angry and irish" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
glass_price = DRINK_PRICE_EASY | ||||||
addiction_types = list(/datum/addiction/coffee = 3) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/b52/on_mob_metabolize(mob/living/drinker) | ||||||
. = ..() | ||||||
|
@@ -805,6 +809,7 @@ | |||||
quality = DRINK_NICE | ||||||
taste_description = "giving up on the day" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 4) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/margarita | ||||||
name = "Margarita" | ||||||
|
@@ -824,6 +829,7 @@ | |||||
quality = DRINK_NICE | ||||||
taste_description = "bitterness" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 2) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/manhattan | ||||||
name = "Manhattan" | ||||||
|
@@ -942,6 +948,7 @@ | |||||
taste_description = "bitter iron" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
bypass_restriction = TRUE | ||||||
addiction_types = list(/datum/addiction/coffee = 1) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/devilskiss/on_mob_metabolize(mob/living/metabolizer) | ||||||
. = ..() | ||||||
|
@@ -1004,6 +1011,7 @@ | |||||
quality = DRINK_GOOD | ||||||
taste_description = "pineapple, coconut, and a hint of coffee" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 1) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/singulo | ||||||
name = "Singulo" | ||||||
|
@@ -1184,6 +1192,7 @@ | |||||
quality = DRINK_GOOD | ||||||
taste_description = "psychic links" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 2) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/erikasurprise | ||||||
name = "Erika Surprise" | ||||||
|
@@ -2162,6 +2171,7 @@ | |||||
taste_description = "fiery, with an aftertaste of burnt flesh" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
bypass_restriction = TRUE | ||||||
addiction_types = list(/datum/addiction/coffee = 1) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/mauna_loa/on_mob_life(mob/living/carbon/drinker, seconds_per_tick, times_fired) | ||||||
// Heats the user up while the reagent is in the body. Occasionally makes you burst into flames. | ||||||
|
@@ -2285,6 +2295,7 @@ | |||||
quality = DRINK_GOOD | ||||||
taste_description = "strikes and gutters" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 1) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/drunken_espatier | ||||||
name = "Drunken Espatier" | ||||||
|
@@ -2786,6 +2797,7 @@ | |||||
quality = DRINK_NICE | ||||||
taste_description = "COCONUT" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 1) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/maui_sunrise //coconut rum, pineapple juice, yuyake, triple citrus, lemon-lime soda | ||||||
name = "Maui Sunrise" | ||||||
|
@@ -2813,6 +2825,7 @@ | |||||
quality = DRINK_NICE | ||||||
taste_description = "coconut coffee" | ||||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||||||
addiction_types = list(/datum/addiction/coffee = 4) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
/datum/reagent/consumable/ethanol/blue_hawaiian //pineapple juice, lemon juice, coconut rum, blue curacao | ||||||
name = "Blue Hawaiian" | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addiction_types
isnull
by default, so: