mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 22:19:30 +01:00
* Incoming stamina damage while in stamcrit has diminishing returns applied * Fixing --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: SpaceLoveSs13 <68121607+SpaceLoveSs13@users.noreply.github.com>
36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
/mob/living/silicon/apply_effect(effect = 0,effecttype = EFFECT_STUN, blocked = FALSE)
|
|
return FALSE //The only effect that can hit them atm is flashes and they still directly edit so this works for now. (This was written in at least 2016. Help)
|
|
|
|
/mob/living/silicon/adjustToxLoss(amount, updating_health = TRUE, forced = FALSE, required_biotype) //immune to tox damage
|
|
return FALSE
|
|
|
|
/mob/living/silicon/setToxLoss(amount, updating_health = TRUE, forced = FALSE, required_biotype)
|
|
return FALSE
|
|
|
|
/mob/living/silicon/adjustStaminaLoss(amount, updating_stamina = TRUE, forced = FALSE, required_biotype) //immune to stamina damage.
|
|
return FALSE
|
|
|
|
/mob/living/silicon/setStaminaLoss(amount, updating_stamina = TRUE, forced = FALSE, required_biotype)
|
|
return FALSE
|
|
|
|
/mob/living/silicon/received_stamina_damage(current_level, amount_actual, amount)
|
|
return
|
|
|
|
/mob/living/silicon/adjustOrganLoss(slot, amount, maximum = 500, required_organ_flag) //immune to organ damage (no organs, duh)
|
|
return FALSE
|
|
|
|
/mob/living/silicon/setOrganLoss(slot, amount)
|
|
return FALSE
|
|
|
|
/mob/living/silicon/adjustOxyLoss(amount, updating_health = TRUE, forced = FALSE, required_biotype, required_respiration_type) //immune to oxygen damage
|
|
if(isAI(src)) //ais are snowflakes and use oxyloss for being in AI cards and having no battery
|
|
return ..()
|
|
|
|
return FALSE
|
|
|
|
/mob/living/silicon/setOxyLoss(amount, updating_health = TRUE, forced = FALSE, required_biotype)
|
|
if(isAI(src)) //ditto
|
|
return ..()
|
|
|
|
return FALSE
|