mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 12:05:59 +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:
@@ -128,7 +128,7 @@
|
||||
to_chat(user, span_warning("You can't bring yourself to noogie [target]! You don't want to risk harming anyone..."))
|
||||
return
|
||||
|
||||
if(!(target?.get_bodypart(BODY_ZONE_HEAD)) || user.pulling != target || user.grab_state < GRAB_AGGRESSIVE || user.getStaminaLoss() > 80)
|
||||
if(!(target?.get_bodypart(BODY_ZONE_HEAD)) || user.pulling != target || user.grab_state < GRAB_AGGRESSIVE || user.get_stamina_loss() > 80)
|
||||
return FALSE
|
||||
|
||||
var/obj/item/bodypart/head/the_head = target.get_bodypart(BODY_ZONE_HEAD)
|
||||
@@ -174,7 +174,7 @@
|
||||
if(!(target?.get_bodypart(BODY_ZONE_HEAD)) || user.pulling != target)
|
||||
return FALSE
|
||||
|
||||
if(user.getStaminaLoss() > 80)
|
||||
if(user.get_stamina_loss() > 80)
|
||||
to_chat(user, span_warning("You're too tired to continue giving [target] a noogie!"))
|
||||
to_chat(target, span_danger("[user] is too tired to continue giving you a noogie!"))
|
||||
return
|
||||
@@ -190,7 +190,7 @@
|
||||
|
||||
log_combat(user, target, "given a noogie to", addition = "([damage] brute before armor)")
|
||||
target.apply_damage(damage, BRUTE, BODY_ZONE_HEAD)
|
||||
user.adjustStaminaLoss(iteration + 5)
|
||||
user.adjust_stamina_loss(iteration + 5)
|
||||
playsound(get_turf(user), SFX_RUSTLE, 50)
|
||||
|
||||
if(prob(33))
|
||||
@@ -245,7 +245,7 @@
|
||||
shake_camera(slapped, 2, 2)
|
||||
slapped.Paralyze(2.5 SECONDS)
|
||||
slapped.adjust_confusion(7 SECONDS)
|
||||
slapped.adjustStaminaLoss(40)
|
||||
slapped.adjust_stamina_loss(40)
|
||||
else if(user.zone_selected == BODY_ZONE_HEAD || user.zone_selected == BODY_ZONE_PRECISE_MOUTH)
|
||||
if(user == slapped)
|
||||
user.visible_message(
|
||||
|
||||
Reference in New Issue
Block a user