diff --git a/code/modules/mob/living/simple_animal/friendly/rat.dm b/code/modules/mob/living/simple_animal/friendly/rat.dm index 0625dda2363..09d5d06a63b 100644 --- a/code/modules/mob/living/simple_animal/friendly/rat.dm +++ b/code/modules/mob/living/simple_animal/friendly/rat.dm @@ -86,20 +86,6 @@ return ..() -//Pixel offsetting as they scamper around -/mob/living/simple_animal/rat/Move() - if(..()) - if (prob(50)) - var/new_pixelx = pixel_x - new_pixelx += rand(-2,2) - new_pixelx = Clamp(new_pixelx, -10, 10) - animate(src, pixel_x = new_pixelx, time = 0.5) - else - var/new_pixely = pixel_y - new_pixely += rand(-2,2) - new_pixely = Clamp(new_pixely, -4, 14) - animate(src, pixel_y = new_pixely, time = 0.5) - /mob/living/simple_animal/rat/Initialize() . = ..() diff --git a/html/changelogs/chadas_ark.yml b/html/changelogs/chadas_ark.yml new file mode 100644 index 00000000000..7ff3e048d7c --- /dev/null +++ b/html/changelogs/chadas_ark.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Chada + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added a MASS of new movestate animations for all of our simple animals. Except goats. And a few Tajara mobs. This was mostly animation practice. The biggest change is the Walking Mushroom which now has chill." diff --git a/icons/mob/npc/animal.dmi b/icons/mob/npc/animal.dmi index 330c0b25e64..dc01d532f4a 100644 Binary files a/icons/mob/npc/animal.dmi and b/icons/mob/npc/animal.dmi differ diff --git a/icons/mob/npc/livestock.dmi b/icons/mob/npc/livestock.dmi index 14040f4ffec..195a28d7653 100644 Binary files a/icons/mob/npc/livestock.dmi and b/icons/mob/npc/livestock.dmi differ diff --git a/icons/mob/npc/pets.dmi b/icons/mob/npc/pets.dmi index 32c8bf7cd82..f34d1921b84 100644 Binary files a/icons/mob/npc/pets.dmi and b/icons/mob/npc/pets.dmi differ diff --git a/icons/mob/npc/rat.dmi b/icons/mob/npc/rat.dmi index 1ef6c567cad..22cd5191e14 100644 Binary files a/icons/mob/npc/rat.dmi and b/icons/mob/npc/rat.dmi differ