mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 16:44:43 +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:
@@ -277,7 +277,7 @@ GLOBAL_LIST_INIT(bibleitemstates, list(
|
||||
if(iscarbon(target_mob))
|
||||
var/mob/living/carbon/carbon_target = target_mob
|
||||
if(!istype(carbon_target.head, /obj/item/clothing/head/helmet))
|
||||
carbon_target.adjustOrganLoss(ORGAN_SLOT_BRAIN, 5, 60)
|
||||
carbon_target.adjust_organ_loss(ORGAN_SLOT_BRAIN, 5, 60)
|
||||
carbon_target.balloon_alert(carbon_target, "you feel dumber!")
|
||||
target_mob.visible_message(span_danger("[user] beats [target_mob] over the head with [src]!"), \
|
||||
span_userdanger("[user] beats [target_mob] over the head with [src]!"))
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
bozo.adjust_confusion(15 SECONDS)
|
||||
bozo.set_eye_blur_if_lower(10 SECONDS)
|
||||
// but the rest of the effects will happen either way
|
||||
bozo.adjustOrganLoss(ORGAN_SLOT_BRAIN, 20 - get_integrity())
|
||||
bozo.adjust_organ_loss(ORGAN_SLOT_BRAIN, 20 - get_integrity())
|
||||
|
||||
sparks.set_up(5, cardinals_only = FALSE, location = get_turf(src))
|
||||
sparks.start()
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
SIGNAL_HANDLER
|
||||
if(key != "taunt" || !intentional)
|
||||
return
|
||||
if((source.maxHealth - (source.getStaminaLoss() + TAUNT_STAMINA_COST)) <= source.crit_threshold)
|
||||
if((source.maxHealth - (source.get_stamina_loss() + TAUNT_STAMINA_COST)) <= source.crit_threshold)
|
||||
source.balloon_alert(source, "too tired!")
|
||||
return COMPONENT_CANT_EMOTE
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
if(HAS_TRAIT_FROM(source, TRAIT_UNHITTABLE_BY_PROJECTILES, SKILLCHIP_TRAIT))
|
||||
return
|
||||
ADD_TRAIT(source, TRAIT_UNHITTABLE_BY_PROJECTILES, SKILLCHIP_TRAIT)
|
||||
source.adjustStaminaLoss(TAUNT_STAMINA_COST)
|
||||
source.adjust_stamina_loss(TAUNT_STAMINA_COST)
|
||||
addtimer(TRAIT_CALLBACK_REMOVE(source, TRAIT_UNHITTABLE_BY_PROJECTILES, SKILLCHIP_TRAIT), TAUNT_EMOTE_DURATION * 1.5)
|
||||
|
||||
#undef TAUNT_STAMINA_COST
|
||||
|
||||
@@ -98,7 +98,7 @@
|
||||
|
||||
/obj/item/skillchip/brainwashing/on_activate(mob/living/carbon/user, silent = FALSE)
|
||||
to_chat(user, span_danger("You get a pounding headache as the chip sends corrupt memories into your head!"))
|
||||
user.adjustOrganLoss(ORGAN_SLOT_BRAIN, 20)
|
||||
user.adjust_organ_loss(ORGAN_SLOT_BRAIN, 20)
|
||||
. = ..()
|
||||
|
||||
/obj/item/skillchip/chefs_kiss
|
||||
|
||||
Reference in New Issue
Block a user