converts cows to basic mobs and ADDS MOONICORNS (#61446)

This commit is contained in:
tralezab
2021-09-16 17:47:06 -07:00
committed by GitHub
parent c57ee2d8b7
commit b6dafef8e8
28 changed files with 343 additions and 137 deletions
+4 -2
View File
@@ -83,8 +83,6 @@
///Sentience type, for slime potions. SHOULD BE AN ELEMENT BUT I DONT CARE ABOUT IT FOR NOW
var/sentience_type = SENTIENCE_ORGANIC
/mob/living/basic/Initialize(mapload)
. = ..()
@@ -132,6 +130,10 @@
SEND_SIGNAL(src, COMSIG_HOSTILE_POST_ATTACKINGTARGET, target, result)
return result
/mob/living/basic/vv_edit_var(vname, vval)
if(vname == NAMEOF(src, speed))
set_varspeed(vval)
/mob/living/basic/proc/set_varspeed(var_value)
speed = var_value
update_basic_mob_varspeed()