mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-09 17:13:36 +00:00
* this PR was brought to you by hate * fuck you fuck you fuck you fuck you fuck you * oops
50 lines
1.6 KiB
Plaintext
50 lines
1.6 KiB
Plaintext
/datum/hud/construct/armoured/New(mob/owner)
|
|
..()
|
|
mymob.healths = new /atom/movable/screen()
|
|
mymob.healths.icon = 'icons/mob/screen_construct.dmi'
|
|
mymob.healths.icon_state = "juggernaut_health0"
|
|
mymob.healths.name = "health"
|
|
mymob.healths.screen_loc = UI_CONSTRUCT_HEALTH
|
|
infodisplay += mymob.healths
|
|
|
|
/datum/hud/construct/builder/New(mob/owner)
|
|
..()
|
|
mymob.healths = new /atom/movable/screen()
|
|
mymob.healths.icon = 'icons/mob/screen_construct.dmi'
|
|
mymob.healths.icon_state = "artificer_health0"
|
|
mymob.healths.name = "health"
|
|
mymob.healths.screen_loc = UI_CONSTRUCT_HEALTH
|
|
infodisplay += mymob.healths
|
|
|
|
/datum/hud/construct/wraith/New(mob/owner)
|
|
..()
|
|
mymob.healths = new /atom/movable/screen()
|
|
mymob.healths.icon = 'icons/mob/screen_construct.dmi'
|
|
mymob.healths.icon_state = "wraith_health0"
|
|
mymob.healths.name = "health"
|
|
mymob.healths.screen_loc = UI_CONSTRUCT_HEALTH
|
|
infodisplay += mymob.healths
|
|
|
|
|
|
/datum/hud/construct/harvester/New(mob/owner)
|
|
..()
|
|
mymob.healths = new /atom/movable/screen()
|
|
mymob.healths.icon = 'icons/mob/screen_construct.dmi'
|
|
mymob.healths.icon_state = "harvester_health0"
|
|
mymob.healths.name = "health"
|
|
mymob.healths.screen_loc = UI_CONSTRUCT_HEALTH
|
|
infodisplay += mymob.healths
|
|
|
|
/datum/hud/construct/New(mob/owner)
|
|
..()
|
|
mymob.pullin = new /atom/movable/screen/pull()
|
|
mymob.pullin.icon = 'icons/mob/screen_construct.dmi'
|
|
mymob.pullin.icon_state = "pull0"
|
|
mymob.pullin.name = "pull"
|
|
mymob.pullin.screen_loc = UI_CONSTRUCT_PULL
|
|
var/atom/movable/screen/using
|
|
using = new /atom/movable/screen/act_intent/simple_animal()
|
|
using.icon_state = mymob.a_intent
|
|
static_inventory += using
|
|
action_intent = using
|