Files
Contrabang 875937ce81 Converts some defines to not be LOWERCASE (#30254)
* this PR was brought to you by hate

* fuck you fuck you fuck you fuck you fuck you

* oops
2025-09-02 05:54:28 +00:00

31 lines
791 B
Plaintext

/atom/movable/screen/bot
icon = 'icons/mob/screen_bot.dmi'
/atom/movable/screen/bot/radio
name = "radio"
icon_state = "radio"
screen_loc = UI_BOT_RADIO
/atom/movable/screen/bot/radio/Click()
if(isbot(usr))
var/mob/living/simple_animal/bot/B = usr
B.Radio.interact(usr)
/datum/hud/bot/New(mob/owner)
..()
var/atom/movable/screen/using
using = new /atom/movable/screen/bot/radio()
static_inventory += using
mymob.healths = new /atom/movable/screen/healths/bot()
mymob.healths.screen_loc = UI_BORG_HEALTH
infodisplay += mymob.healths
mymob.pullin = new /atom/movable/screen/pull()
mymob.pullin.icon = 'icons/mob/screen_bot.dmi'
mymob.pullin.hud = src
mymob.pullin.update_icon(UPDATE_ICON_STATE)
mymob.pullin.screen_loc = UI_BOT_PULL
static_inventory += mymob.pullin