mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-20 10:37:17 +01:00
27 lines
726 B
Plaintext
27 lines
726 B
Plaintext
/mob/living/simple_animal/create_mob_hud()
|
|
hud_used = new /datum/hud/simple_animal(src)
|
|
|
|
/datum/hud/simple_animal/New(mob/user)
|
|
..()
|
|
var/obj/screen/using
|
|
using = new /obj/screen/act_intent/simple_animal()
|
|
using.icon_state = mymob.a_intent
|
|
static_inventory += using
|
|
action_intent = using
|
|
|
|
|
|
/mob/living/simple_animal/pet/create_mob_hud()
|
|
if(client && !hud_used)
|
|
hud_used = new /datum/hud/corgi(src)
|
|
|
|
/datum/hud/corgi/New(mob/user)
|
|
..()
|
|
|
|
mymob.healths = new /obj/screen/healths/corgi()
|
|
infodisplay += mymob.healths
|
|
|
|
mymob.pullin = new /obj/screen/pull()
|
|
mymob.pullin.icon = 'icons/mob/screen_corgi.dmi'
|
|
mymob.pullin.update_icon(mymob)
|
|
mymob.pullin.screen_loc = ui_construct_pull
|
|
static_inventory += mymob.pullin |