diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index d65f8759..00000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.tiled-session
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index b003594a..00000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,76 +0,0 @@
-stages:
-- test
-
-image: debian:bullseye
-before_script:
- - uname -a
-
-pngcheck:
- stage: test
- script:
- - ./.tools/pngcheck.sh
- #allow_failure: true
-
-imagemagiccheck:
- stage: test
- script:
- - ./.tools/imagemagiccheck.sh
- allow_failure: true
-
-manaverse:
- stage: test
- image: ubuntu:20.04
- variables:
- GIT_SUBMODULE_STRATEGY: recursive
- script:
- - ./.tools/manaplus.sh master deb_pkg manaverse.log
- artifacts:
- paths:
- - shared
- when: always
- expire_in: 3 week
-
-old_manaplus:
- stage: test
- image: ubuntu:20.04
- variables:
- GIT_SUBMODULE_STRATEGY: recursive
- script:
- - ./.tools/manaplus.sh master4old deb_pkg_old manaplus.log
- artifacts:
- paths:
- - shared
- when: always
- expire_in: 3 week
- allow_failure: true
-
-newlines:
- stage: test
- tags:
- - lightweight
- script:
- - ./.tools/newlines.sh
- artifacts:
- paths:
- - shared
- when: always
- expire_in: 3 week
- #allow_failure: true
-
-licensecheck:
- stage: test
- tags:
- - lightweight
- script:
- - ln -s license.md LICENSE
- - ./.tools/licensecheck.sh
- allow_failure: true
-
-testxml:
- stage: test
- image: ubuntu:18.04
- script:
- - ./.tools/testxml.sh
- - pwd
- allow_failure: true
-
diff --git a/.gitmodules b/.gitmodules
index de9d5ec1..6da1e30c 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,3 @@
[submodule "music"]
path = music
- url = https://git.themanaworld.org/tmw/music.git
-[submodule "mods"]
- path = mods
- url = https://git.themanaworld.org/tmw/mods.git
+ url = https://git.themanaworld.org/legacy/music.git
diff --git a/.tools/contributors.sh b/.tools/contributors.sh
deleted file mode 100755
index 8b85eeea..00000000
--- a/.tools/contributors.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-clientdata_init
-
-aptget_update
-aptget_install git-core make xsltproc
-
-rm -rf tools
-gitclone https://git.themanaworld.org/evolved tools.git tools
-
-cd tools/contrib_xsl
-
-make about-server
-check_error $?
-
-cd ../../clientdata
-
-export RES=$(git diff)
-if [[ -n "${RES}" ]]; then
- echo "Contributors list not updated"
- git diff
- exit 1
-fi
diff --git a/.tools/imagemagiccheck.sh b/.tools/imagemagiccheck.sh
deleted file mode 100755
index a7e8e481..00000000
--- a/.tools/imagemagiccheck.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-clientdata_init
-
-aptget_update
-aptget_install git-core imagemagick
-
-rm -rf tools
-gitclone https://git.themanaworld.org/evolved tools.git tools
-
-cd tools/CI/imagescheck
-
-./icccheck.sh >icccheck.log
-check_error $?
-
-export RES=$(cat icccheck.log)
-if [[ -n "${RES}" ]]; then
- echo "Detected icc profiles"
- cat icccheck.log
- exit 1
-fi
diff --git a/.tools/init.sh b/.tools/init.sh
deleted file mode 100755
index 15f096d9..00000000
--- a/.tools/init.sh
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/bin/bash
-
-function check_error {
- if [ "$1" != 0 ]; then
- echo "Error $1"
- exit $1
- fi
-}
-
-retry_with_increasing_wait()
-{
- local wait_time=1
-
- while true; do
- "$@"
- local retval=$?
-
- if [[ $retval -eq 0 || $wait_time -gt 16 ]]; then
- break
- fi
-
- printf "command %s failed (exit code %d), waiting %d seconds until next try.\n"\
- "$*" "$retval" "$wait_time"
-
- sleep "$wait_time"
- # 1, 2, 4, 8, 16...
- (( wait_time = 2 * wait_time ))
- done
-
- return "$retval"
-}
-
-
-function gitclone1 {
- echo git clone $2 $3
- git clone $2 $3
- if [ "$?" != 0 ]; then
- echo git clone $1 $3
- git clone $1 $3
- return $?
- fi
- return $?
-}
-
-function gitclone {
- export name1=$1/$2
- export name2=${CI_BUILD_REPO##*@}
- export name2=https://${name2%/*}/$2
-
- retry_with_increasing_wait gitclone1 "$name1" "$name2" "$3"
- check_error $?
-}
-
-function update_repos {
- if [ "$CI_SERVER" == "" ];
- then
- return
- fi
-
- export DATA=$(cat /etc/resolv.conf|grep "nameserver 1.10.100.101")
- if [ "$DATA" != "" ];
- then
- echo "Detected local runner"
- sed -i 's!http://httpredir.debian.org/debian!http://1.10.100.103/debian!' /etc/apt/sources.list
- else
- echo "Detected non local runner"
- fi
-}
-
-function aptget_update {
- update_repos
- retry_with_increasing_wait apt-get -y -qq update
- check_error $?
-}
-
-function aptget_install {
- retry_with_increasing_wait apt-get -y -qq install $*
- check_error $?
-}
-
-function clientdata_init {
- mkdir shared
- if [[ "${PWD##*/}" != clientdata && ! -L ../clientdata ]]; then
- ln -s "$PWD" ../clientdata
- check_error $?
- fi
- cd ..
-}
diff --git a/.tools/licensecheck.sh b/.tools/licensecheck.sh
deleted file mode 100755
index 412b4def..00000000
--- a/.tools/licensecheck.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-clientdata_init
-
-aptget_update
-aptget_install git-core grep
-
-rm -rf tools
-gitclone https://git.themanaworld.org/evolved tools.git tools
-
-cd tools/CI/licensecheck
-
-./clientdata.sh >license.log
-check_error $?
-
-export RES=$(cat license.log)
-if [[ -n "${RES}" ]]; then
- echo "Detected missing licenses."
- cat license.log
- echo "Estimated total missing licenses:"
- wc -l license.log
- exit 1
-fi
diff --git a/.tools/manaplus.sh b/.tools/manaplus.sh
deleted file mode 100755
index d7ffc469..00000000
--- a/.tools/manaplus.sh
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/bash
-
-client_branch="$1"
-client_job_name="$2"
-logfile="$3"
-
-set -e
-
-source ./.tools/init.sh
-
-clientdata_init
-
-# Stop tzdata from asking to pick a location, hanging the pipeline
-export DEBIAN_FRONTEND=noninteractive
-
-aptget_update
-# Evidently libcurl3-gnutls ships libcurl4-gnutls.so.4
-aptget_install \
- x11-utils xdg-utils xsel \
- ttf-dejavu-core fonts-liberation \
- libcurl3-gnutls \
- libsdl-gfx1.2 libsdl-image1.2 libsdl-mixer1.2 libsdl-net1.2 libsdl-ttf2.0 \
- wget unzip
-
-pwd
-ls -la
-
-# --retry-on-host-error unknown option?
-wget --retry-connrefused --tries=10 --waitretry=5 \
- --progress=dot:mega \
- -O "$client_job_name.zip" \
- "https://git.themanaworld.org/mana/appimg-builder/-/jobs/artifacts/$client_branch/download?job=$client_job_name"
-
-# Docker will cache the unpacked files, so make unzip only extract
-# if the archive contains newer ones. The same filesystem will
-# most likely contain exctracted MV/M+ from both CI jobs.
-unzip -o -u "$client_job_name.zip" -d "$client_job_name"
-pushd "$client_job_name"
-# Print package sums to troubleshoot docker caching
-printf "Using debian packages with the following checksums:\n"
-cat deb-sha256checksum.txt
-dpkg -i "manaplus-data_latest_all.deb"
-dpkg -i "manaplus_latest_amd64.deb"
-dpkg -i "manaplus-dbg_latest_amd64.deb"
-popd
-
-PATH="$PATH:/usr/games"
-export SDL_VIDEODRIVER=dummy
-manaplus --version || exit 1
-manaplus --validate -u -d clientdata || exit 1
-
-log_path="$HOME/.local/share/mana/$logfile"
-if [[ ! -f "$log_path" ]]; then
- printf "Error: logfile %s not found\n" "$log_path"
- exit 1
-fi
-
-# grep exits 0 (OK) if it found matches, this condition inverts it
-if grep -A 10 "Assert:" "$log_path"; then
- echo "Error: Asserts found"
- exit 1
-fi
diff --git a/.tools/newlines.sh b/.tools/newlines.sh
deleted file mode 100755
index 64cbf7e1..00000000
--- a/.tools/newlines.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-aptget_update
-aptget_install dos2unix git-core
-
-export LOG1="newlines.log"
-
-rm ${LOG1}
-
-find -H . -type f -name "*.xml" -exec dos2unix {} \; >${LOG1}
-
-export RES=$(git diff --name-only)
-if [[ -n "${RES}" ]]; then
- echo "Wrong new lines detected in xml files:"
- git diff --name-only
- exit 1
-fi
-
-find -H . -type f -name "*.tmx" -exec dos2unix {} \; >>${LOG1}
-
-export RES=$(git diff --name-only)
-if [[ -n "${RES}" ]]; then
- echo "Wrong new lines detected in tmx files:"
- git diff --name-only
- exit 1
-fi
diff --git a/.tools/pngcheck.sh b/.tools/pngcheck.sh
deleted file mode 100755
index 8955b26e..00000000
--- a/.tools/pngcheck.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-aptget_update
-aptget_install pngcheck
-
-export LOG1="pngcheck.log"
-export LOG2="pngcheck2.log"
-
-rm ${LOG1}
-rm ${LOG2}
-
-find -H . -type f -name "*.png" -exec pngcheck {} \; >${LOG1}
-
-grep -v "32-bit RGB+alpha, non-interlaced, " ${LOG1} >${LOG2}
-export DATA=$(cat pngcheck2.log)
-if [[ -n "${DATA}" ]]; then
- echo "Images must be in 32 bit RGBA and non-interlanced"
- echo "Wrong images format found:"
- cat ${LOG2}
- exit 1
-fi
diff --git a/.tools/testxml.sh b/.tools/testxml.sh
deleted file mode 100755
index 458d7b85..00000000
--- a/.tools/testxml.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-clientdata_init
-
-aptget_update
-aptget_install git-core libxml2-utils python python-pil python-pyvorbis
-
-rm -rf tools
-gitclone https://git.themanaworld.org/evolved tools.git tools
-
-cd tools/CI/testxml
-
-./xsdcheck.sh
-check_error $?
-export RES=$(cat errors.txt)
-if [[ -n "${RES}" ]]; then
- echo "xml check failed" >../../../clientdata/shared/error.log
- cat errors.txt >>../../../clientdata/shared/error.log
- cat ../../../clientdata/shared/error.log
- exit 1
-fi
-
-echo >../../../clientdata/shared/error.log
-./testxml.py stfu >../../../clientdata/shared/error.log
-res="$?"
-cat ../../../clientdata/shared/error.log
-if [ "$res" != 0 ]; then
- echo "test xml error"
- exit 1
-fi
-
-echo >../../../clientdata/shared/error.log
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 00000000..ed5c991f
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,18 @@
+# Contributing
+*This repository is* ***feature-frozen****. Anything that adds new content will NOT be merged.*
+
+Only patches for the following will be accepted:
+
+
+## High priority patches
+- Missing sprites for already-released content [(green Error boxes)](https://github.com/themanaworld/tmwa-client-data/blob/master/graphics/sprites/error.png).
+- XML errors.
+
+## Low priority patches
+- Typos.
+- Missing or incorrect item stats.
+- Missing or incorrect translation information in XML files.
+- Mapping errors (tiles on the wrong layer).
+- Quest log modifications.
+- Missing frames in sprites.
+- Misc visual improvements (avatars, icons, ...).
diff --git a/badges.xml b/badges.xml
index 4b1718e1..75a3043d 100644
--- a/badges.xml
+++ b/badges.xml
@@ -4,12 +4,10 @@ Copyright (C) 2013 Evol Online -->
-
-
diff --git a/charcreation.xml b/charcreation.xml
index b6e0bd52..9c48f015 100644
--- a/charcreation.xml
+++ b/charcreation.xml
@@ -1,13 +1,13 @@
-
+
-
+
-
-
+
+
diff --git a/deadmessages.xml b/deadmessages.xml
index fbcc98cb..afdf9362 100644
--- a/deadmessages.xml
+++ b/deadmessages.xml
@@ -1,5 +1,9 @@
+
+
+
+
You are dead.
We regret to inform you that your character was killed in battle.
You are not that alive anymore.
diff --git a/effects.xml b/effects.xml
index 332c54f9..3c3a5233 100644
--- a/effects.xml
+++ b/effects.xml
@@ -23,7 +23,7 @@
-
+
@@ -54,10 +54,9 @@
-
-
+
@@ -66,20 +65,20 @@
-
+
-
+
-
-
+
+
@@ -89,19 +88,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -119,11 +106,6 @@
-
-
-
-
-
@@ -144,9 +126,9 @@
-
+
-
+
@@ -156,7 +138,7 @@
-
+
@@ -186,7 +168,7 @@
-
+
@@ -208,79 +190,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/emotes.xml b/emotes.xml
index 67ae3b0f..ed397015 100644
--- a/emotes.xml
+++ b/emotes.xml
@@ -1,133 +1,50 @@
-
+
+
+
+
+
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
+
emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
-
- emote.xml
-
diff --git a/graphics/badges/guilds/followthewhiterabbit.png b/graphics/badges/guilds/followthewhiterabbit.png
deleted file mode 100644
index 97e31a66..00000000
Binary files a/graphics/badges/guilds/followthewhiterabbit.png and /dev/null differ
diff --git a/graphics/badges/guilds/followthewhiterabbit.xml b/graphics/badges/guilds/followthewhiterabbit.xml
deleted file mode 100644
index 3a9bd402..00000000
--- a/graphics/badges/guilds/followthewhiterabbit.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/afraid.png b/graphics/emotes/afraid.png
deleted file mode 100644
index c01a1316..00000000
Binary files a/graphics/emotes/afraid.png and /dev/null differ
diff --git a/graphics/emotes/afraid.xml b/graphics/emotes/afraid.xml
deleted file mode 100644
index 004f8ee7..00000000
--- a/graphics/emotes/afraid.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/alien.png b/graphics/emotes/alien.png
deleted file mode 100644
index 7e69b7b7..00000000
Binary files a/graphics/emotes/alien.png and /dev/null differ
diff --git a/graphics/emotes/alien.xml b/graphics/emotes/alien.xml
deleted file mode 100644
index 3ce5e859..00000000
--- a/graphics/emotes/alien.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/angel.png b/graphics/emotes/angel.png
deleted file mode 100644
index f2409ae6..00000000
Binary files a/graphics/emotes/angel.png and /dev/null differ
diff --git a/graphics/emotes/angel.xml b/graphics/emotes/angel.xml
deleted file mode 100644
index 142e0569..00000000
--- a/graphics/emotes/angel.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/angry.png b/graphics/emotes/angry.png
deleted file mode 100644
index 642eab68..00000000
Binary files a/graphics/emotes/angry.png and /dev/null differ
diff --git a/graphics/emotes/angry.xml b/graphics/emotes/angry.xml
deleted file mode 100644
index 69d730fe..00000000
--- a/graphics/emotes/angry.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/blah.png b/graphics/emotes/blah.png
deleted file mode 100644
index 28d7b34d..00000000
Binary files a/graphics/emotes/blah.png and /dev/null differ
diff --git a/graphics/emotes/blah.xml b/graphics/emotes/blah.xml
deleted file mode 100644
index fb3142c4..00000000
--- a/graphics/emotes/blah.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/blush.png b/graphics/emotes/blush.png
deleted file mode 100644
index 9163aa72..00000000
Binary files a/graphics/emotes/blush.png and /dev/null differ
diff --git a/graphics/emotes/blush.xml b/graphics/emotes/blush.xml
deleted file mode 100644
index 4c5c89f4..00000000
--- a/graphics/emotes/blush.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/bored.png b/graphics/emotes/bored.png
deleted file mode 100644
index bb5b4a23..00000000
Binary files a/graphics/emotes/bored.png and /dev/null differ
diff --git a/graphics/emotes/bored.xml b/graphics/emotes/bored.xml
deleted file mode 100644
index a86735f6..00000000
--- a/graphics/emotes/bored.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/bothered.png b/graphics/emotes/bothered.png
deleted file mode 100644
index 95fa406c..00000000
Binary files a/graphics/emotes/bothered.png and /dev/null differ
diff --git a/graphics/emotes/bothered.xml b/graphics/emotes/bothered.xml
deleted file mode 100644
index bcbb2dbc..00000000
--- a/graphics/emotes/bothered.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/cheerful.png b/graphics/emotes/cheerful.png
deleted file mode 100644
index e3af4ad0..00000000
Binary files a/graphics/emotes/cheerful.png and /dev/null differ
diff --git a/graphics/emotes/cheerful.xml b/graphics/emotes/cheerful.xml
deleted file mode 100644
index 4bbaf847..00000000
--- a/graphics/emotes/cheerful.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/clever.png b/graphics/emotes/clever.png
deleted file mode 100644
index eec6c93f..00000000
Binary files a/graphics/emotes/clever.png and /dev/null differ
diff --git a/graphics/emotes/clever.xml b/graphics/emotes/clever.xml
deleted file mode 100644
index 8ec120a0..00000000
--- a/graphics/emotes/clever.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/curious.png b/graphics/emotes/curious.png
deleted file mode 100644
index e4f7d01a..00000000
Binary files a/graphics/emotes/curious.png and /dev/null differ
diff --git a/graphics/emotes/curious.xml b/graphics/emotes/curious.xml
deleted file mode 100644
index 9abb2e70..00000000
--- a/graphics/emotes/curious.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/dead.png b/graphics/emotes/dead.png
deleted file mode 100644
index c7d705df..00000000
Binary files a/graphics/emotes/dead.png and /dev/null differ
diff --git a/graphics/emotes/dead.xml b/graphics/emotes/dead.xml
deleted file mode 100644
index eb90ec45..00000000
--- a/graphics/emotes/dead.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/disgust.png b/graphics/emotes/disgust.png
deleted file mode 100644
index a8f0e53b..00000000
Binary files a/graphics/emotes/disgust.png and /dev/null differ
diff --git a/graphics/emotes/disgust.xml b/graphics/emotes/disgust.xml
deleted file mode 100644
index 420c4b30..00000000
--- a/graphics/emotes/disgust.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/empty.png b/graphics/emotes/empty.png
deleted file mode 100644
index dd927891..00000000
Binary files a/graphics/emotes/empty.png and /dev/null differ
diff --git a/graphics/emotes/empty.xml b/graphics/emotes/empty.xml
deleted file mode 100644
index 7b5d6abb..00000000
--- a/graphics/emotes/empty.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/evil.png b/graphics/emotes/evil.png
deleted file mode 100644
index 140d28e3..00000000
Binary files a/graphics/emotes/evil.png and /dev/null differ
diff --git a/graphics/emotes/evil.xml b/graphics/emotes/evil.xml
deleted file mode 100644
index 40fe50e5..00000000
--- a/graphics/emotes/evil.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/facepalm.png b/graphics/emotes/facepalm.png
deleted file mode 100644
index 8fabb004..00000000
Binary files a/graphics/emotes/facepalm.png and /dev/null differ
diff --git a/graphics/emotes/facepalm.xml b/graphics/emotes/facepalm.xml
deleted file mode 100644
index d1951633..00000000
--- a/graphics/emotes/facepalm.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/grin.png b/graphics/emotes/grin.png
deleted file mode 100644
index b0854b35..00000000
Binary files a/graphics/emotes/grin.png and /dev/null differ
diff --git a/graphics/emotes/grin.xml b/graphics/emotes/grin.xml
deleted file mode 100644
index 70765acc..00000000
--- a/graphics/emotes/grin.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/halloween.png b/graphics/emotes/halloween.png
deleted file mode 100644
index e3f4a8c3..00000000
Binary files a/graphics/emotes/halloween.png and /dev/null differ
diff --git a/graphics/emotes/halloween.xml b/graphics/emotes/halloween.xml
deleted file mode 100644
index 215548da..00000000
--- a/graphics/emotes/halloween.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/happy.png b/graphics/emotes/happy.png
deleted file mode 100644
index c06fc721..00000000
Binary files a/graphics/emotes/happy.png and /dev/null differ
diff --git a/graphics/emotes/happy.xml b/graphics/emotes/happy.xml
deleted file mode 100644
index 07dd24cf..00000000
--- a/graphics/emotes/happy.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/headache.png b/graphics/emotes/headache.png
deleted file mode 100644
index a776a96c..00000000
Binary files a/graphics/emotes/headache.png and /dev/null differ
diff --git a/graphics/emotes/headache.xml b/graphics/emotes/headache.xml
deleted file mode 100644
index 7eb7f8ac..00000000
--- a/graphics/emotes/headache.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/heart.png b/graphics/emotes/heart.png
deleted file mode 100644
index 286fe48d..00000000
Binary files a/graphics/emotes/heart.png and /dev/null differ
diff --git a/graphics/emotes/heart.xml b/graphics/emotes/heart.xml
deleted file mode 100644
index 019e3b19..00000000
--- a/graphics/emotes/heart.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/joyful.png b/graphics/emotes/joyful.png
deleted file mode 100644
index a4842919..00000000
Binary files a/graphics/emotes/joyful.png and /dev/null differ
diff --git a/graphics/emotes/joyful.xml b/graphics/emotes/joyful.xml
deleted file mode 100644
index ee06fe45..00000000
--- a/graphics/emotes/joyful.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/laugh.png b/graphics/emotes/laugh.png
deleted file mode 100644
index fc749edf..00000000
Binary files a/graphics/emotes/laugh.png and /dev/null differ
diff --git a/graphics/emotes/laugh.xml b/graphics/emotes/laugh.xml
deleted file mode 100644
index a670966b..00000000
--- a/graphics/emotes/laugh.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/love.png b/graphics/emotes/love.png
deleted file mode 100644
index 8d685d27..00000000
Binary files a/graphics/emotes/love.png and /dev/null differ
diff --git a/graphics/emotes/love.xml b/graphics/emotes/love.xml
deleted file mode 100644
index 2cb5ff49..00000000
--- a/graphics/emotes/love.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/melancholy.png b/graphics/emotes/melancholy.png
deleted file mode 100644
index e629a748..00000000
Binary files a/graphics/emotes/melancholy.png and /dev/null differ
diff --git a/graphics/emotes/melancholy.xml b/graphics/emotes/melancholy.xml
deleted file mode 100644
index b86b06b4..00000000
--- a/graphics/emotes/melancholy.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/meow.png b/graphics/emotes/meow.png
deleted file mode 100644
index 54ae72bc..00000000
Binary files a/graphics/emotes/meow.png and /dev/null differ
diff --git a/graphics/emotes/meow.xml b/graphics/emotes/meow.xml
deleted file mode 100644
index 0327464f..00000000
--- a/graphics/emotes/meow.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/money.png b/graphics/emotes/money.png
deleted file mode 100644
index 9a9ae3f3..00000000
Binary files a/graphics/emotes/money.png and /dev/null differ
diff --git a/graphics/emotes/money.xml b/graphics/emotes/money.xml
deleted file mode 100644
index 7773b4c9..00000000
--- a/graphics/emotes/money.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/pain.png b/graphics/emotes/pain.png
deleted file mode 100644
index c5af18ab..00000000
Binary files a/graphics/emotes/pain.png and /dev/null differ
diff --git a/graphics/emotes/pain.xml b/graphics/emotes/pain.xml
deleted file mode 100644
index c20710be..00000000
--- a/graphics/emotes/pain.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/perturbed.png b/graphics/emotes/perturbed.png
deleted file mode 100644
index 736893fe..00000000
Binary files a/graphics/emotes/perturbed.png and /dev/null differ
diff --git a/graphics/emotes/perturbed.xml b/graphics/emotes/perturbed.xml
deleted file mode 100644
index 3b72327b..00000000
--- a/graphics/emotes/perturbed.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/rest.png b/graphics/emotes/rest.png
deleted file mode 100644
index 106aa1c8..00000000
Binary files a/graphics/emotes/rest.png and /dev/null differ
diff --git a/graphics/emotes/rest.xml b/graphics/emotes/rest.xml
deleted file mode 100644
index 6198c87b..00000000
--- a/graphics/emotes/rest.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/sad.png b/graphics/emotes/sad.png
deleted file mode 100644
index b68eefbf..00000000
Binary files a/graphics/emotes/sad.png and /dev/null differ
diff --git a/graphics/emotes/sad.xml b/graphics/emotes/sad.xml
deleted file mode 100644
index 10bb6b3c..00000000
--- a/graphics/emotes/sad.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/shy.png b/graphics/emotes/shy.png
deleted file mode 100644
index c81ebc27..00000000
Binary files a/graphics/emotes/shy.png and /dev/null differ
diff --git a/graphics/emotes/shy.xml b/graphics/emotes/shy.xml
deleted file mode 100644
index dcd5e94e..00000000
--- a/graphics/emotes/shy.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/sleep.png b/graphics/emotes/sleep.png
deleted file mode 100644
index 16a18d5d..00000000
Binary files a/graphics/emotes/sleep.png and /dev/null differ
diff --git a/graphics/emotes/sleep.xml b/graphics/emotes/sleep.xml
deleted file mode 100644
index 8892e0de..00000000
--- a/graphics/emotes/sleep.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/speech.png b/graphics/emotes/speech.png
deleted file mode 100644
index bc726d6c..00000000
Binary files a/graphics/emotes/speech.png and /dev/null differ
diff --git a/graphics/emotes/speech.xml b/graphics/emotes/speech.xml
deleted file mode 100644
index eeff9ccd..00000000
--- a/graphics/emotes/speech.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/surprise.png b/graphics/emotes/surprise.png
deleted file mode 100644
index e841463f..00000000
Binary files a/graphics/emotes/surprise.png and /dev/null differ
diff --git a/graphics/emotes/surprise.xml b/graphics/emotes/surprise.xml
deleted file mode 100644
index 4829b53f..00000000
--- a/graphics/emotes/surprise.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/suspicious.png b/graphics/emotes/suspicious.png
deleted file mode 100644
index 27e72e7c..00000000
Binary files a/graphics/emotes/suspicious.png and /dev/null differ
diff --git a/graphics/emotes/suspicious.xml b/graphics/emotes/suspicious.xml
deleted file mode 100644
index 9d40f892..00000000
--- a/graphics/emotes/suspicious.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/swear.png b/graphics/emotes/swear.png
deleted file mode 100644
index 3b6fcc74..00000000
Binary files a/graphics/emotes/swear.png and /dev/null differ
diff --git a/graphics/emotes/swear.xml b/graphics/emotes/swear.xml
deleted file mode 100644
index 66eeab6c..00000000
--- a/graphics/emotes/swear.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/tears.png b/graphics/emotes/tears.png
deleted file mode 100644
index 806d37c4..00000000
Binary files a/graphics/emotes/tears.png and /dev/null differ
diff --git a/graphics/emotes/tears.xml b/graphics/emotes/tears.xml
deleted file mode 100644
index 5aeb1eff..00000000
--- a/graphics/emotes/tears.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/tongue.png b/graphics/emotes/tongue.png
deleted file mode 100644
index 46da670d..00000000
Binary files a/graphics/emotes/tongue.png and /dev/null differ
diff --git a/graphics/emotes/tongue.xml b/graphics/emotes/tongue.xml
deleted file mode 100644
index 9993fd73..00000000
--- a/graphics/emotes/tongue.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/troll.png b/graphics/emotes/troll.png
deleted file mode 100644
index bb27e8e2..00000000
Binary files a/graphics/emotes/troll.png and /dev/null differ
diff --git a/graphics/emotes/troll.xml b/graphics/emotes/troll.xml
deleted file mode 100644
index 6147619d..00000000
--- a/graphics/emotes/troll.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/upset.png b/graphics/emotes/upset.png
deleted file mode 100644
index 674fc1da..00000000
Binary files a/graphics/emotes/upset.png and /dev/null differ
diff --git a/graphics/emotes/upset.xml b/graphics/emotes/upset.xml
deleted file mode 100644
index 74d820c1..00000000
--- a/graphics/emotes/upset.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/vicious.png b/graphics/emotes/vicious.png
deleted file mode 100644
index 1ee6fe29..00000000
Binary files a/graphics/emotes/vicious.png and /dev/null differ
diff --git a/graphics/emotes/vicious.xml b/graphics/emotes/vicious.xml
deleted file mode 100644
index bbc0e32b..00000000
--- a/graphics/emotes/vicious.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/emotes/wink.png b/graphics/emotes/wink.png
deleted file mode 100644
index 01037683..00000000
Binary files a/graphics/emotes/wink.png and /dev/null differ
diff --git a/graphics/emotes/wink.xml b/graphics/emotes/wink.xml
deleted file mode 100644
index bd56b912..00000000
--- a/graphics/emotes/wink.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/images/ambient/aethyr.jpg b/graphics/images/ambient/aethyr.jpg
deleted file mode 100644
index 359c0535..00000000
Binary files a/graphics/images/ambient/aethyr.jpg and /dev/null differ
diff --git a/graphics/images/ambient/cloud.png b/graphics/images/ambient/cloud.png
deleted file mode 100644
index c914b466..00000000
Binary files a/graphics/images/ambient/cloud.png and /dev/null differ
diff --git a/graphics/images/ambient/darkness1.png b/graphics/images/ambient/darkness1.png
deleted file mode 100644
index 5e9bc724..00000000
Binary files a/graphics/images/ambient/darkness1.png and /dev/null differ
diff --git a/graphics/images/ambient/darkness2.png b/graphics/images/ambient/darkness2.png
deleted file mode 100644
index dba9b9c6..00000000
Binary files a/graphics/images/ambient/darkness2.png and /dev/null differ
diff --git a/graphics/images/ambient/desertclouds.png b/graphics/images/ambient/desertclouds.png
deleted file mode 100644
index b95ad6c4..00000000
Binary files a/graphics/images/ambient/desertclouds.png and /dev/null differ
diff --git a/graphics/images/doomsday.png b/graphics/images/doomsday.png
index e0f3cdd4..838ff74d 100644
Binary files a/graphics/images/doomsday.png and b/graphics/images/doomsday.png differ
diff --git a/graphics/images/login_wallpaper.png b/graphics/images/login_wallpaper.png
index 4af40bba..4f8fec08 100644
Binary files a/graphics/images/login_wallpaper.png and b/graphics/images/login_wallpaper.png differ
diff --git a/graphics/images/login_wallpaper_fall.png b/graphics/images/login_wallpaper_fall.png
deleted file mode 100644
index ee52d0a7..00000000
Binary files a/graphics/images/login_wallpaper_fall.png and /dev/null differ
diff --git a/graphics/images/login_wallpaper_spring.png b/graphics/images/login_wallpaper_spring.png
deleted file mode 100644
index 7cf4b43a..00000000
Binary files a/graphics/images/login_wallpaper_spring.png and /dev/null differ
diff --git a/graphics/images/login_wallpaper_summer.png b/graphics/images/login_wallpaper_summer.png
deleted file mode 100644
index f27371f8..00000000
Binary files a/graphics/images/login_wallpaper_summer.png and /dev/null differ
diff --git a/graphics/images/login_wallpaper_winter.png b/graphics/images/login_wallpaper_winter.png
deleted file mode 100644
index 90995318..00000000
Binary files a/graphics/images/login_wallpaper_winter.png and /dev/null differ
diff --git a/graphics/items/equipment/ammo/cursedarrow.png b/graphics/items/equipment/ammo/cursedarrow.png
deleted file mode 100644
index cef5eca8..00000000
Binary files a/graphics/items/equipment/ammo/cursedarrow.png and /dev/null differ
diff --git a/graphics/items/equipment/ammo/silverarrow.png b/graphics/items/equipment/ammo/silverarrow.png
deleted file mode 100644
index 70665766..00000000
Binary files a/graphics/items/equipment/ammo/silverarrow.png and /dev/null differ
diff --git a/graphics/items/equipment/ammo/thornarrow.png b/graphics/items/equipment/ammo/thornarrow.png
deleted file mode 100644
index 2a25757c..00000000
Binary files a/graphics/items/equipment/ammo/thornarrow.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/angel-wings.png b/graphics/items/equipment/amulets/angel-wings.png
deleted file mode 100644
index 17a5b710..00000000
Binary files a/graphics/items/equipment/amulets/angel-wings.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/assassin-amulet.png b/graphics/items/equipment/amulets/assassin-amulet.png
deleted file mode 100644
index bf7caae7..00000000
Binary files a/graphics/items/equipment/amulets/assassin-amulet.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/gmamulet.png b/graphics/items/equipment/amulets/gmamulet.png
deleted file mode 100644
index 0724945b..00000000
Binary files a/graphics/items/equipment/amulets/gmamulet.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/manapearl.png b/graphics/items/equipment/amulets/manapearl.png
deleted file mode 100644
index 16dad06a..00000000
Binary files a/graphics/items/equipment/amulets/manapearl.png and /dev/null differ
diff --git a/graphics/items/equipment/charms/assassin-amulet.png b/graphics/items/equipment/charms/assassin-amulet.png
new file mode 100644
index 00000000..e0a496a0
Binary files /dev/null and b/graphics/items/equipment/charms/assassin-amulet.png differ
diff --git a/graphics/items/equipment/charms/darktalisman.png b/graphics/items/equipment/charms/darktalisman.png
deleted file mode 100644
index f6ed3ca2..00000000
Binary files a/graphics/items/equipment/charms/darktalisman.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/enchanter.png b/graphics/items/equipment/charms/enchanter.png
similarity index 100%
rename from graphics/items/equipment/amulets/enchanter.png
rename to graphics/items/equipment/charms/enchanter.png
diff --git a/graphics/items/equipment/amulets/fourleaf-amulet.png b/graphics/items/equipment/charms/fourleaf-amulet.png
similarity index 100%
rename from graphics/items/equipment/amulets/fourleaf-amulet.png
rename to graphics/items/equipment/charms/fourleaf-amulet.png
diff --git a/graphics/items/equipment/charms/manapearl.png b/graphics/items/equipment/charms/manapearl.png
new file mode 100644
index 00000000..2965777f
Binary files /dev/null and b/graphics/items/equipment/charms/manapearl.png differ
diff --git a/graphics/items/equipment/head/assassin-mask.png b/graphics/items/equipment/head/assassin-mask.png
index 16b76617..e2ed73b2 100644
Binary files a/graphics/items/equipment/head/assassin-mask.png and b/graphics/items/equipment/head/assassin-mask.png differ
diff --git a/graphics/items/equipment/head/headslime.png b/graphics/items/equipment/head/headslime.png
deleted file mode 100644
index 71ec7e10..00000000
Binary files a/graphics/items/equipment/head/headslime.png and /dev/null differ
diff --git a/graphics/items/equipment/head/knighthelm-dyable.png b/graphics/items/equipment/head/knighthelm-dyable.png
deleted file mode 100644
index 1c5db321..00000000
Binary files a/graphics/items/equipment/head/knighthelm-dyable.png and /dev/null differ
diff --git a/graphics/items/equipment/head/knit-cap.png b/graphics/items/equipment/head/knit-cap.png
index ef0b8d21..ceafba2e 100644
Binary files a/graphics/items/equipment/head/knit-cap.png and b/graphics/items/equipment/head/knit-cap.png differ
diff --git a/graphics/items/equipment/head/leprechaunhead.png b/graphics/items/equipment/head/leprechaunhead.png
deleted file mode 100644
index 64d8ccc3..00000000
Binary files a/graphics/items/equipment/head/leprechaunhead.png and /dev/null differ
diff --git a/graphics/items/equipment/head/rainshroomhat.png b/graphics/items/equipment/head/rainshroomhat.png
deleted file mode 100644
index 69c462e0..00000000
Binary files a/graphics/items/equipment/head/rainshroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/skullmask-dyable.png b/graphics/items/equipment/head/skullmask-dyable.png
deleted file mode 100644
index 13c6adfd..00000000
Binary files a/graphics/items/equipment/head/skullmask-dyable.png and /dev/null differ
diff --git a/graphics/items/equipment/head/snowshroomhat.png b/graphics/items/equipment/head/snowshroomhat.png
deleted file mode 100644
index 6799dc36..00000000
Binary files a/graphics/items/equipment/head/snowshroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/sunshroomhat.png b/graphics/items/equipment/head/sunshroomhat.png
deleted file mode 100644
index 4166ed53..00000000
Binary files a/graphics/items/equipment/head/sunshroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/wickedmushroomhat.png b/graphics/items/equipment/head/wickedmushroomhat.png
deleted file mode 100644
index e22c057d..00000000
Binary files a/graphics/items/equipment/head/wickedmushroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/witch-doctor-mask.png b/graphics/items/equipment/head/witch-doctor-mask.png
index fd3ea418..f2a641d1 100644
Binary files a/graphics/items/equipment/head/witch-doctor-mask.png and b/graphics/items/equipment/head/witch-doctor-mask.png differ
diff --git a/graphics/items/equipment/rings/assassin-ring.png b/graphics/items/equipment/rings/assassin-ring.png
index f47655f2..81ed5805 100644
Binary files a/graphics/items/equipment/rings/assassin-ring.png and b/graphics/items/equipment/rings/assassin-ring.png differ
diff --git a/graphics/items/equipment/shield/steel-dyable.png b/graphics/items/equipment/shield/steel-dyable.png
deleted file mode 100644
index 6cbd8efa..00000000
Binary files a/graphics/items/equipment/shield/steel-dyable.png and /dev/null differ
diff --git a/graphics/items/equipment/weapon/bow-life.png b/graphics/items/equipment/weapon/bow-life.png
deleted file mode 100644
index 6650e0bc..00000000
Binary files a/graphics/items/equipment/weapon/bow-life.png and /dev/null differ
diff --git a/graphics/items/equipment/weapon/sword-shortsword.png b/graphics/items/equipment/weapon/dagger-shortsword.png
similarity index 100%
rename from graphics/items/equipment/weapon/sword-shortsword.png
rename to graphics/items/equipment/weapon/dagger-shortsword.png
diff --git a/graphics/items/equipment/weapon/floydbook.png b/graphics/items/equipment/weapon/floydbook.png
deleted file mode 100644
index 46e9f40f..00000000
Binary files a/graphics/items/equipment/weapon/floydbook.png and /dev/null differ
diff --git a/graphics/items/equipment/weapon/rainerang.png b/graphics/items/equipment/weapon/rainerang.png
deleted file mode 100644
index 385951e4..00000000
Binary files a/graphics/items/equipment/weapon/rainerang.png and /dev/null differ
diff --git a/graphics/items/equipment/weapon/flintlock.png b/graphics/items/equipment/weapon/revolver.png
similarity index 100%
rename from graphics/items/equipment/weapon/flintlock.png
rename to graphics/items/equipment/weapon/revolver.png
diff --git a/graphics/items/equipment/weapon/sword-dragon.png b/graphics/items/equipment/weapon/sword-dragon.png
deleted file mode 100644
index ca3147eb..00000000
Binary files a/graphics/items/equipment/weapon/sword-dragon.png and /dev/null differ
diff --git a/graphics/items/generic/beeswax.png b/graphics/items/generic/beeswax.png
deleted file mode 100644
index ffa9763c..00000000
Binary files a/graphics/items/generic/beeswax.png and /dev/null differ
diff --git a/graphics/items/generic/blackscorpionclaw.png b/graphics/items/generic/blackscorpionclaw.png
deleted file mode 100644
index 889bf332..00000000
Binary files a/graphics/items/generic/blackscorpionclaw.png and /dev/null differ
diff --git a/graphics/items/generic/blossom-wonderwoodling.png b/graphics/items/generic/blossom-wonderwoodling.png
deleted file mode 100644
index 3bfd6ac0..00000000
Binary files a/graphics/items/generic/blossom-wonderwoodling.png and /dev/null differ
diff --git a/graphics/items/generic/bottle-moon.png b/graphics/items/generic/bottle-moon.png
deleted file mode 100644
index 4f8efe6f..00000000
Binary files a/graphics/items/generic/bottle-moon.png and /dev/null differ
diff --git a/graphics/items/generic/brick-a.png b/graphics/items/generic/brick-a.png
deleted file mode 100644
index c84377ec..00000000
Binary files a/graphics/items/generic/brick-a.png and /dev/null differ
diff --git a/graphics/items/generic/bromenal-droplet.png b/graphics/items/generic/bromenal-droplet.png
deleted file mode 100644
index 74955530..00000000
Binary files a/graphics/items/generic/bromenal-droplet.png and /dev/null differ
diff --git a/graphics/items/generic/butterfly.png b/graphics/items/generic/butterfly.png
deleted file mode 100644
index e429af26..00000000
Binary files a/graphics/items/generic/butterfly.png and /dev/null differ
diff --git a/graphics/items/generic/carrot-legendary.png b/graphics/items/generic/carrot-legendary.png
deleted file mode 100644
index dd054770..00000000
Binary files a/graphics/items/generic/carrot-legendary.png and /dev/null differ
diff --git a/graphics/items/generic/carrot.png b/graphics/items/generic/carrot.png
new file mode 100644
index 00000000..c61f58f7
Binary files /dev/null and b/graphics/items/generic/carrot.png differ
diff --git a/graphics/items/generic/charcoal.png b/graphics/items/generic/charcoal.png
deleted file mode 100644
index 87819322..00000000
Binary files a/graphics/items/generic/charcoal.png and /dev/null differ
diff --git a/graphics/items/generic/clover-drawing.png b/graphics/items/generic/clover-drawing.png
deleted file mode 100644
index dbff7d5e..00000000
Binary files a/graphics/items/generic/clover-drawing.png and /dev/null differ
diff --git a/graphics/items/generic/crocclaw.png b/graphics/items/generic/crocclaw.png
deleted file mode 100644
index c44eebb4..00000000
Binary files a/graphics/items/generic/crocclaw.png and /dev/null differ
diff --git a/graphics/items/generic/crystal-black-quartz.png b/graphics/items/generic/crystal-black-quartz.png
deleted file mode 100644
index 4fe58a5d..00000000
Binary files a/graphics/items/generic/crystal-black-quartz.png and /dev/null differ
diff --git a/graphics/items/generic/crystal-crozenite.png b/graphics/items/generic/crystal-crozenite.png
deleted file mode 100644
index bfde775a..00000000
Binary files a/graphics/items/generic/crystal-crozenite.png and /dev/null differ
diff --git a/graphics/items/generic/crystal-mountain.png b/graphics/items/generic/crystal-mountain.png
deleted file mode 100644
index 810f5f1a..00000000
Binary files a/graphics/items/generic/crystal-mountain.png and /dev/null differ
diff --git a/graphics/items/generic/crystal-pink-quartz.png b/graphics/items/generic/crystal-pink-quartz.png
deleted file mode 100644
index 623e401f..00000000
Binary files a/graphics/items/generic/crystal-pink-quartz.png and /dev/null differ
diff --git a/graphics/items/generic/crystalized-dragon-blood.png b/graphics/items/generic/crystalized-dragon-blood.png
deleted file mode 100644
index 355dbf22..00000000
Binary files a/graphics/items/generic/crystalized-dragon-blood.png and /dev/null differ
diff --git a/graphics/items/generic/dragon-horn.png b/graphics/items/generic/dragon-horn.png
deleted file mode 100644
index 1ca80fbe..00000000
Binary files a/graphics/items/generic/dragon-horn.png and /dev/null differ
diff --git a/graphics/items/generic/dragonscales.png b/graphics/items/generic/dragonscales.png
deleted file mode 100644
index 272a6edc..00000000
Binary files a/graphics/items/generic/dragonscales.png and /dev/null differ
diff --git a/graphics/items/generic/duckfeather.png b/graphics/items/generic/duckfeather.png
deleted file mode 100644
index c1a88413..00000000
Binary files a/graphics/items/generic/duckfeather.png and /dev/null differ
diff --git a/graphics/items/generic/feather-a.png b/graphics/items/generic/feather-a.png
deleted file mode 100644
index b758d23f..00000000
Binary files a/graphics/items/generic/feather-a.png and /dev/null differ
diff --git a/graphics/items/generic/flour.png b/graphics/items/generic/flour.png
deleted file mode 100644
index 4b19f5e8..00000000
Binary files a/graphics/items/generic/flour.png and /dev/null differ
diff --git a/graphics/items/generic/glass-shards.png b/graphics/items/generic/glass-shards.png
deleted file mode 100644
index e749aaff..00000000
Binary files a/graphics/items/generic/glass-shards.png and /dev/null differ
diff --git a/graphics/items/generic/golden-tooth.png b/graphics/items/generic/golden-tooth.png
deleted file mode 100644
index e02d3ba9..00000000
Binary files a/graphics/items/generic/golden-tooth.png and /dev/null differ
diff --git a/graphics/items/generic/hay.png b/graphics/items/generic/hay.png
deleted file mode 100644
index 40d6cf8a..00000000
Binary files a/graphics/items/generic/hay.png and /dev/null differ
diff --git a/graphics/items/generic/honeycomb.png b/graphics/items/generic/honeycomb.png
deleted file mode 100644
index 14cb77e7..00000000
Binary files a/graphics/items/generic/honeycomb.png and /dev/null differ
diff --git a/graphics/items/generic/mushroomspores.png b/graphics/items/generic/mushroomspores.png
deleted file mode 100644
index 9e034349..00000000
Binary files a/graphics/items/generic/mushroomspores.png and /dev/null differ
diff --git a/graphics/items/generic/naftalin.png b/graphics/items/generic/naftalin.png
deleted file mode 100644
index 0c3de3d4..00000000
Binary files a/graphics/items/generic/naftalin.png and /dev/null differ
diff --git a/graphics/items/generic/ore.png b/graphics/items/generic/ore.png
deleted file mode 100644
index 46a552b1..00000000
Binary files a/graphics/items/generic/ore.png and /dev/null differ
diff --git a/graphics/items/generic/pink-flower-seed.png b/graphics/items/generic/pink-flower-seed.png
deleted file mode 100644
index 6f2c0d44..00000000
Binary files a/graphics/items/generic/pink-flower-seed.png and /dev/null differ
diff --git a/graphics/items/generic/raindrop.png b/graphics/items/generic/raindrop.png
deleted file mode 100644
index 19f6a0d4..00000000
Binary files a/graphics/items/generic/raindrop.png and /dev/null differ
diff --git a/graphics/items/generic/rattotail.png b/graphics/items/generic/rattotail.png
deleted file mode 100644
index d0ca02ce..00000000
Binary files a/graphics/items/generic/rattotail.png and /dev/null differ
diff --git a/graphics/items/generic/rattoteeth.png b/graphics/items/generic/rattoteeth.png
deleted file mode 100644
index 73ffbfb4..00000000
Binary files a/graphics/items/generic/rattoteeth.png and /dev/null differ
diff --git a/graphics/items/generic/redscorpionclaw.png b/graphics/items/generic/redscorpionclaw.png
deleted file mode 100644
index 2ca06384..00000000
Binary files a/graphics/items/generic/redscorpionclaw.png and /dev/null differ
diff --git a/graphics/items/generic/scorpionclaw.png b/graphics/items/generic/scorpionclaw.png
deleted file mode 100644
index ce6ace6c..00000000
Binary files a/graphics/items/generic/scorpionclaw.png and /dev/null differ
diff --git a/graphics/items/generic/seed-wonderwoodling.png b/graphics/items/generic/seed-wonderwoodling.png
deleted file mode 100644
index 0f99dfad..00000000
Binary files a/graphics/items/generic/seed-wonderwoodling.png and /dev/null differ
diff --git a/graphics/items/generic/seeds-dyable.png b/graphics/items/generic/seeds-dyable.png
deleted file mode 100644
index b0a05d32..00000000
Binary files a/graphics/items/generic/seeds-dyable.png and /dev/null differ
diff --git a/graphics/items/generic/shipkey.png b/graphics/items/generic/shipkey.png
deleted file mode 100644
index 1e2a85ef..00000000
Binary files a/graphics/items/generic/shipkey.png and /dev/null differ
diff --git a/graphics/items/generic/snowflake.png b/graphics/items/generic/snowflake.png
deleted file mode 100644
index f4b47ffc..00000000
Binary files a/graphics/items/generic/snowflake.png and /dev/null differ
diff --git a/graphics/items/generic/squichyclaws.png b/graphics/items/generic/squichyclaws.png
deleted file mode 100644
index 89dfe049..00000000
Binary files a/graphics/items/generic/squichyclaws.png and /dev/null differ
diff --git a/graphics/items/generic/stone-a.png b/graphics/items/generic/stone-a.png
deleted file mode 100644
index 18bc06d1..00000000
Binary files a/graphics/items/generic/stone-a.png and /dev/null differ
diff --git a/graphics/items/generic/straw.png b/graphics/items/generic/straw.png
deleted file mode 100644
index ec8aed19..00000000
Binary files a/graphics/items/generic/straw.png and /dev/null differ
diff --git a/graphics/items/generic/tortugashell.png b/graphics/items/generic/tortugashell.png
deleted file mode 100644
index faca1a07..00000000
Binary files a/graphics/items/generic/tortugashell.png and /dev/null differ
diff --git a/graphics/items/generic/tortugashellfragment.png b/graphics/items/generic/tortugashellfragment.png
deleted file mode 100644
index db713772..00000000
Binary files a/graphics/items/generic/tortugashellfragment.png and /dev/null differ
diff --git a/graphics/items/generic/wonder-wood.png b/graphics/items/generic/wonder-wood.png
deleted file mode 100644
index 7092bf59..00000000
Binary files a/graphics/items/generic/wonder-wood.png and /dev/null differ
diff --git a/graphics/items/use/food/bird-big-egg-a.png b/graphics/items/use/food/bird-big-egg-a.png
deleted file mode 100644
index f40293ce..00000000
Binary files a/graphics/items/use/food/bird-big-egg-a.png and /dev/null differ
diff --git a/graphics/items/use/food/bird-egg-a.png b/graphics/items/use/food/bird-egg-a.png
deleted file mode 100644
index cca44dcf..00000000
Binary files a/graphics/items/use/food/bird-egg-a.png and /dev/null differ
diff --git a/graphics/items/use/food/bread.png b/graphics/items/use/food/bread.png
deleted file mode 100644
index cb203d05..00000000
Binary files a/graphics/items/use/food/bread.png and /dev/null differ
diff --git a/graphics/items/use/food/carrot.png b/graphics/items/use/food/carrot.png
deleted file mode 100644
index e0208f61..00000000
Binary files a/graphics/items/use/food/carrot.png and /dev/null differ
diff --git a/graphics/items/use/food/cheese.png b/graphics/items/use/food/cheese.png
deleted file mode 100644
index 1ee2c01a..00000000
Binary files a/graphics/items/use/food/cheese.png and /dev/null differ
diff --git a/graphics/items/use/food/chocolatebiscuit.png b/graphics/items/use/food/chocolatebiscuit.png
deleted file mode 100644
index 14eb803a..00000000
Binary files a/graphics/items/use/food/chocolatebiscuit.png and /dev/null differ
diff --git a/graphics/items/use/food/chocolatebunny.png b/graphics/items/use/food/chocolatebunny.png
deleted file mode 100644
index 79faf6f6..00000000
Binary files a/graphics/items/use/food/chocolatebunny.png and /dev/null differ
diff --git a/graphics/items/use/food/deliciouscookie.png b/graphics/items/use/food/deliciouscookie.png
deleted file mode 100644
index 6f5e78a8..00000000
Binary files a/graphics/items/use/food/deliciouscookie.png and /dev/null differ
diff --git a/graphics/items/use/food/dragonfruit.png b/graphics/items/use/food/dragonfruit.png
deleted file mode 100644
index e54bd672..00000000
Binary files a/graphics/items/use/food/dragonfruit.png and /dev/null differ
diff --git a/graphics/items/use/food/duckegg.png b/graphics/items/use/food/duckegg.png
deleted file mode 100644
index 1ef788be..00000000
Binary files a/graphics/items/use/food/duckegg.png and /dev/null differ
diff --git a/graphics/items/use/food/fruit-salad.png b/graphics/items/use/food/fruit-salad.png
deleted file mode 100644
index ab8f3f04..00000000
Binary files a/graphics/items/use/food/fruit-salad.png and /dev/null differ
diff --git a/graphics/items/use/food/fungus.png b/graphics/items/use/food/fungus.png
deleted file mode 100644
index 18b8fb5f..00000000
Binary files a/graphics/items/use/food/fungus.png and /dev/null differ
diff --git a/graphics/items/use/food/halfcroconut.png b/graphics/items/use/food/halfcroconut.png
deleted file mode 100644
index 85364e26..00000000
Binary files a/graphics/items/use/food/halfcroconut.png and /dev/null differ
diff --git a/graphics/items/use/food/lettuceleaf.png b/graphics/items/use/food/lettuceleaf.png
deleted file mode 100644
index 09ae053d..00000000
Binary files a/graphics/items/use/food/lettuceleaf.png and /dev/null differ
diff --git a/graphics/items/use/food/manana.png b/graphics/items/use/food/manana.png
deleted file mode 100644
index 3da632fe..00000000
Binary files a/graphics/items/use/food/manana.png and /dev/null differ
diff --git a/graphics/items/use/food/piberries.png b/graphics/items/use/food/piberries.png
deleted file mode 100644
index c34f4e85..00000000
Binary files a/graphics/items/use/food/piberries.png and /dev/null differ
diff --git a/graphics/items/use/food/potatoz.png b/graphics/items/use/food/potatoz.png
deleted file mode 100644
index bcb12631..00000000
Binary files a/graphics/items/use/food/potatoz.png and /dev/null differ
diff --git a/graphics/items/use/food/pumpkin.png b/graphics/items/use/food/pumpkin.png
deleted file mode 100644
index 3df097cd..00000000
Binary files a/graphics/items/use/food/pumpkin.png and /dev/null differ
diff --git a/graphics/items/use/food/pumpkinjuice.png b/graphics/items/use/food/pumpkinjuice.png
deleted file mode 100644
index d0f7a15c..00000000
Binary files a/graphics/items/use/food/pumpkinjuice.png and /dev/null differ
diff --git a/graphics/items/use/food/rum.png b/graphics/items/use/food/rum.png
deleted file mode 100644
index c6087107..00000000
Binary files a/graphics/items/use/food/rum.png and /dev/null differ
diff --git a/graphics/items/use/food/sauerkraut.png b/graphics/items/use/food/sauerkraut.png
deleted file mode 100644
index 3d4028d2..00000000
Binary files a/graphics/items/use/food/sauerkraut.png and /dev/null differ
diff --git a/graphics/items/use/others/anchor-stone-anchored.png b/graphics/items/use/others/anchor-stone-anchored.png
deleted file mode 100644
index ec0626a0..00000000
Binary files a/graphics/items/use/others/anchor-stone-anchored.png and /dev/null differ
diff --git a/graphics/items/use/others/anchor-stone.png b/graphics/items/use/others/anchor-stone.png
deleted file mode 100644
index ee9c4d4e..00000000
Binary files a/graphics/items/use/others/anchor-stone.png and /dev/null differ
diff --git a/graphics/items/use/others/arrow_bundle.png b/graphics/items/use/others/arrow_bundle.png
deleted file mode 100644
index 86583716..00000000
Binary files a/graphics/items/use/others/arrow_bundle.png and /dev/null differ
diff --git a/graphics/items/use/others/croconut.png b/graphics/items/use/others/croconut.png
deleted file mode 100644
index f939589a..00000000
Binary files a/graphics/items/use/others/croconut.png and /dev/null differ
diff --git a/graphics/items/use/others/lightning-orb.png b/graphics/items/use/others/lightning-orb.png
deleted file mode 100644
index 639527fe..00000000
Binary files a/graphics/items/use/others/lightning-orb.png and /dev/null differ
diff --git a/graphics/items/use/others/rubberducky.png b/graphics/items/use/others/rubberducky.png
deleted file mode 100644
index d490627f..00000000
Binary files a/graphics/items/use/others/rubberducky.png and /dev/null differ
diff --git a/graphics/items/use/others/shovel-legendary.png b/graphics/items/use/others/shovel-legendary.png
deleted file mode 100644
index 3c63ecf4..00000000
Binary files a/graphics/items/use/others/shovel-legendary.png and /dev/null differ
diff --git a/graphics/items/use/others/shovel.png b/graphics/items/use/others/shovel.png
deleted file mode 100644
index 4edf3a5e..00000000
Binary files a/graphics/items/use/others/shovel.png and /dev/null differ
diff --git a/graphics/items/use/others/treasuremap-legendary.png b/graphics/items/use/others/treasuremap-legendary.png
deleted file mode 100644
index 04c54567..00000000
Binary files a/graphics/items/use/others/treasuremap-legendary.png and /dev/null differ
diff --git a/graphics/items/use/others/treasuremap.png b/graphics/items/use/others/treasuremap.png
deleted file mode 100644
index 6c65dd81..00000000
Binary files a/graphics/items/use/others/treasuremap.png and /dev/null differ
diff --git a/graphics/items/use/others/treasuremap2.png b/graphics/items/use/others/treasuremap2.png
deleted file mode 100644
index d303244d..00000000
Binary files a/graphics/items/use/others/treasuremap2.png and /dev/null differ
diff --git a/graphics/items/use/potions/g.png b/graphics/items/use/potions/g.png
deleted file mode 100644
index 1fb4f883..00000000
Binary files a/graphics/items/use/potions/g.png and /dev/null differ
diff --git a/graphics/items/use/scrolls/scroll-alizarin.png b/graphics/items/use/scrolls/scroll-alizarin.png
deleted file mode 100644
index d3375bad..00000000
Binary files a/graphics/items/use/scrolls/scroll-alizarin.png and /dev/null differ
diff --git a/graphics/items/use/scrolls/scroll-cobalt.png b/graphics/items/use/scrolls/scroll-cobalt.png
deleted file mode 100644
index 807c0e99..00000000
Binary files a/graphics/items/use/scrolls/scroll-cobalt.png and /dev/null differ
diff --git a/graphics/items/use/scrolls/scroll-gamboge.png b/graphics/items/use/scrolls/scroll-gamboge.png
deleted file mode 100644
index f29b7dd6..00000000
Binary files a/graphics/items/use/scrolls/scroll-gamboge.png and /dev/null differ
diff --git a/graphics/items/use/scrolls/scroll-joy.png b/graphics/items/use/scrolls/scroll-joy.png
deleted file mode 100644
index f1768427..00000000
Binary files a/graphics/items/use/scrolls/scroll-joy.png and /dev/null differ
diff --git a/graphics/items/use/scrolls/scroll-mauve.png b/graphics/items/use/scrolls/scroll-mauve.png
deleted file mode 100644
index c4782a28..00000000
Binary files a/graphics/items/use/scrolls/scroll-mauve.png and /dev/null differ
diff --git a/graphics/items/use/scrolls/scroll-shadow.png b/graphics/items/use/scrolls/scroll-shadow.png
deleted file mode 100644
index 9e2ede2c..00000000
Binary files a/graphics/items/use/scrolls/scroll-shadow.png and /dev/null differ
diff --git a/graphics/minimaps/001-2.png b/graphics/minimaps/001-2.png
index 06ed9fca..4fbc5ef4 100644
Binary files a/graphics/minimaps/001-2.png and b/graphics/minimaps/001-2.png differ
diff --git a/graphics/minimaps/002-1.png b/graphics/minimaps/002-1.png
index c2da82ad..882ab481 100644
Binary files a/graphics/minimaps/002-1.png and b/graphics/minimaps/002-1.png differ
diff --git a/graphics/minimaps/004-1.png b/graphics/minimaps/004-1.png
index f380134d..70e5337a 100644
Binary files a/graphics/minimaps/004-1.png and b/graphics/minimaps/004-1.png differ
diff --git a/graphics/minimaps/008-1.png b/graphics/minimaps/008-1.png
index 05538347..7bd3fe0a 100644
Binary files a/graphics/minimaps/008-1.png and b/graphics/minimaps/008-1.png differ
diff --git a/graphics/minimaps/009-1.png b/graphics/minimaps/009-1.png
index a9515387..2df74ddb 100644
Binary files a/graphics/minimaps/009-1.png and b/graphics/minimaps/009-1.png differ
diff --git a/graphics/minimaps/012-1.png b/graphics/minimaps/012-1.png
index 05bcc1c6..aaa9c1dc 100644
Binary files a/graphics/minimaps/012-1.png and b/graphics/minimaps/012-1.png differ
diff --git a/graphics/minimaps/015-1.png b/graphics/minimaps/015-1.png
index 2a45a009..eeefbc93 100644
Binary files a/graphics/minimaps/015-1.png and b/graphics/minimaps/015-1.png differ
diff --git a/graphics/minimaps/017-3.png b/graphics/minimaps/017-3.png
index 7572ce46..40dcd329 100644
Binary files a/graphics/minimaps/017-3.png and b/graphics/minimaps/017-3.png differ
diff --git a/graphics/minimaps/018-1.png b/graphics/minimaps/018-1.png
index f5db0731..9551395a 100644
Binary files a/graphics/minimaps/018-1.png and b/graphics/minimaps/018-1.png differ
diff --git a/graphics/minimaps/023-2.png b/graphics/minimaps/023-2.png
index dca6c0e9..0baefbdd 100644
Binary files a/graphics/minimaps/023-2.png and b/graphics/minimaps/023-2.png differ
diff --git a/graphics/minimaps/023-3.png b/graphics/minimaps/023-3.png
index ebb41fe6..036ca741 100644
Binary files a/graphics/minimaps/023-3.png and b/graphics/minimaps/023-3.png differ
diff --git a/graphics/minimaps/027-5.png b/graphics/minimaps/027-5.png
index 5cfeb70c..2d1699ff 100644
Binary files a/graphics/minimaps/027-5.png and b/graphics/minimaps/027-5.png differ
diff --git a/graphics/minimaps/028-3.png b/graphics/minimaps/028-3.png
index c662e3c3..8f80787c 100644
Binary files a/graphics/minimaps/028-3.png and b/graphics/minimaps/028-3.png differ
diff --git a/graphics/minimaps/029-4.png b/graphics/minimaps/029-4.png
index 3ebad644..cf6c3bbf 100644
Binary files a/graphics/minimaps/029-4.png and b/graphics/minimaps/029-4.png differ
diff --git a/graphics/minimaps/030-4.png b/graphics/minimaps/030-4.png
index c63cb470..4adc15c7 100644
Binary files a/graphics/minimaps/030-4.png and b/graphics/minimaps/030-4.png differ
diff --git a/graphics/minimaps/041-1.png b/graphics/minimaps/041-1.png
index e718db72..72f89efd 100644
Binary files a/graphics/minimaps/041-1.png and b/graphics/minimaps/041-1.png differ
diff --git a/graphics/minimaps/042-1.png b/graphics/minimaps/042-1.png
index 7063ef44..b96f7443 100644
Binary files a/graphics/minimaps/042-1.png and b/graphics/minimaps/042-1.png differ
diff --git a/graphics/minimaps/043-1.png b/graphics/minimaps/043-1.png
index 389b6428..efcc4428 100644
Binary files a/graphics/minimaps/043-1.png and b/graphics/minimaps/043-1.png differ
diff --git a/graphics/minimaps/047-1.png b/graphics/minimaps/047-1.png
index c1a4015e..2e778ba5 100644
Binary files a/graphics/minimaps/047-1.png and b/graphics/minimaps/047-1.png differ
diff --git a/graphics/minimaps/080-1.png b/graphics/minimaps/080-1.png
deleted file mode 100644
index 0339a1e5..00000000
Binary files a/graphics/minimaps/080-1.png and /dev/null differ
diff --git a/graphics/minimaps/080-3.png b/graphics/minimaps/080-3.png
deleted file mode 100644
index fe7f6458..00000000
Binary files a/graphics/minimaps/080-3.png and /dev/null differ
diff --git a/graphics/minimaps/081-1.png b/graphics/minimaps/081-1.png
deleted file mode 100644
index 97e0abc9..00000000
Binary files a/graphics/minimaps/081-1.png and /dev/null differ
diff --git a/graphics/minimaps/081-2.png b/graphics/minimaps/081-2.png
deleted file mode 100644
index 14b93358..00000000
Binary files a/graphics/minimaps/081-2.png and /dev/null differ
diff --git a/graphics/minimaps/081-3.png b/graphics/minimaps/081-3.png
deleted file mode 100644
index 7f106a7c..00000000
Binary files a/graphics/minimaps/081-3.png and /dev/null differ
diff --git a/graphics/minimaps/082-2.png b/graphics/minimaps/082-2.png
deleted file mode 100644
index db05ed7e..00000000
Binary files a/graphics/minimaps/082-2.png and /dev/null differ
diff --git a/graphics/minimaps/082-3.png b/graphics/minimaps/082-3.png
deleted file mode 100644
index fb801d34..00000000
Binary files a/graphics/minimaps/082-3.png and /dev/null differ
diff --git a/graphics/minimaps/fermi.png b/graphics/minimaps/fermi.png
deleted file mode 100644
index 951bd7fa..00000000
Binary files a/graphics/minimaps/fermi.png and /dev/null differ
diff --git a/graphics/minimaps/guild.png b/graphics/minimaps/guild.png
deleted file mode 100644
index b3daa154..00000000
Binary files a/graphics/minimaps/guild.png and /dev/null differ
diff --git a/graphics/minimaps/prison.png b/graphics/minimaps/prison.png
deleted file mode 100644
index ae57c8f2..00000000
Binary files a/graphics/minimaps/prison.png and /dev/null differ
diff --git a/graphics/particles/beam-crit.png b/graphics/particles/beam-crit.png
deleted file mode 100644
index 8f64643d..00000000
Binary files a/graphics/particles/beam-crit.png and /dev/null differ
diff --git a/graphics/particles/beam-crit.xml b/graphics/particles/beam-crit.xml
deleted file mode 100644
index 1d5ba245..00000000
--- a/graphics/particles/beam-crit.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/beam.png b/graphics/particles/beam.png
deleted file mode 100644
index f340a61c..00000000
Binary files a/graphics/particles/beam.png and /dev/null differ
diff --git a/graphics/particles/beam.xml b/graphics/particles/beam.xml
deleted file mode 100644
index e05bc34c..00000000
--- a/graphics/particles/beam.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/blue-violent-glow.particle.xml b/graphics/particles/blue-violent-glow.particle.xml
deleted file mode 100644
index 583953ec..00000000
--- a/graphics/particles/blue-violent-glow.particle.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/bubble-ani_6x6.png b/graphics/particles/bubble-ani_6x6.png
deleted file mode 100644
index e04cc8c3..00000000
Binary files a/graphics/particles/bubble-ani_6x6.png and /dev/null differ
diff --git a/graphics/particles/bubble-ani_8x8.png b/graphics/particles/bubble-ani_8x8.png
deleted file mode 100644
index 134b352a..00000000
Binary files a/graphics/particles/bubble-ani_8x8.png and /dev/null differ
diff --git a/graphics/particles/bullet.xml b/graphics/particles/bullet.xml
deleted file mode 100644
index 244e3909..00000000
--- a/graphics/particles/bullet.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/cannonball.xml b/graphics/particles/cannonball.xml
deleted file mode 100644
index 9e31216b..00000000
--- a/graphics/particles/cannonball.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-cast-blue.particle.xml b/graphics/particles/channelling-cast-blue.particle.xml
deleted file mode 100644
index 871364cd..00000000
--- a/graphics/particles/channelling-cast-blue.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-cast-red.particle.xml b/graphics/particles/channelling-cast-red.particle.xml
deleted file mode 100644
index b0b0364b..00000000
--- a/graphics/particles/channelling-cast-red.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-raise-blue.particle.xml b/graphics/particles/channelling-raise-blue.particle.xml
deleted file mode 100644
index 7c3f8a6b..00000000
--- a/graphics/particles/channelling-raise-blue.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-raise-red.particle.xml b/graphics/particles/channelling-raise-red.particle.xml
deleted file mode 100644
index 4a0e9377..00000000
--- a/graphics/particles/channelling-raise-red.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/crit.particle.xml b/graphics/particles/crit.particle.xml
index aee7111e..7f534477 100644
--- a/graphics/particles/crit.particle.xml
+++ b/graphics/particles/crit.particle.xml
@@ -1,6 +1,6 @@
diff --git a/graphics/particles/dart.png b/graphics/particles/dart.png
index 3ed7d053..afa27ca7 100644
Binary files a/graphics/particles/dart.png and b/graphics/particles/dart.png differ
diff --git a/graphics/particles/electricity.red.danger-cell-left-right-big.xml b/graphics/particles/electricity.red.danger-cell-left-right-big.xml
deleted file mode 100644
index 9c073797..00000000
--- a/graphics/particles/electricity.red.danger-cell-left-right-big.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/electricity.red.danger-cell-left-right-small.xml b/graphics/particles/electricity.red.danger-cell-left-right-small.xml
deleted file mode 100644
index 5284fac6..00000000
--- a/graphics/particles/electricity.red.danger-cell-left-right-small.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/electricity.red.danger-cell-middle-big.xml b/graphics/particles/electricity.red.danger-cell-middle-big.xml
deleted file mode 100644
index 41055860..00000000
--- a/graphics/particles/electricity.red.danger-cell-middle-big.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/electricity.red.danger-cell-middle-small.xml b/graphics/particles/electricity.red.danger-cell-middle-small.xml
deleted file mode 100644
index d90a0868..00000000
--- a/graphics/particles/electricity.red.danger-cell-middle-small.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/firetrail.xml b/graphics/particles/firetrail.xml
deleted file mode 100644
index 3ac2df6b..00000000
--- a/graphics/particles/firetrail.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/flame_8x8.png b/graphics/particles/flame_8x8.png
deleted file mode 100644
index daaea9af..00000000
Binary files a/graphics/particles/flame_8x8.png and /dev/null differ
diff --git a/graphics/particles/hex-facet-outline-50.png b/graphics/particles/hex-facet-outline-50.png
index b9567852..711f6828 100644
Binary files a/graphics/particles/hex-facet-outline-50.png and b/graphics/particles/hex-facet-outline-50.png differ
diff --git a/graphics/particles/hex-facet-outline.png b/graphics/particles/hex-facet-outline.png
index b5cf58fb..c68dd9e2 100644
Binary files a/graphics/particles/hex-facet-outline.png and b/graphics/particles/hex-facet-outline.png differ
diff --git a/graphics/particles/mana-battery-smoke-and-sparks.xml b/graphics/particles/mana-battery-smoke-and-sparks.xml
deleted file mode 100644
index 09a4bb80..00000000
--- a/graphics/particles/mana-battery-smoke-and-sparks.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/manadust.particle.xml b/graphics/particles/manadust.particle.xml
deleted file mode 100644
index 6e4fff5b..00000000
--- a/graphics/particles/manadust.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-moon.particle.xml b/graphics/particles/monster-moonshroom.particle.xml
similarity index 100%
rename from graphics/particles/monster-mushroom-moon.particle.xml
rename to graphics/particles/monster-moonshroom.particle.xml
diff --git a/graphics/particles/monster-mushroom-rain-attack.particle.xml b/graphics/particles/monster-mushroom-rain-attack.particle.xml
deleted file mode 100644
index 5bba0f0b..00000000
--- a/graphics/particles/monster-mushroom-rain-attack.particle.xml
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-rain.particle.xml b/graphics/particles/monster-mushroom-rain.particle.xml
deleted file mode 100644
index 76136827..00000000
--- a/graphics/particles/monster-mushroom-rain.particle.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-snow-attack.particle.xml b/graphics/particles/monster-mushroom-snow-attack.particle.xml
deleted file mode 100644
index a772f494..00000000
--- a/graphics/particles/monster-mushroom-snow-attack.particle.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-snow.particle.xml b/graphics/particles/monster-mushroom-snow.particle.xml
deleted file mode 100644
index e2f50129..00000000
--- a/graphics/particles/monster-mushroom-snow.particle.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-sun-attack.particle.xml b/graphics/particles/monster-mushroom-sun-attack.particle.xml
deleted file mode 100644
index ec0611b9..00000000
--- a/graphics/particles/monster-mushroom-sun-attack.particle.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-sun.particle.xml b/graphics/particles/monster-mushroom-sun.particle.xml
deleted file mode 100644
index 4f11949b..00000000
--- a/graphics/particles/monster-mushroom-sun.particle.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-rotter-crit.png b/graphics/particles/monster-rotter-crit.png
deleted file mode 100644
index 379743fe..00000000
Binary files a/graphics/particles/monster-rotter-crit.png and /dev/null differ
diff --git a/graphics/particles/monster-rotter-crit.xml b/graphics/particles/monster-rotter-crit.xml
deleted file mode 100644
index 7f265f1a..00000000
--- a/graphics/particles/monster-rotter-crit.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-rotter-hit.xml b/graphics/particles/monster-rotter-hit.xml
deleted file mode 100644
index 5a4f3159..00000000
--- a/graphics/particles/monster-rotter-hit.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-rotter-trail.xml b/graphics/particles/monster-rotter-trail.xml
deleted file mode 100644
index 287e48b6..00000000
--- a/graphics/particles/monster-rotter-trail.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-rotter-vomit.png b/graphics/particles/monster-rotter-vomit.png
deleted file mode 100644
index 906ae472..00000000
Binary files a/graphics/particles/monster-rotter-vomit.png and /dev/null differ
diff --git a/graphics/particles/monster-rotter-vomit.xml b/graphics/particles/monster-rotter-vomit.xml
deleted file mode 100644
index 48e91a1b..00000000
--- a/graphics/particles/monster-rotter-vomit.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-snail-trail.particle.xml b/graphics/particles/monster-snail-trail.particle.xml
index 37fafd2d..e86b02b1 100644
--- a/graphics/particles/monster-snail-trail.particle.xml
+++ b/graphics/particles/monster-snail-trail.particle.xml
@@ -1,17 +1,17 @@
-
+
-
-
-
+
+
+
-
-
-
+
+
+
diff --git a/graphics/particles/monster-troll-foefire.particle.xml b/graphics/particles/monster-troll-foefire.particle.xml
index f042ed79..6e3bcce2 100644
--- a/graphics/particles/monster-troll-foefire.particle.xml
+++ b/graphics/particles/monster-troll-foefire.particle.xml
@@ -25,10 +25,10 @@ used for the foefire attack of the Trolls.
-
-
+
+
-
+
diff --git a/graphics/particles/monster-zombie-trail.xml b/graphics/particles/monster-zombie-trail.xml
deleted file mode 100644
index 198fafbc..00000000
--- a/graphics/particles/monster-zombie-trail.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-moon-attack.particle.xml b/graphics/particles/moonshroom-attack.particle.xml
similarity index 100%
rename from graphics/particles/monster-mushroom-moon-attack.particle.xml
rename to graphics/particles/moonshroom-attack.particle.xml
diff --git a/graphics/particles/necroblast.particle.xml b/graphics/particles/necroblast.particle.xml
index 2f18a3f8..44a64ecd 100644
--- a/graphics/particles/necroblast.particle.xml
+++ b/graphics/particles/necroblast.particle.xml
@@ -1,6 +1,6 @@
@@ -8,54 +8,54 @@ Red Bone blaze: inspired by Demon fire
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
-
+
diff --git a/graphics/particles/quest-continue.particle.xml b/graphics/particles/quest-continue.particle.xml
deleted file mode 100644
index 90756040..00000000
--- a/graphics/particles/quest-continue.particle.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/quest-start.particle.xml b/graphics/particles/quest-start.particle.xml
deleted file mode 100644
index 315755d6..00000000
--- a/graphics/particles/quest-start.particle.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/rainbow-crit.xml b/graphics/particles/rainbow-crit.xml
deleted file mode 100644
index 1258ed15..00000000
--- a/graphics/particles/rainbow-crit.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/rainbow-hit.xml b/graphics/particles/rainbow-hit.xml
deleted file mode 100644
index 03ace72a..00000000
--- a/graphics/particles/rainbow-hit.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/raindrop-hit_16x16.png b/graphics/particles/raindrop-hit_16x16.png
deleted file mode 100644
index b0efb4ea..00000000
Binary files a/graphics/particles/raindrop-hit_16x16.png and /dev/null differ
diff --git a/graphics/particles/raindrop-hit_8x8.png b/graphics/particles/raindrop-hit_8x8.png
deleted file mode 100644
index f4484340..00000000
Binary files a/graphics/particles/raindrop-hit_8x8.png and /dev/null differ
diff --git a/graphics/particles/raindrop_3x5.png b/graphics/particles/raindrop_3x5.png
deleted file mode 100644
index 25ae3683..00000000
Binary files a/graphics/particles/raindrop_3x5.png and /dev/null differ
diff --git a/graphics/particles/raindrop_8x8.png b/graphics/particles/raindrop_8x8.png
deleted file mode 100644
index 281311a0..00000000
Binary files a/graphics/particles/raindrop_8x8.png and /dev/null differ
diff --git a/graphics/particles/rainerang.png b/graphics/particles/rainerang.png
deleted file mode 100644
index d20bb69b..00000000
Binary files a/graphics/particles/rainerang.png and /dev/null differ
diff --git a/graphics/particles/rainerang.xml b/graphics/particles/rainerang.xml
deleted file mode 100644
index 058938aa..00000000
--- a/graphics/particles/rainerang.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/red-magic-cast.particle.xml b/graphics/particles/red-magic-cast.particle.xml
deleted file mode 100644
index 48160531..00000000
--- a/graphics/particles/red-magic-cast.particle.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/snowflake-7x7.png b/graphics/particles/snowflake-7x7.png
index 839f6c93..221b4d08 100644
Binary files a/graphics/particles/snowflake-7x7.png and b/graphics/particles/snowflake-7x7.png differ
diff --git a/graphics/particles/snowflake-9x9.png b/graphics/particles/snowflake-9x9.png
index dcb303e4..2ac1c5e8 100644
Binary files a/graphics/particles/snowflake-9x9.png and b/graphics/particles/snowflake-9x9.png differ
diff --git a/graphics/particles/zap.xml b/graphics/particles/zap.xml
deleted file mode 100644
index 3fc60fd4..00000000
--- a/graphics/particles/zap.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/emote.png b/graphics/sprites/emote.png
index 41159f77..aaf6ff17 100644
Binary files a/graphics/sprites/emote.png and b/graphics/sprites/emote.png differ
diff --git a/graphics/sprites/emote.xml b/graphics/sprites/emote.xml
index 622f281e..6a5653c2 100644
--- a/graphics/sprites/emote.xml
+++ b/graphics/sprites/emote.xml
@@ -1,5 +1,5 @@
-
+
diff --git a/graphics/sprites/equipment/amulets/angel-wings.png b/graphics/sprites/equipment/angel-wings.png
similarity index 100%
rename from graphics/sprites/equipment/amulets/angel-wings.png
rename to graphics/sprites/equipment/angel-wings.png
diff --git a/graphics/sprites/equipment/amulets/angel-wings.xml b/graphics/sprites/equipment/angel-wings.xml
similarity index 96%
rename from graphics/sprites/equipment/amulets/angel-wings.xml
rename to graphics/sprites/equipment/angel-wings.xml
index cd13e426..83844588 100644
--- a/graphics/sprites/equipment/amulets/angel-wings.xml
+++ b/graphics/sprites/equipment/angel-wings.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/graphics/sprites/equipment/head/assassin-mask.png b/graphics/sprites/equipment/head/assassin-mask.png
index a0c92b7a..d385c6ad 100644
Binary files a/graphics/sprites/equipment/head/assassin-mask.png and b/graphics/sprites/equipment/head/assassin-mask.png differ
diff --git a/graphics/sprites/equipment/head/blue-wolf-helmet.png b/graphics/sprites/equipment/head/blue-wolf-helmet.png
index fde366b9..7bf4bc9b 100644
Binary files a/graphics/sprites/equipment/head/blue-wolf-helmet.png and b/graphics/sprites/equipment/head/blue-wolf-helmet.png differ
diff --git a/graphics/sprites/equipment/head/captain-hat.png b/graphics/sprites/equipment/head/captain-hat.png
index 9116692e..6428de46 100644
Binary files a/graphics/sprites/equipment/head/captain-hat.png and b/graphics/sprites/equipment/head/captain-hat.png differ
diff --git a/graphics/sprites/equipment/head/christmastree.png b/graphics/sprites/equipment/head/christmastree.png
index d459e956..1d8a5e8f 100644
Binary files a/graphics/sprites/equipment/head/christmastree.png and b/graphics/sprites/equipment/head/christmastree.png differ
diff --git a/graphics/sprites/equipment/head/crusadehelm-female.xml b/graphics/sprites/equipment/head/crusadehelm-female.xml
index a3aac532..fa774554 100644
--- a/graphics/sprites/equipment/head/crusadehelm-female.xml
+++ b/graphics/sprites/equipment/head/crusadehelm-female.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/head/crusadehelm.xml b/graphics/sprites/equipment/head/crusadehelm.xml
index 5cc83971..3b155eb4 100644
--- a/graphics/sprites/equipment/head/crusadehelm.xml
+++ b/graphics/sprites/equipment/head/crusadehelm.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/head/dark-helm-female.xml b/graphics/sprites/equipment/head/dark-helm-female.xml
index c1495b59..9396c41f 100644
--- a/graphics/sprites/equipment/head/dark-helm-female.xml
+++ b/graphics/sprites/equipment/head/dark-helm-female.xml
@@ -1,228 +1,226 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
diff --git a/graphics/sprites/equipment/head/dark-helm.png b/graphics/sprites/equipment/head/dark-helm.png
index d9085c48..7a8e1446 100644
Binary files a/graphics/sprites/equipment/head/dark-helm.png and b/graphics/sprites/equipment/head/dark-helm.png differ
diff --git a/graphics/sprites/equipment/head/dark-helm.xml b/graphics/sprites/equipment/head/dark-helm.xml
index d326de06..5586fa30 100644
--- a/graphics/sprites/equipment/head/dark-helm.xml
+++ b/graphics/sprites/equipment/head/dark-helm.xml
@@ -1,228 +1,227 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
+
-
-
-
-
+
+
+
+
diff --git a/graphics/sprites/equipment/head/headslime-female.xml b/graphics/sprites/equipment/head/headslime-female.xml
deleted file mode 100644
index 8f5fe908..00000000
--- a/graphics/sprites/equipment/head/headslime-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/headslime.png b/graphics/sprites/equipment/head/headslime.png
deleted file mode 100644
index 30bca403..00000000
Binary files a/graphics/sprites/equipment/head/headslime.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/headslime.xml b/graphics/sprites/equipment/head/headslime.xml
deleted file mode 100644
index 7a7fb2c2..00000000
--- a/graphics/sprites/equipment/head/headslime.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/infantryhelm-female.xml b/graphics/sprites/equipment/head/infantryhelm-female.xml
index d0cc4d17..adaac249 100644
--- a/graphics/sprites/equipment/head/infantryhelm-female.xml
+++ b/graphics/sprites/equipment/head/infantryhelm-female.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/head/infantryhelm.xml b/graphics/sprites/equipment/head/infantryhelm.xml
index 15f8fefa..be90144b 100644
--- a/graphics/sprites/equipment/head/infantryhelm.xml
+++ b/graphics/sprites/equipment/head/infantryhelm.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/head/leprechaunhead.png b/graphics/sprites/equipment/head/leprechaunhead.png
deleted file mode 100644
index 6f71df92..00000000
Binary files a/graphics/sprites/equipment/head/leprechaunhead.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/leprechaunhead.xml b/graphics/sprites/equipment/head/leprechaunhead.xml
deleted file mode 100644
index 26bf9888..00000000
--- a/graphics/sprites/equipment/head/leprechaunhead.xml
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/rainshroomhat-female.xml b/graphics/sprites/equipment/head/rainshroomhat-female.xml
deleted file mode 100644
index 3f7daf1b..00000000
--- a/graphics/sprites/equipment/head/rainshroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/rainshroomhat.png b/graphics/sprites/equipment/head/rainshroomhat.png
deleted file mode 100644
index 48b8e336..00000000
Binary files a/graphics/sprites/equipment/head/rainshroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/rainshroomhat.xml b/graphics/sprites/equipment/head/rainshroomhat.xml
deleted file mode 100644
index 708df0f4..00000000
--- a/graphics/sprites/equipment/head/rainshroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/skullmask-dyable-female.xml b/graphics/sprites/equipment/head/skullmask-dyable-female.xml
deleted file mode 100644
index 818f9b49..00000000
--- a/graphics/sprites/equipment/head/skullmask-dyable-female.xml
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/skullmask-dyable.png b/graphics/sprites/equipment/head/skullmask-dyable.png
deleted file mode 100644
index 0bba274f..00000000
Binary files a/graphics/sprites/equipment/head/skullmask-dyable.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/skullmask-dyable.xml b/graphics/sprites/equipment/head/skullmask-dyable.xml
deleted file mode 100644
index a6f8b482..00000000
--- a/graphics/sprites/equipment/head/skullmask-dyable.xml
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/snowshroomhat-female.xml b/graphics/sprites/equipment/head/snowshroomhat-female.xml
deleted file mode 100644
index f88ad033..00000000
--- a/graphics/sprites/equipment/head/snowshroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/snowshroomhat.png b/graphics/sprites/equipment/head/snowshroomhat.png
deleted file mode 100644
index 57c2f39b..00000000
Binary files a/graphics/sprites/equipment/head/snowshroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/snowshroomhat.xml b/graphics/sprites/equipment/head/snowshroomhat.xml
deleted file mode 100644
index 464bd685..00000000
--- a/graphics/sprites/equipment/head/snowshroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/steel-dyable.png b/graphics/sprites/equipment/head/steel-dyable.png
deleted file mode 100644
index 9bea5878..00000000
Binary files a/graphics/sprites/equipment/head/steel-dyable.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/steel-dyable.xml b/graphics/sprites/equipment/head/steel-dyable.xml
deleted file mode 100644
index 8fbf13f9..00000000
--- a/graphics/sprites/equipment/head/steel-dyable.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/sunshroomhat-female.xml b/graphics/sprites/equipment/head/sunshroomhat-female.xml
deleted file mode 100644
index d984dc22..00000000
--- a/graphics/sprites/equipment/head/sunshroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/sunshroomhat.png b/graphics/sprites/equipment/head/sunshroomhat.png
deleted file mode 100644
index 90885482..00000000
Binary files a/graphics/sprites/equipment/head/sunshroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/sunshroomhat.xml b/graphics/sprites/equipment/head/sunshroomhat.xml
deleted file mode 100644
index b4e0cba2..00000000
--- a/graphics/sprites/equipment/head/sunshroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/terranite-mask.png b/graphics/sprites/equipment/head/terranite-mask.png
index 2b0a5473..a304835a 100644
Binary files a/graphics/sprites/equipment/head/terranite-mask.png and b/graphics/sprites/equipment/head/terranite-mask.png differ
diff --git a/graphics/sprites/equipment/head/terranite-mask.xml b/graphics/sprites/equipment/head/terranite-mask.xml
index 0ef80177..6df3ef61 100644
--- a/graphics/sprites/equipment/head/terranite-mask.xml
+++ b/graphics/sprites/equipment/head/terranite-mask.xml
@@ -1,530 +1,229 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/warlordhelm-female.xml b/graphics/sprites/equipment/head/warlordhelm-female.xml
index 3f4b993e..89a106d7 100644
--- a/graphics/sprites/equipment/head/warlordhelm-female.xml
+++ b/graphics/sprites/equipment/head/warlordhelm-female.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/head/warlordhelm.xml b/graphics/sprites/equipment/head/warlordhelm.xml
index 730d300f..ddf44a0c 100644
--- a/graphics/sprites/equipment/head/warlordhelm.xml
+++ b/graphics/sprites/equipment/head/warlordhelm.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat-female.xml b/graphics/sprites/equipment/head/wickedmushroomhat-female.xml
deleted file mode 100644
index 23c8df2e..00000000
--- a/graphics/sprites/equipment/head/wickedmushroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat.png b/graphics/sprites/equipment/head/wickedmushroomhat.png
deleted file mode 100644
index f4aadeae1..00000000
Binary files a/graphics/sprites/equipment/head/wickedmushroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat.xml b/graphics/sprites/equipment/head/wickedmushroomhat.xml
deleted file mode 100644
index 0c1d6679..00000000
--- a/graphics/sprites/equipment/head/wickedmushroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/yeti-mask.xml b/graphics/sprites/equipment/head/yeti-mask.xml
index f3e9b1de..401d4681 100644
--- a/graphics/sprites/equipment/head/yeti-mask.xml
+++ b/graphics/sprites/equipment/head/yeti-mask.xml
@@ -97,7 +97,7 @@
-
+
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable-female.xml b/graphics/sprites/equipment/shields/knighthelm-dyable-female.xml
deleted file mode 100644
index 57420a84..00000000
--- a/graphics/sprites/equipment/shields/knighthelm-dyable-female.xml
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable.png b/graphics/sprites/equipment/shields/knighthelm-dyable.png
deleted file mode 100644
index 0f7b39ea..00000000
Binary files a/graphics/sprites/equipment/shields/knighthelm-dyable.png and /dev/null differ
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable.xml b/graphics/sprites/equipment/shields/knighthelm-dyable.xml
deleted file mode 100644
index 1f6312ab..00000000
--- a/graphics/sprites/equipment/shields/knighthelm-dyable.xml
+++ /dev/null
@@ -1,230 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/weapons/sword-beheader.png b/graphics/sprites/equipment/weapons/beheader.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/sword-beheader.png
rename to graphics/sprites/equipment/weapons/beheader.png
diff --git a/graphics/sprites/equipment/weapons/sword-beheader.xml b/graphics/sprites/equipment/weapons/beheader.xml
similarity index 98%
rename from graphics/sprites/equipment/weapons/sword-beheader.xml
rename to graphics/sprites/equipment/weapons/beheader.xml
index ee887553..75fe84fd 100644
--- a/graphics/sprites/equipment/weapons/sword-beheader.xml
+++ b/graphics/sprites/equipment/weapons/beheader.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/weapons/bow-life.png b/graphics/sprites/equipment/weapons/bow-life.png
deleted file mode 100644
index 64d43fd7..00000000
Binary files a/graphics/sprites/equipment/weapons/bow-life.png and /dev/null differ
diff --git a/graphics/sprites/equipment/weapons/bow-life.xml b/graphics/sprites/equipment/weapons/bow-life.xml
deleted file mode 100644
index 02ba8cb8..00000000
--- a/graphics/sprites/equipment/weapons/bow-life.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/weapons/dagger-setzer.png b/graphics/sprites/equipment/weapons/dagger-setzer.png
deleted file mode 100644
index 2e9120cc..00000000
Binary files a/graphics/sprites/equipment/weapons/dagger-setzer.png and /dev/null differ
diff --git a/graphics/sprites/equipment/weapons/dagger-setzer.xml b/graphics/sprites/equipment/weapons/dagger-setzer.xml
deleted file mode 100644
index 99da95d8..00000000
--- a/graphics/sprites/equipment/weapons/dagger-setzer.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/weapons/flintlock.png b/graphics/sprites/equipment/weapons/gun.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/flintlock.png
rename to graphics/sprites/equipment/weapons/gun.png
diff --git a/graphics/sprites/equipment/weapons/flintlock.xml b/graphics/sprites/equipment/weapons/gun.xml
similarity index 93%
rename from graphics/sprites/equipment/weapons/flintlock.xml
rename to graphics/sprites/equipment/weapons/gun.xml
index a1002741..e1417c18 100644
--- a/graphics/sprites/equipment/weapons/flintlock.xml
+++ b/graphics/sprites/equipment/weapons/gun.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/weapons/jackal.png b/graphics/sprites/equipment/weapons/jackal.png
new file mode 100644
index 00000000..59d57143
Binary files /dev/null and b/graphics/sprites/equipment/weapons/jackal.png differ
diff --git a/graphics/sprites/equipment/weapons/sword-jackal.xml b/graphics/sprites/equipment/weapons/jackal.xml
similarity index 59%
rename from graphics/sprites/equipment/weapons/sword-jackal.xml
rename to graphics/sprites/equipment/weapons/jackal.xml
index 60c6fdb4..8145206b 100644
--- a/graphics/sprites/equipment/weapons/sword-jackal.xml
+++ b/graphics/sprites/equipment/weapons/jackal.xml
@@ -1,7 +1,7 @@
-
+
@@ -23,16 +23,16 @@
-
+
-
+
-
+
-
+
@@ -68,20 +68,32 @@
-
-
+
+
+
+
+
-
-
+
+
+
+
+
-
-
+
+
+
+
+
-
-
+
+
+
+
+
diff --git a/graphics/sprites/equipment/weapons/null.png b/graphics/sprites/equipment/weapons/null.png
index cbf5dc3e..0906ec03 100644
Binary files a/graphics/sprites/equipment/weapons/null.png and b/graphics/sprites/equipment/weapons/null.png differ
diff --git a/graphics/sprites/equipment/weapons/null.xml b/graphics/sprites/equipment/weapons/null.xml
index d509b8bc..c706c02b 100644
--- a/graphics/sprites/equipment/weapons/null.xml
+++ b/graphics/sprites/equipment/weapons/null.xml
@@ -33,51 +33,51 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/graphics/sprites/equipment/weapons/sword-sandcutter.png b/graphics/sprites/equipment/weapons/sandcutter.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/sword-sandcutter.png
rename to graphics/sprites/equipment/weapons/sandcutter.png
diff --git a/graphics/sprites/equipment/weapons/sword-sandcutter.xml b/graphics/sprites/equipment/weapons/sandcutter.xml
similarity index 97%
rename from graphics/sprites/equipment/weapons/sword-sandcutter.xml
rename to graphics/sprites/equipment/weapons/sandcutter.xml
index d200855f..b61cebda 100644
--- a/graphics/sprites/equipment/weapons/sword-sandcutter.xml
+++ b/graphics/sprites/equipment/weapons/sandcutter.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/weapons/sword-dragon.png b/graphics/sprites/equipment/weapons/sword-dragon.png
deleted file mode 100644
index ccf40930..00000000
Binary files a/graphics/sprites/equipment/weapons/sword-dragon.png and /dev/null differ
diff --git a/graphics/sprites/equipment/weapons/sword-dragon.xml b/graphics/sprites/equipment/weapons/sword-dragon.xml
deleted file mode 100644
index b46fda5c..00000000
--- a/graphics/sprites/equipment/weapons/sword-dragon.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/weapons/sword-jackal.png b/graphics/sprites/equipment/weapons/sword-jackal.png
deleted file mode 100644
index 0d578e2b..00000000
Binary files a/graphics/sprites/equipment/weapons/sword-jackal.png and /dev/null differ
diff --git a/graphics/sprites/equipment/weapons/sword-lider.png b/graphics/sprites/equipment/weapons/sword-lider.png
deleted file mode 100644
index f3ca961c..00000000
Binary files a/graphics/sprites/equipment/weapons/sword-lider.png and /dev/null differ
diff --git a/graphics/sprites/equipment/weapons/sword-lider.xml b/graphics/sprites/equipment/weapons/sword-lider.xml
deleted file mode 100644
index 528dcb9d..00000000
--- a/graphics/sprites/equipment/weapons/sword-lider.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/cant-move.png b/graphics/sprites/icons/cant-move.png
deleted file mode 100644
index d749fc01..00000000
Binary files a/graphics/sprites/icons/cant-move.png and /dev/null differ
diff --git a/graphics/sprites/icons/cant-move.xml b/graphics/sprites/icons/cant-move.xml
deleted file mode 100644
index c74f82ed..00000000
--- a/graphics/sprites/icons/cant-move.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/feather-outline.png b/graphics/sprites/icons/feather-outline.png
index a67dc40c..47eeb709 100644
Binary files a/graphics/sprites/icons/feather-outline.png and b/graphics/sprites/icons/feather-outline.png differ
diff --git a/graphics/sprites/icons/hidden-outline.png b/graphics/sprites/icons/hidden-outline.png
index 55ba2af2..f1011b7c 100644
Binary files a/graphics/sprites/icons/hidden-outline.png and b/graphics/sprites/icons/hidden-outline.png differ
diff --git a/graphics/sprites/icons/invisible-outline.png b/graphics/sprites/icons/invisible-outline.png
index b0f7e960..f40f4b2c 100644
Binary files a/graphics/sprites/icons/invisible-outline.png and b/graphics/sprites/icons/invisible-outline.png differ
diff --git a/graphics/sprites/icons/matk-potion.xml b/graphics/sprites/icons/matk-potion.xml
deleted file mode 100644
index ebab9e76..00000000
--- a/graphics/sprites/icons/matk-potion.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/potion-g.png b/graphics/sprites/icons/potion-g.png
deleted file mode 100644
index 7d60ba81..00000000
Binary files a/graphics/sprites/icons/potion-g.png and /dev/null differ
diff --git a/graphics/sprites/icons/slow-move.png b/graphics/sprites/icons/slow-move.png
deleted file mode 100644
index fac2d8e2..00000000
Binary files a/graphics/sprites/icons/slow-move.png and /dev/null differ
diff --git a/graphics/sprites/icons/slow-move.xml b/graphics/sprites/icons/slow-move.xml
deleted file mode 100644
index d205e572..00000000
--- a/graphics/sprites/icons/slow-move.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-attack-generic-outline.png b/graphics/sprites/icons/spell-attack-generic-outline.png
index 2ba150ac..a6232f87 100644
Binary files a/graphics/sprites/icons/spell-attack-generic-outline.png and b/graphics/sprites/icons/spell-attack-generic-outline.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-ar-outline.png b/graphics/sprites/icons/spell-cooldown-ar-outline.png
deleted file mode 100644
index 4114d66c..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-ar-outline.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-ar.png b/graphics/sprites/icons/spell-cooldown-ar.png
deleted file mode 100644
index 730ec630..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-ar.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-ar.xml b/graphics/sprites/icons/spell-cooldown-ar.xml
deleted file mode 100644
index 58c16b4d..00000000
--- a/graphics/sprites/icons/spell-cooldown-ar.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-cg.png b/graphics/sprites/icons/spell-cooldown-cg.png
deleted file mode 100644
index fe94dffa..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-cg.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-cg.xml b/graphics/sprites/icons/spell-cooldown-cg.xml
deleted file mode 100644
index 3d5a827b..00000000
--- a/graphics/sprites/icons/spell-cooldown-cg.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-ench.png b/graphics/sprites/icons/spell-cooldown-ench.png
deleted file mode 100644
index da364c59..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-ench.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-ench.xml b/graphics/sprites/icons/spell-cooldown-ench.xml
deleted file mode 100644
index 32c15e95..00000000
--- a/graphics/sprites/icons/spell-cooldown-ench.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-koy.png b/graphics/sprites/icons/spell-cooldown-koy.png
deleted file mode 100644
index cde985e6..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-koy.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-koy.xml b/graphics/sprites/icons/spell-cooldown-koy.xml
deleted file mode 100644
index 999b5eb7..00000000
--- a/graphics/sprites/icons/spell-cooldown-koy.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-mg.png b/graphics/sprites/icons/spell-cooldown-mg.png
deleted file mode 100644
index 7777ac77..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-mg.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-mg.xml b/graphics/sprites/icons/spell-cooldown-mg.xml
deleted file mode 100644
index f4282793..00000000
--- a/graphics/sprites/icons/spell-cooldown-mg.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-mt.png b/graphics/sprites/icons/spell-cooldown-mt.png
deleted file mode 100644
index 215de45a..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-mt.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-mt.xml b/graphics/sprites/icons/spell-cooldown-mt.xml
deleted file mode 100644
index 87b8ef2e..00000000
--- a/graphics/sprites/icons/spell-cooldown-mt.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-outline.png b/graphics/sprites/icons/spell-cooldown-outline.png
index 3b794b56..bc16cb7b 100644
Binary files a/graphics/sprites/icons/spell-cooldown-outline.png and b/graphics/sprites/icons/spell-cooldown-outline.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-r-outline.png b/graphics/sprites/icons/spell-cooldown-r-outline.png
deleted file mode 100644
index 22d3cf1e..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-r-outline.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-r.png b/graphics/sprites/icons/spell-cooldown-r.png
deleted file mode 100644
index d09821d2..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-r.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-r.xml b/graphics/sprites/icons/spell-cooldown-r.xml
deleted file mode 100644
index f0a7f6e7..00000000
--- a/graphics/sprites/icons/spell-cooldown-r.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-sg.png b/graphics/sprites/icons/spell-cooldown-sg.png
deleted file mode 100644
index 02f42d61..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-sg.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-sg.xml b/graphics/sprites/icons/spell-cooldown-sg.xml
deleted file mode 100644
index 8f1737c9..00000000
--- a/graphics/sprites/icons/spell-cooldown-sg.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-upmarmu.png b/graphics/sprites/icons/spell-cooldown-upmarmu.png
deleted file mode 100644
index 8b87f1b8..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-upmarmu.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-upmarmu.xml b/graphics/sprites/icons/spell-cooldown-upmarmu.xml
deleted file mode 100644
index a294ef98..00000000
--- a/graphics/sprites/icons/spell-cooldown-upmarmu.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown.png b/graphics/sprites/icons/spell-cooldown.png
index 3deda6d8..c34d1669 100644
Binary files a/graphics/sprites/icons/spell-cooldown.png and b/graphics/sprites/icons/spell-cooldown.png differ
diff --git a/graphics/sprites/model/base2.xml b/graphics/sprites/model/base2.xml
deleted file mode 100644
index b689c8e4..00000000
--- a/graphics/sprites/model/base2.xml
+++ /dev/null
@@ -1,485 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/model/talpan-male.png b/graphics/sprites/model/talpan-male.png
deleted file mode 100644
index 137d0d34..00000000
Binary files a/graphics/sprites/model/talpan-male.png and /dev/null differ
diff --git a/graphics/sprites/monsters/accessories/ratto-tail.png b/graphics/sprites/monsters/accessories/ratto-tail.png
deleted file mode 100644
index 331e0f5e..00000000
Binary files a/graphics/sprites/monsters/accessories/ratto-tail.png and /dev/null differ
diff --git a/graphics/sprites/monsters/accessories/ratto-tail.xml b/graphics/sprites/monsters/accessories/ratto-tail.xml
deleted file mode 100644
index 31859b91..00000000
--- a/graphics/sprites/monsters/accessories/ratto-tail.xml
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/accessories/slime-super-crown.png b/graphics/sprites/monsters/accessories/slime-super-crown.png
deleted file mode 100644
index 4214ade0..00000000
Binary files a/graphics/sprites/monsters/accessories/slime-super-crown.png and /dev/null differ
diff --git a/graphics/sprites/monsters/accessories/slime-super-crown.xml b/graphics/sprites/monsters/accessories/slime-super-crown.xml
deleted file mode 100644
index 4fe93ed0..00000000
--- a/graphics/sprites/monsters/accessories/slime-super-crown.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/beehive.png b/graphics/sprites/monsters/beehive.png
deleted file mode 100644
index c906b7a6..00000000
Binary files a/graphics/sprites/monsters/beehive.png and /dev/null differ
diff --git a/graphics/sprites/monsters/beehive.xml b/graphics/sprites/monsters/beehive.xml
deleted file mode 100644
index d234b2cc..00000000
--- a/graphics/sprites/monsters/beehive.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/bif.png b/graphics/sprites/monsters/bif.png
deleted file mode 100644
index 507b2c27..00000000
Binary files a/graphics/sprites/monsters/bif.png and /dev/null differ
diff --git a/graphics/sprites/monsters/bif.xml b/graphics/sprites/monsters/bif.xml
deleted file mode 100644
index e977a9af..00000000
--- a/graphics/sprites/monsters/bif.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/bigbif.png b/graphics/sprites/monsters/bigbif.png
deleted file mode 100644
index 8a7551b1..00000000
Binary files a/graphics/sprites/monsters/bigbif.png and /dev/null differ
diff --git a/graphics/sprites/monsters/bigbif.xml b/graphics/sprites/monsters/bigbif.xml
deleted file mode 100644
index 6bb7c548..00000000
--- a/graphics/sprites/monsters/bigbif.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/bobone.png b/graphics/sprites/monsters/bobone.png
deleted file mode 100644
index aba90f13..00000000
Binary files a/graphics/sprites/monsters/bobone.png and /dev/null differ
diff --git a/graphics/sprites/monsters/bobone.xml b/graphics/sprites/monsters/bobone.xml
deleted file mode 100644
index 4eb13698..00000000
--- a/graphics/sprites/monsters/bobone.xml
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/brainblow.png b/graphics/sprites/monsters/brainblow.png
deleted file mode 100644
index 6771f73f..00000000
Binary files a/graphics/sprites/monsters/brainblow.png and /dev/null differ
diff --git a/graphics/sprites/monsters/brainblow.xml b/graphics/sprites/monsters/brainblow.xml
deleted file mode 100644
index d11cdeb8..00000000
--- a/graphics/sprites/monsters/brainblow.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/croc.png b/graphics/sprites/monsters/croc.png
deleted file mode 100644
index aa81a7aa..00000000
Binary files a/graphics/sprites/monsters/croc.png and /dev/null differ
diff --git a/graphics/sprites/monsters/croc.xml b/graphics/sprites/monsters/croc.xml
deleted file mode 100644
index 292fa837..00000000
--- a/graphics/sprites/monsters/croc.xml
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/darkduck.png b/graphics/sprites/monsters/darkduck.png
deleted file mode 100644
index 38881433..00000000
Binary files a/graphics/sprites/monsters/darkduck.png and /dev/null differ
diff --git a/graphics/sprites/monsters/darkduck.xml b/graphics/sprites/monsters/darkduck.xml
deleted file mode 100644
index 1d378113..00000000
--- a/graphics/sprites/monsters/darkduck.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/floyd.png b/graphics/sprites/monsters/floyd.png
index 225b50e4..9e8b787c 100644
Binary files a/graphics/sprites/monsters/floyd.png and b/graphics/sprites/monsters/floyd.png differ
diff --git a/graphics/sprites/monsters/frog-big.png b/graphics/sprites/monsters/frog-big.png
deleted file mode 100644
index f98d3aef..00000000
Binary files a/graphics/sprites/monsters/frog-big.png and /dev/null differ
diff --git a/graphics/sprites/monsters/frog-big.xml b/graphics/sprites/monsters/frog-big.xml
deleted file mode 100644
index 0455f4bb..00000000
--- a/graphics/sprites/monsters/frog-big.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/frog-small.png b/graphics/sprites/monsters/frog-small.png
deleted file mode 100644
index dc8f6fb4..00000000
Binary files a/graphics/sprites/monsters/frog-small.png and /dev/null differ
diff --git a/graphics/sprites/monsters/frog-small.xml b/graphics/sprites/monsters/frog-small.xml
deleted file mode 100644
index ca06f34c..00000000
--- a/graphics/sprites/monsters/frog-small.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/golem-blackcrystal.png b/graphics/sprites/monsters/golem-blackcrystal.png
index dd51c46e..be28544e 100644
Binary files a/graphics/sprites/monsters/golem-blackcrystal.png and b/graphics/sprites/monsters/golem-blackcrystal.png differ
diff --git a/graphics/sprites/monsters/golem-crystal.png b/graphics/sprites/monsters/golem-crystal.png
index c4aebd1e..c564f850 100644
Binary files a/graphics/sprites/monsters/golem-crystal.png and b/graphics/sprites/monsters/golem-crystal.png differ
diff --git a/graphics/sprites/monsters/golem-dyable.png b/graphics/sprites/monsters/golem-dyable.png
deleted file mode 100644
index 204ddef1..00000000
Binary files a/graphics/sprites/monsters/golem-dyable.png and /dev/null differ
diff --git a/graphics/sprites/monsters/golem-dyable.xml b/graphics/sprites/monsters/golem-dyable.xml
deleted file mode 100644
index f693d78e..00000000
--- a/graphics/sprites/monsters/golem-dyable.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/monsters/grass.png b/graphics/sprites/monsters/grass.png
deleted file mode 100644
index b26a6a3b..00000000
Binary files a/graphics/sprites/monsters/grass.png and /dev/null differ
diff --git a/graphics/sprites/monsters/grass.xml b/graphics/sprites/monsters/grass.xml
deleted file mode 100644
index d269f33a..00000000
--- a/graphics/sprites/monsters/grass.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/junglefowl.png b/graphics/sprites/monsters/junglefowl.png
deleted file mode 100644
index 15eebc56..00000000
Binary files a/graphics/sprites/monsters/junglefowl.png and /dev/null differ
diff --git a/graphics/sprites/monsters/junglefowl.xml b/graphics/sprites/monsters/junglefowl.xml
deleted file mode 100644
index fb3fc81b..00000000
--- a/graphics/sprites/monsters/junglefowl.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mana-bug.png b/graphics/sprites/monsters/mana-bug.png
index ea7f1803..2843a562 100644
Binary files a/graphics/sprites/monsters/mana-bug.png and b/graphics/sprites/monsters/mana-bug.png differ
diff --git a/graphics/sprites/monsters/mananatree.png b/graphics/sprites/monsters/mananatree.png
deleted file mode 100644
index b2b5e143..00000000
Binary files a/graphics/sprites/monsters/mananatree.png and /dev/null differ
diff --git a/graphics/sprites/monsters/mananatree.xml b/graphics/sprites/monsters/mananatree.xml
deleted file mode 100644
index 477eb614..00000000
--- a/graphics/sprites/monsters/mananatree.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mega-mana-bug.png b/graphics/sprites/monsters/mega-mana-bug.png
deleted file mode 100644
index f468bba4..00000000
Binary files a/graphics/sprites/monsters/mega-mana-bug.png and /dev/null differ
diff --git a/graphics/sprites/monsters/mega-mana-bug.xml b/graphics/sprites/monsters/mega-mana-bug.xml
deleted file mode 100644
index 4f563778..00000000
--- a/graphics/sprites/monsters/mega-mana-bug.xml
+++ /dev/null
@@ -1,122 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mister-prickel.png b/graphics/sprites/monsters/mister-prickel.png
deleted file mode 100644
index 1b5e40e1..00000000
Binary files a/graphics/sprites/monsters/mister-prickel.png and /dev/null differ
diff --git a/graphics/sprites/monsters/mister-prickel.xml b/graphics/sprites/monsters/mister-prickel.xml
deleted file mode 100644
index c8276010..00000000
--- a/graphics/sprites/monsters/mister-prickel.xml
+++ /dev/null
@@ -1,223 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/montblanc.png b/graphics/sprites/monsters/montblanc.png
deleted file mode 100644
index cb3d61bf..00000000
Binary files a/graphics/sprites/monsters/montblanc.png and /dev/null differ
diff --git a/graphics/sprites/monsters/montblanc.xml b/graphics/sprites/monsters/montblanc.xml
deleted file mode 100644
index bdcc615a..00000000
--- a/graphics/sprites/monsters/montblanc.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-moon.png b/graphics/sprites/monsters/moonshroom.png
similarity index 100%
rename from graphics/sprites/monsters/mushroom-moon.png
rename to graphics/sprites/monsters/moonshroom.png
diff --git a/graphics/sprites/monsters/mushroom-sun.xml b/graphics/sprites/monsters/moonshroom.xml
similarity index 95%
rename from graphics/sprites/monsters/mushroom-sun.xml
rename to graphics/sprites/monsters/moonshroom.xml
index ca7c0614..be815e17 100644
--- a/graphics/sprites/monsters/mushroom-sun.xml
+++ b/graphics/sprites/monsters/moonshroom.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/monsters/moubootaur.png b/graphics/sprites/monsters/moubootaur.png
deleted file mode 100644
index b901e7e1..00000000
Binary files a/graphics/sprites/monsters/moubootaur.png and /dev/null differ
diff --git a/graphics/sprites/monsters/moubootaur.xml b/graphics/sprites/monsters/moubootaur.xml
deleted file mode 100644
index ba8c5b8f..00000000
--- a/graphics/sprites/monsters/moubootaur.xml
+++ /dev/null
@@ -1,236 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-moon.xml b/graphics/sprites/monsters/mushroom-moon.xml
deleted file mode 100644
index 894e34e3..00000000
--- a/graphics/sprites/monsters/mushroom-moon.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-rain.png b/graphics/sprites/monsters/mushroom-rain.png
deleted file mode 100644
index d3f41eb5..00000000
Binary files a/graphics/sprites/monsters/mushroom-rain.png and /dev/null differ
diff --git a/graphics/sprites/monsters/mushroom-rain.xml b/graphics/sprites/monsters/mushroom-rain.xml
deleted file mode 100644
index edf23fa4..00000000
--- a/graphics/sprites/monsters/mushroom-rain.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-snow.png b/graphics/sprites/monsters/mushroom-snow.png
deleted file mode 100644
index 39d21a3c..00000000
Binary files a/graphics/sprites/monsters/mushroom-snow.png and /dev/null differ
diff --git a/graphics/sprites/monsters/mushroom-snow.xml b/graphics/sprites/monsters/mushroom-snow.xml
deleted file mode 100644
index adf54e21..00000000
--- a/graphics/sprites/monsters/mushroom-snow.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-sun.png b/graphics/sprites/monsters/mushroom-sun.png
deleted file mode 100644
index b4c23785..00000000
Binary files a/graphics/sprites/monsters/mushroom-sun.png and /dev/null differ
diff --git a/graphics/sprites/monsters/pet-cat.png b/graphics/sprites/monsters/pet-cat.png
deleted file mode 100644
index 8c366c6e..00000000
Binary files a/graphics/sprites/monsters/pet-cat.png and /dev/null differ
diff --git a/graphics/sprites/monsters/piou-king.png b/graphics/sprites/monsters/piou-king.png
deleted file mode 100644
index 47f2cc2c..00000000
Binary files a/graphics/sprites/monsters/piou-king.png and /dev/null differ
diff --git a/graphics/sprites/monsters/piou-king.xml b/graphics/sprites/monsters/piou-king.xml
deleted file mode 100644
index 23750d05..00000000
--- a/graphics/sprites/monsters/piou-king.xml
+++ /dev/null
@@ -1,263 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/ratto.png b/graphics/sprites/monsters/ratto.png
deleted file mode 100644
index fb5bded3..00000000
Binary files a/graphics/sprites/monsters/ratto.png and /dev/null differ
diff --git a/graphics/sprites/monsters/ratto.xml b/graphics/sprites/monsters/ratto.xml
deleted file mode 100644
index 1ee5116c..00000000
--- a/graphics/sprites/monsters/ratto.xml
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/rot.png b/graphics/sprites/monsters/rot.png
deleted file mode 100644
index a10c0f46..00000000
Binary files a/graphics/sprites/monsters/rot.png and /dev/null differ
diff --git a/graphics/sprites/monsters/rot.xml b/graphics/sprites/monsters/rot.xml
deleted file mode 100644
index fadc8711..00000000
--- a/graphics/sprites/monsters/rot.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/rotter.png b/graphics/sprites/monsters/rotter.png
deleted file mode 100644
index 2acadd2f..00000000
Binary files a/graphics/sprites/monsters/rotter.png and /dev/null differ
diff --git a/graphics/sprites/monsters/rotter.xml b/graphics/sprites/monsters/rotter.xml
deleted file mode 100644
index c9eb1cce..00000000
--- a/graphics/sprites/monsters/rotter.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/skull-golden.png b/graphics/sprites/monsters/skull-golden.png
deleted file mode 100644
index 53a71314..00000000
Binary files a/graphics/sprites/monsters/skull-golden.png and /dev/null differ
diff --git a/graphics/sprites/monsters/skull-golden.xml b/graphics/sprites/monsters/skull-golden.xml
deleted file mode 100644
index b3976a01..00000000
--- a/graphics/sprites/monsters/skull-golden.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/skull-warlord.png b/graphics/sprites/monsters/skull-warlord.png
deleted file mode 100644
index c5f7c739..00000000
Binary files a/graphics/sprites/monsters/skull-warlord.png and /dev/null differ
diff --git a/graphics/sprites/monsters/skull-warlord.xml b/graphics/sprites/monsters/skull-warlord.xml
deleted file mode 100644
index 381d6211..00000000
--- a/graphics/sprites/monsters/skull-warlord.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/slime-super.png b/graphics/sprites/monsters/slime-super.png
deleted file mode 100644
index c88febbb..00000000
Binary files a/graphics/sprites/monsters/slime-super.png and /dev/null differ
diff --git a/graphics/sprites/monsters/slime-super.xml b/graphics/sprites/monsters/slime-super.xml
deleted file mode 100644
index 0cd70240..00000000
--- a/graphics/sprites/monsters/slime-super.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/smallbif.png b/graphics/sprites/monsters/smallbif.png
deleted file mode 100644
index 0840c66a..00000000
Binary files a/graphics/sprites/monsters/smallbif.png and /dev/null differ
diff --git a/graphics/sprites/monsters/smallbif.xml b/graphics/sprites/monsters/smallbif.xml
deleted file mode 100644
index 26225567..00000000
--- a/graphics/sprites/monsters/smallbif.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/spelt.png b/graphics/sprites/monsters/spelt.png
deleted file mode 100644
index 68ec2375..00000000
Binary files a/graphics/sprites/monsters/spelt.png and /dev/null differ
diff --git a/graphics/sprites/monsters/spelt.xml b/graphics/sprites/monsters/spelt.xml
deleted file mode 100644
index 9817f6ba..00000000
--- a/graphics/sprites/monsters/spelt.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/spider-queen-crystal.png b/graphics/sprites/monsters/spider-queen-crystal.png
deleted file mode 100644
index 66a16aa2..00000000
Binary files a/graphics/sprites/monsters/spider-queen-crystal.png and /dev/null differ
diff --git a/graphics/sprites/monsters/spider-queen-crystal.xml b/graphics/sprites/monsters/spider-queen-crystal.xml
deleted file mode 100644
index 827525dd..00000000
--- a/graphics/sprites/monsters/spider-queen-crystal.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/monsters/spider-queen.png b/graphics/sprites/monsters/spider-queen.png
deleted file mode 100644
index 7a2f6606..00000000
Binary files a/graphics/sprites/monsters/spider-queen.png and /dev/null differ
diff --git a/graphics/sprites/monsters/spider-queen.xml b/graphics/sprites/monsters/spider-queen.xml
deleted file mode 100644
index 02118fbd..00000000
--- a/graphics/sprites/monsters/spider-queen.xml
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/tengu.xml b/graphics/sprites/monsters/tengu.xml
index fb7afd4e..651c684a 100644
--- a/graphics/sprites/monsters/tengu.xml
+++ b/graphics/sprites/monsters/tengu.xml
@@ -39,24 +39,31 @@
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/tortuga.png b/graphics/sprites/monsters/tortuga.png
deleted file mode 100644
index 570a0615..00000000
Binary files a/graphics/sprites/monsters/tortuga.png and /dev/null differ
diff --git a/graphics/sprites/monsters/tortuga.xml b/graphics/sprites/monsters/tortuga.xml
deleted file mode 100644
index 8da52685..00000000
--- a/graphics/sprites/monsters/tortuga.xml
+++ /dev/null
@@ -1,310 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/wonderwoodling.png b/graphics/sprites/monsters/wonderwoodling.png
deleted file mode 100644
index 07287e54..00000000
Binary files a/graphics/sprites/monsters/wonderwoodling.png and /dev/null differ
diff --git a/graphics/sprites/monsters/wonderwoodling.xml b/graphics/sprites/monsters/wonderwoodling.xml
deleted file mode 100644
index c6aba01a..00000000
--- a/graphics/sprites/monsters/wonderwoodling.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/2006__npcs.xml b/graphics/sprites/npcs/2006__npcs.xml
deleted file mode 100644
index c03ab558..00000000
--- a/graphics/sprites/npcs/2006__npcs.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/blanc.png b/graphics/sprites/npcs/blanc.png
deleted file mode 100644
index 0b933f7a..00000000
Binary files a/graphics/sprites/npcs/blanc.png and /dev/null differ
diff --git a/graphics/sprites/npcs/blanc.xml b/graphics/sprites/npcs/blanc.xml
deleted file mode 100644
index 34080d47..00000000
--- a/graphics/sprites/npcs/blanc.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-01-flow.png b/graphics/sprites/npcs/dig-01-flow.png
deleted file mode 100644
index 86a98257..00000000
Binary files a/graphics/sprites/npcs/dig-01-flow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-01-flow.xml b/graphics/sprites/npcs/dig-01-flow.xml
deleted file mode 100644
index afad3d7c..00000000
--- a/graphics/sprites/npcs/dig-01-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-01-glow.png b/graphics/sprites/npcs/dig-01-glow.png
deleted file mode 100644
index 258ff235..00000000
Binary files a/graphics/sprites/npcs/dig-01-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-01-glow.xml b/graphics/sprites/npcs/dig-01-glow.xml
deleted file mode 100644
index 95ba2732..00000000
--- a/graphics/sprites/npcs/dig-01-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-01.png b/graphics/sprites/npcs/dig-01.png
deleted file mode 100644
index 4a02278a..00000000
Binary files a/graphics/sprites/npcs/dig-01.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-01.xml b/graphics/sprites/npcs/dig-01.xml
deleted file mode 100644
index a123317d..00000000
--- a/graphics/sprites/npcs/dig-01.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-02-flow.png b/graphics/sprites/npcs/dig-02-flow.png
deleted file mode 100644
index d191607a..00000000
Binary files a/graphics/sprites/npcs/dig-02-flow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-02-flow.xml b/graphics/sprites/npcs/dig-02-flow.xml
deleted file mode 100644
index 5a566bb8..00000000
--- a/graphics/sprites/npcs/dig-02-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-02-glow.png b/graphics/sprites/npcs/dig-02-glow.png
deleted file mode 100644
index 29bb45ab..00000000
Binary files a/graphics/sprites/npcs/dig-02-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-02-glow.xml b/graphics/sprites/npcs/dig-02-glow.xml
deleted file mode 100644
index b98e3854..00000000
--- a/graphics/sprites/npcs/dig-02-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-02.png b/graphics/sprites/npcs/dig-02.png
deleted file mode 100644
index 6d4523b2..00000000
Binary files a/graphics/sprites/npcs/dig-02.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-02.xml b/graphics/sprites/npcs/dig-02.xml
deleted file mode 100644
index 08a2187c..00000000
--- a/graphics/sprites/npcs/dig-02.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-03-flow.xml b/graphics/sprites/npcs/dig-03-flow.xml
deleted file mode 100644
index 4ad3945f..00000000
--- a/graphics/sprites/npcs/dig-03-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-03-glow.png b/graphics/sprites/npcs/dig-03-glow.png
deleted file mode 100644
index 9a33c372..00000000
Binary files a/graphics/sprites/npcs/dig-03-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-03-glow.xml b/graphics/sprites/npcs/dig-03-glow.xml
deleted file mode 100644
index 8e0c43ef..00000000
--- a/graphics/sprites/npcs/dig-03-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-03.png b/graphics/sprites/npcs/dig-03.png
deleted file mode 100644
index be73d1af..00000000
Binary files a/graphics/sprites/npcs/dig-03.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-03.xml b/graphics/sprites/npcs/dig-03.xml
deleted file mode 100644
index c5f631e2..00000000
--- a/graphics/sprites/npcs/dig-03.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-04-flow.png b/graphics/sprites/npcs/dig-04-flow.png
deleted file mode 100644
index fdcd9ef6..00000000
Binary files a/graphics/sprites/npcs/dig-04-flow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-04-flow.xml b/graphics/sprites/npcs/dig-04-flow.xml
deleted file mode 100644
index 3dbd7ce5..00000000
--- a/graphics/sprites/npcs/dig-04-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-04-glow.png b/graphics/sprites/npcs/dig-04-glow.png
deleted file mode 100644
index 172274fe..00000000
Binary files a/graphics/sprites/npcs/dig-04-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-04-glow.xml b/graphics/sprites/npcs/dig-04-glow.xml
deleted file mode 100644
index fb274ab5..00000000
--- a/graphics/sprites/npcs/dig-04-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-04.png b/graphics/sprites/npcs/dig-04.png
deleted file mode 100644
index 42d9ea10..00000000
Binary files a/graphics/sprites/npcs/dig-04.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-04.xml b/graphics/sprites/npcs/dig-04.xml
deleted file mode 100644
index fe55de89..00000000
--- a/graphics/sprites/npcs/dig-04.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/griffen-meway-gpl.png b/graphics/sprites/npcs/griffen-meway-gpl.png
deleted file mode 100644
index 087ff74d..00000000
Binary files a/graphics/sprites/npcs/griffen-meway-gpl.png and /dev/null differ
diff --git a/graphics/sprites/npcs/griffen-meway-gpl.xml b/graphics/sprites/npcs/griffen-meway-gpl.xml
deleted file mode 100644
index fc58e478..00000000
--- a/graphics/sprites/npcs/griffen-meway-gpl.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/mouboo-injured.xml b/graphics/sprites/npcs/mouboo-injured.xml
deleted file mode 100644
index af469330..00000000
--- a/graphics/sprites/npcs/mouboo-injured.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/portal_32x64-01.png b/graphics/sprites/npcs/portal_32x64-01.png
deleted file mode 100644
index e15b6dd9..00000000
Binary files a/graphics/sprites/npcs/portal_32x64-01.png and /dev/null differ
diff --git a/graphics/sprites/npcs/portal_32x64-01.xml b/graphics/sprites/npcs/portal_32x64-01.xml
deleted file mode 100644
index e56b3106..00000000
--- a/graphics/sprites/npcs/portal_32x64-01.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/teapot.png b/graphics/sprites/npcs/teapot.png
deleted file mode 100644
index a1d0f0a5..00000000
Binary files a/graphics/sprites/npcs/teapot.png and /dev/null differ
diff --git a/graphics/sprites/npcs/teapot.xml b/graphics/sprites/npcs/teapot.xml
deleted file mode 100644
index e640447f..00000000
--- a/graphics/sprites/npcs/teapot.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/tiles/aethyra/snow.png b/graphics/tiles/aethyra/snow.png
deleted file mode 100644
index a7545c94..00000000
Binary files a/graphics/tiles/aethyra/snow.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snow_building.png b/graphics/tiles/aethyra/snow_building.png
deleted file mode 100644
index 3e55b251..00000000
Binary files a/graphics/tiles/aethyra/snow_building.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snow_roof.png b/graphics/tiles/aethyra/snow_roof.png
deleted file mode 100644
index efc797fc..00000000
Binary files a/graphics/tiles/aethyra/snow_roof.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snow_water.png b/graphics/tiles/aethyra/snow_water.png
deleted file mode 100644
index 5a98f542..00000000
Binary files a/graphics/tiles/aethyra/snow_water.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snowset.png b/graphics/tiles/aethyra/snowset.png
deleted file mode 100644
index b866952c..00000000
Binary files a/graphics/tiles/aethyra/snowset.png and /dev/null differ
diff --git a/graphics/tiles/blanc.png b/graphics/tiles/blanc.png
deleted file mode 100644
index 1d294db4..00000000
Binary files a/graphics/tiles/blanc.png and /dev/null differ
diff --git a/graphics/tiles/br/christmastree.png b/graphics/tiles/br/christmastree.png
deleted file mode 100644
index ec323633..00000000
Binary files a/graphics/tiles/br/christmastree.png and /dev/null differ
diff --git a/graphics/tiles/br/snow_x3.png b/graphics/tiles/br/snow_x3.png
deleted file mode 100644
index dc5cbfc8..00000000
Binary files a/graphics/tiles/br/snow_x3.png and /dev/null differ
diff --git a/graphics/tiles/castle2.png b/graphics/tiles/castle2.png
index 81c7800d..c71ba0ee 100644
Binary files a/graphics/tiles/castle2.png and b/graphics/tiles/castle2.png differ
diff --git a/graphics/tiles/christmas.png b/graphics/tiles/christmas.png
deleted file mode 100644
index 744ee26c..00000000
Binary files a/graphics/tiles/christmas.png and /dev/null differ
diff --git a/graphics/tiles/crypt1.png b/graphics/tiles/crypt1.png
index 7e52973a..6f94f827 100644
Binary files a/graphics/tiles/crypt1.png and b/graphics/tiles/crypt1.png differ
diff --git a/graphics/tiles/desert-piramide.png b/graphics/tiles/desert-piramide.png
deleted file mode 100644
index c7e695af..00000000
Binary files a/graphics/tiles/desert-piramide.png and /dev/null differ
diff --git a/graphics/tiles/edges_black_rotated.png b/graphics/tiles/edges_black_rotated.png
deleted file mode 100644
index 31015305..00000000
Binary files a/graphics/tiles/edges_black_rotated.png and /dev/null differ
diff --git a/graphics/tiles/edges_ice_rotated.png b/graphics/tiles/edges_ice_rotated.png
deleted file mode 100644
index 191b4aa8..00000000
Binary files a/graphics/tiles/edges_ice_rotated.png and /dev/null differ
diff --git a/graphics/tiles/lof/warp_gates.png b/graphics/tiles/lof/warp_gates.png
deleted file mode 100644
index cceec189..00000000
Binary files a/graphics/tiles/lof/warp_gates.png and /dev/null differ
diff --git a/graphics/tiles/lof/woodland_indoor.png b/graphics/tiles/lof/woodland_indoor.png
deleted file mode 100644
index 0038de1a..00000000
Binary files a/graphics/tiles/lof/woodland_indoor.png and /dev/null differ
diff --git a/graphics/tiles/lof/woodland_indoor_extra.png b/graphics/tiles/lof/woodland_indoor_extra.png
deleted file mode 100644
index 3eca9142..00000000
Binary files a/graphics/tiles/lof/woodland_indoor_extra.png and /dev/null differ
diff --git a/graphics/tiles/ml/cabana_in_fada.png b/graphics/tiles/ml/cabana_in_fada.png
deleted file mode 100644
index 90509c45..00000000
Binary files a/graphics/tiles/ml/cabana_in_fada.png and /dev/null differ
diff --git a/graphics/tiles/mushrooms_x2.png b/graphics/tiles/mushrooms_x2.png
index 1f6550eb..5ea36de5 100644
Binary files a/graphics/tiles/mushrooms_x2.png and b/graphics/tiles/mushrooms_x2.png differ
diff --git a/graphics/tiles/mushrooms_x3.png b/graphics/tiles/mushrooms_x3.png
index 051cdeeb..c6ed64bc 100644
Binary files a/graphics/tiles/mushrooms_x3.png and b/graphics/tiles/mushrooms_x3.png differ
diff --git a/graphics/tiles/set_cave.png b/graphics/tiles/set_cave.png
deleted file mode 100644
index aa6e1bfb..00000000
Binary files a/graphics/tiles/set_cave.png and /dev/null differ
diff --git a/graphics/tiles/set_desert.png b/graphics/tiles/set_desert.png
deleted file mode 100644
index 77a41eb9..00000000
Binary files a/graphics/tiles/set_desert.png and /dev/null differ
diff --git a/graphics/tiles/set_icecave.png b/graphics/tiles/set_icecave.png
deleted file mode 100644
index 8a1319b9..00000000
Binary files a/graphics/tiles/set_icecave.png and /dev/null differ
diff --git a/graphics/tiles/set_icemountain.png b/graphics/tiles/set_icemountain.png
deleted file mode 100644
index 3dab22e9..00000000
Binary files a/graphics/tiles/set_icemountain.png and /dev/null differ
diff --git a/graphics/tiles/set_rules.png b/graphics/tiles/set_rules.png
deleted file mode 100644
index bf7f93c7..00000000
Binary files a/graphics/tiles/set_rules.png and /dev/null differ
diff --git a/graphics/tiles/set_thermin_cave.png b/graphics/tiles/set_thermin_cave.png
deleted file mode 100644
index 05b23249..00000000
Binary files a/graphics/tiles/set_thermin_cave.png and /dev/null differ
diff --git a/graphics/tiles/set_woodland.png b/graphics/tiles/set_woodland.png
deleted file mode 100644
index 9661f074..00000000
Binary files a/graphics/tiles/set_woodland.png and /dev/null differ
diff --git a/graphics/tiles/signs_wooden_round_numbered.png b/graphics/tiles/signs_wooden_round_numbered.png
deleted file mode 100644
index 760e9280..00000000
Binary files a/graphics/tiles/signs_wooden_round_numbered.png and /dev/null differ
diff --git a/graphics/tiles/snow_village2.png b/graphics/tiles/snow_village2.png
index bc93774b..118c8086 100644
Binary files a/graphics/tiles/snow_village2.png and b/graphics/tiles/snow_village2.png differ
diff --git a/graphics/tiles/snow_village_x3.png b/graphics/tiles/snow_village_x3.png
index 5403969e..8f2de99d 100644
Binary files a/graphics/tiles/snow_village_x3.png and b/graphics/tiles/snow_village_x3.png differ
diff --git a/graphics/tiles/ukarWalls.png b/graphics/tiles/ukarWalls.png
deleted file mode 100644
index 32ce8e3c..00000000
Binary files a/graphics/tiles/ukarWalls.png and /dev/null differ
diff --git a/graphics/tiles/woodland_graveyard_ground.png b/graphics/tiles/woodland_graveyard_ground.png
index 8fd88e4e..961638dc 100644
Binary files a/graphics/tiles/woodland_graveyard_ground.png and b/graphics/tiles/woodland_graveyard_ground.png differ
diff --git a/graphics/tiles/woodland_graveyard_x3.png b/graphics/tiles/woodland_graveyard_x3.png
index 857a9820..726525e7 100644
Binary files a/graphics/tiles/woodland_graveyard_x3.png and b/graphics/tiles/woodland_graveyard_x3.png differ
diff --git a/graphics/tiles/woodland_ground2.png b/graphics/tiles/woodland_ground2.png
index 0673ddf9..66a40507 100644
Binary files a/graphics/tiles/woodland_ground2.png and b/graphics/tiles/woodland_ground2.png differ
diff --git a/graphics/tiles/woodland_inn_1.png b/graphics/tiles/woodland_inn_1.png
deleted file mode 100644
index 7277c5e7..00000000
Binary files a/graphics/tiles/woodland_inn_1.png and /dev/null differ
diff --git a/graphics/tiles/woodland_inn_2.png b/graphics/tiles/woodland_inn_2.png
deleted file mode 100644
index b136a0cb..00000000
Binary files a/graphics/tiles/woodland_inn_2.png and /dev/null differ
diff --git a/graphics/tiles/woodland_inn_x2.png b/graphics/tiles/woodland_inn_x2.png
deleted file mode 100644
index 664f3295..00000000
Binary files a/graphics/tiles/woodland_inn_x2.png and /dev/null differ
diff --git a/graphics/tiles/woodland_inn_x3.png b/graphics/tiles/woodland_inn_x3.png
deleted file mode 100644
index 1983d0ec..00000000
Binary files a/graphics/tiles/woodland_inn_x3.png and /dev/null differ
diff --git a/graphics/tiles/woodland_inn_x4.png b/graphics/tiles/woodland_inn_x4.png
deleted file mode 100644
index 57002386..00000000
Binary files a/graphics/tiles/woodland_inn_x4.png and /dev/null differ
diff --git a/itemfields.xml b/itemfields.xml
index 33d0b3d2..1eb69361 100644
--- a/itemfields.xml
+++ b/itemfields.xml
@@ -34,9 +34,7 @@ Copyright (C) 2016 Evol Online -->
-
-
diff --git a/items.xml b/items.xml
index e6be37cc..36bdd7df 100644
--- a/items.xml
+++ b/items.xml
@@ -1,21 +1,19 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-1hand/_include.xml b/items/equip-1hand/_include.xml
index 105c7907..e2339ca5 100644
--- a/items/equip-1hand/_include.xml
+++ b/items/equip-1hand/_include.xml
@@ -1,24 +1,27 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/items/equip-1hand/item0536_ShortSword.xml b/items/equip-1hand/item0536_ShortSword.xml
deleted file mode 100644
index 2cd48e94..00000000
--- a/items/equip-1hand/item0536_ShortSword.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- -
- equipment/weapons/sword-short.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
- equipment/weapons/sword-short-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
- weapons/knives/knife-miss1.ogg
- weapons/knives/knife-hit1.ogg
-
-
diff --git a/items/equip-1hand/item0571_Setzer.xml b/items/equip-1hand/item0571_Setzer.xml
deleted file mode 100644
index c7fd2169..00000000
--- a/items/equip-1hand/item0571_Setzer.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- -
- equipment/weapons/dagger-setzer.xml
- weapons/knives/setzer/setzer-hit1.ogg
- weapons/knives/setzer/setzer-hit2.ogg
- weapons/knives/setzer/setzer-hit3.ogg
- weapons/miss1.ogg
- weapons/miss2.ogg
- weapons/miss3.ogg
-
-
diff --git a/items/equip-1hand/item0576_Beheader.xml b/items/equip-1hand/item0576_Beheader.xml
deleted file mode 100644
index b8ee7350..00000000
--- a/items/equip-1hand/item0576_Beheader.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- -
- equipment/weapons/sword-beheader.xml
- weapons/other/staff/staff-miss1.ogg
- weapons/other/staff/staff-miss2.ogg
- weapons/other/staff/staff-miss3.ogg
- weapons/other/scythe/scythe-hit1.ogg
- weapons/other/scythe/scythe-hit2.ogg
- weapons/other/scythe/scythe-hit3.ogg
-
-
diff --git a/items/equip-1hand/item0578_SandCutter.xml b/items/equip-1hand/item0578_SandCutter.xml
deleted file mode 100644
index 84d16c4e..00000000
--- a/items/equip-1hand/item0578_SandCutter.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- -
- equipment/weapons/sword-sandcutter.xml
- weapons/knives/rock/rock-hit1.ogg
- weapons/knives/rock/rock-hit2.ogg
- weapons/swords/sword-miss1.ogg
-
-
diff --git a/items/equip-1hand/item0584_Jackal.xml b/items/equip-1hand/item0584_Jackal.xml
deleted file mode 100644
index e6c248d1..00000000
--- a/items/equip-1hand/item0584_Jackal.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
- -
- equipment/weapons/sword-jackal.xml
- weapons/other/halberd/halberd-hit1.ogg
- weapons/other/halberd/halberd-hit2.ogg
- weapons/other/halberd/halberd-hit3.ogg
- weapons/swords/sword-miss1.ogg
-
-
diff --git a/items/equip-1hand/item0587_Sword.xml b/items/equip-1hand/item0587_Sword.xml
deleted file mode 100644
index 824b1059..00000000
--- a/items/equip-1hand/item0587_Sword.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
- -
- equipment/weapons/sword-long.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
- equipment/weapons/sword-long-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
-
-
-
diff --git a/items/equip-1hand/item0590_DragonSword.xml b/items/equip-1hand/item0590_DragonSword.xml
deleted file mode 100644
index f737ecf9..00000000
--- a/items/equip-1hand/item0590_DragonSword.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- -
- equipment/weapons/sword-dragon.xml
- weapons/other/halberd/halberd-hit1.ogg
- weapons/other/halberd/halberd-hit2.ogg
- weapons/other/halberd/halberd-hit3.ogg
- weapons/swords/sword-miss1.ogg
-
-
diff --git a/items/equip-1hand/item0591_LongSword.xml b/items/equip-1hand/item0591_LongSword.xml
deleted file mode 100644
index 478042fc..00000000
--- a/items/equip-1hand/item0591_LongSword.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
- -
- equipment/weapons/sword-long.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
- equipment/weapons/sword-long-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
- weapons/swords/longsword/longsword-hit1.ogg
- weapons/swords/longsword/longsword-hit2.ogg
- weapons/miss1.ogg
- weapons/miss2.ogg
- weapons/miss3.ogg
-
-
diff --git a/items/equip-1hand/item0910_Rainerang.xml b/items/equip-1hand/item0910_Rainerang.xml
deleted file mode 100644
index 046ba3e6..00000000
--- a/items/equip-1hand/item0910_Rainerang.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- -
- weapons/projectiles/rainerang/rainerang-hit1.ogg
- weapons/projectiles/rainerang/rainerang-hit2.ogg
- weapons/projectiles/rainerang/rainerang-hit3.ogg
- weapons/projectiles/rainerang/rainerang-miss1.ogg
-
-
diff --git a/items/equip-1hand/item1171_Wand.xml b/items/equip-1hand/item1171_Wand.xml
index 8a07471b..d98d2724 100644
--- a/items/equip-1hand/item1171_Wand.xml
+++ b/items/equip-1hand/item1171_Wand.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/wand.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/wand-female.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d
diff --git a/items/equip-1hand/item1201_Knife.xml b/items/equip-1hand/item1201_Knife.xml
index d4c33b27..a67cffe9 100644
--- a/items/equip-1hand/item1201_Knife.xml
+++ b/items/equip-1hand/item1201_Knife.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/dagger.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/dagger-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
weapons/knives/knife-miss1.ogg
diff --git a/items/equip-1hand/item1215_ToySabre.xml b/items/equip-1hand/item1215_ToySabre.xml
index 48a3ec2a..0e3e31fb 100644
--- a/items/equip-1hand/item1215_ToySabre.xml
+++ b/items/equip-1hand/item1215_ToySabre.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/sword-short.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/sword-short-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
diff --git a/items/equip-1hand/item0521_Dagger.xml b/items/equip-1hand/item521_Dagger.xml
similarity index 53%
rename from items/equip-1hand/item0521_Dagger.xml
rename to items/equip-1hand/item521_Dagger.xml
index b855d30a..27eeb202 100644
--- a/items/equip-1hand/item0521_Dagger.xml
+++ b/items/equip-1hand/item521_Dagger.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/dagger.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/dagger-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
weapons/knives/knife-miss1.ogg
diff --git a/items/equip-1hand/item0522_SharpKnife.xml b/items/equip-1hand/item522_SharpKnife.xml
similarity index 58%
rename from items/equip-1hand/item0522_SharpKnife.xml
rename to items/equip-1hand/item522_SharpKnife.xml
index ec223b33..fe32f5cd 100644
--- a/items/equip-1hand/item0522_SharpKnife.xml
+++ b/items/equip-1hand/item522_SharpKnife.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/dagger.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/dagger-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
weapons/knives/knife-miss1.ogg
diff --git a/items/equip-1hand/item5261_Launcher.xml b/items/equip-1hand/item5261_Launcher.xml
index 9587d061..13ca52c1 100644
--- a/items/equip-1hand/item5261_Launcher.xml
+++ b/items/equip-1hand/item5261_Launcher.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/xmas-bow-slingshot.xml
equipment/weapons/xmas-bow-slingshot.xml
weapons/projectiles/snowball/hit1.ogg
diff --git a/items/equip-1hand/item5284_Flintlock.xml b/items/equip-1hand/item5284_Flintlock.xml
deleted file mode 100644
index dfb341c9..00000000
--- a/items/equip-1hand/item5284_Flintlock.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- equipment/weapons/flintlock.xml
- weapons/gun/gun-hit1.ogg
- weapons/gun/gun-miss1.ogg
- weapons/gun/gun-miss2.ogg
- weapons/gun/gun-miss3.ogg
-
-
diff --git a/items/equip-1hand/item5284_Revolver.xml b/items/equip-1hand/item5284_Revolver.xml
new file mode 100644
index 00000000..6fd195ef
--- /dev/null
+++ b/items/equip-1hand/item5284_Revolver.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/weapons/gun.xml
+ weapons/gun/shot.ogg
+ weapons/gun/shot.ogg
+
+
diff --git a/items/equip-1hand/item536_ShortSword.xml b/items/equip-1hand/item536_ShortSword.xml
new file mode 100644
index 00000000..1ab6a40a
--- /dev/null
+++ b/items/equip-1hand/item536_ShortSword.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/weapons/sword-short.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+ equipment/weapons/sword-short-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+ weapons/knives/knife-miss1.ogg
+ weapons/knives/knife-hit1.ogg
+
+
diff --git a/items/equip-1hand/item0549_Axe.xml b/items/equip-1hand/item549_Axe.xml
similarity index 52%
rename from items/equip-1hand/item0549_Axe.xml
rename to items/equip-1hand/item549_Axe.xml
index ec8f72a1..4d1de488 100644
--- a/items/equip-1hand/item0549_Axe.xml
+++ b/items/equip-1hand/item549_Axe.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/axe-chop.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/axe-chop-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
diff --git a/items/equip-1hand/item0570_BoneKnife.xml b/items/equip-1hand/item570_BoneKnife.xml
similarity index 58%
rename from items/equip-1hand/item0570_BoneKnife.xml
rename to items/equip-1hand/item570_BoneKnife.xml
index 4cef4ae4..c07579df 100644
--- a/items/equip-1hand/item0570_BoneKnife.xml
+++ b/items/equip-1hand/item570_BoneKnife.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/dagger.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/dagger-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
weapons/knives/knife-miss1.ogg
diff --git a/items/equip-1hand/item571_Setzer.xml b/items/equip-1hand/item571_Setzer.xml
new file mode 100644
index 00000000..fa574961
--- /dev/null
+++ b/items/equip-1hand/item571_Setzer.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
-
+ equipment/weapons/dagger.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+ equipment/weapons/dagger-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+ weapons/knives/setzer/setzer-hit1.ogg
+ weapons/knives/setzer/setzer-hit2.ogg
+ weapons/knives/setzer/setzer-hit3.ogg
+ weapons/miss1.ogg
+ weapons/miss2.ogg
+ weapons/miss3.ogg
+
+
diff --git a/items/equip-1hand/item576_Beheader.xml b/items/equip-1hand/item576_Beheader.xml
new file mode 100644
index 00000000..4be57579
--- /dev/null
+++ b/items/equip-1hand/item576_Beheader.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/weapons/beheader.xml
+ weapons/other/staff/staff-miss1.ogg
+ weapons/other/staff/staff-miss2.ogg
+ weapons/other/staff/staff-miss3.ogg
+ weapons/other/scythe/scythe-hit1.ogg
+ weapons/other/scythe/scythe-hit2.ogg
+ weapons/other/scythe/scythe-hit3.ogg
+
+
diff --git a/items/equip-1hand/item578_SandCutter.xml b/items/equip-1hand/item578_SandCutter.xml
new file mode 100644
index 00000000..3ea20114
--- /dev/null
+++ b/items/equip-1hand/item578_SandCutter.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/weapons/sandcutter.xml
+ weapons/knives/rock/rock-hit1.ogg
+ weapons/knives/rock/rock-hit2.ogg
+ weapons/swords/sword-miss1.ogg
+
+
diff --git a/items/equip-1hand/item0579_RockKnife.xml b/items/equip-1hand/item579_RockKnife.xml
similarity index 58%
rename from items/equip-1hand/item0579_RockKnife.xml
rename to items/equip-1hand/item579_RockKnife.xml
index 9d1debf7..7ef7346f 100644
--- a/items/equip-1hand/item0579_RockKnife.xml
+++ b/items/equip-1hand/item579_RockKnife.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/dagger.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/dagger-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
weapons/miss1.ogg
diff --git a/items/equip-1hand/item587_Sword.xml b/items/equip-1hand/item587_Sword.xml
new file mode 100644
index 00000000..e1bb8ba3
--- /dev/null
+++ b/items/equip-1hand/item587_Sword.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
-
+ equipment/weapons/sword-long.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+ equipment/weapons/sword-long-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+
+ -
+ equipment/weapons/jackal.xml
+ weapons/other/halberd/halberd-hit1.ogg
+ weapons/other/halberd/halberd-hit2.ogg
+ weapons/other/halberd/halberd-hit3.ogg
+ weapons/swords/sword-miss1.ogg
+
+
+
diff --git a/items/equip-1hand/item591_LongSword.xml b/items/equip-1hand/item591_LongSword.xml
new file mode 100644
index 00000000..12fbb17d
--- /dev/null
+++ b/items/equip-1hand/item591_LongSword.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/weapons/sword-long.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+ equipment/weapons/sword-long-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+
+
diff --git a/items/equip-1hand/item0599_FireSword.xml b/items/equip-1hand/item599_FireSword.xml
similarity index 52%
rename from items/equip-1hand/item0599_FireSword.xml
rename to items/equip-1hand/item599_FireSword.xml
index e6dd6108..fe7d795a 100644
--- a/items/equip-1hand/item0599_FireSword.xml
+++ b/items/equip-1hand/item599_FireSword.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/sword-long.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/sword-long-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
diff --git a/items/equip-1hand/item0867_IceGladius.xml b/items/equip-1hand/item867_IceGladius.xml
similarity index 59%
rename from items/equip-1hand/item0867_IceGladius.xml
rename to items/equip-1hand/item867_IceGladius.xml
index 9b8ec863..ee130e5b 100644
--- a/items/equip-1hand/item0867_IceGladius.xml
+++ b/items/equip-1hand/item867_IceGladius.xml
@@ -1,18 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/sword-short.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
equipment/weapons/sword-short-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
weapons/swords/ice_gladius/ice_gladius-hit1.ogg
diff --git a/items/equip-2hand/_include.xml b/items/equip-2hand/_include.xml
index 68aae96d..b9c99813 100644
--- a/items/equip-2hand/_include.xml
+++ b/items/equip-2hand/_include.xml
@@ -1,20 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-2hand/item0588_BastardSword.xml b/items/equip-2hand/item0588_BastardSword.xml
deleted file mode 100644
index cd596241..00000000
--- a/items/equip-2hand/item0588_BastardSword.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
- equipment/weapons/sword-long.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
- equipment/weapons/sword-long-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
-
-
diff --git a/items/equip-2hand/item0594_Spear.xml b/items/equip-2hand/item0594_Spear.xml
deleted file mode 100644
index 2bca4833..00000000
--- a/items/equip-2hand/item0594_Spear.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
- -
- equipment/weapons/polearm-spear.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
- equipment/weapons/polearm-spear-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
-
-
diff --git a/items/equip-2hand/item0596_Pike.xml b/items/equip-2hand/item0596_Pike.xml
deleted file mode 100644
index ac6027fd..00000000
--- a/items/equip-2hand/item0596_Pike.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- -
- equipment/weapons/polearm-spear.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
- equipment/weapons/polearm-spear-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
-
-
diff --git a/items/equip-2hand/item0609_ImperialBow.xml b/items/equip-2hand/item0609_ImperialBow.xml
deleted file mode 100644
index 6ea71da1..00000000
--- a/items/equip-2hand/item0609_ImperialBow.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- -
- equipment/weapons/bow-life.xml
- weapons/bows/imperial/imperial-hit1.ogg
- weapons/bows/imperial/imperial-hit2.ogg
- weapons/bows/imperial/imperial-hit3.ogg
- weapons/bows/imperial/imperial-hit4.ogg
- weapons/bows/imperial/imperial-hit5.ogg
- weapons/bows/imperial/imperial-hit6.ogg
- weapons/bows/imperial/imperial-miss1.ogg
-
-
diff --git a/items/equip-2hand/item0906_KidBook.xml b/items/equip-2hand/item0906_KidBook.xml
deleted file mode 100644
index 68d5f7e7..00000000
--- a/items/equip-2hand/item0906_KidBook.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- -
-
-
-
-
-
- monsters/fire-goblin/fire-goblin-hit1.ogg
- monsters/fire-goblin/fire-goblin-hit1.ogg
-
-
diff --git a/items/equip-2hand/item0907_FloydBook.xml b/items/equip-2hand/item0907_FloydBook.xml
deleted file mode 100644
index 5c575984..00000000
--- a/items/equip-2hand/item0907_FloydBook.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- -
-
-
-
-
- weapons/beam/beam-hit.ogg
- weapons/beam/beam-miss.ogg
-
-
diff --git a/items/equip-2hand/item1170_SweetToothStaff.xml b/items/equip-2hand/item1170_SweetToothStaff.xml
deleted file mode 100644
index c2a60f8e..00000000
--- a/items/equip-2hand/item1170_SweetToothStaff.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
- -
- equipment/weapons/staff.xml
- weapons/other/staff/staff-miss1.ogg
- weapons/other/staff/staff-miss2.ogg
- weapons/other/staff/staff-miss3.ogg
- weapons/other/staff/staff-hit1.ogg
- weapons/other/staff/staff-hit2.ogg
- weapons/other/staff/staff-hit3.ogg
-
-
diff --git a/items/equip-2hand/item1200_Bow.xml b/items/equip-2hand/item1200_Bow.xml
index 02d1e593..56a293dd 100644
--- a/items/equip-2hand/item1200_Bow.xml
+++ b/items/equip-2hand/item1200_Bow.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/bow.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/bow-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/bows/bow-miss1.ogg
diff --git a/items/equip-2hand/item0530_ShortBow.xml b/items/equip-2hand/item530_ShortBow.xml
similarity index 53%
rename from items/equip-2hand/item0530_ShortBow.xml
rename to items/equip-2hand/item530_ShortBow.xml
index 6b9cbe68..3c3a92e0 100644
--- a/items/equip-2hand/item0530_ShortBow.xml
+++ b/items/equip-2hand/item530_ShortBow.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/bow.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/bow-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/bows/short/short-miss1.ogg
diff --git a/items/equip-2hand/item0545_ForestBow.xml b/items/equip-2hand/item545_ForestBow.xml
similarity index 53%
rename from items/equip-2hand/item0545_ForestBow.xml
rename to items/equip-2hand/item545_ForestBow.xml
index 890dacf4..7fa5afd0 100644
--- a/items/equip-2hand/item0545_ForestBow.xml
+++ b/items/equip-2hand/item545_ForestBow.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/bow.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/bow-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/bows/forest/forest-miss1.ogg
diff --git a/items/equip-2hand/item0548_Halberd.xml b/items/equip-2hand/item548_Halberd.xml
similarity index 60%
rename from items/equip-2hand/item0548_Halberd.xml
rename to items/equip-2hand/item548_Halberd.xml
index 63459c0f..cf01373a 100644
--- a/items/equip-2hand/item0548_Halberd.xml
+++ b/items/equip-2hand/item548_Halberd.xml
@@ -1,17 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/polearm-chop.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-chop-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/other/halberd/halberd-hit1.ogg
diff --git a/items/equip-2hand/item588_BastardSword.xml b/items/equip-2hand/item588_BastardSword.xml
new file mode 100644
index 00000000..c8e84a56
--- /dev/null
+++ b/items/equip-2hand/item588_BastardSword.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
-
+ equipment/weapons/sword-long.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+ equipment/weapons/sword-long-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff
+
+
diff --git a/items/equip-2hand/item594_Spear.xml b/items/equip-2hand/item594_Spear.xml
new file mode 100644
index 00000000..d38b0d52
--- /dev/null
+++ b/items/equip-2hand/item594_Spear.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/weapons/polearm-spear.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
+ equipment/weapons/polearm-spear-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
+
+
diff --git a/items/equip-2hand/item0595_HeavySpear.xml b/items/equip-2hand/item595_HeavySpear.xml
similarity index 57%
rename from items/equip-2hand/item0595_HeavySpear.xml
rename to items/equip-2hand/item595_HeavySpear.xml
index ac896423..428c548d 100644
--- a/items/equip-2hand/item0595_HeavySpear.xml
+++ b/items/equip-2hand/item595_HeavySpear.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/polearm-spear.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-spear-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
diff --git a/items/equip-2hand/item596_Pike.xml b/items/equip-2hand/item596_Pike.xml
new file mode 100644
index 00000000..8b3f03ea
--- /dev/null
+++ b/items/equip-2hand/item596_Pike.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/weapons/polearm-spear.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
+ equipment/weapons/polearm-spear-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
+
+
diff --git a/items/equip-2hand/item0597_HeavyPike.xml b/items/equip-2hand/item597_HeavyPike.xml
similarity index 57%
rename from items/equip-2hand/item0597_HeavyPike.xml
rename to items/equip-2hand/item597_HeavyPike.xml
index 31cfdc9d..a04d4eb1 100644
--- a/items/equip-2hand/item0597_HeavyPike.xml
+++ b/items/equip-2hand/item597_HeavyPike.xml
@@ -1,6 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/polearm-spear.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-spear-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
diff --git a/items/equip-2hand/item0623_Scythe.xml b/items/equip-2hand/item623_Scythe.xml
similarity index 58%
rename from items/equip-2hand/item0623_Scythe.xml
rename to items/equip-2hand/item623_Scythe.xml
index 5f29134c..dca6fb5e 100644
--- a/items/equip-2hand/item0623_Scythe.xml
+++ b/items/equip-2hand/item623_Scythe.xml
@@ -1,17 +1,12 @@
- -
+
+
+
+
+
+
+
-
equipment/weapons/polearm-stab.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-stab-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/other/staff/staff-miss1.ogg
diff --git a/items/equip-2hand/item0758_WoodenStaff.xml b/items/equip-2hand/item758_WoodenStaff.xml
similarity index 53%
rename from items/equip-2hand/item0758_WoodenStaff.xml
rename to items/equip-2hand/item758_WoodenStaff.xml
index 137e622b..8d4a277c 100644
--- a/items/equip-2hand/item0758_WoodenStaff.xml
+++ b/items/equip-2hand/item758_WoodenStaff.xml
@@ -1,19 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/polearm-blunt.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-blunt-female.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/other/staff/staff-miss1.ogg
diff --git a/items/equip-2hand/item0878_BansheeBow.xml b/items/equip-2hand/item878_BansheeBow.xml
similarity index 61%
rename from items/equip-2hand/item0878_BansheeBow.xml
rename to items/equip-2hand/item878_BansheeBow.xml
index d6d57e0c..40f8ecfd 100644
--- a/items/equip-2hand/item0878_BansheeBow.xml
+++ b/items/equip-2hand/item878_BansheeBow.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/bow-banshee.xml|#27113e,7442a7,b498d1
equipment/weapons/bow-banshee-female.xml|#27113e,7442a7,b498d1
weapons/bows/banshee/banshee-miss1.ogg
diff --git a/items/equip-2hand/item0903_SlingShot.xml b/items/equip-2hand/item903_SlingShot.xml
similarity index 58%
rename from items/equip-2hand/item0903_SlingShot.xml
rename to items/equip-2hand/item903_SlingShot.xml
index f625fef8..8b49e59e 100644
--- a/items/equip-2hand/item0903_SlingShot.xml
+++ b/items/equip-2hand/item903_SlingShot.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/weapons/bow-slingshot.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/bow-slingshot-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
diff --git a/items/equip-2hand/item906_KidBook.xml b/items/equip-2hand/item906_KidBook.xml
new file mode 100644
index 00000000..985a5f50
--- /dev/null
+++ b/items/equip-2hand/item906_KidBook.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
diff --git a/items/equip-ammo/_include.xml b/items/equip-ammo/_include.xml
index 22e92869..d5e7b54f 100644
--- a/items/equip-ammo/_include.xml
+++ b/items/equip-ammo/_include.xml
@@ -1,12 +1,15 @@
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
diff --git a/items/equip-ammo/item0529_IronArrow.xml b/items/equip-ammo/item0529_IronArrow.xml
deleted file mode 100644
index 70eaf434..00000000
--- a/items/equip-ammo/item0529_IronArrow.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-ammo/item0762_TerraniteArrow.xml b/items/equip-ammo/item0762_TerraniteArrow.xml
deleted file mode 100644
index bb87fa48..00000000
--- a/items/equip-ammo/item0762_TerraniteArrow.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-ammo/item0904_SlingBullet.xml b/items/equip-ammo/item0904_SlingBullet.xml
deleted file mode 100644
index 74e3fabc..00000000
--- a/items/equip-ammo/item0904_SlingBullet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-ammo/item1199_Arrow.xml b/items/equip-ammo/item1199_Arrow.xml
index 09568b52..30c29704 100644
--- a/items/equip-ammo/item1199_Arrow.xml
+++ b/items/equip-ammo/item1199_Arrow.xml
@@ -1,4 +1,10 @@
+
+
+
+
+
+
diff --git a/items/equip-ammo/item1282_BoneArrows.xml b/items/equip-ammo/item1282_BoneArrows.xml
index 616a2228..a8a905f6 100644
--- a/items/equip-ammo/item1282_BoneArrows.xml
+++ b/items/equip-ammo/item1282_BoneArrows.xml
@@ -1,4 +1,10 @@
-
+
+
+
+
+
+
+
diff --git a/items/equip-ammo/item5260_Snowball.xml b/items/equip-ammo/item5260_Snowball.xml
index a6accc98..d4fc5bbb 100644
--- a/items/equip-ammo/item5260_Snowball.xml
+++ b/items/equip-ammo/item5260_Snowball.xml
@@ -1,4 +1,10 @@
+
+
+
+
+
+
diff --git a/items/equip-ammo/item5289_ArmorBreakerArrow.xml b/items/equip-ammo/item5289_ArmorBreakerArrow.xml
deleted file mode 100644
index 4345b202..00000000
--- a/items/equip-ammo/item5289_ArmorBreakerArrow.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/equip-ammo/item5290_SilverArrow.xml b/items/equip-ammo/item5290_SilverArrow.xml
deleted file mode 100644
index ceba8f26..00000000
--- a/items/equip-ammo/item5290_SilverArrow.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/equip-ammo/item5291_ThornArrow.xml b/items/equip-ammo/item5291_ThornArrow.xml
deleted file mode 100644
index 55a3d877..00000000
--- a/items/equip-ammo/item5291_ThornArrow.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/equip-ammo/item529_IronArrow.xml b/items/equip-ammo/item529_IronArrow.xml
new file mode 100644
index 00000000..42d16da4
--- /dev/null
+++ b/items/equip-ammo/item529_IronArrow.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-ammo/item762_TerraniteArrow.xml b/items/equip-ammo/item762_TerraniteArrow.xml
new file mode 100644
index 00000000..d61e811e
--- /dev/null
+++ b/items/equip-ammo/item762_TerraniteArrow.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-ammo/item904_SlingBullet.xml b/items/equip-ammo/item904_SlingBullet.xml
new file mode 100644
index 00000000..4219794c
--- /dev/null
+++ b/items/equip-ammo/item904_SlingBullet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-amulet/_include.xml b/items/equip-amulet/_include.xml
deleted file mode 100644
index 006583e5..00000000
--- a/items/equip-amulet/_include.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml b/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml
deleted file mode 100644
index dbc8e72e..00000000
--- a/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml b/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml
deleted file mode 100644
index 53413745..00000000
--- a/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0831_SilverFourLeafAmulet.xml b/items/equip-amulet/item0831_SilverFourLeafAmulet.xml
deleted file mode 100644
index 97c0e6bf..00000000
--- a/items/equip-amulet/item0831_SilverFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml b/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml
deleted file mode 100644
index 14285fc7..00000000
--- a/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0908_GMAmulet.xml b/items/equip-amulet/item0908_GMAmulet.xml
deleted file mode 100644
index 23c57f42..00000000
--- a/items/equip-amulet/item0908_GMAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item1227_EnchantersAmulet.xml b/items/equip-amulet/item1227_EnchantersAmulet.xml
deleted file mode 100644
index c24506d5..00000000
--- a/items/equip-amulet/item1227_EnchantersAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item5252_GuardianWings.xml b/items/equip-amulet/item5252_GuardianWings.xml
deleted file mode 100644
index baa87550..00000000
--- a/items/equip-amulet/item5252_GuardianWings.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/amulets/angel-wings.xml
- graphics/particles/angel.particle.xml
-
-
diff --git a/items/equip-amulet/item5269_AssassinAmulet.xml b/items/equip-amulet/item5269_AssassinAmulet.xml
deleted file mode 100644
index dbd6c3e3..00000000
--- a/items/equip-amulet/item5269_AssassinAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item5270_ManaPearl.xml b/items/equip-amulet/item5270_ManaPearl.xml
deleted file mode 100644
index 39c232bf..00000000
--- a/items/equip-amulet/item5270_ManaPearl.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- -
- graphics/particles/manapearl.particle.xml
-
-
diff --git a/items/equip-arms/_include.xml b/items/equip-arms/_include.xml
index a5ee0467..365c9f55 100644
--- a/items/equip-arms/_include.xml
+++ b/items/equip-arms/_include.xml
@@ -1,12 +1,19 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-arms/item0756_AssassinGloves.xml b/items/equip-arms/item0756_AssassinGloves.xml
deleted file mode 100644
index 349d6e4f..00000000
--- a/items/equip-arms/item0756_AssassinGloves.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/hands/assassin.xml
- equipment/hands/assassin-female.xml
-
-
diff --git a/items/equip-arms/item0794_BromenalGloves.xml b/items/equip-arms/item0794_BromenalGloves.xml
deleted file mode 100644
index 850c630a..00000000
--- a/items/equip-arms/item0794_BromenalGloves.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/hands/bromenalgloves.xml
- equipment/hands/bromenalgloves-female.xml
-
-
diff --git a/items/equip-arms/item2160_RedCottonGloves.xml b/items/equip-arms/item2160_RedCottonGloves.xml
index fe26136e..e12616be 100644
--- a/items/equip-arms/item2160_RedCottonGloves.xml
+++ b/items/equip-arms/item2160_RedCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#581a1a,a41111,c03a3a,ff6060
equipment/hands/generic-female.xml|#581a1a,a41111,c03a3a,ff6060
diff --git a/items/equip-arms/item2161_GreenCottonGloves.xml b/items/equip-arms/item2161_GreenCottonGloves.xml
index 9feb5268..2462a384 100644
--- a/items/equip-arms/item2161_GreenCottonGloves.xml
+++ b/items/equip-arms/item2161_GreenCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#255511,579932,4aaf36,4ed65e
equipment/hands/generic-female.xml|#255511,579932,4aaf36,4ed65e
diff --git a/items/equip-arms/item2162_DarkBlueCottonGloves.xml b/items/equip-arms/item2162_DarkBlueCottonGloves.xml
index 0e826005..4b525f01 100644
--- a/items/equip-arms/item2162_DarkBlueCottonGloves.xml
+++ b/items/equip-arms/item2162_DarkBlueCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#1a1a41,392b6e,4c529f,5d5dc2
equipment/hands/generic-female.xml|#1a1a41,392b6e,4c529f,5d5dc2
diff --git a/items/equip-arms/item2163_YellowCottonGloves.xml b/items/equip-arms/item2163_YellowCottonGloves.xml
index 8dd4556a..22461832 100644
--- a/items/equip-arms/item2163_YellowCottonGloves.xml
+++ b/items/equip-arms/item2163_YellowCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#846928,dab641,ffef93,fff7c9
equipment/hands/generic-female.xml|#846928,dab641,ffef93,fff7c9
diff --git a/items/equip-arms/item2164_LightBlueCottonGloves.xml b/items/equip-arms/item2164_LightBlueCottonGloves.xml
index dca55667..734924c7 100644
--- a/items/equip-arms/item2164_LightBlueCottonGloves.xml
+++ b/items/equip-arms/item2164_LightBlueCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#16486e,498ec5,e4f2fc
equipment/hands/generic-female.xml|#16486e,498ec5,e4f2fc
diff --git a/items/equip-arms/item2165_PinkCottonGloves.xml b/items/equip-arms/item2165_PinkCottonGloves.xml
index 75733dc4..2798f5f7 100644
--- a/items/equip-arms/item2165_PinkCottonGloves.xml
+++ b/items/equip-arms/item2165_PinkCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#bf369b,f25cb1,ff87b7,ffcccf
equipment/hands/generic-female.xml|#bf369b,f25cb1,ff87b7,ffcccf
diff --git a/items/equip-arms/item2166_BlackCottonGloves.xml b/items/equip-arms/item2166_BlackCottonGloves.xml
index 0494d360..a99d2116 100644
--- a/items/equip-arms/item2166_BlackCottonGloves.xml
+++ b/items/equip-arms/item2166_BlackCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#111111,222222,333333,444444,555555,aaaaaa
equipment/hands/generic-female.xml|#111111,222222,333333,444444,555555,aaaaaa
diff --git a/items/equip-arms/item2167_OrangeCottonGloves.xml b/items/equip-arms/item2167_OrangeCottonGloves.xml
index 41a35755..5425d2d9 100644
--- a/items/equip-arms/item2167_OrangeCottonGloves.xml
+++ b/items/equip-arms/item2167_OrangeCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#80280f,b04810,ef681f,ffb830
equipment/hands/generic-female.xml|#80280f,b04810,ef681f,ffb830
diff --git a/items/equip-arms/item2168_PurpleCottonGloves.xml b/items/equip-arms/item2168_PurpleCottonGloves.xml
index 98b9d76b..8c0ed892 100644
--- a/items/equip-arms/item2168_PurpleCottonGloves.xml
+++ b/items/equip-arms/item2168_PurpleCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#1a0a33,380f4d,82158c,b359ab
equipment/hands/generic-female.xml|#1a0a33,380f4d,82158c,b359ab
diff --git a/items/equip-arms/item2169_DarkGreenCottonGloves.xml b/items/equip-arms/item2169_DarkGreenCottonGloves.xml
index a5666b0a..4e4a24bd 100644
--- a/items/equip-arms/item2169_DarkGreenCottonGloves.xml
+++ b/items/equip-arms/item2169_DarkGreenCottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#0b300b,195519,3e832e,3e9c3e
equipment/hands/generic-female.xml|#0b300b,195519,3e832e,3e9c3e
diff --git a/items/equip-arms/item0531_MinerGloves.xml b/items/equip-arms/item531_MinerGloves.xml
similarity index 53%
rename from items/equip-arms/item0531_MinerGloves.xml
rename to items/equip-arms/item531_MinerGloves.xml
index db72ecd8..68589d07 100644
--- a/items/equip-arms/item0531_MinerGloves.xml
+++ b/items/equip-arms/item531_MinerGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#202020,505050
equipment/hands/generic-female.xml|#202020,505050
diff --git a/items/equip-arms/item0532_LeatherGloves.xml b/items/equip-arms/item532_LeatherGloves.xml
similarity index 53%
rename from items/equip-arms/item0532_LeatherGloves.xml
rename to items/equip-arms/item532_LeatherGloves.xml
index 74ff6969..9cf388e0 100644
--- a/items/equip-arms/item0532_LeatherGloves.xml
+++ b/items/equip-arms/item532_LeatherGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#4e2e18,c8752f
equipment/hands/generic-female.xml|#4e2e18,c8752f
diff --git a/items/equip-arms/item0563_WinterGloves.xml b/items/equip-arms/item563_WinterGloves.xml
similarity index 56%
rename from items/equip-arms/item0563_WinterGloves.xml
rename to items/equip-arms/item563_WinterGloves.xml
index b7c6e0da..70529537 100644
--- a/items/equip-arms/item0563_WinterGloves.xml
+++ b/items/equip-arms/item563_WinterGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#202020,c0c0c0,ffffff,ffffff
equipment/hands/generic-female.xml|#202020,c0c0c0,ffffff,ffffff
diff --git a/items/equip-arms/item585_ScarabArmlet.xml b/items/equip-arms/item585_ScarabArmlet.xml
new file mode 100644
index 00000000..96f95ee4
--- /dev/null
+++ b/items/equip-arms/item585_ScarabArmlet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-arms/item0741_CottonGloves.xml b/items/equip-arms/item741_CottonGloves.xml
similarity index 54%
rename from items/equip-arms/item0741_CottonGloves.xml
rename to items/equip-arms/item741_CottonGloves.xml
index be66bae7..73a30b82 100644
--- a/items/equip-arms/item0741_CottonGloves.xml
+++ b/items/equip-arms/item741_CottonGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#a4b2b2,ffffff
equipment/hands/generic-female.xml|#a4b2b2,ffffff
diff --git a/items/equip-arms/item756_AssassinGloves.xml b/items/equip-arms/item756_AssassinGloves.xml
new file mode 100644
index 00000000..17220262
--- /dev/null
+++ b/items/equip-arms/item756_AssassinGloves.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
-
+ equipment/hands/assassin.xml
+ equipment/hands/assassin-female.xml
+
+
diff --git a/items/equip-arms/item794_BromenalGloves.xml b/items/equip-arms/item794_BromenalGloves.xml
new file mode 100644
index 00000000..daeb94d6
--- /dev/null
+++ b/items/equip-arms/item794_BromenalGloves.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/hands/bromenalgloves.xml
+ equipment/hands/bromenalgloves-female.xml
+
+
diff --git a/items/equip-arms/item0868_SilkGloves.xml b/items/equip-arms/item868_SilkGloves.xml
similarity index 57%
rename from items/equip-arms/item0868_SilkGloves.xml
rename to items/equip-arms/item868_SilkGloves.xml
index bfeb432f..0184a903 100644
--- a/items/equip-arms/item0868_SilkGloves.xml
+++ b/items/equip-arms/item868_SilkGloves.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/hands/generic.xml|#87876c,bbc39c,edf4e1,ffffff
equipment/hands/generic-female.xml|#87876c,bbc39c,edf4e1,ffffff
diff --git a/items/equip-charm/_include.xml b/items/equip-charm/_include.xml
index ff7953a8..eb5bd1ca 100644
--- a/items/equip-charm/_include.xml
+++ b/items/equip-charm/_include.xml
@@ -1,9 +1,21 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item0677_HeartNecklace.xml b/items/equip-charm/item0677_HeartNecklace.xml
deleted file mode 100644
index 8437197f..00000000
--- a/items/equip-charm/item0677_HeartNecklace.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- graphics/particles/heartnecklace.particle.xml
-
-
diff --git a/items/equip-charm/item0742_FourLeafClover.xml b/items/equip-charm/item0742_FourLeafClover.xml
deleted file mode 100644
index 0a320ad1..00000000
--- a/items/equip-charm/item0742_FourLeafClover.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item0749_Towel.xml b/items/equip-charm/item0749_Towel.xml
deleted file mode 100644
index 72952a0a..00000000
--- a/items/equip-charm/item0749_Towel.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item0865_Grimoire.xml b/items/equip-charm/item0865_Grimoire.xml
deleted file mode 100644
index 6181962b..00000000
--- a/items/equip-charm/item0865_Grimoire.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item0879_HeartofIsis.xml b/items/equip-charm/item0879_HeartofIsis.xml
deleted file mode 100644
index 1435ada7..00000000
--- a/items/equip-charm/item0879_HeartofIsis.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item1227_EnchantersAmulet.xml b/items/equip-charm/item1227_EnchantersAmulet.xml
new file mode 100644
index 00000000..27229111
--- /dev/null
+++ b/items/equip-charm/item1227_EnchantersAmulet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item1244_DarkTalisman.xml b/items/equip-charm/item1244_DarkTalisman.xml
deleted file mode 100644
index 2a002698..00000000
--- a/items/equip-charm/item1244_DarkTalisman.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- -
- graphics/particles/dark-talisman.xml
-
-
diff --git a/items/equip-charm/item5269_AssassinAmulet.xml b/items/equip-charm/item5269_AssassinAmulet.xml
new file mode 100644
index 00000000..e18b1579
--- /dev/null
+++ b/items/equip-charm/item5269_AssassinAmulet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item5270_ManaPearl.xml b/items/equip-charm/item5270_ManaPearl.xml
new file mode 100644
index 00000000..88b77c7c
--- /dev/null
+++ b/items/equip-charm/item5270_ManaPearl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+ -
+ graphics/particles/manapearl.particle.xml
+
+
diff --git a/items/equip-charm/item677_HeartNecklace.xml b/items/equip-charm/item677_HeartNecklace.xml
new file mode 100644
index 00000000..d0ecf7eb
--- /dev/null
+++ b/items/equip-charm/item677_HeartNecklace.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+ -
+ graphics/particles/heartnecklace.particle.xml
+
+
diff --git a/items/equip-charm/item742_FourLeafClover.xml b/items/equip-charm/item742_FourLeafClover.xml
new file mode 100644
index 00000000..9e5c718e
--- /dev/null
+++ b/items/equip-charm/item742_FourLeafClover.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item749_Towel.xml b/items/equip-charm/item749_Towel.xml
new file mode 100644
index 00000000..a1571e7a
--- /dev/null
+++ b/items/equip-charm/item749_Towel.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml b/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml
new file mode 100644
index 00000000..1f01c0be
--- /dev/null
+++ b/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item830_BromenalFourLeafAmulet.xml b/items/equip-charm/item830_BromenalFourLeafAmulet.xml
new file mode 100644
index 00000000..20be81b6
--- /dev/null
+++ b/items/equip-charm/item830_BromenalFourLeafAmulet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item831_SilverFourLeafAmulet.xml b/items/equip-charm/item831_SilverFourLeafAmulet.xml
new file mode 100644
index 00000000..d6d595ee
--- /dev/null
+++ b/items/equip-charm/item831_SilverFourLeafAmulet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item832_GoldenFourLeafAmulet.xml b/items/equip-charm/item832_GoldenFourLeafAmulet.xml
new file mode 100644
index 00000000..20d1a799
--- /dev/null
+++ b/items/equip-charm/item832_GoldenFourLeafAmulet.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item865_Grimoire.xml b/items/equip-charm/item865_Grimoire.xml
new file mode 100644
index 00000000..59224e9a
--- /dev/null
+++ b/items/equip-charm/item865_Grimoire.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item879_HeartofIsis.xml b/items/equip-charm/item879_HeartofIsis.xml
new file mode 100644
index 00000000..67ea1ad2
--- /dev/null
+++ b/items/equip-charm/item879_HeartofIsis.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-feet/_include.xml b/items/equip-feet/_include.xml
index ad7b2328..00ac813f 100644
--- a/items/equip-feet/_include.xml
+++ b/items/equip-feet/_include.xml
@@ -1,12 +1,17 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -18,5 +23,4 @@
-
diff --git a/items/equip-feet/item0735_CottonBoots.xml b/items/equip-feet/item0735_CottonBoots.xml
deleted file mode 100644
index 14aed202..00000000
--- a/items/equip-feet/item0735_CottonBoots.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/feet/boots.xml|#a4b2b2,ffffff
- equipment/feet/boots-female.xml|#a4b2b2,ffffff
-
-
diff --git a/items/equip-feet/item0757_AssassinBoots.xml b/items/equip-feet/item0757_AssassinBoots.xml
deleted file mode 100644
index 2952d91b..00000000
--- a/items/equip-feet/item0757_AssassinBoots.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/feet/assassin-boots.xml
- equipment/feet/assassin-boots-female.xml
-
-
diff --git a/items/equip-feet/item0792_BromenalBoots.xml b/items/equip-feet/item0792_BromenalBoots.xml
deleted file mode 100644
index ada38699..00000000
--- a/items/equip-feet/item0792_BromenalBoots.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/feet/bromenalboots.xml
- equipment/feet/bromenalboots-female.xml
-
-
diff --git a/items/equip-feet/item1188_RedStockings.xml b/items/equip-feet/item1188_RedStockings.xml
index 29ac0d8f..8b4d9fa4 100644
--- a/items/equip-feet/item1188_RedStockings.xml
+++ b/items/equip-feet/item1188_RedStockings.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/assassin-boots.xml|#b80f0f,580000,a40000,b80f0f,c02020,ff6060
equipment/feet/assassin-boots-female.xml|#b80f0f,580000,a40000,b80f0f,c02020,ff6060
diff --git a/items/equip-feet/item2150_RedCottonBoots.xml b/items/equip-feet/item2150_RedCottonBoots.xml
index 14774164..b61412aa 100644
--- a/items/equip-feet/item2150_RedCottonBoots.xml
+++ b/items/equip-feet/item2150_RedCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#581a1a,a41111,c03a3a,ff6060
equipment/feet/boots-female.xml|#581a1a,a41111,c03a3a,ff6060
diff --git a/items/equip-feet/item2151_GreenCottonBoots.xml b/items/equip-feet/item2151_GreenCottonBoots.xml
index 4e1415f3..48cca892 100644
--- a/items/equip-feet/item2151_GreenCottonBoots.xml
+++ b/items/equip-feet/item2151_GreenCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#255511,579932,4aaf36,4ed65e
equipment/feet/boots-female.xml|#255511,579932,4aaf36,4ed65e
diff --git a/items/equip-feet/item2152_DarkBlueCottonBoots.xml b/items/equip-feet/item2152_DarkBlueCottonBoots.xml
index 2ea5b2f1..b3eaa9c6 100644
--- a/items/equip-feet/item2152_DarkBlueCottonBoots.xml
+++ b/items/equip-feet/item2152_DarkBlueCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#1a1a41,392b6e,4c529f,5d5dc2
equipment/feet/boots-female.xml|#1a1a41,392b6e,4c529f,5d5dc2
diff --git a/items/equip-feet/item2153_YellowCottonBoots.xml b/items/equip-feet/item2153_YellowCottonBoots.xml
index ba9d500c..9a821cbd 100644
--- a/items/equip-feet/item2153_YellowCottonBoots.xml
+++ b/items/equip-feet/item2153_YellowCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#846928,dab641,ffef93,fff7c9
equipment/feet/boots-female.xml|#846928,dab641,ffef93,fff7c9
diff --git a/items/equip-feet/item2154_LightBlueCottonBoots.xml b/items/equip-feet/item2154_LightBlueCottonBoots.xml
index 44680fbc..cdc2a9f3 100644
--- a/items/equip-feet/item2154_LightBlueCottonBoots.xml
+++ b/items/equip-feet/item2154_LightBlueCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#16486e,498ec5,e4f2fc
equipment/feet/boots-female.xml|#16486e,498ec5,e4f2fc
diff --git a/items/equip-feet/item2155_PinkCottonBoots.xml b/items/equip-feet/item2155_PinkCottonBoots.xml
index d41e31ea..c5288292 100644
--- a/items/equip-feet/item2155_PinkCottonBoots.xml
+++ b/items/equip-feet/item2155_PinkCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#bf369b,f25cb1,ff87b7,ffcccf
equipment/feet/boots-female.xml|#bf369b,f25cb1,ff87b7,ffcccf
diff --git a/items/equip-feet/item2156_BlackCottonBoots.xml b/items/equip-feet/item2156_BlackCottonBoots.xml
index ce01d448..cfbf08af 100644
--- a/items/equip-feet/item2156_BlackCottonBoots.xml
+++ b/items/equip-feet/item2156_BlackCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#111111,222222,333333,444444,555555,aaaaaa
equipment/feet/boots-female.xml|#111111,222222,333333,444444,555555,aaaaaa
diff --git a/items/equip-feet/item2157_OrangeCottonBoots.xml b/items/equip-feet/item2157_OrangeCottonBoots.xml
index cf95bc46..31e07919 100644
--- a/items/equip-feet/item2157_OrangeCottonBoots.xml
+++ b/items/equip-feet/item2157_OrangeCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#80280f,b04810,ef681f,ffb830
equipment/feet/boots-female.xml|#80280f,b04810,ef681f,ffb830
diff --git a/items/equip-feet/item2158_PurpleCottonBoots.xml b/items/equip-feet/item2158_PurpleCottonBoots.xml
index 47098cec..509313d0 100644
--- a/items/equip-feet/item2158_PurpleCottonBoots.xml
+++ b/items/equip-feet/item2158_PurpleCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#1a0a33,380f4d,82158c,b359ab
equipment/feet/boots-female.xml|#1a0a33,380f4d,82158c,b359ab
diff --git a/items/equip-feet/item2159_DarkGreenCottonBoots.xml b/items/equip-feet/item2159_DarkGreenCottonBoots.xml
index a4205498..8f3e9874 100644
--- a/items/equip-feet/item2159_DarkGreenCottonBoots.xml
+++ b/items/equip-feet/item2159_DarkGreenCottonBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#0b300b,195519,3e832e,3e9c3e
equipment/feet/boots-female.xml|#0b300b,195519,3e832e,3e9c3e
diff --git a/items/equip-feet/item0528_Boots.xml b/items/equip-feet/item528_Boots.xml
similarity index 53%
rename from items/equip-feet/item0528_Boots.xml
rename to items/equip-feet/item528_Boots.xml
index 8d32a99a..e94e7dff 100644
--- a/items/equip-feet/item0528_Boots.xml
+++ b/items/equip-feet/item528_Boots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#623a34,f0c2b4
equipment/feet/boots-female.xml|#623a34,f0c2b4
diff --git a/items/equip-feet/item5323_BlackWarlordBoots.xml b/items/equip-feet/item5323_BlackWarlordBoots.xml
deleted file mode 100644
index dbe8817e..00000000
--- a/items/equip-feet/item5323_BlackWarlordBoots.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
- equipment/feet/warlordboots.xml|#000000,ffffff
- equipment/feet/warlordboots-female.xml|#000000,ffffff
-
-
diff --git a/items/equip-feet/item0655_FurBoots.xml b/items/equip-feet/item655_FurBoots.xml
similarity index 50%
rename from items/equip-feet/item0655_FurBoots.xml
rename to items/equip-feet/item655_FurBoots.xml
index b661f5c8..ca0fe737 100644
--- a/items/equip-feet/item0655_FurBoots.xml
+++ b/items/equip-feet/item655_FurBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/furboots.xml
equipment/feet/furboots-female.xml
diff --git a/items/equip-feet/item0734_BlackBoots.xml b/items/equip-feet/item734_BlackBoots.xml
similarity index 56%
rename from items/equip-feet/item0734_BlackBoots.xml
rename to items/equip-feet/item734_BlackBoots.xml
index 9b93bc5c..1e46db5e 100644
--- a/items/equip-feet/item0734_BlackBoots.xml
+++ b/items/equip-feet/item734_BlackBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/boots.xml|#212121
equipment/feet/boots-female.xml|#212121
diff --git a/items/equip-feet/item757_AssassinBoots.xml b/items/equip-feet/item757_AssassinBoots.xml
new file mode 100644
index 00000000..d750f12a
--- /dev/null
+++ b/items/equip-feet/item757_AssassinBoots.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
-
+ equipment/feet/assassin-boots.xml
+ equipment/feet/assassin-boots-female.xml
+
+
diff --git a/items/equip-feet/item792_BromenalBoots.xml b/items/equip-feet/item792_BromenalBoots.xml
new file mode 100644
index 00000000..6f1eac0e
--- /dev/null
+++ b/items/equip-feet/item792_BromenalBoots.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+ -
+ equipment/feet/bromenalboots.xml
+ equipment/feet/bromenalboots-female.xml
+
+
diff --git a/items/equip-feet/item0876_WarlordBoots.xml b/items/equip-feet/item876_WarlordBoots.xml
similarity index 53%
rename from items/equip-feet/item0876_WarlordBoots.xml
rename to items/equip-feet/item876_WarlordBoots.xml
index 097f482c..85d3db94 100644
--- a/items/equip-feet/item0876_WarlordBoots.xml
+++ b/items/equip-feet/item876_WarlordBoots.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/feet/warlordboots.xml
equipment/feet/warlordboots-female.xml
diff --git a/items/equip-head/_include.xml b/items/equip-head/_include.xml
index f36c30eb..3399382e 100644
--- a/items/equip-head/_include.xml
+++ b/items/equip-head/_include.xml
@@ -1,79 +1,84 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -222,24 +227,5 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-head/item0604_PirateBandana.xml b/items/equip-head/item0604_PirateBandana.xml
deleted file mode 100644
index 1c8b5265..00000000
--- a/items/equip-head/item0604_PirateBandana.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
- equipment/head/bandana.xml|#212121,555555
- equipment/head/bandana-female.xml|#212121,555555
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-head/item0616_AxeHat.xml b/items/equip-head/item0616_AxeHat.xml
deleted file mode 100644
index 19c28300..00000000
--- a/items/equip-head/item0616_AxeHat.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/head/axehat.xml
- equipment/head/axehat-female.xml
-
-
diff --git a/items/equip-head/item0622_Bandana.xml b/items/equip-head/item0622_Bandana.xml
deleted file mode 100644
index dde4bec1..00000000
--- a/items/equip-head/item0622_Bandana.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- -
- equipment/head/bandana.xml|#ffffff;#ff4645
- equipment/head/bandana-female.xml|#ffffff;#ff4645
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-head/item0675_GraduationCap.xml b/items/equip-head/item0675_GraduationCap.xml
deleted file mode 100644
index 8d3b911c..00000000
--- a/items/equip-head/item0675_GraduationCap.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/head/gradcap.xml
- equipment/head/gradcap-female.xml
-
-
diff --git a/items/equip-head/item0760_OverlordsHelmet.xml b/items/equip-head/item0760_OverlordsHelmet.xml
deleted file mode 100644
index 16d5a7f9..00000000
--- a/items/equip-head/item0760_OverlordsHelmet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- -
- equipment/head/overlordhelm.xml
- equipment/head/overlordhelm-female.xml
-
-
-
-
-
diff --git a/items/equip-head/item0764_SailorHat.xml b/items/equip-head/item0764_SailorHat.xml
deleted file mode 100644
index 13962835..00000000
--- a/items/equip-head/item0764_SailorHat.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/head/sailor-hat.xml
- equipment/head/sailor-hat-female.xml
-
-
diff --git a/items/equip-head/item0765_CaptainsHat.xml b/items/equip-head/item0765_CaptainsHat.xml
deleted file mode 100644
index 3f77644e..00000000
--- a/items/equip-head/item0765_CaptainsHat.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/head/captain-hat.xml
- equipment/head/captain-hat-female.xml
-
-
diff --git a/items/equip-head/item0801_PinkieHelmet.xml b/items/equip-head/item0801_PinkieHelmet.xml
deleted file mode 100644
index 1e3972d9..00000000
--- a/items/equip-head/item0801_PinkieHelmet.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- -
- equipment/head/pinkie-helmet.xml
- equipment/head/pinkie-helmet-female.xml
-
-
-
-
-
diff --git a/items/equip-head/item0909_LeprechaunHead.xml b/items/equip-head/item0909_LeprechaunHead.xml
deleted file mode 100644
index 9afc03cd..00000000
--- a/items/equip-head/item0909_LeprechaunHead.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- -
- equipment/head/leprechaunhead.xml
-
-
-
-
-
diff --git a/items/equip-head/item1173_TamOShanter.xml b/items/equip-head/item1173_TamOShanter.xml
index 8641ab44..77b55670 100644
--- a/items/equip-head/item1173_TamOShanter.xml
+++ b/items/equip-head/item1173_TamOShanter.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/tamoshanter.xml|#797ea8;#4747ac
equipment/head/tamoshanter-female.xml|#797ea8;#4747ac
diff --git a/items/equip-head/item1174_CashiersShade.xml b/items/equip-head/item1174_CashiersShade.xml
index 9cc11ce5..b4f6404b 100644
--- a/items/equip-head/item1174_CashiersShade.xml
+++ b/items/equip-head/item1174_CashiersShade.xml
@@ -1,14 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/head/cashiershade.xml|#909090;#70ff1f
equipment/head/cashiershade-female.xml|#909090;#70ff1f
diff --git a/items/equip-head/item1175_AutumnMask.xml b/items/equip-head/item1175_AutumnMask.xml
index 6d3332e1..363f8798 100644
--- a/items/equip-head/item1175_AutumnMask.xml
+++ b/items/equip-head/item1175_AutumnMask.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/autumn-mask.xml|#2a3a3a;#ee0427;#cf7c04;#ffffff
equipment/head/autumn-mask-female.xml|#2a3a3a;#ee0427;#cf7c04;#ffffff
diff --git a/items/equip-head/item1190_NutcrackerHat.xml b/items/equip-head/item1190_NutcrackerHat.xml
index fd69d05a..d1b48b4d 100644
--- a/items/equip-head/item1190_NutcrackerHat.xml
+++ b/items/equip-head/item1190_NutcrackerHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/nutcrackerhat.xml
equipment/head/nutcrackerhat-female.xml
diff --git a/items/equip-head/item1196_Beret.xml b/items/equip-head/item1196_Beret.xml
index d3c7577f..6f9ff415 100644
--- a/items/equip-head/item1196_Beret.xml
+++ b/items/equip-head/item1196_Beret.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/beret.xml|#87876c,bbc39c,edf4e1,ffffff
equipment/head/beret-female.xml|#87876c,bbc39c,edf4e1,ffffff
diff --git a/items/equip-head/item1203_RangerHat.xml b/items/equip-head/item1203_RangerHat.xml
index 6aa6894f..a1fd50f9 100644
--- a/items/equip-head/item1203_RangerHat.xml
+++ b/items/equip-head/item1203_RangerHat.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/head/rangerhat.xml
equipment/head/rangerhat-female.xml
diff --git a/items/equip-head/item1204_AntlerHat.xml b/items/equip-head/item1204_AntlerHat.xml
index 75a46e21..76c5b765 100644
--- a/items/equip-head/item1204_AntlerHat.xml
+++ b/items/equip-head/item1204_AntlerHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/antlerhat.xml
equipment/head/antlerhat-female.xml
diff --git a/items/equip-head/item1205_ChristmasTreeHat.xml b/items/equip-head/item1205_ChristmasTreeHat.xml
index 8f6187eb..a86efdcb 100644
--- a/items/equip-head/item1205_ChristmasTreeHat.xml
+++ b/items/equip-head/item1205_ChristmasTreeHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/christmastree.xml
equipment/head/christmastree-female.xml
diff --git a/items/equip-head/item1206_SantaBeardHat.xml b/items/equip-head/item1206_SantaBeardHat.xml
index 8857fb41..2918b059 100644
--- a/items/equip-head/item1206_SantaBeardHat.xml
+++ b/items/equip-head/item1206_SantaBeardHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/santabeardhat.xml
equipment/head/santabeardhat-female.xml
diff --git a/items/equip-head/item1214_BunnyEars.xml b/items/equip-head/item1214_BunnyEars.xml
index 0452b5d0..43752203 100644
--- a/items/equip-head/item1214_BunnyEars.xml
+++ b/items/equip-head/item1214_BunnyEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/bunnyears.xml
equipment/head/bunnyears-female.xml
diff --git a/items/equip-head/item1216_MoubooHead.xml b/items/equip-head/item1216_MoubooHead.xml
index cb86d8b4..d2f58485 100644
--- a/items/equip-head/item1216_MoubooHead.xml
+++ b/items/equip-head/item1216_MoubooHead.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/mouboohead.xml
equipment/head/mouboohead-female.xml
diff --git a/items/equip-head/item1217_CatEars.xml b/items/equip-head/item1217_CatEars.xml
index 2a54eb23..6ff6d38e 100644
--- a/items/equip-head/item1217_CatEars.xml
+++ b/items/equip-head/item1217_CatEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/catears.xml|#774444;#777777
equipment/head/catears-female.xml|#774444;#777777
diff --git a/items/equip-head/item1218_PaperBag.xml b/items/equip-head/item1218_PaperBag.xml
index aa4b7fa5..de14aef2 100644
--- a/items/equip-head/item1218_PaperBag.xml
+++ b/items/equip-head/item1218_PaperBag.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/paperbag.xml
equipment/head/paperbag-female.xml
diff --git a/items/equip-head/item1219_MoubootaurHead.xml b/items/equip-head/item1219_MoubootaurHead.xml
index 89755792..2b8d7c45 100644
--- a/items/equip-head/item1219_MoubootaurHead.xml
+++ b/items/equip-head/item1219_MoubootaurHead.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/moubootaurhead.xml
equipment/head/moubootaurhead-female.xml
diff --git a/items/equip-head/item1220_BunchofParsley.xml b/items/equip-head/item1220_BunchofParsley.xml
index 0524ae93..9db8bd03 100644
--- a/items/equip-head/item1220_BunchofParsley.xml
+++ b/items/equip-head/item1220_BunchofParsley.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/parsley-earplugs.xml
equipment/head/parsley-earplugs-female.xml
diff --git a/items/equip-head/item1221_SkullMask.xml b/items/equip-head/item1221_SkullMask.xml
index ee5e64b0..43f3ebee 100644
--- a/items/equip-head/item1221_SkullMask.xml
+++ b/items/equip-head/item1221_SkullMask.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/skullmask.xml
equipment/head/skullmask-female.xml
diff --git a/items/equip-head/item1242_SnowGoggles.xml b/items/equip-head/item1242_SnowGoggles.xml
index d82c91a8..3cdfb178 100644
--- a/items/equip-head/item1242_SnowGoggles.xml
+++ b/items/equip-head/item1242_SnowGoggles.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/snowgoggles.xml
equipment/head/snowgoggles-female.xml
diff --git a/items/equip-head/item1247_HeartGlasses.xml b/items/equip-head/item1247_HeartGlasses.xml
index 49ec9928..ed8f1e4a 100644
--- a/items/equip-head/item1247_HeartGlasses.xml
+++ b/items/equip-head/item1247_HeartGlasses.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/heart-glasses.xml
equipment/head/heart-glasses-female.xml
diff --git a/items/equip-head/item1255_WhiteRabbitEars.xml b/items/equip-head/item1255_WhiteRabbitEars.xml
index 42c87516..6a39c067 100644
--- a/items/equip-head/item1255_WhiteRabbitEars.xml
+++ b/items/equip-head/item1255_WhiteRabbitEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/rabbit-ears.xml|#87876c,bbc39c,edf4e1,ffffff
equipment/head/rabbit-ears-female.xml|#87876c,bbc39c,edf4e1,ffffff
diff --git a/items/equip-head/item1256_EggshellHat.xml b/items/equip-head/item1256_EggshellHat.xml
index b23ba209..53112266 100644
--- a/items/equip-head/item1256_EggshellHat.xml
+++ b/items/equip-head/item1256_EggshellHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/eggshell.xml|#727272,A0A9AC,DBECF2
equipment/head/eggshell-female.xml|#727272,A0A9AC,DBECF2
diff --git a/items/equip-head/item1275_ReadingGlasses.xml b/items/equip-head/item1275_ReadingGlasses.xml
index f8b3548e..871ff8a3 100644
--- a/items/equip-head/item1275_ReadingGlasses.xml
+++ b/items/equip-head/item1275_ReadingGlasses.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/glasses.xml|#a89feb,d5d1f5
equipment/head/glasses-female.xml|#a89feb,d5d1f5
diff --git a/items/equip-head/item1276_OperaMask.xml b/items/equip-head/item1276_OperaMask.xml
index 8fd9a2dd..7f410aef 100644
--- a/items/equip-head/item1276_OperaMask.xml
+++ b/items/equip-head/item1276_OperaMask.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/operamask.xml
equipment/head/operamask-female.xml
diff --git a/items/equip-head/item1277_JesterMask.xml b/items/equip-head/item1277_JesterMask.xml
index 907f220b..7a553195 100644
--- a/items/equip-head/item1277_JesterMask.xml
+++ b/items/equip-head/item1277_JesterMask.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/jestermask.xml
equipment/head/jestermask-female.xml
diff --git a/items/equip-head/item1278_WitchHat.xml b/items/equip-head/item1278_WitchHat.xml
index eb5279b1..5235a24b 100644
--- a/items/equip-head/item1278_WitchHat.xml
+++ b/items/equip-head/item1278_WitchHat.xml
@@ -1,6 +1,12 @@
-
-
+
+
+
+
+
+
+
-
equipment/head/witch-hat.xml|#444444,777777,aaaaaa
equipment/head/witch-hat-female.xml|#444444,777777,aaaaaa
diff --git a/items/equip-head/item1279_GoblinMask.xml b/items/equip-head/item1279_GoblinMask.xml
index c9025eb7..dd54110b 100644
--- a/items/equip-head/item1279_GoblinMask.xml
+++ b/items/equip-head/item1279_GoblinMask.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/goblin-mask.xml
equipment/head/goblin-mask-female.xml
diff --git a/items/equip-head/item2130_RedDesertHat.xml b/items/equip-head/item2130_RedDesertHat.xml
index f5925160..ae0e5215 100644
--- a/items/equip-head/item2130_RedDesertHat.xml
+++ b/items/equip-head/item2130_RedDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#581a1a,a41111,c03a3a,ff6060
equipment/head/deserthat-female.xml|#581a1a,a41111,c03a3a,ff6060
diff --git a/items/equip-head/item2131_GreenDesertHat.xml b/items/equip-head/item2131_GreenDesertHat.xml
index bd34e776..fec0fdf6 100644
--- a/items/equip-head/item2131_GreenDesertHat.xml
+++ b/items/equip-head/item2131_GreenDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#255511,579932,4aaf36,4ed65e
equipment/head/deserthat-female.xml|#255511,579932,4aaf36,4ed65e
diff --git a/items/equip-head/item2132_DarkBlueDesertHat.xml b/items/equip-head/item2132_DarkBlueDesertHat.xml
index c2d931fa..1d43af97 100644
--- a/items/equip-head/item2132_DarkBlueDesertHat.xml
+++ b/items/equip-head/item2132_DarkBlueDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#1a1a41,392b6e,4c529f,5d5dc2
equipment/head/deserthat-female.xml|#1a1a41,392b6e,4c529f,5d5dc2
diff --git a/items/equip-head/item2133_YellowDesertHat.xml b/items/equip-head/item2133_YellowDesertHat.xml
index b7323502..aac3b3cb 100644
--- a/items/equip-head/item2133_YellowDesertHat.xml
+++ b/items/equip-head/item2133_YellowDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#846928,dab641,ffef93,fff7c9
equipment/head/deserthat-female.xml|#846928,dab641,ffef93,fff7c9
diff --git a/items/equip-head/item2134_LightBlueDesertHat.xml b/items/equip-head/item2134_LightBlueDesertHat.xml
index 8fc972b2..5d0dcd2a 100644
--- a/items/equip-head/item2134_LightBlueDesertHat.xml
+++ b/items/equip-head/item2134_LightBlueDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#16486e,498ec5,e4f2fc
equipment/head/deserthat-female.xml|#16486e,498ec5,e4f2fc
diff --git a/items/equip-head/item2135_PinkDesertHat.xml b/items/equip-head/item2135_PinkDesertHat.xml
index aabde219..6bd7e4f7 100644
--- a/items/equip-head/item2135_PinkDesertHat.xml
+++ b/items/equip-head/item2135_PinkDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#bf369b,f25cb1,ff87b7,ffcccf
equipment/head/deserthat-female.xml|#bf369b,f25cb1,ff87b7,ffcccf
diff --git a/items/equip-head/item2136_BlackDesertHat.xml b/items/equip-head/item2136_BlackDesertHat.xml
index bb3a8045..e47965f9 100644
--- a/items/equip-head/item2136_BlackDesertHat.xml
+++ b/items/equip-head/item2136_BlackDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#111111,222222,333333,444444,555555,aaaaaa
equipment/head/deserthat-female.xml|#111111,222222,333333,444444,555555,aaaaaa
diff --git a/items/equip-head/item2137_OrangeDesertHat.xml b/items/equip-head/item2137_OrangeDesertHat.xml
index f2a9c54e..abba5faa 100644
--- a/items/equip-head/item2137_OrangeDesertHat.xml
+++ b/items/equip-head/item2137_OrangeDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#80280f,b04810,ef681f,ffb830
equipment/head/deserthat-female.xml|#80280f,b04810,ef681f,ffb830
diff --git a/items/equip-head/item2138_PurpleDesertHat.xml b/items/equip-head/item2138_PurpleDesertHat.xml
index ca1ab69a..c4905b84 100644
--- a/items/equip-head/item2138_PurpleDesertHat.xml
+++ b/items/equip-head/item2138_PurpleDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#1a0a33,380f4d,82158c,b359ab
equipment/head/deserthat-female.xml|#1a0a33,380f4d,82158c,b359ab
diff --git a/items/equip-head/item2139_DarkGreenDesertHat.xml b/items/equip-head/item2139_DarkGreenDesertHat.xml
index 3c74a980..09ee0957 100644
--- a/items/equip-head/item2139_DarkGreenDesertHat.xml
+++ b/items/equip-head/item2139_DarkGreenDesertHat.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/deserthat.xml|#0b300b,195519,3e832e,3e9c3e
equipment/head/deserthat-female.xml|#0b300b,195519,3e832e,3e9c3e
diff --git a/items/equip-head/item2140_RedCottonHeadband.xml b/items/equip-head/item2140_RedCottonHeadband.xml
index e4ab9399..80ef9e6c 100644
--- a/items/equip-head/item2140_RedCottonHeadband.xml
+++ b/items/equip-head/item2140_RedCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#581a1a,a41111,c03a3a,ff6060
equipment/head/standardheadband-female.xml|#581a1a,a41111,c03a3a,ff6060
diff --git a/items/equip-head/item2141_GreenCottonHeadband.xml b/items/equip-head/item2141_GreenCottonHeadband.xml
index c68ab949..035ff5c0 100644
--- a/items/equip-head/item2141_GreenCottonHeadband.xml
+++ b/items/equip-head/item2141_GreenCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#255511,579932,4aaf36,4ed65e
equipment/head/standardheadband-female.xml|#255511,579932,4aaf36,4ed65e
diff --git a/items/equip-head/item2142_DarkBlueCottonHeadband.xml b/items/equip-head/item2142_DarkBlueCottonHeadband.xml
index 3ed7a2bd..1e9eceeb 100644
--- a/items/equip-head/item2142_DarkBlueCottonHeadband.xml
+++ b/items/equip-head/item2142_DarkBlueCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#1a1a41,392b6e,4c529f,5d5dc2
equipment/head/standardheadband-female.xml|#1a1a41,392b6e,4c529f,5d5dc2
diff --git a/items/equip-head/item2143_YellowCottonHeadband.xml b/items/equip-head/item2143_YellowCottonHeadband.xml
index 03a2e6c7..37a401d2 100644
--- a/items/equip-head/item2143_YellowCottonHeadband.xml
+++ b/items/equip-head/item2143_YellowCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#846928,dab641,ffef93,fff7c9
equipment/head/standardheadband-female.xml|#846928,dab641,ffef93,fff7c9
diff --git a/items/equip-head/item2144_LightBlueCottonHeadband.xml b/items/equip-head/item2144_LightBlueCottonHeadband.xml
index 4a067f9a..5d670fa3 100644
--- a/items/equip-head/item2144_LightBlueCottonHeadband.xml
+++ b/items/equip-head/item2144_LightBlueCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#16486e,498ec5,e4f2fc
equipment/head/standardheadband-female.xml|#16486e,498ec5,e4f2fc
diff --git a/items/equip-head/item2145_PinkCottonHeadband.xml b/items/equip-head/item2145_PinkCottonHeadband.xml
index 6192cc38..9ed09670 100644
--- a/items/equip-head/item2145_PinkCottonHeadband.xml
+++ b/items/equip-head/item2145_PinkCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#bf369b,f25cb1,ff87b7,ffcccf
equipment/head/standardheadband-female.xml|#bf369b,f25cb1,ff87b7,ffcccf
diff --git a/items/equip-head/item2146_BlackCottonHeadband.xml b/items/equip-head/item2146_BlackCottonHeadband.xml
index 78edaa53..ea28082e 100644
--- a/items/equip-head/item2146_BlackCottonHeadband.xml
+++ b/items/equip-head/item2146_BlackCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#111111,222222,333333,444444,555555,aaaaaa
equipment/head/standardheadband-female.xml|#111111,222222,333333,444444,555555,aaaaaa
diff --git a/items/equip-head/item2147_OrangeCottonHeadband.xml b/items/equip-head/item2147_OrangeCottonHeadband.xml
index 63cf542f..2dfdd10c 100644
--- a/items/equip-head/item2147_OrangeCottonHeadband.xml
+++ b/items/equip-head/item2147_OrangeCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#80280f,b04810,ef681f,ffb830
equipment/head/standardheadband-female.xml|#80280f,b04810,ef681f,ffb830
diff --git a/items/equip-head/item2148_PurpleCottonHeadband.xml b/items/equip-head/item2148_PurpleCottonHeadband.xml
index 099d30ed..07e8e2f5 100644
--- a/items/equip-head/item2148_PurpleCottonHeadband.xml
+++ b/items/equip-head/item2148_PurpleCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#1a0a33,380f4d,82158c,b359ab
equipment/head/standardheadband-female.xml|#1a0a33,380f4d,82158c,b359ab
diff --git a/items/equip-head/item2149_DarkGreenCottonHeadband.xml b/items/equip-head/item2149_DarkGreenCottonHeadband.xml
index 4bfd2e93..35240822 100644
--- a/items/equip-head/item2149_DarkGreenCottonHeadband.xml
+++ b/items/equip-head/item2149_DarkGreenCottonHeadband.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/standardheadband.xml|#0b300b,195519,3e832e,3e9c3e
equipment/head/standardheadband-female.xml|#0b300b,195519,3e832e,3e9c3e
diff --git a/items/equip-head/item2190_RedRabbitEars.xml b/items/equip-head/item2190_RedRabbitEars.xml
index 3d021399..13783616 100644
--- a/items/equip-head/item2190_RedRabbitEars.xml
+++ b/items/equip-head/item2190_RedRabbitEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/rabbit-ears.xml|#581a1a,a41111,c03a3a,ff6060
equipment/head/rabbit-ears-female.xml|#581a1a,a41111,c03a3a,ff6060
diff --git a/items/equip-head/item2191_GreenRabbitEars.xml b/items/equip-head/item2191_GreenRabbitEars.xml
index e50e9b3d..418e0d07 100644
--- a/items/equip-head/item2191_GreenRabbitEars.xml
+++ b/items/equip-head/item2191_GreenRabbitEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/rabbit-ears.xml|#255511,579932,4aaf36,4ed65e
equipment/head/rabbit-ears-female.xml|#255511,579932,4aaf36,4ed65e
diff --git a/items/equip-head/item2192_DarkBlueRabbitEars.xml b/items/equip-head/item2192_DarkBlueRabbitEars.xml
index e40b8000..98e6999d 100644
--- a/items/equip-head/item2192_DarkBlueRabbitEars.xml
+++ b/items/equip-head/item2192_DarkBlueRabbitEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/rabbit-ears.xml|#1a1a41,392b6e,4c529f,5d5dc2
equipment/head/rabbit-ears-female.xml|#1a1a41,392b6e,4c529f,5d5dc2
diff --git a/items/equip-head/item2193_YellowRabbitEars.xml b/items/equip-head/item2193_YellowRabbitEars.xml
index 88a492f2..acb70050 100644
--- a/items/equip-head/item2193_YellowRabbitEars.xml
+++ b/items/equip-head/item2193_YellowRabbitEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/rabbit-ears.xml|#846928,dab641,ffef93,fff7c9
equipment/head/rabbit-ears-female.xml|#846928,dab641,ffef93,fff7c9
diff --git a/items/equip-head/item2194_LightBlueRabbitEars.xml b/items/equip-head/item2194_LightBlueRabbitEars.xml
index 89fe26d8..182e988a 100644
--- a/items/equip-head/item2194_LightBlueRabbitEars.xml
+++ b/items/equip-head/item2194_LightBlueRabbitEars.xml
@@ -1,5 +1,11 @@
+
+
+
+
+
+
-
equipment/head/rabbit-ears.xml|#16486e,498ec5,e4f2fc
equipment/head/rabbit-ears-female.xml|#16486e,498ec5,e4f2fc
diff --git a/items/equip-head/item2195_PinkRabbitEars.xml b/items/equip-head/item2195_PinkRabbitEars.xml
index cf5701f7..29af0e16 100644
--- a/items/equip-head/item2195_PinkRabbitEars.xml
+++ b/items/equip-head/item2195_PinkRabbitEars.xml
@@ -1,5 +1,11 @@
+
+