mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
17 lines
327 B
Plaintext
17 lines
327 B
Plaintext
/mob/living/silicon/decoy
|
|
name = "AI"
|
|
icon = 'icons/mob/AI.dmi'//
|
|
icon_state = "ai"
|
|
anchored = 1 // -- TLE
|
|
canmove = 0
|
|
|
|
/mob/living/silicon/decoy/New()
|
|
src.icon = 'icons/mob/AI.dmi'
|
|
src.icon_state = "ai"
|
|
src.anchored = 1
|
|
src.canmove = 0
|
|
|
|
/mob/living/silicon/decoy/Initialize()
|
|
. = ..()
|
|
return INITIALIZE_HINT_NORMAL
|