mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 20:37:34 +01:00
Vaurcae aren't slowed by cold (#15944)
* the pr let's see how this goes wrong * breeders and warforms too
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
if (is_drowsy())
|
||||
tally += 6
|
||||
|
||||
if (!(species.flags & IS_MECHANICAL)) // Machines don't move slower when cold.
|
||||
if (!(species.flags & NO_COLD_SLOWDOWN)) // Bugs and machines don't move slower when cold.
|
||||
if(HAS_FLAG(mutations, FAT))
|
||||
tally += 1.5
|
||||
if (bodytemperature < 283.222)
|
||||
@@ -55,7 +55,7 @@
|
||||
var/obj/item/I = get_active_hand()
|
||||
if(istype(I))
|
||||
tally += I.slowdown
|
||||
|
||||
|
||||
if(isitem(pulling))
|
||||
var/obj/item/P = pulling
|
||||
tally += P.slowdown
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
heat_level_1 = 330 //Default 360
|
||||
heat_level_2 = 380 //Default 400
|
||||
heat_level_3 = 600 //Default 1000
|
||||
flags = NO_SLIP | NO_CHUBBY | NO_ARTERIES | PHORON_IMMUNE
|
||||
flags = NO_SLIP | NO_CHUBBY | NO_ARTERIES | PHORON_IMMUNE | NO_COLD_SLOWDOWN
|
||||
spawn_flags = CAN_JOIN | IS_WHITELISTED | NO_AGE_MINIMUM
|
||||
appearance_flags = HAS_SKIN_COLOR | HAS_HAIR_COLOR
|
||||
blood_color = COLOR_VAURCA_BLOOD // dark yellow
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
sprint_cost_factor = 0.80
|
||||
stamina_recovery = 3
|
||||
|
||||
flags = NO_SLIP | NO_ARTERIES | PHORON_IMMUNE
|
||||
flags = NO_SLIP | NO_ARTERIES | PHORON_IMMUNE | NO_COLD_SLOWDOWN
|
||||
|
||||
possible_cultures = list(
|
||||
/singleton/origin_item/culture/zora_breeder,
|
||||
@@ -164,7 +164,7 @@
|
||||
warning_high_pressure = 3250 //Default 325
|
||||
|
||||
spawn_flags = IS_RESTRICTED
|
||||
flags = NO_SCAN | NO_SLIP | NO_PAIN | NO_BREATHE | NO_ARTERIES | PHORON_IMMUNE
|
||||
flags = NO_SCAN | NO_SLIP | NO_PAIN | NO_BREATHE | NO_ARTERIES | PHORON_IMMUNE | NO_COLD_SLOWDOWN
|
||||
|
||||
inherent_verbs = list(
|
||||
/mob/living/carbon/human/proc/rebel_yell,
|
||||
|
||||
Reference in New Issue
Block a user