mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 12:37:50 +01:00
alcohol trait refactor (#16053)
This commit is contained in:
@@ -108,7 +108,7 @@
|
||||
var/chem_strength_heal = 1 // Multiplier to most beneficial chem strength
|
||||
var/chem_strength_pain = 1 // Multiplier to painkiller strength (could be used in a negative trait to simulate long-term addiction reducing effects, etc.)
|
||||
var/chem_strength_tox = 1 // Multiplier to toxic chem strength (inc. chloral/sopo/mindbreaker/etc. thresholds)
|
||||
var/chem_strength_alcohol = 1 // Multiplier to alcohol strength; 0.5 = half, 0 = no effect at all, 2 = double, etc.
|
||||
var/chem_strength_alcohol = 1 // Multiplier to alcohol effect thresholds; higher means more is needed to reach a given effect tier
|
||||
|
||||
var/chemOD_threshold = 1 // Multiplier to overdose threshold; lower = easier overdosing
|
||||
var/chemOD_mod = 1 // Damage modifier for overdose; higher = more damage from ODs
|
||||
|
||||
@@ -61,7 +61,7 @@ var/datum/species/shapeshifter/promethean/prometheans
|
||||
item_slowdown_mod = 1.33
|
||||
throwforce_absorb_threshold = 10
|
||||
|
||||
chem_strength_alcohol = 2
|
||||
chem_strength_alcohol = 0.5
|
||||
|
||||
cloning_modifier = /datum/modifier/cloning_sickness/promethean
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
name_language = LANGUAGE_UNATHI
|
||||
species_language = LANGUAGE_UNATHI
|
||||
health_hud_intensity = 2.5
|
||||
chem_strength_alcohol = 0.75
|
||||
chem_strength_alcohol = 1.25
|
||||
throwforce_absorb_threshold = 10
|
||||
digi_allowed = TRUE
|
||||
|
||||
@@ -198,7 +198,7 @@
|
||||
name_language = LANGUAGE_SIIK
|
||||
species_language = LANGUAGE_SIIK
|
||||
health_hud_intensity = 2.5
|
||||
chem_strength_alcohol = 1.25
|
||||
chem_strength_alcohol = 0.75
|
||||
digi_allowed = TRUE
|
||||
|
||||
min_age = 17
|
||||
@@ -303,7 +303,7 @@
|
||||
species_language = LANGUAGE_SKRELLIAN
|
||||
assisted_langs = list(LANGUAGE_EAL, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX, LANGUAGE_PROMETHEAN)
|
||||
health_hud_intensity = 2
|
||||
chem_strength_alcohol = 5
|
||||
chem_strength_alcohol = 0.2
|
||||
|
||||
water_movement = -3
|
||||
|
||||
@@ -522,7 +522,7 @@
|
||||
show_ssd = "completely quiescent"
|
||||
health_hud_intensity = 2.5
|
||||
item_slowdown_mod = 0.1
|
||||
chem_strength_alcohol = 0
|
||||
chem_strength_alcohol = 10000 //a little hacky, maybe? but whatever. nobody plays diona anyway.
|
||||
throwforce_absorb_threshold = 5
|
||||
|
||||
num_alternate_languages = 3
|
||||
|
||||
@@ -482,21 +482,21 @@
|
||||
desc = "The only way you can hold a drink is if it's in your own two hands, and even then you'd best not inhale too deeply near it. Alcohol hits you three times as hard as they do other people."
|
||||
cost = 0
|
||||
custom_only = FALSE
|
||||
var_changes = list("chem_strength_alcohol" = 3)
|
||||
var_changes = list("chem_strength_alcohol" = 0.33)
|
||||
|
||||
/datum/trait/neutral/alcohol_intolerance_basic
|
||||
name = "Liver of Lilies"
|
||||
desc = "You have a hard time with alcohol. Maybe you just never took to it, or maybe it doesn't agree with your system... either way, alcohol hits you twice as hard."
|
||||
cost = 0
|
||||
custom_only = FALSE
|
||||
var_changes = list("chem_strength_alcohol" = 2)
|
||||
var_changes = list("chem_strength_alcohol" = 0.5)
|
||||
|
||||
/datum/trait/neutral/alcohol_intolerance_slight
|
||||
name = "Liver of Tulips"
|
||||
desc = "You are what some might call 'a bit of a lightweight', but you can still keep your drinks down... most of the time. Alcohol hits you fifty percent harder."
|
||||
cost = 0
|
||||
custom_only = FALSE
|
||||
var_changes = list("chem_strength_alcohol" = 1.5)
|
||||
var_changes = list("chem_strength_alcohol" = 0.75)
|
||||
|
||||
/datum/trait/neutral/alcohol_tolerance_reset
|
||||
name = "Liver of Unremarkableness"
|
||||
@@ -511,21 +511,21 @@
|
||||
desc = "You can hold drinks much better than those lily-livered land-lubbers! Arr! Alcohol's effects on you are reduced by about a quarter."
|
||||
cost = 0
|
||||
custom_only = FALSE
|
||||
var_changes = list("chem_strength_alcohol" = 0.75)
|
||||
var_changes = list("chem_strength_alcohol" = 1.25)
|
||||
|
||||
/datum/trait/neutral/alcohol_tolerance_advanced
|
||||
name = "Liver of Steel"
|
||||
desc = "Drinks tremble before your might! You can hold your alcohol twice as well as those blue-bellied barnacle boilers! Alcohol has just half the effect on you as it does on others."
|
||||
cost = 0
|
||||
custom_only = FALSE
|
||||
var_changes = list("chem_strength_alcohol" = 0.5)
|
||||
var_changes = list("chem_strength_alcohol" = 2)
|
||||
|
||||
/datum/trait/neutral/alcohol_immunity
|
||||
name = "Liver of Durasteel"
|
||||
desc = "You've drunk so much that most booze doesn't even faze you. It takes something like a Pan-Galactic or a pint of Deathbell for you to even get slightly buzzed."
|
||||
cost = 0
|
||||
custom_only = FALSE
|
||||
var_changes = list("chem_strength_alcohol" = 0.25)
|
||||
var_changes = list("chem_strength_alcohol" = 4)
|
||||
// Alcohol Traits End Here.
|
||||
|
||||
/datum/trait/neutral/colorblind/mono
|
||||
|
||||
Reference in New Issue
Block a user