Files
Bubberstation/code/modules/wiremod/shell/bot.dm
2021-05-25 11:15:36 -07:00

19 lines
359 B
Plaintext

/**
* # Bot
*
* Immobile (but not dense) shells that can interact with world.
*/
/obj/structure/bot
name = "bot"
icon = 'icons/obj/wiremod.dmi'
icon_state = "setup_medium_box"
density = FALSE
light_system = MOVABLE_LIGHT
light_on = FALSE
/obj/structure/bot/Initialize()
. = ..()
AddComponent(/datum/component/shell, null, SHELL_CAPACITY_LARGE)