mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-20 07:02:30 +00:00
12 lines
256 B
Plaintext
12 lines
256 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 |