mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 17:45:02 +01:00
Merge remote-tracking branch 'tgstation/master' into upstream-2025-11-29
# Conflicts: # _maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm # _maps/RandomRuins/SpaceRuins/garbagetruck2.dmm # _maps/map_files/CatwalkStation/CatwalkStation_2023.dmm # _maps/map_files/tramstation/tramstation.dmm # code/_onclick/hud/new_player.dm # code/datums/components/squashable.dm # code/datums/diseases/advance/symptoms/heal.dm # code/datums/diseases/chronic_illness.dm # code/datums/status_effects/buffs.dm # code/datums/status_effects/debuffs/drunk.dm # code/datums/status_effects/debuffs/stamcrit.dm # code/game/machinery/computer/crew.dm # code/game/objects/items/devices/scanners/health_analyzer.dm # code/game/objects/items/wall_mounted.dm # code/game/turfs/closed/indestructible.dm # code/modules/admin/view_variables/filterrific.dm # code/modules/antagonists/heretic/influences.dm # code/modules/cargo/orderconsole.dm # code/modules/client/preferences.dm # code/modules/events/space_vines/vine_mutations.dm # code/modules/mob/dead/new_player/new_player.dm # code/modules/mob/living/carbon/human/death.dm # code/modules/mob/living/carbon/human/species_types/jellypeople.dm # code/modules/mob/living/damage_procs.dm # code/modules/mob/living/living.dm # code/modules/mob_spawn/ghost_roles/mining_roles.dm # code/modules/mob_spawn/mob_spawn.dm # code/modules/projectiles/ammunition/energy/laser.dm # code/modules/projectiles/guns/ballistic/launchers.dm # code/modules/projectiles/guns/energy/laser.dm # code/modules/reagents/chemistry/machinery/chem_dispenser.dm # code/modules/reagents/chemistry/reagents/cat2_medicine_reagents.dm # code/modules/reagents/chemistry/reagents/drinks/alcohol_reagents.dm # code/modules/reagents/chemistry/reagents/medicine_reagents.dm # code/modules/surgery/healing.dm # code/modules/unit_tests/designs.dm # icons/mob/inhands/items_lefthand.dmi # icons/mob/inhands/items_righthand.dmi # tgui/packages/tgui/interfaces/ChemDispenser.tsx
This commit is contained in:
@@ -108,7 +108,7 @@
|
||||
if(41 to 80)
|
||||
INVOKE_ASYNC(owner, TYPE_PROC_REF(/mob, emote), "pale")
|
||||
shake_camera(owner, 15, 1)
|
||||
owner.adjustStaminaLoss(70)
|
||||
owner.adjust_stamina_loss(70)
|
||||
to_chat(owner, span_userdanger("You feel your heart lurching in your chest..."))
|
||||
if(81 to 100)
|
||||
INVOKE_ASYNC(owner, TYPE_PROC_REF(/mob, emote), "cough")
|
||||
|
||||
@@ -125,7 +125,7 @@
|
||||
return ..()
|
||||
|
||||
/datum/brain_trauma/mild/healthy/on_life(seconds_per_tick, times_fired)
|
||||
owner.adjustStaminaLoss(-6 * seconds_per_tick) //no pain, no fatigue
|
||||
owner.adjust_stamina_loss(-6 * seconds_per_tick) //no pain, no fatigue
|
||||
|
||||
/datum/brain_trauma/mild/healthy/on_lose()
|
||||
owner.remove_status_effect(/datum/status_effect/grouped/screwy_hud/fake_healthy, type)
|
||||
@@ -155,7 +155,7 @@
|
||||
|
||||
else if(SPT_PROB(1.5, seconds_per_tick))
|
||||
to_chat(owner, span_warning("You feel a sudden weakness in your muscles!"))
|
||||
owner.adjustStaminaLoss(50)
|
||||
owner.adjust_stamina_loss(50)
|
||||
..()
|
||||
|
||||
/datum/brain_trauma/mild/muscle_spasms
|
||||
@@ -217,7 +217,7 @@
|
||||
word = copytext(word, 1, suffix_foundon)
|
||||
word = html_decode(word)
|
||||
|
||||
if(GLOB.most_common_words[LOWER_TEXT(word)])
|
||||
if(GLOB.most_common_words_alphabetical[LOWER_TEXT(word)])
|
||||
new_message += word + suffix
|
||||
else
|
||||
if(prob(30) && message_split.len > 2)
|
||||
|
||||
@@ -392,7 +392,7 @@
|
||||
if(get_dist(owner, beepsky) <= 1)
|
||||
owner.playsound_local(owner, 'sound/items/weapons/egloves.ogg', 50)
|
||||
owner.visible_message(span_warning("[owner]'s body jerks as if it was shocked."), span_userdanger("You feel the fist of the LAW."))
|
||||
owner.adjustStaminaLoss(rand(40, 70))
|
||||
owner.adjust_stamina_loss(rand(40, 70))
|
||||
QDEL_NULL(beepsky)
|
||||
|
||||
if(prob(20) && get_dist(owner, beepsky) <= 8)
|
||||
|
||||
@@ -325,7 +325,7 @@
|
||||
//too drunk to feel anything
|
||||
//if they're to this point, they're likely dying of liver damage
|
||||
//and not accounting for that, the split personality is temporary
|
||||
owner.adjustStaminaLoss(-25)
|
||||
owner.adjust_stamina_loss(-25)
|
||||
duration_in_seconds -= seconds_per_tick
|
||||
|
||||
/mob/living/split_personality/blackout
|
||||
|
||||
Reference in New Issue
Block a user