mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-23 04:56:23 +01:00
24 lines
517 B
Plaintext
24 lines
517 B
Plaintext
mob/living/silicon
|
|
no_vore = TRUE
|
|
|
|
/mob/living/silicon/robot
|
|
var/dogborg = FALSE
|
|
|
|
/mob/living/silicon/robot/lay_down()
|
|
..()
|
|
update_canmove()
|
|
|
|
/mob/living/silicon/robot/update_canmove()
|
|
..()
|
|
if(client && stat != DEAD && dogborg == TRUE)
|
|
if(resting)
|
|
cut_overlays()
|
|
icon_state = "[module.cyborg_base_icon]-rest"
|
|
else
|
|
icon_state = "[module.cyborg_base_icon]"
|
|
update_icons()
|
|
|
|
/mob/living/silicon/robot/adjustStaminaLossBuffered(amount, updating_stamina = 1)
|
|
if(istype(cell))
|
|
cell.charge -= amount*5
|