mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-01 12:31:32 +00:00
Co-authored-by: Watermelon914 <3052169-Watermelon914@users.noreply.gitlab.com> Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> Co-authored-by: Maurukas <66576896+Maurukas@users.noreply.github.com>
19 lines
359 B
Plaintext
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)
|
|
|