mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-25 14:16:58 +01:00
37 lines
794 B
Plaintext
37 lines
794 B
Plaintext
|
|
/obj/item/mecha_parts/component/actuator
|
|
name = "mecha actuator"
|
|
icon = 'icons/mecha/mech_component.dmi'
|
|
icon_state = "motor"
|
|
w_class = ITEMSIZE_HUGE
|
|
|
|
component_type = MECH_ACTUATOR
|
|
|
|
start_damaged = FALSE
|
|
|
|
emp_resistance = 1
|
|
|
|
required_type = null // List, if it exists. Exosuits meant to use the component.
|
|
|
|
integrity_danger_mod = 0.6 // Multiplier for comparison to max_integrity before problems start.
|
|
max_integrity = 50
|
|
|
|
internal_damage_flag = MECHA_INT_CONTROL_LOST
|
|
|
|
var/strafing_multiplier = 1
|
|
|
|
/obj/item/mecha_parts/component/actuator/get_step_delay()
|
|
return step_delay
|
|
|
|
/obj/item/mecha_parts/component/actuator/hispeed
|
|
name = "overclocked mecha actuator"
|
|
|
|
step_delay = -1
|
|
|
|
emp_resistance = -1
|
|
|
|
integrity_danger_mod = 0.7
|
|
max_integrity = 60
|
|
|
|
strafing_multiplier = 1.2
|