mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-27 07:08:55 +01:00
Exploration Expansion 1: Or, How I Learned To Love The Tree
This commit is contained in:
@@ -293,4 +293,29 @@ the artifact triggers the rage.
|
||||
on_expired_text = "<span class='notice'>You feel.. different.</span>"
|
||||
stacks = MODIFIER_STACK_EXTEND
|
||||
|
||||
pulse_set_level = PULSE_NORM
|
||||
pulse_set_level = PULSE_NORM
|
||||
|
||||
/datum/modifier/slow_pulse
|
||||
name = "slow pulse"
|
||||
desc = "Your blood flows slower."
|
||||
|
||||
on_created_text = "<span class='notice'>You feel sluggish.</span>"
|
||||
on_expired_text = "<span class='notice'>You feel energized.</span>"
|
||||
stacks = MODIFIER_STACK_EXTEND
|
||||
|
||||
bleeding_rate_percent = 0.8
|
||||
|
||||
pulse_set_level = PULSE_SLOW
|
||||
|
||||
// Temperature Normalizer.
|
||||
/datum/modifier/homeothermic
|
||||
name = "temperature resistance"
|
||||
desc = "Your body normalizes to room temperature."
|
||||
|
||||
on_created_text = "<span class='notice'>You feel comfortable.</span>"
|
||||
on_expired_text = "<span class='notice'>You feel.. still probably comfortable.</span>"
|
||||
stacks = MODIFIER_STACK_EXTEND
|
||||
|
||||
/datum/modifier/homeothermic/tick()
|
||||
..()
|
||||
holder.bodytemperature = round((holder.bodytemperature + T20C) / 2)
|
||||
|
||||
Reference in New Issue
Block a user