Files
Polaris/code/game/mecha/components/hull.dm
Mechoid 282b42dbc1 Exosuit Modular Internals, The Squeakening (#7329)
* Begins work on internal exosuit components, similar to Borgs.

* Large volume of work on exosuit components, Durand is tweaked to be higher cost in time and resources, since it requires AP to damage, without ions or explosives.

* Component Sprites

* Actually implement component repair, I knew I missed something.

* Magic numbers, properly typed lists, and indentations oh my

* Changeling
2020-08-05 16:20:46 -07:00

34 lines
815 B
Plaintext

/obj/item/mecha_parts/component/hull
name = "mecha hull"
icon = 'icons/mecha/mech_component.dmi'
icon_state = "hull"
w_class = ITEMSIZE_HUGE
origin_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
component_type = MECH_HULL
emp_resistance = 0 // Amount of emp 'levels' removed.
required_type = null // List, if it exists. Exosuits meant to use the component.
integrity_danger_mod = 0.5 // Multiplier for comparison to max_integrity before problems start.
max_integrity = 50
internal_damage_flag = MECHA_INT_FIRE
step_delay = 2
/obj/item/mecha_parts/component/hull/durable
name = "durable mecha hull"
step_delay = 4
integrity_danger_mod = 0.3
max_integrity = 100
/obj/item/mecha_parts/component/hull/lightweight
name = "lightweight mecha hull"
step_delay = 1
integrity_danger_mod = 0.3