mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
875937ce81
* this PR was brought to you by hate * fuck you fuck you fuck you fuck you fuck you * oops
31 lines
791 B
Plaintext
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
|