tidies up simple animal sprites, adds movement states, improves some sprites. (#6933)

This commit is contained in:
Wowzewow (Wezzy)
2019-11-30 16:48:49 +01:00
committed by Werner
parent 85d1dc9c67
commit 87c12f745c
28 changed files with 59 additions and 5 deletions
@@ -1,6 +1,7 @@
/mob/living/simple_animal/ice_tunneler
name = "ice tunneler"
desc = "An egg producing beast from Adhomai. It is known for burrowing in ice and snow."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "tunneler"
icon_living = "tunneler"
icon_dead = "tunneler_dead"
@@ -44,6 +45,7 @@
/mob/living/simple_animal/fatshouter
name = "fatshouter"
desc = "An adhomian animal known for its production of milk and wool."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "fatshouter"
icon_living = "fatshouter"
icon_dead = "fatshouter_dead"
@@ -75,6 +77,7 @@
/mob/living/simple_animal/hostile/retaliate/rafama
name = "steed of Mata'ke"
desc = "An animal native to Adhomai, known for its agressive behavior and mighty tusks."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "rafama"
icon_living = "rafama"
icon_dead = "rafama_dead"
@@ -2,6 +2,7 @@
/mob/living/simple_animal/cat
name = "cat"
desc = "A domesticated, feline pet. Has a tendency to adopt crewmembers."
icon = 'icons/mob/npc/pets.dmi'
icon_state = "cat2"
item_state = "cat2"
icon_living = "cat2"
@@ -3,6 +3,7 @@
name = "corgi"
real_name = "corgi"
desc = "It's a corgi."
icon = 'icons/mob/npc/pets.dmi'
icon_state = "corgi"
icon_living = "corgi"
icon_dead = "corgi_dead"
@@ -2,6 +2,7 @@
/mob/living/simple_animal/hostile/retaliate/goat
name = "goat"
desc = "Not known for their pleasant disposition."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "goat"
icon_living = "goat"
icon_dead = "goat_dead"
@@ -75,6 +76,7 @@
/mob/living/simple_animal/cow
name = "cow"
desc = "Known for their milk, just don't tip them over."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "cow"
icon_living = "cow"
icon_dead = "cow_dead"
@@ -119,6 +121,7 @@
/mob/living/simple_animal/chick
name = "\improper chick"
desc = "Adorable! They make such a racket though."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "chick"
icon_living = "chick"
icon_dead = "chick_dead"
@@ -168,6 +171,7 @@
/mob/living/simple_animal/chicken
name = "\improper chicken"
desc = "Hopefully the eggs are good this season."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "chicken"
icon_living = "chicken"
icon_dead = "chicken_dead"
@@ -3,6 +3,7 @@
name = "fox"
real_name = "fox"
desc = "It's a fox. I wonder what it says?"
icon = 'icons/mob/npc/pets.dmi'
icon_state = "fox"
icon_living = "fox"
icon_dead = "fox_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hakhma
name = "hakhma"
desc = "An oversized insect breed by Scarab colony ships, known for their milk."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "hakhma"
icon_living = "hakhma"
icon_dead = "hakhma_dead"
@@ -1,7 +1,6 @@
/mob/living/simple_animal/lizard
name = "Lizard"
desc = "It's a hissy little lizard. Is it related to Unathi?"
icon = 'icons/mob/npc/critter.dmi'
icon_state = "lizard"
icon_living = "lizard"
icon_dead = "lizard-dead"
@@ -3,7 +3,7 @@
short_name = "dog"
desc = "A dog trained to listen and obey its owner commands, this one is a german shepherd."
icon = 'icons/mob/npc/dog.dmi'
icon = 'icons/mob/npc/pets.dmi'
icon_state = "german"
icon_living = "german"
icon_dead = "german_dead"
@@ -1,7 +1,6 @@
/mob/living/simple_animal/hostile/creature
name = "creature"
desc = "A sanity-destroying otherthing."
icon = 'icons/mob/npc/critter.dmi'
speak_emote = list("gibbers")
icon_state = "otherthing"
icon_living = "otherthing"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/faithless
name = "Faithless"
desc = "The Wish Granter's faith in humanity, incarnate"
icon = 'icons/mob/npc/human.dmi'
icon_state = "faithless"
icon_living = "faithless"
icon_dead = "faithless_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/pirate
name = "Pirate"
desc = "Does what he wants cause a pirate is free."
icon = 'icons/mob/npc/human.dmi'
icon_state = "piratemelee"
icon_living = "piratemelee"
icon_dead = "piratemelee_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/russian
name = "russian"
desc = "For the Motherland!"
icon = 'icons/mob/npc/human.dmi'
icon_state = "russianmelee"
icon_living = "russianmelee"
icon_dead = "russianmelee_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/syndicate
name = "\improper Syndicate operative"
desc = "Death to the Company."
icon = 'icons/mob/npc/human.dmi'
icon_state = "syndicate"
icon_living = "syndicate"
icon_dead = "syndicate_dead"
@@ -140,7 +141,7 @@
/mob/living/simple_animal/hostile/viscerator
name = "viscerator"
desc = "A small, twin-bladed machine capable of inflicting very deadly lacerations."
icon = 'icons/mob/npc/critter.dmi'
icon = 'icons/mob/npc/aibots.dmi'
icon_state = "viscerator_attack"
icon_living = "viscerator_attack"
pass_flags = PASSTABLE
@@ -28,7 +28,7 @@
/mob/living/simple_animal/parrot
name = "\improper Parrot"
desc = "The parrot squaks, \"It's a Parrot! BAWWK!\""
icon = 'icons/mob/npc/animal.dmi'
icon = 'icons/mob/npc/pets.dmi'
icon_state = "parrot_fly"
icon_living = "parrot_fly"
icon_dead = "parrot_dead"
@@ -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: Wowzewow
# 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:
- imageadd: "Adds movement states for some animals, and improves sprites of some mobs."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 295 KiB

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 652 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB