Basic mobs core implementation and cow migration. (#28667)

* Basic mobs core implementation and cow migration.

* fix whitespace

* uncomfortable fix for null weirdness

* update updatepaths script number

* lewc review 1

* fix delta

* Update code/datums/ai/basic_mobs/basic_ai_behaviors/tipped_reaction.dm

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

---------

Signed-off-by: warriorstar-orion <orion@snowfrost.garden>
Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
warriorstar-orion
2025-04-05 11:35:42 +00:00
committed by GitHub
co-authored by Luc
parent b012f18d9a
commit c820499f90
80 changed files with 1493 additions and 272 deletions
+1 -1
View File
@@ -210,7 +210,7 @@ GLOBAL_VAR_INIT(disable_explosions, FALSE)
"}
//Simple Animals
if(isanimal(M))
if(isanimal_or_basicmob(M))
body += "<A href='byond://?_src_=holder;makeanimal=[M.UID()]'>Re-Animalize</A> | "
else
body += "<A href='byond://?_src_=holder;makeanimal=[M.UID()]'>Animalize</A> | "
+1 -1
View File
@@ -264,7 +264,7 @@
else
M_job = "Silicon-based"
else if(isanimal(M)) //simple animals
else if(isanimal_or_basicmob(M)) //simple animals
if(iscorgi(M))
M_job = "Corgi"
else