diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..d65f8759
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.tiled-session
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..b003594a
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,76 @@
+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 6da1e30c..de9d5ec1 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,6 @@
[submodule "music"]
path = music
- url = https://git.themanaworld.org/legacy/music.git
+ url = https://git.themanaworld.org/tmw/music.git
+[submodule "mods"]
+ path = mods
+ url = https://git.themanaworld.org/tmw/mods.git
diff --git a/.tools/contributors.sh b/.tools/contributors.sh
new file mode 100755
index 00000000..8b85eeea
--- /dev/null
+++ b/.tools/contributors.sh
@@ -0,0 +1,25 @@
+#!/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
new file mode 100755
index 00000000..a7e8e481
--- /dev/null
+++ b/.tools/imagemagiccheck.sh
@@ -0,0 +1,23 @@
+#!/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
new file mode 100755
index 00000000..15f096d9
--- /dev/null
+++ b/.tools/init.sh
@@ -0,0 +1,88 @@
+#!/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
new file mode 100755
index 00000000..412b4def
--- /dev/null
+++ b/.tools/licensecheck.sh
@@ -0,0 +1,25 @@
+#!/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
new file mode 100755
index 00000000..d7ffc469
--- /dev/null
+++ b/.tools/manaplus.sh
@@ -0,0 +1,62 @@
+#!/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
new file mode 100755
index 00000000..64cbf7e1
--- /dev/null
+++ b/.tools/newlines.sh
@@ -0,0 +1,28 @@
+#!/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
new file mode 100755
index 00000000..8955b26e
--- /dev/null
+++ b/.tools/pngcheck.sh
@@ -0,0 +1,23 @@
+#!/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
new file mode 100755
index 00000000..458d7b85
--- /dev/null
+++ b/.tools/testxml.sh
@@ -0,0 +1,34 @@
+#!/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
deleted file mode 100644
index ed5c991f..00000000
--- a/CONTRIBUTING.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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 75a3043d..4b1718e1 100644
--- a/badges.xml
+++ b/badges.xml
@@ -4,10 +4,12 @@ Copyright (C) 2013 Evol Online -->
+
+
diff --git a/charcreation.xml b/charcreation.xml
index 9c48f015..b6e0bd52 100644
--- a/charcreation.xml
+++ b/charcreation.xml
@@ -1,13 +1,13 @@
-
+
-
+
-
-
+
+
diff --git a/deadmessages.xml b/deadmessages.xml
index afdf9362..fbcc98cb 100644
--- a/deadmessages.xml
+++ b/deadmessages.xml
@@ -1,9 +1,5 @@
-
-
-
-
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 3c3a5233..332c54f9 100644
--- a/effects.xml
+++ b/effects.xml
@@ -23,7 +23,7 @@
-
+
@@ -54,9 +54,10 @@
+
-
+
@@ -65,20 +66,20 @@
-
+
-
+
-
-
+
+
@@ -88,7 +89,19 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -106,6 +119,11 @@
+
+
+
+
+
@@ -126,9 +144,9 @@
-
+
-
+
@@ -138,7 +156,7 @@
-
+
@@ -168,7 +186,7 @@
-
+
@@ -190,29 +208,79 @@
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/emotes.xml b/emotes.xml
index ed397015..67ae3b0f 100644
--- a/emotes.xml
+++ b/emotes.xml
@@ -1,50 +1,133 @@
-
-
-
-
-
-
+
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
new file mode 100644
index 00000000..97e31a66
Binary files /dev/null and b/graphics/badges/guilds/followthewhiterabbit.png differ
diff --git a/graphics/badges/guilds/followthewhiterabbit.xml b/graphics/badges/guilds/followthewhiterabbit.xml
new file mode 100644
index 00000000..3a9bd402
--- /dev/null
+++ b/graphics/badges/guilds/followthewhiterabbit.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/afraid.png b/graphics/emotes/afraid.png
new file mode 100644
index 00000000..c01a1316
Binary files /dev/null and b/graphics/emotes/afraid.png differ
diff --git a/graphics/emotes/afraid.xml b/graphics/emotes/afraid.xml
new file mode 100644
index 00000000..004f8ee7
--- /dev/null
+++ b/graphics/emotes/afraid.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/alien.png b/graphics/emotes/alien.png
new file mode 100644
index 00000000..7e69b7b7
Binary files /dev/null and b/graphics/emotes/alien.png differ
diff --git a/graphics/emotes/alien.xml b/graphics/emotes/alien.xml
new file mode 100644
index 00000000..3ce5e859
--- /dev/null
+++ b/graphics/emotes/alien.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/angel.png b/graphics/emotes/angel.png
new file mode 100644
index 00000000..f2409ae6
Binary files /dev/null and b/graphics/emotes/angel.png differ
diff --git a/graphics/emotes/angel.xml b/graphics/emotes/angel.xml
new file mode 100644
index 00000000..142e0569
--- /dev/null
+++ b/graphics/emotes/angel.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/angry.png b/graphics/emotes/angry.png
new file mode 100644
index 00000000..642eab68
Binary files /dev/null and b/graphics/emotes/angry.png differ
diff --git a/graphics/emotes/angry.xml b/graphics/emotes/angry.xml
new file mode 100644
index 00000000..69d730fe
--- /dev/null
+++ b/graphics/emotes/angry.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/blah.png b/graphics/emotes/blah.png
new file mode 100644
index 00000000..28d7b34d
Binary files /dev/null and b/graphics/emotes/blah.png differ
diff --git a/graphics/emotes/blah.xml b/graphics/emotes/blah.xml
new file mode 100644
index 00000000..fb3142c4
--- /dev/null
+++ b/graphics/emotes/blah.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/blush.png b/graphics/emotes/blush.png
new file mode 100644
index 00000000..9163aa72
Binary files /dev/null and b/graphics/emotes/blush.png differ
diff --git a/graphics/emotes/blush.xml b/graphics/emotes/blush.xml
new file mode 100644
index 00000000..4c5c89f4
--- /dev/null
+++ b/graphics/emotes/blush.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/bored.png b/graphics/emotes/bored.png
new file mode 100644
index 00000000..bb5b4a23
Binary files /dev/null and b/graphics/emotes/bored.png differ
diff --git a/graphics/emotes/bored.xml b/graphics/emotes/bored.xml
new file mode 100644
index 00000000..a86735f6
--- /dev/null
+++ b/graphics/emotes/bored.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/bothered.png b/graphics/emotes/bothered.png
new file mode 100644
index 00000000..95fa406c
Binary files /dev/null and b/graphics/emotes/bothered.png differ
diff --git a/graphics/emotes/bothered.xml b/graphics/emotes/bothered.xml
new file mode 100644
index 00000000..bcbb2dbc
--- /dev/null
+++ b/graphics/emotes/bothered.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/cheerful.png b/graphics/emotes/cheerful.png
new file mode 100644
index 00000000..e3af4ad0
Binary files /dev/null and b/graphics/emotes/cheerful.png differ
diff --git a/graphics/emotes/cheerful.xml b/graphics/emotes/cheerful.xml
new file mode 100644
index 00000000..4bbaf847
--- /dev/null
+++ b/graphics/emotes/cheerful.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/clever.png b/graphics/emotes/clever.png
new file mode 100644
index 00000000..eec6c93f
Binary files /dev/null and b/graphics/emotes/clever.png differ
diff --git a/graphics/emotes/clever.xml b/graphics/emotes/clever.xml
new file mode 100644
index 00000000..8ec120a0
--- /dev/null
+++ b/graphics/emotes/clever.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/curious.png b/graphics/emotes/curious.png
new file mode 100644
index 00000000..e4f7d01a
Binary files /dev/null and b/graphics/emotes/curious.png differ
diff --git a/graphics/emotes/curious.xml b/graphics/emotes/curious.xml
new file mode 100644
index 00000000..9abb2e70
--- /dev/null
+++ b/graphics/emotes/curious.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/dead.png b/graphics/emotes/dead.png
new file mode 100644
index 00000000..c7d705df
Binary files /dev/null and b/graphics/emotes/dead.png differ
diff --git a/graphics/emotes/dead.xml b/graphics/emotes/dead.xml
new file mode 100644
index 00000000..eb90ec45
--- /dev/null
+++ b/graphics/emotes/dead.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/disgust.png b/graphics/emotes/disgust.png
new file mode 100644
index 00000000..a8f0e53b
Binary files /dev/null and b/graphics/emotes/disgust.png differ
diff --git a/graphics/emotes/disgust.xml b/graphics/emotes/disgust.xml
new file mode 100644
index 00000000..420c4b30
--- /dev/null
+++ b/graphics/emotes/disgust.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/empty.png b/graphics/emotes/empty.png
new file mode 100644
index 00000000..dd927891
Binary files /dev/null and b/graphics/emotes/empty.png differ
diff --git a/graphics/emotes/empty.xml b/graphics/emotes/empty.xml
new file mode 100644
index 00000000..7b5d6abb
--- /dev/null
+++ b/graphics/emotes/empty.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/evil.png b/graphics/emotes/evil.png
new file mode 100644
index 00000000..140d28e3
Binary files /dev/null and b/graphics/emotes/evil.png differ
diff --git a/graphics/emotes/evil.xml b/graphics/emotes/evil.xml
new file mode 100644
index 00000000..40fe50e5
--- /dev/null
+++ b/graphics/emotes/evil.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/facepalm.png b/graphics/emotes/facepalm.png
new file mode 100644
index 00000000..8fabb004
Binary files /dev/null and b/graphics/emotes/facepalm.png differ
diff --git a/graphics/emotes/facepalm.xml b/graphics/emotes/facepalm.xml
new file mode 100644
index 00000000..d1951633
--- /dev/null
+++ b/graphics/emotes/facepalm.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/grin.png b/graphics/emotes/grin.png
new file mode 100644
index 00000000..b0854b35
Binary files /dev/null and b/graphics/emotes/grin.png differ
diff --git a/graphics/emotes/grin.xml b/graphics/emotes/grin.xml
new file mode 100644
index 00000000..70765acc
--- /dev/null
+++ b/graphics/emotes/grin.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/halloween.png b/graphics/emotes/halloween.png
new file mode 100644
index 00000000..e3f4a8c3
Binary files /dev/null and b/graphics/emotes/halloween.png differ
diff --git a/graphics/emotes/halloween.xml b/graphics/emotes/halloween.xml
new file mode 100644
index 00000000..215548da
--- /dev/null
+++ b/graphics/emotes/halloween.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/happy.png b/graphics/emotes/happy.png
new file mode 100644
index 00000000..c06fc721
Binary files /dev/null and b/graphics/emotes/happy.png differ
diff --git a/graphics/emotes/happy.xml b/graphics/emotes/happy.xml
new file mode 100644
index 00000000..07dd24cf
--- /dev/null
+++ b/graphics/emotes/happy.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/headache.png b/graphics/emotes/headache.png
new file mode 100644
index 00000000..a776a96c
Binary files /dev/null and b/graphics/emotes/headache.png differ
diff --git a/graphics/emotes/headache.xml b/graphics/emotes/headache.xml
new file mode 100644
index 00000000..7eb7f8ac
--- /dev/null
+++ b/graphics/emotes/headache.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/heart.png b/graphics/emotes/heart.png
new file mode 100644
index 00000000..286fe48d
Binary files /dev/null and b/graphics/emotes/heart.png differ
diff --git a/graphics/emotes/heart.xml b/graphics/emotes/heart.xml
new file mode 100644
index 00000000..019e3b19
--- /dev/null
+++ b/graphics/emotes/heart.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/joyful.png b/graphics/emotes/joyful.png
new file mode 100644
index 00000000..a4842919
Binary files /dev/null and b/graphics/emotes/joyful.png differ
diff --git a/graphics/emotes/joyful.xml b/graphics/emotes/joyful.xml
new file mode 100644
index 00000000..ee06fe45
--- /dev/null
+++ b/graphics/emotes/joyful.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/laugh.png b/graphics/emotes/laugh.png
new file mode 100644
index 00000000..fc749edf
Binary files /dev/null and b/graphics/emotes/laugh.png differ
diff --git a/graphics/emotes/laugh.xml b/graphics/emotes/laugh.xml
new file mode 100644
index 00000000..a670966b
--- /dev/null
+++ b/graphics/emotes/laugh.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/love.png b/graphics/emotes/love.png
new file mode 100644
index 00000000..8d685d27
Binary files /dev/null and b/graphics/emotes/love.png differ
diff --git a/graphics/emotes/love.xml b/graphics/emotes/love.xml
new file mode 100644
index 00000000..2cb5ff49
--- /dev/null
+++ b/graphics/emotes/love.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/melancholy.png b/graphics/emotes/melancholy.png
new file mode 100644
index 00000000..e629a748
Binary files /dev/null and b/graphics/emotes/melancholy.png differ
diff --git a/graphics/emotes/melancholy.xml b/graphics/emotes/melancholy.xml
new file mode 100644
index 00000000..b86b06b4
--- /dev/null
+++ b/graphics/emotes/melancholy.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/meow.png b/graphics/emotes/meow.png
new file mode 100644
index 00000000..54ae72bc
Binary files /dev/null and b/graphics/emotes/meow.png differ
diff --git a/graphics/emotes/meow.xml b/graphics/emotes/meow.xml
new file mode 100644
index 00000000..0327464f
--- /dev/null
+++ b/graphics/emotes/meow.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/money.png b/graphics/emotes/money.png
new file mode 100644
index 00000000..9a9ae3f3
Binary files /dev/null and b/graphics/emotes/money.png differ
diff --git a/graphics/emotes/money.xml b/graphics/emotes/money.xml
new file mode 100644
index 00000000..7773b4c9
--- /dev/null
+++ b/graphics/emotes/money.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/pain.png b/graphics/emotes/pain.png
new file mode 100644
index 00000000..c5af18ab
Binary files /dev/null and b/graphics/emotes/pain.png differ
diff --git a/graphics/emotes/pain.xml b/graphics/emotes/pain.xml
new file mode 100644
index 00000000..c20710be
--- /dev/null
+++ b/graphics/emotes/pain.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/perturbed.png b/graphics/emotes/perturbed.png
new file mode 100644
index 00000000..736893fe
Binary files /dev/null and b/graphics/emotes/perturbed.png differ
diff --git a/graphics/emotes/perturbed.xml b/graphics/emotes/perturbed.xml
new file mode 100644
index 00000000..3b72327b
--- /dev/null
+++ b/graphics/emotes/perturbed.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/rest.png b/graphics/emotes/rest.png
new file mode 100644
index 00000000..106aa1c8
Binary files /dev/null and b/graphics/emotes/rest.png differ
diff --git a/graphics/emotes/rest.xml b/graphics/emotes/rest.xml
new file mode 100644
index 00000000..6198c87b
--- /dev/null
+++ b/graphics/emotes/rest.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/sad.png b/graphics/emotes/sad.png
new file mode 100644
index 00000000..b68eefbf
Binary files /dev/null and b/graphics/emotes/sad.png differ
diff --git a/graphics/emotes/sad.xml b/graphics/emotes/sad.xml
new file mode 100644
index 00000000..10bb6b3c
--- /dev/null
+++ b/graphics/emotes/sad.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/shy.png b/graphics/emotes/shy.png
new file mode 100644
index 00000000..c81ebc27
Binary files /dev/null and b/graphics/emotes/shy.png differ
diff --git a/graphics/emotes/shy.xml b/graphics/emotes/shy.xml
new file mode 100644
index 00000000..dcd5e94e
--- /dev/null
+++ b/graphics/emotes/shy.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/sleep.png b/graphics/emotes/sleep.png
new file mode 100644
index 00000000..16a18d5d
Binary files /dev/null and b/graphics/emotes/sleep.png differ
diff --git a/graphics/emotes/sleep.xml b/graphics/emotes/sleep.xml
new file mode 100644
index 00000000..8892e0de
--- /dev/null
+++ b/graphics/emotes/sleep.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/speech.png b/graphics/emotes/speech.png
new file mode 100644
index 00000000..bc726d6c
Binary files /dev/null and b/graphics/emotes/speech.png differ
diff --git a/graphics/emotes/speech.xml b/graphics/emotes/speech.xml
new file mode 100644
index 00000000..eeff9ccd
--- /dev/null
+++ b/graphics/emotes/speech.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/surprise.png b/graphics/emotes/surprise.png
new file mode 100644
index 00000000..e841463f
Binary files /dev/null and b/graphics/emotes/surprise.png differ
diff --git a/graphics/emotes/surprise.xml b/graphics/emotes/surprise.xml
new file mode 100644
index 00000000..4829b53f
--- /dev/null
+++ b/graphics/emotes/surprise.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/suspicious.png b/graphics/emotes/suspicious.png
new file mode 100644
index 00000000..27e72e7c
Binary files /dev/null and b/graphics/emotes/suspicious.png differ
diff --git a/graphics/emotes/suspicious.xml b/graphics/emotes/suspicious.xml
new file mode 100644
index 00000000..9d40f892
--- /dev/null
+++ b/graphics/emotes/suspicious.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/swear.png b/graphics/emotes/swear.png
new file mode 100644
index 00000000..3b6fcc74
Binary files /dev/null and b/graphics/emotes/swear.png differ
diff --git a/graphics/emotes/swear.xml b/graphics/emotes/swear.xml
new file mode 100644
index 00000000..66eeab6c
--- /dev/null
+++ b/graphics/emotes/swear.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/tears.png b/graphics/emotes/tears.png
new file mode 100644
index 00000000..806d37c4
Binary files /dev/null and b/graphics/emotes/tears.png differ
diff --git a/graphics/emotes/tears.xml b/graphics/emotes/tears.xml
new file mode 100644
index 00000000..5aeb1eff
--- /dev/null
+++ b/graphics/emotes/tears.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/tongue.png b/graphics/emotes/tongue.png
new file mode 100644
index 00000000..46da670d
Binary files /dev/null and b/graphics/emotes/tongue.png differ
diff --git a/graphics/emotes/tongue.xml b/graphics/emotes/tongue.xml
new file mode 100644
index 00000000..9993fd73
--- /dev/null
+++ b/graphics/emotes/tongue.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/troll.png b/graphics/emotes/troll.png
new file mode 100644
index 00000000..bb27e8e2
Binary files /dev/null and b/graphics/emotes/troll.png differ
diff --git a/graphics/emotes/troll.xml b/graphics/emotes/troll.xml
new file mode 100644
index 00000000..6147619d
--- /dev/null
+++ b/graphics/emotes/troll.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/upset.png b/graphics/emotes/upset.png
new file mode 100644
index 00000000..674fc1da
Binary files /dev/null and b/graphics/emotes/upset.png differ
diff --git a/graphics/emotes/upset.xml b/graphics/emotes/upset.xml
new file mode 100644
index 00000000..74d820c1
--- /dev/null
+++ b/graphics/emotes/upset.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/vicious.png b/graphics/emotes/vicious.png
new file mode 100644
index 00000000..1ee6fe29
Binary files /dev/null and b/graphics/emotes/vicious.png differ
diff --git a/graphics/emotes/vicious.xml b/graphics/emotes/vicious.xml
new file mode 100644
index 00000000..bbc0e32b
--- /dev/null
+++ b/graphics/emotes/vicious.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/emotes/wink.png b/graphics/emotes/wink.png
new file mode 100644
index 00000000..01037683
Binary files /dev/null and b/graphics/emotes/wink.png differ
diff --git a/graphics/emotes/wink.xml b/graphics/emotes/wink.xml
new file mode 100644
index 00000000..bd56b912
--- /dev/null
+++ b/graphics/emotes/wink.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/images/ambient/aethyr.jpg b/graphics/images/ambient/aethyr.jpg
new file mode 100644
index 00000000..359c0535
Binary files /dev/null and b/graphics/images/ambient/aethyr.jpg differ
diff --git a/graphics/images/ambient/cloud.png b/graphics/images/ambient/cloud.png
new file mode 100644
index 00000000..c914b466
Binary files /dev/null and b/graphics/images/ambient/cloud.png differ
diff --git a/graphics/images/ambient/darkness1.png b/graphics/images/ambient/darkness1.png
new file mode 100644
index 00000000..5e9bc724
Binary files /dev/null and b/graphics/images/ambient/darkness1.png differ
diff --git a/graphics/images/ambient/darkness2.png b/graphics/images/ambient/darkness2.png
new file mode 100644
index 00000000..dba9b9c6
Binary files /dev/null and b/graphics/images/ambient/darkness2.png differ
diff --git a/graphics/images/ambient/desertclouds.png b/graphics/images/ambient/desertclouds.png
new file mode 100644
index 00000000..b95ad6c4
Binary files /dev/null and b/graphics/images/ambient/desertclouds.png differ
diff --git a/graphics/images/doomsday.png b/graphics/images/doomsday.png
index 838ff74d..e0f3cdd4 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 4f8fec08..4af40bba 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
new file mode 100644
index 00000000..ee52d0a7
Binary files /dev/null and b/graphics/images/login_wallpaper_fall.png differ
diff --git a/graphics/images/login_wallpaper_spring.png b/graphics/images/login_wallpaper_spring.png
new file mode 100644
index 00000000..7cf4b43a
Binary files /dev/null and b/graphics/images/login_wallpaper_spring.png differ
diff --git a/graphics/images/login_wallpaper_summer.png b/graphics/images/login_wallpaper_summer.png
new file mode 100644
index 00000000..f27371f8
Binary files /dev/null and b/graphics/images/login_wallpaper_summer.png differ
diff --git a/graphics/images/login_wallpaper_winter.png b/graphics/images/login_wallpaper_winter.png
new file mode 100644
index 00000000..90995318
Binary files /dev/null and b/graphics/images/login_wallpaper_winter.png differ
diff --git a/graphics/items/equipment/ammo/cursedarrow.png b/graphics/items/equipment/ammo/cursedarrow.png
new file mode 100644
index 00000000..cef5eca8
Binary files /dev/null and b/graphics/items/equipment/ammo/cursedarrow.png differ
diff --git a/graphics/items/equipment/ammo/silverarrow.png b/graphics/items/equipment/ammo/silverarrow.png
new file mode 100644
index 00000000..70665766
Binary files /dev/null and b/graphics/items/equipment/ammo/silverarrow.png differ
diff --git a/graphics/items/equipment/ammo/thornarrow.png b/graphics/items/equipment/ammo/thornarrow.png
new file mode 100644
index 00000000..2a25757c
Binary files /dev/null and b/graphics/items/equipment/ammo/thornarrow.png differ
diff --git a/graphics/items/equipment/amulets/angel-wings.png b/graphics/items/equipment/amulets/angel-wings.png
new file mode 100644
index 00000000..17a5b710
Binary files /dev/null and b/graphics/items/equipment/amulets/angel-wings.png differ
diff --git a/graphics/items/equipment/amulets/assassin-amulet.png b/graphics/items/equipment/amulets/assassin-amulet.png
new file mode 100644
index 00000000..bf7caae7
Binary files /dev/null and b/graphics/items/equipment/amulets/assassin-amulet.png differ
diff --git a/graphics/items/equipment/charms/enchanter.png b/graphics/items/equipment/amulets/enchanter.png
similarity index 100%
rename from graphics/items/equipment/charms/enchanter.png
rename to graphics/items/equipment/amulets/enchanter.png
diff --git a/graphics/items/equipment/charms/fourleaf-amulet.png b/graphics/items/equipment/amulets/fourleaf-amulet.png
similarity index 100%
rename from graphics/items/equipment/charms/fourleaf-amulet.png
rename to graphics/items/equipment/amulets/fourleaf-amulet.png
diff --git a/graphics/items/equipment/amulets/gmamulet.png b/graphics/items/equipment/amulets/gmamulet.png
new file mode 100644
index 00000000..0724945b
Binary files /dev/null and b/graphics/items/equipment/amulets/gmamulet.png differ
diff --git a/graphics/items/equipment/amulets/manapearl.png b/graphics/items/equipment/amulets/manapearl.png
new file mode 100644
index 00000000..16dad06a
Binary files /dev/null and b/graphics/items/equipment/amulets/manapearl.png differ
diff --git a/graphics/items/equipment/charms/assassin-amulet.png b/graphics/items/equipment/charms/assassin-amulet.png
deleted file mode 100644
index e0a496a0..00000000
Binary files a/graphics/items/equipment/charms/assassin-amulet.png and /dev/null differ
diff --git a/graphics/items/equipment/charms/darktalisman.png b/graphics/items/equipment/charms/darktalisman.png
new file mode 100644
index 00000000..f6ed3ca2
Binary files /dev/null and b/graphics/items/equipment/charms/darktalisman.png differ
diff --git a/graphics/items/equipment/charms/manapearl.png b/graphics/items/equipment/charms/manapearl.png
deleted file mode 100644
index 2965777f..00000000
Binary files a/graphics/items/equipment/charms/manapearl.png and /dev/null differ
diff --git a/graphics/items/equipment/head/assassin-mask.png b/graphics/items/equipment/head/assassin-mask.png
index e2ed73b2..16b76617 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
new file mode 100644
index 00000000..71ec7e10
Binary files /dev/null and b/graphics/items/equipment/head/headslime.png differ
diff --git a/graphics/items/equipment/head/knighthelm-dyable.png b/graphics/items/equipment/head/knighthelm-dyable.png
new file mode 100644
index 00000000..1c5db321
Binary files /dev/null and b/graphics/items/equipment/head/knighthelm-dyable.png differ
diff --git a/graphics/items/equipment/head/knit-cap.png b/graphics/items/equipment/head/knit-cap.png
index ceafba2e..ef0b8d21 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
new file mode 100644
index 00000000..64d8ccc3
Binary files /dev/null and b/graphics/items/equipment/head/leprechaunhead.png differ
diff --git a/graphics/items/equipment/head/rainshroomhat.png b/graphics/items/equipment/head/rainshroomhat.png
new file mode 100644
index 00000000..69c462e0
Binary files /dev/null and b/graphics/items/equipment/head/rainshroomhat.png differ
diff --git a/graphics/items/equipment/head/skullmask-dyable.png b/graphics/items/equipment/head/skullmask-dyable.png
new file mode 100644
index 00000000..13c6adfd
Binary files /dev/null and b/graphics/items/equipment/head/skullmask-dyable.png differ
diff --git a/graphics/items/equipment/head/snowshroomhat.png b/graphics/items/equipment/head/snowshroomhat.png
new file mode 100644
index 00000000..6799dc36
Binary files /dev/null and b/graphics/items/equipment/head/snowshroomhat.png differ
diff --git a/graphics/items/equipment/head/sunshroomhat.png b/graphics/items/equipment/head/sunshroomhat.png
new file mode 100644
index 00000000..4166ed53
Binary files /dev/null and b/graphics/items/equipment/head/sunshroomhat.png differ
diff --git a/graphics/items/equipment/head/wickedmushroomhat.png b/graphics/items/equipment/head/wickedmushroomhat.png
new file mode 100644
index 00000000..e22c057d
Binary files /dev/null and b/graphics/items/equipment/head/wickedmushroomhat.png differ
diff --git a/graphics/items/equipment/head/witch-doctor-mask.png b/graphics/items/equipment/head/witch-doctor-mask.png
index f2a641d1..fd3ea418 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 81ed5805..f47655f2 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
new file mode 100644
index 00000000..6cbd8efa
Binary files /dev/null and b/graphics/items/equipment/shield/steel-dyable.png differ
diff --git a/graphics/items/equipment/weapon/bow-life.png b/graphics/items/equipment/weapon/bow-life.png
new file mode 100644
index 00000000..6650e0bc
Binary files /dev/null and b/graphics/items/equipment/weapon/bow-life.png differ
diff --git a/graphics/items/equipment/weapon/revolver.png b/graphics/items/equipment/weapon/flintlock.png
similarity index 100%
rename from graphics/items/equipment/weapon/revolver.png
rename to graphics/items/equipment/weapon/flintlock.png
diff --git a/graphics/items/equipment/weapon/floydbook.png b/graphics/items/equipment/weapon/floydbook.png
new file mode 100644
index 00000000..46e9f40f
Binary files /dev/null and b/graphics/items/equipment/weapon/floydbook.png differ
diff --git a/graphics/items/equipment/weapon/rainerang.png b/graphics/items/equipment/weapon/rainerang.png
new file mode 100644
index 00000000..385951e4
Binary files /dev/null and b/graphics/items/equipment/weapon/rainerang.png differ
diff --git a/graphics/items/equipment/weapon/sword-dragon.png b/graphics/items/equipment/weapon/sword-dragon.png
new file mode 100644
index 00000000..ca3147eb
Binary files /dev/null and b/graphics/items/equipment/weapon/sword-dragon.png differ
diff --git a/graphics/items/equipment/weapon/dagger-shortsword.png b/graphics/items/equipment/weapon/sword-shortsword.png
similarity index 100%
rename from graphics/items/equipment/weapon/dagger-shortsword.png
rename to graphics/items/equipment/weapon/sword-shortsword.png
diff --git a/graphics/items/generic/beeswax.png b/graphics/items/generic/beeswax.png
new file mode 100644
index 00000000..ffa9763c
Binary files /dev/null and b/graphics/items/generic/beeswax.png differ
diff --git a/graphics/items/generic/blackscorpionclaw.png b/graphics/items/generic/blackscorpionclaw.png
new file mode 100644
index 00000000..889bf332
Binary files /dev/null and b/graphics/items/generic/blackscorpionclaw.png differ
diff --git a/graphics/items/generic/blossom-wonderwoodling.png b/graphics/items/generic/blossom-wonderwoodling.png
new file mode 100644
index 00000000..3bfd6ac0
Binary files /dev/null and b/graphics/items/generic/blossom-wonderwoodling.png differ
diff --git a/graphics/items/generic/bottle-moon.png b/graphics/items/generic/bottle-moon.png
new file mode 100644
index 00000000..4f8efe6f
Binary files /dev/null and b/graphics/items/generic/bottle-moon.png differ
diff --git a/graphics/items/generic/brick-a.png b/graphics/items/generic/brick-a.png
new file mode 100644
index 00000000..c84377ec
Binary files /dev/null and b/graphics/items/generic/brick-a.png differ
diff --git a/graphics/items/generic/bromenal-droplet.png b/graphics/items/generic/bromenal-droplet.png
new file mode 100644
index 00000000..74955530
Binary files /dev/null and b/graphics/items/generic/bromenal-droplet.png differ
diff --git a/graphics/items/generic/butterfly.png b/graphics/items/generic/butterfly.png
new file mode 100644
index 00000000..e429af26
Binary files /dev/null and b/graphics/items/generic/butterfly.png differ
diff --git a/graphics/items/generic/carrot-legendary.png b/graphics/items/generic/carrot-legendary.png
new file mode 100644
index 00000000..dd054770
Binary files /dev/null and b/graphics/items/generic/carrot-legendary.png differ
diff --git a/graphics/items/generic/carrot.png b/graphics/items/generic/carrot.png
deleted file mode 100644
index c61f58f7..00000000
Binary files a/graphics/items/generic/carrot.png and /dev/null differ
diff --git a/graphics/items/generic/charcoal.png b/graphics/items/generic/charcoal.png
new file mode 100644
index 00000000..87819322
Binary files /dev/null and b/graphics/items/generic/charcoal.png differ
diff --git a/graphics/items/generic/clover-drawing.png b/graphics/items/generic/clover-drawing.png
new file mode 100644
index 00000000..dbff7d5e
Binary files /dev/null and b/graphics/items/generic/clover-drawing.png differ
diff --git a/graphics/items/generic/crocclaw.png b/graphics/items/generic/crocclaw.png
new file mode 100644
index 00000000..c44eebb4
Binary files /dev/null and b/graphics/items/generic/crocclaw.png differ
diff --git a/graphics/items/generic/crystal-black-quartz.png b/graphics/items/generic/crystal-black-quartz.png
new file mode 100644
index 00000000..4fe58a5d
Binary files /dev/null and b/graphics/items/generic/crystal-black-quartz.png differ
diff --git a/graphics/items/generic/crystal-crozenite.png b/graphics/items/generic/crystal-crozenite.png
new file mode 100644
index 00000000..bfde775a
Binary files /dev/null and b/graphics/items/generic/crystal-crozenite.png differ
diff --git a/graphics/items/generic/crystal-mountain.png b/graphics/items/generic/crystal-mountain.png
new file mode 100644
index 00000000..810f5f1a
Binary files /dev/null and b/graphics/items/generic/crystal-mountain.png differ
diff --git a/graphics/items/generic/crystal-pink-quartz.png b/graphics/items/generic/crystal-pink-quartz.png
new file mode 100644
index 00000000..623e401f
Binary files /dev/null and b/graphics/items/generic/crystal-pink-quartz.png differ
diff --git a/graphics/items/generic/crystalized-dragon-blood.png b/graphics/items/generic/crystalized-dragon-blood.png
new file mode 100644
index 00000000..355dbf22
Binary files /dev/null and b/graphics/items/generic/crystalized-dragon-blood.png differ
diff --git a/graphics/items/generic/dragon-horn.png b/graphics/items/generic/dragon-horn.png
new file mode 100644
index 00000000..1ca80fbe
Binary files /dev/null and b/graphics/items/generic/dragon-horn.png differ
diff --git a/graphics/items/generic/dragonscales.png b/graphics/items/generic/dragonscales.png
new file mode 100644
index 00000000..272a6edc
Binary files /dev/null and b/graphics/items/generic/dragonscales.png differ
diff --git a/graphics/items/generic/duckfeather.png b/graphics/items/generic/duckfeather.png
new file mode 100644
index 00000000..c1a88413
Binary files /dev/null and b/graphics/items/generic/duckfeather.png differ
diff --git a/graphics/items/generic/feather-a.png b/graphics/items/generic/feather-a.png
new file mode 100644
index 00000000..b758d23f
Binary files /dev/null and b/graphics/items/generic/feather-a.png differ
diff --git a/graphics/items/generic/flour.png b/graphics/items/generic/flour.png
new file mode 100644
index 00000000..4b19f5e8
Binary files /dev/null and b/graphics/items/generic/flour.png differ
diff --git a/graphics/items/generic/glass-shards.png b/graphics/items/generic/glass-shards.png
new file mode 100644
index 00000000..e749aaff
Binary files /dev/null and b/graphics/items/generic/glass-shards.png differ
diff --git a/graphics/items/generic/golden-tooth.png b/graphics/items/generic/golden-tooth.png
new file mode 100644
index 00000000..e02d3ba9
Binary files /dev/null and b/graphics/items/generic/golden-tooth.png differ
diff --git a/graphics/items/generic/hay.png b/graphics/items/generic/hay.png
new file mode 100644
index 00000000..40d6cf8a
Binary files /dev/null and b/graphics/items/generic/hay.png differ
diff --git a/graphics/items/generic/honeycomb.png b/graphics/items/generic/honeycomb.png
new file mode 100644
index 00000000..14cb77e7
Binary files /dev/null and b/graphics/items/generic/honeycomb.png differ
diff --git a/graphics/items/generic/mushroomspores.png b/graphics/items/generic/mushroomspores.png
new file mode 100644
index 00000000..9e034349
Binary files /dev/null and b/graphics/items/generic/mushroomspores.png differ
diff --git a/graphics/items/generic/naftalin.png b/graphics/items/generic/naftalin.png
new file mode 100644
index 00000000..0c3de3d4
Binary files /dev/null and b/graphics/items/generic/naftalin.png differ
diff --git a/graphics/items/generic/ore.png b/graphics/items/generic/ore.png
new file mode 100644
index 00000000..46a552b1
Binary files /dev/null and b/graphics/items/generic/ore.png differ
diff --git a/graphics/items/generic/pink-flower-seed.png b/graphics/items/generic/pink-flower-seed.png
new file mode 100644
index 00000000..6f2c0d44
Binary files /dev/null and b/graphics/items/generic/pink-flower-seed.png differ
diff --git a/graphics/items/generic/raindrop.png b/graphics/items/generic/raindrop.png
new file mode 100644
index 00000000..19f6a0d4
Binary files /dev/null and b/graphics/items/generic/raindrop.png differ
diff --git a/graphics/items/generic/rattotail.png b/graphics/items/generic/rattotail.png
new file mode 100644
index 00000000..d0ca02ce
Binary files /dev/null and b/graphics/items/generic/rattotail.png differ
diff --git a/graphics/items/generic/rattoteeth.png b/graphics/items/generic/rattoteeth.png
new file mode 100644
index 00000000..73ffbfb4
Binary files /dev/null and b/graphics/items/generic/rattoteeth.png differ
diff --git a/graphics/items/generic/redscorpionclaw.png b/graphics/items/generic/redscorpionclaw.png
new file mode 100644
index 00000000..2ca06384
Binary files /dev/null and b/graphics/items/generic/redscorpionclaw.png differ
diff --git a/graphics/items/generic/scorpionclaw.png b/graphics/items/generic/scorpionclaw.png
new file mode 100644
index 00000000..ce6ace6c
Binary files /dev/null and b/graphics/items/generic/scorpionclaw.png differ
diff --git a/graphics/items/generic/seed-wonderwoodling.png b/graphics/items/generic/seed-wonderwoodling.png
new file mode 100644
index 00000000..0f99dfad
Binary files /dev/null and b/graphics/items/generic/seed-wonderwoodling.png differ
diff --git a/graphics/items/generic/seeds-dyable.png b/graphics/items/generic/seeds-dyable.png
new file mode 100644
index 00000000..b0a05d32
Binary files /dev/null and b/graphics/items/generic/seeds-dyable.png differ
diff --git a/graphics/items/generic/shipkey.png b/graphics/items/generic/shipkey.png
new file mode 100644
index 00000000..1e2a85ef
Binary files /dev/null and b/graphics/items/generic/shipkey.png differ
diff --git a/graphics/items/generic/snowflake.png b/graphics/items/generic/snowflake.png
new file mode 100644
index 00000000..f4b47ffc
Binary files /dev/null and b/graphics/items/generic/snowflake.png differ
diff --git a/graphics/items/generic/squichyclaws.png b/graphics/items/generic/squichyclaws.png
new file mode 100644
index 00000000..89dfe049
Binary files /dev/null and b/graphics/items/generic/squichyclaws.png differ
diff --git a/graphics/items/generic/stone-a.png b/graphics/items/generic/stone-a.png
new file mode 100644
index 00000000..18bc06d1
Binary files /dev/null and b/graphics/items/generic/stone-a.png differ
diff --git a/graphics/items/generic/straw.png b/graphics/items/generic/straw.png
new file mode 100644
index 00000000..ec8aed19
Binary files /dev/null and b/graphics/items/generic/straw.png differ
diff --git a/graphics/items/generic/tortugashell.png b/graphics/items/generic/tortugashell.png
new file mode 100644
index 00000000..faca1a07
Binary files /dev/null and b/graphics/items/generic/tortugashell.png differ
diff --git a/graphics/items/generic/tortugashellfragment.png b/graphics/items/generic/tortugashellfragment.png
new file mode 100644
index 00000000..db713772
Binary files /dev/null and b/graphics/items/generic/tortugashellfragment.png differ
diff --git a/graphics/items/generic/wonder-wood.png b/graphics/items/generic/wonder-wood.png
new file mode 100644
index 00000000..7092bf59
Binary files /dev/null and b/graphics/items/generic/wonder-wood.png differ
diff --git a/graphics/items/use/food/bird-big-egg-a.png b/graphics/items/use/food/bird-big-egg-a.png
new file mode 100644
index 00000000..f40293ce
Binary files /dev/null and b/graphics/items/use/food/bird-big-egg-a.png differ
diff --git a/graphics/items/use/food/bird-egg-a.png b/graphics/items/use/food/bird-egg-a.png
new file mode 100644
index 00000000..cca44dcf
Binary files /dev/null and b/graphics/items/use/food/bird-egg-a.png differ
diff --git a/graphics/items/use/food/bread.png b/graphics/items/use/food/bread.png
new file mode 100644
index 00000000..cb203d05
Binary files /dev/null and b/graphics/items/use/food/bread.png differ
diff --git a/graphics/items/use/food/carrot.png b/graphics/items/use/food/carrot.png
new file mode 100644
index 00000000..e0208f61
Binary files /dev/null and b/graphics/items/use/food/carrot.png differ
diff --git a/graphics/items/use/food/cheese.png b/graphics/items/use/food/cheese.png
new file mode 100644
index 00000000..1ee2c01a
Binary files /dev/null and b/graphics/items/use/food/cheese.png differ
diff --git a/graphics/items/use/food/chocolatebiscuit.png b/graphics/items/use/food/chocolatebiscuit.png
new file mode 100644
index 00000000..14eb803a
Binary files /dev/null and b/graphics/items/use/food/chocolatebiscuit.png differ
diff --git a/graphics/items/use/food/chocolatebunny.png b/graphics/items/use/food/chocolatebunny.png
new file mode 100644
index 00000000..79faf6f6
Binary files /dev/null and b/graphics/items/use/food/chocolatebunny.png differ
diff --git a/graphics/items/use/food/deliciouscookie.png b/graphics/items/use/food/deliciouscookie.png
new file mode 100644
index 00000000..6f5e78a8
Binary files /dev/null and b/graphics/items/use/food/deliciouscookie.png differ
diff --git a/graphics/items/use/food/dragonfruit.png b/graphics/items/use/food/dragonfruit.png
new file mode 100644
index 00000000..e54bd672
Binary files /dev/null and b/graphics/items/use/food/dragonfruit.png differ
diff --git a/graphics/items/use/food/duckegg.png b/graphics/items/use/food/duckegg.png
new file mode 100644
index 00000000..1ef788be
Binary files /dev/null and b/graphics/items/use/food/duckegg.png differ
diff --git a/graphics/items/use/food/fruit-salad.png b/graphics/items/use/food/fruit-salad.png
new file mode 100644
index 00000000..ab8f3f04
Binary files /dev/null and b/graphics/items/use/food/fruit-salad.png differ
diff --git a/graphics/items/use/food/fungus.png b/graphics/items/use/food/fungus.png
new file mode 100644
index 00000000..18b8fb5f
Binary files /dev/null and b/graphics/items/use/food/fungus.png differ
diff --git a/graphics/items/use/food/halfcroconut.png b/graphics/items/use/food/halfcroconut.png
new file mode 100644
index 00000000..85364e26
Binary files /dev/null and b/graphics/items/use/food/halfcroconut.png differ
diff --git a/graphics/items/use/food/lettuceleaf.png b/graphics/items/use/food/lettuceleaf.png
new file mode 100644
index 00000000..09ae053d
Binary files /dev/null and b/graphics/items/use/food/lettuceleaf.png differ
diff --git a/graphics/items/use/food/manana.png b/graphics/items/use/food/manana.png
new file mode 100644
index 00000000..3da632fe
Binary files /dev/null and b/graphics/items/use/food/manana.png differ
diff --git a/graphics/items/use/food/piberries.png b/graphics/items/use/food/piberries.png
new file mode 100644
index 00000000..c34f4e85
Binary files /dev/null and b/graphics/items/use/food/piberries.png differ
diff --git a/graphics/items/use/food/potatoz.png b/graphics/items/use/food/potatoz.png
new file mode 100644
index 00000000..bcb12631
Binary files /dev/null and b/graphics/items/use/food/potatoz.png differ
diff --git a/graphics/items/use/food/pumpkin.png b/graphics/items/use/food/pumpkin.png
new file mode 100644
index 00000000..3df097cd
Binary files /dev/null and b/graphics/items/use/food/pumpkin.png differ
diff --git a/graphics/items/use/food/pumpkinjuice.png b/graphics/items/use/food/pumpkinjuice.png
new file mode 100644
index 00000000..d0f7a15c
Binary files /dev/null and b/graphics/items/use/food/pumpkinjuice.png differ
diff --git a/graphics/items/use/food/rum.png b/graphics/items/use/food/rum.png
new file mode 100644
index 00000000..c6087107
Binary files /dev/null and b/graphics/items/use/food/rum.png differ
diff --git a/graphics/items/use/food/sauerkraut.png b/graphics/items/use/food/sauerkraut.png
new file mode 100644
index 00000000..3d4028d2
Binary files /dev/null and b/graphics/items/use/food/sauerkraut.png differ
diff --git a/graphics/items/use/others/anchor-stone-anchored.png b/graphics/items/use/others/anchor-stone-anchored.png
new file mode 100644
index 00000000..ec0626a0
Binary files /dev/null and b/graphics/items/use/others/anchor-stone-anchored.png differ
diff --git a/graphics/items/use/others/anchor-stone.png b/graphics/items/use/others/anchor-stone.png
new file mode 100644
index 00000000..ee9c4d4e
Binary files /dev/null and b/graphics/items/use/others/anchor-stone.png differ
diff --git a/graphics/items/use/others/arrow_bundle.png b/graphics/items/use/others/arrow_bundle.png
new file mode 100644
index 00000000..86583716
Binary files /dev/null and b/graphics/items/use/others/arrow_bundle.png differ
diff --git a/graphics/items/use/others/croconut.png b/graphics/items/use/others/croconut.png
new file mode 100644
index 00000000..f939589a
Binary files /dev/null and b/graphics/items/use/others/croconut.png differ
diff --git a/graphics/items/use/others/lightning-orb.png b/graphics/items/use/others/lightning-orb.png
new file mode 100644
index 00000000..639527fe
Binary files /dev/null and b/graphics/items/use/others/lightning-orb.png differ
diff --git a/graphics/items/use/others/rubberducky.png b/graphics/items/use/others/rubberducky.png
new file mode 100644
index 00000000..d490627f
Binary files /dev/null and b/graphics/items/use/others/rubberducky.png differ
diff --git a/graphics/items/use/others/shovel-legendary.png b/graphics/items/use/others/shovel-legendary.png
new file mode 100644
index 00000000..3c63ecf4
Binary files /dev/null and b/graphics/items/use/others/shovel-legendary.png differ
diff --git a/graphics/items/use/others/shovel.png b/graphics/items/use/others/shovel.png
new file mode 100644
index 00000000..4edf3a5e
Binary files /dev/null and b/graphics/items/use/others/shovel.png differ
diff --git a/graphics/items/use/others/treasuremap-legendary.png b/graphics/items/use/others/treasuremap-legendary.png
new file mode 100644
index 00000000..04c54567
Binary files /dev/null and b/graphics/items/use/others/treasuremap-legendary.png differ
diff --git a/graphics/items/use/others/treasuremap.png b/graphics/items/use/others/treasuremap.png
new file mode 100644
index 00000000..6c65dd81
Binary files /dev/null and b/graphics/items/use/others/treasuremap.png differ
diff --git a/graphics/items/use/others/treasuremap2.png b/graphics/items/use/others/treasuremap2.png
new file mode 100644
index 00000000..d303244d
Binary files /dev/null and b/graphics/items/use/others/treasuremap2.png differ
diff --git a/graphics/items/use/potions/g.png b/graphics/items/use/potions/g.png
new file mode 100644
index 00000000..1fb4f883
Binary files /dev/null and b/graphics/items/use/potions/g.png differ
diff --git a/graphics/items/use/scrolls/scroll-alizarin.png b/graphics/items/use/scrolls/scroll-alizarin.png
new file mode 100644
index 00000000..d3375bad
Binary files /dev/null and b/graphics/items/use/scrolls/scroll-alizarin.png differ
diff --git a/graphics/items/use/scrolls/scroll-cobalt.png b/graphics/items/use/scrolls/scroll-cobalt.png
new file mode 100644
index 00000000..807c0e99
Binary files /dev/null and b/graphics/items/use/scrolls/scroll-cobalt.png differ
diff --git a/graphics/items/use/scrolls/scroll-gamboge.png b/graphics/items/use/scrolls/scroll-gamboge.png
new file mode 100644
index 00000000..f29b7dd6
Binary files /dev/null and b/graphics/items/use/scrolls/scroll-gamboge.png differ
diff --git a/graphics/items/use/scrolls/scroll-joy.png b/graphics/items/use/scrolls/scroll-joy.png
new file mode 100644
index 00000000..f1768427
Binary files /dev/null and b/graphics/items/use/scrolls/scroll-joy.png differ
diff --git a/graphics/items/use/scrolls/scroll-mauve.png b/graphics/items/use/scrolls/scroll-mauve.png
new file mode 100644
index 00000000..c4782a28
Binary files /dev/null and b/graphics/items/use/scrolls/scroll-mauve.png differ
diff --git a/graphics/items/use/scrolls/scroll-shadow.png b/graphics/items/use/scrolls/scroll-shadow.png
new file mode 100644
index 00000000..9e2ede2c
Binary files /dev/null and b/graphics/items/use/scrolls/scroll-shadow.png differ
diff --git a/graphics/minimaps/001-2.png b/graphics/minimaps/001-2.png
index 4fbc5ef4..06ed9fca 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 882ab481..c2da82ad 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 70e5337a..f380134d 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 7bd3fe0a..05538347 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 2df74ddb..a9515387 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 aaa9c1dc..05bcc1c6 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 eeefbc93..2a45a009 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 40dcd329..7572ce46 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 9551395a..f5db0731 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 0baefbdd..dca6c0e9 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 036ca741..ebb41fe6 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 2d1699ff..5cfeb70c 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 8f80787c..c662e3c3 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 cf6c3bbf..3ebad644 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 4adc15c7..c63cb470 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 72f89efd..e718db72 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 b96f7443..7063ef44 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 efcc4428..389b6428 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 2e778ba5..c1a4015e 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
new file mode 100644
index 00000000..0339a1e5
Binary files /dev/null and b/graphics/minimaps/080-1.png differ
diff --git a/graphics/minimaps/080-3.png b/graphics/minimaps/080-3.png
new file mode 100644
index 00000000..fe7f6458
Binary files /dev/null and b/graphics/minimaps/080-3.png differ
diff --git a/graphics/minimaps/081-1.png b/graphics/minimaps/081-1.png
new file mode 100644
index 00000000..97e0abc9
Binary files /dev/null and b/graphics/minimaps/081-1.png differ
diff --git a/graphics/minimaps/081-2.png b/graphics/minimaps/081-2.png
new file mode 100644
index 00000000..14b93358
Binary files /dev/null and b/graphics/minimaps/081-2.png differ
diff --git a/graphics/minimaps/081-3.png b/graphics/minimaps/081-3.png
new file mode 100644
index 00000000..7f106a7c
Binary files /dev/null and b/graphics/minimaps/081-3.png differ
diff --git a/graphics/minimaps/082-2.png b/graphics/minimaps/082-2.png
new file mode 100644
index 00000000..db05ed7e
Binary files /dev/null and b/graphics/minimaps/082-2.png differ
diff --git a/graphics/minimaps/082-3.png b/graphics/minimaps/082-3.png
new file mode 100644
index 00000000..fb801d34
Binary files /dev/null and b/graphics/minimaps/082-3.png differ
diff --git a/graphics/minimaps/fermi.png b/graphics/minimaps/fermi.png
new file mode 100644
index 00000000..951bd7fa
Binary files /dev/null and b/graphics/minimaps/fermi.png differ
diff --git a/graphics/minimaps/guild.png b/graphics/minimaps/guild.png
new file mode 100644
index 00000000..b3daa154
Binary files /dev/null and b/graphics/minimaps/guild.png differ
diff --git a/graphics/minimaps/prison.png b/graphics/minimaps/prison.png
new file mode 100644
index 00000000..ae57c8f2
Binary files /dev/null and b/graphics/minimaps/prison.png differ
diff --git a/graphics/particles/beam-crit.png b/graphics/particles/beam-crit.png
new file mode 100644
index 00000000..8f64643d
Binary files /dev/null and b/graphics/particles/beam-crit.png differ
diff --git a/graphics/particles/beam-crit.xml b/graphics/particles/beam-crit.xml
new file mode 100644
index 00000000..1d5ba245
--- /dev/null
+++ b/graphics/particles/beam-crit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/beam.png b/graphics/particles/beam.png
new file mode 100644
index 00000000..f340a61c
Binary files /dev/null and b/graphics/particles/beam.png differ
diff --git a/graphics/particles/beam.xml b/graphics/particles/beam.xml
new file mode 100644
index 00000000..e05bc34c
--- /dev/null
+++ b/graphics/particles/beam.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/blue-violent-glow.particle.xml b/graphics/particles/blue-violent-glow.particle.xml
new file mode 100644
index 00000000..583953ec
--- /dev/null
+++ b/graphics/particles/blue-violent-glow.particle.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/bubble-ani_6x6.png b/graphics/particles/bubble-ani_6x6.png
new file mode 100644
index 00000000..e04cc8c3
Binary files /dev/null and b/graphics/particles/bubble-ani_6x6.png differ
diff --git a/graphics/particles/bubble-ani_8x8.png b/graphics/particles/bubble-ani_8x8.png
new file mode 100644
index 00000000..134b352a
Binary files /dev/null and b/graphics/particles/bubble-ani_8x8.png differ
diff --git a/graphics/particles/bullet.xml b/graphics/particles/bullet.xml
new file mode 100644
index 00000000..244e3909
--- /dev/null
+++ b/graphics/particles/bullet.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/cannonball.xml b/graphics/particles/cannonball.xml
new file mode 100644
index 00000000..9e31216b
--- /dev/null
+++ b/graphics/particles/cannonball.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/channelling-cast-blue.particle.xml b/graphics/particles/channelling-cast-blue.particle.xml
new file mode 100644
index 00000000..871364cd
--- /dev/null
+++ b/graphics/particles/channelling-cast-blue.particle.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/channelling-cast-red.particle.xml b/graphics/particles/channelling-cast-red.particle.xml
new file mode 100644
index 00000000..b0b0364b
--- /dev/null
+++ b/graphics/particles/channelling-cast-red.particle.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/channelling-raise-blue.particle.xml b/graphics/particles/channelling-raise-blue.particle.xml
new file mode 100644
index 00000000..7c3f8a6b
--- /dev/null
+++ b/graphics/particles/channelling-raise-blue.particle.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/channelling-raise-red.particle.xml b/graphics/particles/channelling-raise-red.particle.xml
new file mode 100644
index 00000000..4a0e9377
--- /dev/null
+++ b/graphics/particles/channelling-raise-red.particle.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/crit.particle.xml b/graphics/particles/crit.particle.xml
index 7f534477..aee7111e 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 afa27ca7..3ed7d053 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
new file mode 100644
index 00000000..9c073797
--- /dev/null
+++ b/graphics/particles/electricity.red.danger-cell-left-right-big.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/electricity.red.danger-cell-left-right-small.xml b/graphics/particles/electricity.red.danger-cell-left-right-small.xml
new file mode 100644
index 00000000..5284fac6
--- /dev/null
+++ b/graphics/particles/electricity.red.danger-cell-left-right-small.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/electricity.red.danger-cell-middle-big.xml b/graphics/particles/electricity.red.danger-cell-middle-big.xml
new file mode 100644
index 00000000..41055860
--- /dev/null
+++ b/graphics/particles/electricity.red.danger-cell-middle-big.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/electricity.red.danger-cell-middle-small.xml b/graphics/particles/electricity.red.danger-cell-middle-small.xml
new file mode 100644
index 00000000..d90a0868
--- /dev/null
+++ b/graphics/particles/electricity.red.danger-cell-middle-small.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/firetrail.xml b/graphics/particles/firetrail.xml
new file mode 100644
index 00000000..3ac2df6b
--- /dev/null
+++ b/graphics/particles/firetrail.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/flame_8x8.png b/graphics/particles/flame_8x8.png
new file mode 100644
index 00000000..daaea9af
Binary files /dev/null and b/graphics/particles/flame_8x8.png differ
diff --git a/graphics/particles/hex-facet-outline-50.png b/graphics/particles/hex-facet-outline-50.png
index 711f6828..b9567852 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 c68dd9e2..b5cf58fb 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
new file mode 100644
index 00000000..09a4bb80
--- /dev/null
+++ b/graphics/particles/mana-battery-smoke-and-sparks.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/manadust.particle.xml b/graphics/particles/manadust.particle.xml
new file mode 100644
index 00000000..6e4fff5b
--- /dev/null
+++ b/graphics/particles/manadust.particle.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/moonshroom-attack.particle.xml b/graphics/particles/monster-mushroom-moon-attack.particle.xml
similarity index 100%
rename from graphics/particles/moonshroom-attack.particle.xml
rename to graphics/particles/monster-mushroom-moon-attack.particle.xml
diff --git a/graphics/particles/monster-moonshroom.particle.xml b/graphics/particles/monster-mushroom-moon.particle.xml
similarity index 100%
rename from graphics/particles/monster-moonshroom.particle.xml
rename to graphics/particles/monster-mushroom-moon.particle.xml
diff --git a/graphics/particles/monster-mushroom-rain-attack.particle.xml b/graphics/particles/monster-mushroom-rain-attack.particle.xml
new file mode 100644
index 00000000..5bba0f0b
--- /dev/null
+++ b/graphics/particles/monster-mushroom-rain-attack.particle.xml
@@ -0,0 +1,226 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-mushroom-rain.particle.xml b/graphics/particles/monster-mushroom-rain.particle.xml
new file mode 100644
index 00000000..76136827
--- /dev/null
+++ b/graphics/particles/monster-mushroom-rain.particle.xml
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-mushroom-snow-attack.particle.xml b/graphics/particles/monster-mushroom-snow-attack.particle.xml
new file mode 100644
index 00000000..a772f494
--- /dev/null
+++ b/graphics/particles/monster-mushroom-snow-attack.particle.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-mushroom-snow.particle.xml b/graphics/particles/monster-mushroom-snow.particle.xml
new file mode 100644
index 00000000..e2f50129
--- /dev/null
+++ b/graphics/particles/monster-mushroom-snow.particle.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-mushroom-sun-attack.particle.xml b/graphics/particles/monster-mushroom-sun-attack.particle.xml
new file mode 100644
index 00000000..ec0611b9
--- /dev/null
+++ b/graphics/particles/monster-mushroom-sun-attack.particle.xml
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-mushroom-sun.particle.xml b/graphics/particles/monster-mushroom-sun.particle.xml
new file mode 100644
index 00000000..4f11949b
--- /dev/null
+++ b/graphics/particles/monster-mushroom-sun.particle.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-rotter-crit.png b/graphics/particles/monster-rotter-crit.png
new file mode 100644
index 00000000..379743fe
Binary files /dev/null and b/graphics/particles/monster-rotter-crit.png differ
diff --git a/graphics/particles/monster-rotter-crit.xml b/graphics/particles/monster-rotter-crit.xml
new file mode 100644
index 00000000..7f265f1a
--- /dev/null
+++ b/graphics/particles/monster-rotter-crit.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-rotter-hit.xml b/graphics/particles/monster-rotter-hit.xml
new file mode 100644
index 00000000..5a4f3159
--- /dev/null
+++ b/graphics/particles/monster-rotter-hit.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-rotter-trail.xml b/graphics/particles/monster-rotter-trail.xml
new file mode 100644
index 00000000..287e48b6
--- /dev/null
+++ b/graphics/particles/monster-rotter-trail.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-rotter-vomit.png b/graphics/particles/monster-rotter-vomit.png
new file mode 100644
index 00000000..906ae472
Binary files /dev/null and b/graphics/particles/monster-rotter-vomit.png differ
diff --git a/graphics/particles/monster-rotter-vomit.xml b/graphics/particles/monster-rotter-vomit.xml
new file mode 100644
index 00000000..48e91a1b
--- /dev/null
+++ b/graphics/particles/monster-rotter-vomit.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/monster-snail-trail.particle.xml b/graphics/particles/monster-snail-trail.particle.xml
index e86b02b1..37fafd2d 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 6e3bcce2..f042ed79 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
new file mode 100644
index 00000000..198fafbc
--- /dev/null
+++ b/graphics/particles/monster-zombie-trail.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/necroblast.particle.xml b/graphics/particles/necroblast.particle.xml
index 44a64ecd..2f18a3f8 100644
--- a/graphics/particles/necroblast.particle.xml
+++ b/graphics/particles/necroblast.particle.xml
@@ -1,6 +1,6 @@
@@ -8,54 +8,54 @@ Wight blaze: inspired by Demon fire
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
-
+
diff --git a/graphics/particles/quest-continue.particle.xml b/graphics/particles/quest-continue.particle.xml
new file mode 100644
index 00000000..90756040
--- /dev/null
+++ b/graphics/particles/quest-continue.particle.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/quest-start.particle.xml b/graphics/particles/quest-start.particle.xml
new file mode 100644
index 00000000..315755d6
--- /dev/null
+++ b/graphics/particles/quest-start.particle.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/rainbow-crit.xml b/graphics/particles/rainbow-crit.xml
new file mode 100644
index 00000000..1258ed15
--- /dev/null
+++ b/graphics/particles/rainbow-crit.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/rainbow-hit.xml b/graphics/particles/rainbow-hit.xml
new file mode 100644
index 00000000..03ace72a
--- /dev/null
+++ b/graphics/particles/rainbow-hit.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/raindrop-hit_16x16.png b/graphics/particles/raindrop-hit_16x16.png
new file mode 100644
index 00000000..b0efb4ea
Binary files /dev/null and b/graphics/particles/raindrop-hit_16x16.png differ
diff --git a/graphics/particles/raindrop-hit_8x8.png b/graphics/particles/raindrop-hit_8x8.png
new file mode 100644
index 00000000..f4484340
Binary files /dev/null and b/graphics/particles/raindrop-hit_8x8.png differ
diff --git a/graphics/particles/raindrop_3x5.png b/graphics/particles/raindrop_3x5.png
new file mode 100644
index 00000000..25ae3683
Binary files /dev/null and b/graphics/particles/raindrop_3x5.png differ
diff --git a/graphics/particles/raindrop_8x8.png b/graphics/particles/raindrop_8x8.png
new file mode 100644
index 00000000..281311a0
Binary files /dev/null and b/graphics/particles/raindrop_8x8.png differ
diff --git a/graphics/particles/rainerang.png b/graphics/particles/rainerang.png
new file mode 100644
index 00000000..d20bb69b
Binary files /dev/null and b/graphics/particles/rainerang.png differ
diff --git a/graphics/particles/rainerang.xml b/graphics/particles/rainerang.xml
new file mode 100644
index 00000000..058938aa
--- /dev/null
+++ b/graphics/particles/rainerang.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/red-magic-cast.particle.xml b/graphics/particles/red-magic-cast.particle.xml
new file mode 100644
index 00000000..48160531
--- /dev/null
+++ b/graphics/particles/red-magic-cast.particle.xml
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/particles/snowflake-7x7.png b/graphics/particles/snowflake-7x7.png
index 221b4d08..839f6c93 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 2ac1c5e8..dcb303e4 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
new file mode 100644
index 00000000..3fc60fd4
--- /dev/null
+++ b/graphics/particles/zap.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/emote.png b/graphics/sprites/emote.png
index aaf6ff17..41159f77 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 6a5653c2..622f281e 100644
--- a/graphics/sprites/emote.xml
+++ b/graphics/sprites/emote.xml
@@ -1,5 +1,5 @@
-
+
diff --git a/graphics/sprites/equipment/angel-wings.png b/graphics/sprites/equipment/amulets/angel-wings.png
similarity index 100%
rename from graphics/sprites/equipment/angel-wings.png
rename to graphics/sprites/equipment/amulets/angel-wings.png
diff --git a/graphics/sprites/equipment/angel-wings.xml b/graphics/sprites/equipment/amulets/angel-wings.xml
similarity index 96%
rename from graphics/sprites/equipment/angel-wings.xml
rename to graphics/sprites/equipment/amulets/angel-wings.xml
index 83844588..cd13e426 100644
--- a/graphics/sprites/equipment/angel-wings.xml
+++ b/graphics/sprites/equipment/amulets/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 d385c6ad..a0c92b7a 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 7bf4bc9b..fde366b9 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 6428de46..9116692e 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 1d8a5e8f..d459e956 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 fa774554..a3aac532 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 3b155eb4..5cc83971 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 9396c41f..c1495b59 100644
--- a/graphics/sprites/equipment/head/dark-helm-female.xml
+++ b/graphics/sprites/equipment/head/dark-helm-female.xml
@@ -1,226 +1,228 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
diff --git a/graphics/sprites/equipment/head/dark-helm.png b/graphics/sprites/equipment/head/dark-helm.png
index 7a8e1446..d9085c48 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 5586fa30..d326de06 100644
--- a/graphics/sprites/equipment/head/dark-helm.xml
+++ b/graphics/sprites/equipment/head/dark-helm.xml
@@ -1,227 +1,228 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/graphics/sprites/equipment/head/headslime-female.xml b/graphics/sprites/equipment/head/headslime-female.xml
new file mode 100644
index 00000000..8f5fe908
--- /dev/null
+++ b/graphics/sprites/equipment/head/headslime-female.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/headslime.png b/graphics/sprites/equipment/head/headslime.png
new file mode 100644
index 00000000..30bca403
Binary files /dev/null and b/graphics/sprites/equipment/head/headslime.png differ
diff --git a/graphics/sprites/equipment/head/headslime.xml b/graphics/sprites/equipment/head/headslime.xml
new file mode 100644
index 00000000..7a7fb2c2
--- /dev/null
+++ b/graphics/sprites/equipment/head/headslime.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/infantryhelm-female.xml b/graphics/sprites/equipment/head/infantryhelm-female.xml
index adaac249..d0cc4d17 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 be90144b..15f8fefa 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
new file mode 100644
index 00000000..6f71df92
Binary files /dev/null and b/graphics/sprites/equipment/head/leprechaunhead.png differ
diff --git a/graphics/sprites/equipment/head/leprechaunhead.xml b/graphics/sprites/equipment/head/leprechaunhead.xml
new file mode 100644
index 00000000..26bf9888
--- /dev/null
+++ b/graphics/sprites/equipment/head/leprechaunhead.xml
@@ -0,0 +1,226 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/rainshroomhat-female.xml b/graphics/sprites/equipment/head/rainshroomhat-female.xml
new file mode 100644
index 00000000..3f7daf1b
--- /dev/null
+++ b/graphics/sprites/equipment/head/rainshroomhat-female.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/rainshroomhat.png b/graphics/sprites/equipment/head/rainshroomhat.png
new file mode 100644
index 00000000..48b8e336
Binary files /dev/null and b/graphics/sprites/equipment/head/rainshroomhat.png differ
diff --git a/graphics/sprites/equipment/head/rainshroomhat.xml b/graphics/sprites/equipment/head/rainshroomhat.xml
new file mode 100644
index 00000000..708df0f4
--- /dev/null
+++ b/graphics/sprites/equipment/head/rainshroomhat.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/skullmask-dyable-female.xml b/graphics/sprites/equipment/head/skullmask-dyable-female.xml
new file mode 100644
index 00000000..818f9b49
--- /dev/null
+++ b/graphics/sprites/equipment/head/skullmask-dyable-female.xml
@@ -0,0 +1,229 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/skullmask-dyable.png b/graphics/sprites/equipment/head/skullmask-dyable.png
new file mode 100644
index 00000000..0bba274f
Binary files /dev/null and b/graphics/sprites/equipment/head/skullmask-dyable.png differ
diff --git a/graphics/sprites/equipment/head/skullmask-dyable.xml b/graphics/sprites/equipment/head/skullmask-dyable.xml
new file mode 100644
index 00000000..a6f8b482
--- /dev/null
+++ b/graphics/sprites/equipment/head/skullmask-dyable.xml
@@ -0,0 +1,229 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/snowshroomhat-female.xml b/graphics/sprites/equipment/head/snowshroomhat-female.xml
new file mode 100644
index 00000000..f88ad033
--- /dev/null
+++ b/graphics/sprites/equipment/head/snowshroomhat-female.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/snowshroomhat.png b/graphics/sprites/equipment/head/snowshroomhat.png
new file mode 100644
index 00000000..57c2f39b
Binary files /dev/null and b/graphics/sprites/equipment/head/snowshroomhat.png differ
diff --git a/graphics/sprites/equipment/head/snowshroomhat.xml b/graphics/sprites/equipment/head/snowshroomhat.xml
new file mode 100644
index 00000000..464bd685
--- /dev/null
+++ b/graphics/sprites/equipment/head/snowshroomhat.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/steel-dyable.png b/graphics/sprites/equipment/head/steel-dyable.png
new file mode 100644
index 00000000..9bea5878
Binary files /dev/null and b/graphics/sprites/equipment/head/steel-dyable.png differ
diff --git a/graphics/sprites/equipment/head/steel-dyable.xml b/graphics/sprites/equipment/head/steel-dyable.xml
new file mode 100644
index 00000000..8fbf13f9
--- /dev/null
+++ b/graphics/sprites/equipment/head/steel-dyable.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/sunshroomhat-female.xml b/graphics/sprites/equipment/head/sunshroomhat-female.xml
new file mode 100644
index 00000000..d984dc22
--- /dev/null
+++ b/graphics/sprites/equipment/head/sunshroomhat-female.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/sunshroomhat.png b/graphics/sprites/equipment/head/sunshroomhat.png
new file mode 100644
index 00000000..90885482
Binary files /dev/null and b/graphics/sprites/equipment/head/sunshroomhat.png differ
diff --git a/graphics/sprites/equipment/head/sunshroomhat.xml b/graphics/sprites/equipment/head/sunshroomhat.xml
new file mode 100644
index 00000000..b4e0cba2
--- /dev/null
+++ b/graphics/sprites/equipment/head/sunshroomhat.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/terranite-mask.png b/graphics/sprites/equipment/head/terranite-mask.png
index a304835a..2b0a5473 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 6df3ef61..0ef80177 100644
--- a/graphics/sprites/equipment/head/terranite-mask.xml
+++ b/graphics/sprites/equipment/head/terranite-mask.xml
@@ -1,229 +1,530 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/warlordhelm-female.xml b/graphics/sprites/equipment/head/warlordhelm-female.xml
index 89a106d7..3f4b993e 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 ddf44a0c..730d300f 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
new file mode 100644
index 00000000..23c8df2e
--- /dev/null
+++ b/graphics/sprites/equipment/head/wickedmushroomhat-female.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat.png b/graphics/sprites/equipment/head/wickedmushroomhat.png
new file mode 100644
index 00000000..f4aadeae1
Binary files /dev/null and b/graphics/sprites/equipment/head/wickedmushroomhat.png differ
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat.xml b/graphics/sprites/equipment/head/wickedmushroomhat.xml
new file mode 100644
index 00000000..0c1d6679
--- /dev/null
+++ b/graphics/sprites/equipment/head/wickedmushroomhat.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/equipment/head/yeti-mask.xml b/graphics/sprites/equipment/head/yeti-mask.xml
index 401d4681..f3e9b1de 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
new file mode 100644
index 00000000..57420a84
--- /dev/null
+++ b/graphics/sprites/equipment/shields/knighthelm-dyable-female.xml
@@ -0,0 +1,229 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable.png b/graphics/sprites/equipment/shields/knighthelm-dyable.png
new file mode 100644
index 00000000..0f7b39ea
Binary files /dev/null and b/graphics/sprites/equipment/shields/knighthelm-dyable.png differ
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable.xml b/graphics/sprites/equipment/shields/knighthelm-dyable.xml
new file mode 100644
index 00000000..1f6312ab
--- /dev/null
+++ b/graphics/sprites/equipment/shields/knighthelm-dyable.xml
@@ -0,0 +1,230 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/weapons/bow-life.png b/graphics/sprites/equipment/weapons/bow-life.png
new file mode 100644
index 00000000..64d43fd7
Binary files /dev/null and b/graphics/sprites/equipment/weapons/bow-life.png differ
diff --git a/graphics/sprites/equipment/weapons/bow-life.xml b/graphics/sprites/equipment/weapons/bow-life.xml
new file mode 100644
index 00000000..02ba8cb8
--- /dev/null
+++ b/graphics/sprites/equipment/weapons/bow-life.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/weapons/dagger-setzer.png b/graphics/sprites/equipment/weapons/dagger-setzer.png
new file mode 100644
index 00000000..2e9120cc
Binary files /dev/null and b/graphics/sprites/equipment/weapons/dagger-setzer.png differ
diff --git a/graphics/sprites/equipment/weapons/dagger-setzer.xml b/graphics/sprites/equipment/weapons/dagger-setzer.xml
new file mode 100644
index 00000000..99da95d8
--- /dev/null
+++ b/graphics/sprites/equipment/weapons/dagger-setzer.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/weapons/gun.png b/graphics/sprites/equipment/weapons/flintlock.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/gun.png
rename to graphics/sprites/equipment/weapons/flintlock.png
diff --git a/graphics/sprites/equipment/weapons/gun.xml b/graphics/sprites/equipment/weapons/flintlock.xml
similarity index 93%
rename from graphics/sprites/equipment/weapons/gun.xml
rename to graphics/sprites/equipment/weapons/flintlock.xml
index e1417c18..a1002741 100644
--- a/graphics/sprites/equipment/weapons/gun.xml
+++ b/graphics/sprites/equipment/weapons/flintlock.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/weapons/jackal.png b/graphics/sprites/equipment/weapons/jackal.png
deleted file mode 100644
index 59d57143..00000000
Binary files a/graphics/sprites/equipment/weapons/jackal.png and /dev/null differ
diff --git a/graphics/sprites/equipment/weapons/null.png b/graphics/sprites/equipment/weapons/null.png
index 0906ec03..cbf5dc3e 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 c706c02b..d509b8bc 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/beheader.png b/graphics/sprites/equipment/weapons/sword-beheader.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/beheader.png
rename to graphics/sprites/equipment/weapons/sword-beheader.png
diff --git a/graphics/sprites/equipment/weapons/beheader.xml b/graphics/sprites/equipment/weapons/sword-beheader.xml
similarity index 98%
rename from graphics/sprites/equipment/weapons/beheader.xml
rename to graphics/sprites/equipment/weapons/sword-beheader.xml
index 75fe84fd..ee887553 100644
--- a/graphics/sprites/equipment/weapons/beheader.xml
+++ b/graphics/sprites/equipment/weapons/sword-beheader.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/equipment/weapons/sword-dragon.png b/graphics/sprites/equipment/weapons/sword-dragon.png
new file mode 100644
index 00000000..ccf40930
Binary files /dev/null and b/graphics/sprites/equipment/weapons/sword-dragon.png differ
diff --git a/graphics/sprites/equipment/weapons/sword-dragon.xml b/graphics/sprites/equipment/weapons/sword-dragon.xml
new file mode 100644
index 00000000..b46fda5c
--- /dev/null
+++ b/graphics/sprites/equipment/weapons/sword-dragon.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/weapons/sword-jackal.png b/graphics/sprites/equipment/weapons/sword-jackal.png
new file mode 100644
index 00000000..0d578e2b
Binary files /dev/null and b/graphics/sprites/equipment/weapons/sword-jackal.png differ
diff --git a/graphics/sprites/equipment/weapons/jackal.xml b/graphics/sprites/equipment/weapons/sword-jackal.xml
similarity index 59%
rename from graphics/sprites/equipment/weapons/jackal.xml
rename to graphics/sprites/equipment/weapons/sword-jackal.xml
index 8145206b..60c6fdb4 100644
--- a/graphics/sprites/equipment/weapons/jackal.xml
+++ b/graphics/sprites/equipment/weapons/sword-jackal.xml
@@ -1,7 +1,7 @@
-
+
@@ -23,16 +23,16 @@
-
+
-
+
-
+
-
+
@@ -68,32 +68,20 @@
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
diff --git a/graphics/sprites/equipment/weapons/sword-lider.png b/graphics/sprites/equipment/weapons/sword-lider.png
new file mode 100644
index 00000000..f3ca961c
Binary files /dev/null and b/graphics/sprites/equipment/weapons/sword-lider.png differ
diff --git a/graphics/sprites/equipment/weapons/sword-lider.xml b/graphics/sprites/equipment/weapons/sword-lider.xml
new file mode 100644
index 00000000..528dcb9d
--- /dev/null
+++ b/graphics/sprites/equipment/weapons/sword-lider.xml
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/equipment/weapons/sandcutter.png b/graphics/sprites/equipment/weapons/sword-sandcutter.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/sandcutter.png
rename to graphics/sprites/equipment/weapons/sword-sandcutter.png
diff --git a/graphics/sprites/equipment/weapons/sandcutter.xml b/graphics/sprites/equipment/weapons/sword-sandcutter.xml
similarity index 97%
rename from graphics/sprites/equipment/weapons/sandcutter.xml
rename to graphics/sprites/equipment/weapons/sword-sandcutter.xml
index b61cebda..d200855f 100644
--- a/graphics/sprites/equipment/weapons/sandcutter.xml
+++ b/graphics/sprites/equipment/weapons/sword-sandcutter.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/icons/cant-move.png b/graphics/sprites/icons/cant-move.png
new file mode 100644
index 00000000..d749fc01
Binary files /dev/null and b/graphics/sprites/icons/cant-move.png differ
diff --git a/graphics/sprites/icons/cant-move.xml b/graphics/sprites/icons/cant-move.xml
new file mode 100644
index 00000000..c74f82ed
--- /dev/null
+++ b/graphics/sprites/icons/cant-move.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/feather-outline.png b/graphics/sprites/icons/feather-outline.png
index 47eeb709..a67dc40c 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 f1011b7c..55ba2af2 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 f40f4b2c..b0f7e960 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
new file mode 100644
index 00000000..ebab9e76
--- /dev/null
+++ b/graphics/sprites/icons/matk-potion.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/potion-g.png b/graphics/sprites/icons/potion-g.png
new file mode 100644
index 00000000..7d60ba81
Binary files /dev/null and b/graphics/sprites/icons/potion-g.png differ
diff --git a/graphics/sprites/icons/slow-move.png b/graphics/sprites/icons/slow-move.png
new file mode 100644
index 00000000..fac2d8e2
Binary files /dev/null and b/graphics/sprites/icons/slow-move.png differ
diff --git a/graphics/sprites/icons/slow-move.xml b/graphics/sprites/icons/slow-move.xml
new file mode 100644
index 00000000..d205e572
--- /dev/null
+++ b/graphics/sprites/icons/slow-move.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-attack-generic-outline.png b/graphics/sprites/icons/spell-attack-generic-outline.png
index a6232f87..2ba150ac 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
new file mode 100644
index 00000000..4114d66c
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-ar-outline.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-ar.png b/graphics/sprites/icons/spell-cooldown-ar.png
new file mode 100644
index 00000000..730ec630
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-ar.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-ar.xml b/graphics/sprites/icons/spell-cooldown-ar.xml
new file mode 100644
index 00000000..58c16b4d
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-ar.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-cg.png b/graphics/sprites/icons/spell-cooldown-cg.png
new file mode 100644
index 00000000..fe94dffa
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-cg.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-cg.xml b/graphics/sprites/icons/spell-cooldown-cg.xml
new file mode 100644
index 00000000..3d5a827b
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-cg.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-ench.png b/graphics/sprites/icons/spell-cooldown-ench.png
new file mode 100644
index 00000000..da364c59
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-ench.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-ench.xml b/graphics/sprites/icons/spell-cooldown-ench.xml
new file mode 100644
index 00000000..32c15e95
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-ench.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-koy.png b/graphics/sprites/icons/spell-cooldown-koy.png
new file mode 100644
index 00000000..cde985e6
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-koy.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-koy.xml b/graphics/sprites/icons/spell-cooldown-koy.xml
new file mode 100644
index 00000000..999b5eb7
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-koy.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-mg.png b/graphics/sprites/icons/spell-cooldown-mg.png
new file mode 100644
index 00000000..7777ac77
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-mg.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-mg.xml b/graphics/sprites/icons/spell-cooldown-mg.xml
new file mode 100644
index 00000000..f4282793
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-mg.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-mt.png b/graphics/sprites/icons/spell-cooldown-mt.png
new file mode 100644
index 00000000..215de45a
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-mt.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-mt.xml b/graphics/sprites/icons/spell-cooldown-mt.xml
new file mode 100644
index 00000000..87b8ef2e
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-mt.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-outline.png b/graphics/sprites/icons/spell-cooldown-outline.png
index bc16cb7b..3b794b56 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
new file mode 100644
index 00000000..22d3cf1e
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-r-outline.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-r.png b/graphics/sprites/icons/spell-cooldown-r.png
new file mode 100644
index 00000000..d09821d2
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-r.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-r.xml b/graphics/sprites/icons/spell-cooldown-r.xml
new file mode 100644
index 00000000..f0a7f6e7
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-r.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-sg.png b/graphics/sprites/icons/spell-cooldown-sg.png
new file mode 100644
index 00000000..02f42d61
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-sg.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-sg.xml b/graphics/sprites/icons/spell-cooldown-sg.xml
new file mode 100644
index 00000000..8f1737c9
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-sg.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown-upmarmu.png b/graphics/sprites/icons/spell-cooldown-upmarmu.png
new file mode 100644
index 00000000..8b87f1b8
Binary files /dev/null and b/graphics/sprites/icons/spell-cooldown-upmarmu.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-upmarmu.xml b/graphics/sprites/icons/spell-cooldown-upmarmu.xml
new file mode 100644
index 00000000..a294ef98
--- /dev/null
+++ b/graphics/sprites/icons/spell-cooldown-upmarmu.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/icons/spell-cooldown.png b/graphics/sprites/icons/spell-cooldown.png
index c34d1669..3deda6d8 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
new file mode 100644
index 00000000..b689c8e4
--- /dev/null
+++ b/graphics/sprites/model/base2.xml
@@ -0,0 +1,485 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/model/talpan-male.png b/graphics/sprites/model/talpan-male.png
new file mode 100644
index 00000000..137d0d34
Binary files /dev/null and b/graphics/sprites/model/talpan-male.png differ
diff --git a/graphics/sprites/monsters/accessories/ratto-tail.png b/graphics/sprites/monsters/accessories/ratto-tail.png
new file mode 100644
index 00000000..331e0f5e
Binary files /dev/null and b/graphics/sprites/monsters/accessories/ratto-tail.png differ
diff --git a/graphics/sprites/monsters/accessories/ratto-tail.xml b/graphics/sprites/monsters/accessories/ratto-tail.xml
new file mode 100644
index 00000000..31859b91
--- /dev/null
+++ b/graphics/sprites/monsters/accessories/ratto-tail.xml
@@ -0,0 +1,228 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/accessories/slime-super-crown.png b/graphics/sprites/monsters/accessories/slime-super-crown.png
new file mode 100644
index 00000000..4214ade0
Binary files /dev/null and b/graphics/sprites/monsters/accessories/slime-super-crown.png differ
diff --git a/graphics/sprites/monsters/accessories/slime-super-crown.xml b/graphics/sprites/monsters/accessories/slime-super-crown.xml
new file mode 100644
index 00000000..4fe93ed0
--- /dev/null
+++ b/graphics/sprites/monsters/accessories/slime-super-crown.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/beehive.png b/graphics/sprites/monsters/beehive.png
new file mode 100644
index 00000000..c906b7a6
Binary files /dev/null and b/graphics/sprites/monsters/beehive.png differ
diff --git a/graphics/sprites/monsters/beehive.xml b/graphics/sprites/monsters/beehive.xml
new file mode 100644
index 00000000..d234b2cc
--- /dev/null
+++ b/graphics/sprites/monsters/beehive.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/bif.png b/graphics/sprites/monsters/bif.png
new file mode 100644
index 00000000..507b2c27
Binary files /dev/null and b/graphics/sprites/monsters/bif.png differ
diff --git a/graphics/sprites/monsters/bif.xml b/graphics/sprites/monsters/bif.xml
new file mode 100644
index 00000000..e977a9af
--- /dev/null
+++ b/graphics/sprites/monsters/bif.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/bigbif.png b/graphics/sprites/monsters/bigbif.png
new file mode 100644
index 00000000..8a7551b1
Binary files /dev/null and b/graphics/sprites/monsters/bigbif.png differ
diff --git a/graphics/sprites/monsters/bigbif.xml b/graphics/sprites/monsters/bigbif.xml
new file mode 100644
index 00000000..6bb7c548
--- /dev/null
+++ b/graphics/sprites/monsters/bigbif.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/bobone.png b/graphics/sprites/monsters/bobone.png
new file mode 100644
index 00000000..aba90f13
Binary files /dev/null and b/graphics/sprites/monsters/bobone.png differ
diff --git a/graphics/sprites/monsters/bobone.xml b/graphics/sprites/monsters/bobone.xml
new file mode 100644
index 00000000..4eb13698
--- /dev/null
+++ b/graphics/sprites/monsters/bobone.xml
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/brainblow.png b/graphics/sprites/monsters/brainblow.png
new file mode 100644
index 00000000..6771f73f
Binary files /dev/null and b/graphics/sprites/monsters/brainblow.png differ
diff --git a/graphics/sprites/monsters/brainblow.xml b/graphics/sprites/monsters/brainblow.xml
new file mode 100644
index 00000000..d11cdeb8
--- /dev/null
+++ b/graphics/sprites/monsters/brainblow.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/croc.png b/graphics/sprites/monsters/croc.png
new file mode 100644
index 00000000..aa81a7aa
Binary files /dev/null and b/graphics/sprites/monsters/croc.png differ
diff --git a/graphics/sprites/monsters/croc.xml b/graphics/sprites/monsters/croc.xml
new file mode 100644
index 00000000..292fa837
--- /dev/null
+++ b/graphics/sprites/monsters/croc.xml
@@ -0,0 +1,242 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/darkduck.png b/graphics/sprites/monsters/darkduck.png
new file mode 100644
index 00000000..38881433
Binary files /dev/null and b/graphics/sprites/monsters/darkduck.png differ
diff --git a/graphics/sprites/monsters/darkduck.xml b/graphics/sprites/monsters/darkduck.xml
new file mode 100644
index 00000000..1d378113
--- /dev/null
+++ b/graphics/sprites/monsters/darkduck.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/floyd.png b/graphics/sprites/monsters/floyd.png
index 9e8b787c..225b50e4 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
new file mode 100644
index 00000000..f98d3aef
Binary files /dev/null and b/graphics/sprites/monsters/frog-big.png differ
diff --git a/graphics/sprites/monsters/frog-big.xml b/graphics/sprites/monsters/frog-big.xml
new file mode 100644
index 00000000..0455f4bb
--- /dev/null
+++ b/graphics/sprites/monsters/frog-big.xml
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/frog-small.png b/graphics/sprites/monsters/frog-small.png
new file mode 100644
index 00000000..dc8f6fb4
Binary files /dev/null and b/graphics/sprites/monsters/frog-small.png differ
diff --git a/graphics/sprites/monsters/frog-small.xml b/graphics/sprites/monsters/frog-small.xml
new file mode 100644
index 00000000..ca06f34c
--- /dev/null
+++ b/graphics/sprites/monsters/frog-small.xml
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/golem-blackcrystal.png b/graphics/sprites/monsters/golem-blackcrystal.png
index be28544e..dd51c46e 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 c564f850..c4aebd1e 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
new file mode 100644
index 00000000..204ddef1
Binary files /dev/null and b/graphics/sprites/monsters/golem-dyable.png differ
diff --git a/graphics/sprites/monsters/golem-dyable.xml b/graphics/sprites/monsters/golem-dyable.xml
new file mode 100644
index 00000000..f693d78e
--- /dev/null
+++ b/graphics/sprites/monsters/golem-dyable.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/monsters/grass.png b/graphics/sprites/monsters/grass.png
new file mode 100644
index 00000000..b26a6a3b
Binary files /dev/null and b/graphics/sprites/monsters/grass.png differ
diff --git a/graphics/sprites/monsters/grass.xml b/graphics/sprites/monsters/grass.xml
new file mode 100644
index 00000000..d269f33a
--- /dev/null
+++ b/graphics/sprites/monsters/grass.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/junglefowl.png b/graphics/sprites/monsters/junglefowl.png
new file mode 100644
index 00000000..15eebc56
Binary files /dev/null and b/graphics/sprites/monsters/junglefowl.png differ
diff --git a/graphics/sprites/monsters/junglefowl.xml b/graphics/sprites/monsters/junglefowl.xml
new file mode 100644
index 00000000..fb3fc81b
--- /dev/null
+++ b/graphics/sprites/monsters/junglefowl.xml
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/mana-bug.png b/graphics/sprites/monsters/mana-bug.png
index 2843a562..ea7f1803 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
new file mode 100644
index 00000000..b2b5e143
Binary files /dev/null and b/graphics/sprites/monsters/mananatree.png differ
diff --git a/graphics/sprites/monsters/mananatree.xml b/graphics/sprites/monsters/mananatree.xml
new file mode 100644
index 00000000..477eb614
--- /dev/null
+++ b/graphics/sprites/monsters/mananatree.xml
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/mega-mana-bug.png b/graphics/sprites/monsters/mega-mana-bug.png
new file mode 100644
index 00000000..f468bba4
Binary files /dev/null and b/graphics/sprites/monsters/mega-mana-bug.png differ
diff --git a/graphics/sprites/monsters/mega-mana-bug.xml b/graphics/sprites/monsters/mega-mana-bug.xml
new file mode 100644
index 00000000..4f563778
--- /dev/null
+++ b/graphics/sprites/monsters/mega-mana-bug.xml
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/mister-prickel.png b/graphics/sprites/monsters/mister-prickel.png
new file mode 100644
index 00000000..1b5e40e1
Binary files /dev/null and b/graphics/sprites/monsters/mister-prickel.png differ
diff --git a/graphics/sprites/monsters/mister-prickel.xml b/graphics/sprites/monsters/mister-prickel.xml
new file mode 100644
index 00000000..c8276010
--- /dev/null
+++ b/graphics/sprites/monsters/mister-prickel.xml
@@ -0,0 +1,223 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/montblanc.png b/graphics/sprites/monsters/montblanc.png
new file mode 100644
index 00000000..cb3d61bf
Binary files /dev/null and b/graphics/sprites/monsters/montblanc.png differ
diff --git a/graphics/sprites/monsters/montblanc.xml b/graphics/sprites/monsters/montblanc.xml
new file mode 100644
index 00000000..bdcc615a
--- /dev/null
+++ b/graphics/sprites/monsters/montblanc.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/moubootaur.png b/graphics/sprites/monsters/moubootaur.png
new file mode 100644
index 00000000..b901e7e1
Binary files /dev/null and b/graphics/sprites/monsters/moubootaur.png differ
diff --git a/graphics/sprites/monsters/moubootaur.xml b/graphics/sprites/monsters/moubootaur.xml
new file mode 100644
index 00000000..ba8c5b8f
--- /dev/null
+++ b/graphics/sprites/monsters/moubootaur.xml
@@ -0,0 +1,236 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/moonshroom.png b/graphics/sprites/monsters/mushroom-moon.png
similarity index 100%
rename from graphics/sprites/monsters/moonshroom.png
rename to graphics/sprites/monsters/mushroom-moon.png
diff --git a/graphics/sprites/monsters/mushroom-moon.xml b/graphics/sprites/monsters/mushroom-moon.xml
new file mode 100644
index 00000000..894e34e3
--- /dev/null
+++ b/graphics/sprites/monsters/mushroom-moon.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/mushroom-rain.png b/graphics/sprites/monsters/mushroom-rain.png
new file mode 100644
index 00000000..d3f41eb5
Binary files /dev/null and b/graphics/sprites/monsters/mushroom-rain.png differ
diff --git a/graphics/sprites/monsters/mushroom-rain.xml b/graphics/sprites/monsters/mushroom-rain.xml
new file mode 100644
index 00000000..edf23fa4
--- /dev/null
+++ b/graphics/sprites/monsters/mushroom-rain.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/mushroom-snow.png b/graphics/sprites/monsters/mushroom-snow.png
new file mode 100644
index 00000000..39d21a3c
Binary files /dev/null and b/graphics/sprites/monsters/mushroom-snow.png differ
diff --git a/graphics/sprites/monsters/mushroom-snow.xml b/graphics/sprites/monsters/mushroom-snow.xml
new file mode 100644
index 00000000..adf54e21
--- /dev/null
+++ b/graphics/sprites/monsters/mushroom-snow.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/mushroom-sun.png b/graphics/sprites/monsters/mushroom-sun.png
new file mode 100644
index 00000000..b4c23785
Binary files /dev/null and b/graphics/sprites/monsters/mushroom-sun.png differ
diff --git a/graphics/sprites/monsters/moonshroom.xml b/graphics/sprites/monsters/mushroom-sun.xml
similarity index 95%
rename from graphics/sprites/monsters/moonshroom.xml
rename to graphics/sprites/monsters/mushroom-sun.xml
index be815e17..ca7c0614 100644
--- a/graphics/sprites/monsters/moonshroom.xml
+++ b/graphics/sprites/monsters/mushroom-sun.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/monsters/pet-cat.png b/graphics/sprites/monsters/pet-cat.png
new file mode 100644
index 00000000..8c366c6e
Binary files /dev/null and b/graphics/sprites/monsters/pet-cat.png differ
diff --git a/graphics/sprites/monsters/piou-king.png b/graphics/sprites/monsters/piou-king.png
new file mode 100644
index 00000000..47f2cc2c
Binary files /dev/null and b/graphics/sprites/monsters/piou-king.png differ
diff --git a/graphics/sprites/monsters/piou-king.xml b/graphics/sprites/monsters/piou-king.xml
new file mode 100644
index 00000000..23750d05
--- /dev/null
+++ b/graphics/sprites/monsters/piou-king.xml
@@ -0,0 +1,263 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/ratto.png b/graphics/sprites/monsters/ratto.png
new file mode 100644
index 00000000..fb5bded3
Binary files /dev/null and b/graphics/sprites/monsters/ratto.png differ
diff --git a/graphics/sprites/monsters/ratto.xml b/graphics/sprites/monsters/ratto.xml
new file mode 100644
index 00000000..1ee5116c
--- /dev/null
+++ b/graphics/sprites/monsters/ratto.xml
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/rot.png b/graphics/sprites/monsters/rot.png
new file mode 100644
index 00000000..a10c0f46
Binary files /dev/null and b/graphics/sprites/monsters/rot.png differ
diff --git a/graphics/sprites/monsters/rot.xml b/graphics/sprites/monsters/rot.xml
new file mode 100644
index 00000000..fadc8711
--- /dev/null
+++ b/graphics/sprites/monsters/rot.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/rotter.png b/graphics/sprites/monsters/rotter.png
new file mode 100644
index 00000000..2acadd2f
Binary files /dev/null and b/graphics/sprites/monsters/rotter.png differ
diff --git a/graphics/sprites/monsters/rotter.xml b/graphics/sprites/monsters/rotter.xml
new file mode 100644
index 00000000..c9eb1cce
--- /dev/null
+++ b/graphics/sprites/monsters/rotter.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/skull-golden.png b/graphics/sprites/monsters/skull-golden.png
new file mode 100644
index 00000000..53a71314
Binary files /dev/null and b/graphics/sprites/monsters/skull-golden.png differ
diff --git a/graphics/sprites/monsters/skull-golden.xml b/graphics/sprites/monsters/skull-golden.xml
new file mode 100644
index 00000000..b3976a01
--- /dev/null
+++ b/graphics/sprites/monsters/skull-golden.xml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/skull-warlord.png b/graphics/sprites/monsters/skull-warlord.png
new file mode 100644
index 00000000..c5f7c739
Binary files /dev/null and b/graphics/sprites/monsters/skull-warlord.png differ
diff --git a/graphics/sprites/monsters/skull-warlord.xml b/graphics/sprites/monsters/skull-warlord.xml
new file mode 100644
index 00000000..381d6211
--- /dev/null
+++ b/graphics/sprites/monsters/skull-warlord.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/slime-super.png b/graphics/sprites/monsters/slime-super.png
new file mode 100644
index 00000000..c88febbb
Binary files /dev/null and b/graphics/sprites/monsters/slime-super.png differ
diff --git a/graphics/sprites/monsters/slime-super.xml b/graphics/sprites/monsters/slime-super.xml
new file mode 100644
index 00000000..0cd70240
--- /dev/null
+++ b/graphics/sprites/monsters/slime-super.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/smallbif.png b/graphics/sprites/monsters/smallbif.png
new file mode 100644
index 00000000..0840c66a
Binary files /dev/null and b/graphics/sprites/monsters/smallbif.png differ
diff --git a/graphics/sprites/monsters/smallbif.xml b/graphics/sprites/monsters/smallbif.xml
new file mode 100644
index 00000000..26225567
--- /dev/null
+++ b/graphics/sprites/monsters/smallbif.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/spelt.png b/graphics/sprites/monsters/spelt.png
new file mode 100644
index 00000000..68ec2375
Binary files /dev/null and b/graphics/sprites/monsters/spelt.png differ
diff --git a/graphics/sprites/monsters/spelt.xml b/graphics/sprites/monsters/spelt.xml
new file mode 100644
index 00000000..9817f6ba
--- /dev/null
+++ b/graphics/sprites/monsters/spelt.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/spider-queen-crystal.png b/graphics/sprites/monsters/spider-queen-crystal.png
new file mode 100644
index 00000000..66a16aa2
Binary files /dev/null and b/graphics/sprites/monsters/spider-queen-crystal.png differ
diff --git a/graphics/sprites/monsters/spider-queen-crystal.xml b/graphics/sprites/monsters/spider-queen-crystal.xml
new file mode 100644
index 00000000..827525dd
--- /dev/null
+++ b/graphics/sprites/monsters/spider-queen-crystal.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/graphics/sprites/monsters/spider-queen.png b/graphics/sprites/monsters/spider-queen.png
new file mode 100644
index 00000000..7a2f6606
Binary files /dev/null and b/graphics/sprites/monsters/spider-queen.png differ
diff --git a/graphics/sprites/monsters/spider-queen.xml b/graphics/sprites/monsters/spider-queen.xml
new file mode 100644
index 00000000..02118fbd
--- /dev/null
+++ b/graphics/sprites/monsters/spider-queen.xml
@@ -0,0 +1,177 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/tengu.xml b/graphics/sprites/monsters/tengu.xml
index 651c684a..fb7afd4e 100644
--- a/graphics/sprites/monsters/tengu.xml
+++ b/graphics/sprites/monsters/tengu.xml
@@ -39,31 +39,24 @@
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/tortuga.png b/graphics/sprites/monsters/tortuga.png
new file mode 100644
index 00000000..570a0615
Binary files /dev/null and b/graphics/sprites/monsters/tortuga.png differ
diff --git a/graphics/sprites/monsters/tortuga.xml b/graphics/sprites/monsters/tortuga.xml
new file mode 100644
index 00000000..8da52685
--- /dev/null
+++ b/graphics/sprites/monsters/tortuga.xml
@@ -0,0 +1,310 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/wonderwoodling.png b/graphics/sprites/monsters/wonderwoodling.png
new file mode 100644
index 00000000..07287e54
Binary files /dev/null and b/graphics/sprites/monsters/wonderwoodling.png differ
diff --git a/graphics/sprites/monsters/wonderwoodling.xml b/graphics/sprites/monsters/wonderwoodling.xml
new file mode 100644
index 00000000..c6aba01a
--- /dev/null
+++ b/graphics/sprites/monsters/wonderwoodling.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/2006__npcs.xml b/graphics/sprites/npcs/2006__npcs.xml
new file mode 100644
index 00000000..c03ab558
--- /dev/null
+++ b/graphics/sprites/npcs/2006__npcs.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/blanc.png b/graphics/sprites/npcs/blanc.png
new file mode 100644
index 00000000..0b933f7a
Binary files /dev/null and b/graphics/sprites/npcs/blanc.png differ
diff --git a/graphics/sprites/npcs/blanc.xml b/graphics/sprites/npcs/blanc.xml
new file mode 100644
index 00000000..34080d47
--- /dev/null
+++ b/graphics/sprites/npcs/blanc.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-01-flow.png b/graphics/sprites/npcs/dig-01-flow.png
new file mode 100644
index 00000000..86a98257
Binary files /dev/null and b/graphics/sprites/npcs/dig-01-flow.png differ
diff --git a/graphics/sprites/npcs/dig-01-flow.xml b/graphics/sprites/npcs/dig-01-flow.xml
new file mode 100644
index 00000000..afad3d7c
--- /dev/null
+++ b/graphics/sprites/npcs/dig-01-flow.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-01-glow.png b/graphics/sprites/npcs/dig-01-glow.png
new file mode 100644
index 00000000..258ff235
Binary files /dev/null and b/graphics/sprites/npcs/dig-01-glow.png differ
diff --git a/graphics/sprites/npcs/dig-01-glow.xml b/graphics/sprites/npcs/dig-01-glow.xml
new file mode 100644
index 00000000..95ba2732
--- /dev/null
+++ b/graphics/sprites/npcs/dig-01-glow.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-01.png b/graphics/sprites/npcs/dig-01.png
new file mode 100644
index 00000000..4a02278a
Binary files /dev/null and b/graphics/sprites/npcs/dig-01.png differ
diff --git a/graphics/sprites/npcs/dig-01.xml b/graphics/sprites/npcs/dig-01.xml
new file mode 100644
index 00000000..a123317d
--- /dev/null
+++ b/graphics/sprites/npcs/dig-01.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-02-flow.png b/graphics/sprites/npcs/dig-02-flow.png
new file mode 100644
index 00000000..d191607a
Binary files /dev/null and b/graphics/sprites/npcs/dig-02-flow.png differ
diff --git a/graphics/sprites/npcs/dig-02-flow.xml b/graphics/sprites/npcs/dig-02-flow.xml
new file mode 100644
index 00000000..5a566bb8
--- /dev/null
+++ b/graphics/sprites/npcs/dig-02-flow.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-02-glow.png b/graphics/sprites/npcs/dig-02-glow.png
new file mode 100644
index 00000000..29bb45ab
Binary files /dev/null and b/graphics/sprites/npcs/dig-02-glow.png differ
diff --git a/graphics/sprites/npcs/dig-02-glow.xml b/graphics/sprites/npcs/dig-02-glow.xml
new file mode 100644
index 00000000..b98e3854
--- /dev/null
+++ b/graphics/sprites/npcs/dig-02-glow.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-02.png b/graphics/sprites/npcs/dig-02.png
new file mode 100644
index 00000000..6d4523b2
Binary files /dev/null and b/graphics/sprites/npcs/dig-02.png differ
diff --git a/graphics/sprites/npcs/dig-02.xml b/graphics/sprites/npcs/dig-02.xml
new file mode 100644
index 00000000..08a2187c
--- /dev/null
+++ b/graphics/sprites/npcs/dig-02.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-03-flow.xml b/graphics/sprites/npcs/dig-03-flow.xml
new file mode 100644
index 00000000..4ad3945f
--- /dev/null
+++ b/graphics/sprites/npcs/dig-03-flow.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-03-glow.png b/graphics/sprites/npcs/dig-03-glow.png
new file mode 100644
index 00000000..9a33c372
Binary files /dev/null and b/graphics/sprites/npcs/dig-03-glow.png differ
diff --git a/graphics/sprites/npcs/dig-03-glow.xml b/graphics/sprites/npcs/dig-03-glow.xml
new file mode 100644
index 00000000..8e0c43ef
--- /dev/null
+++ b/graphics/sprites/npcs/dig-03-glow.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-03.png b/graphics/sprites/npcs/dig-03.png
new file mode 100644
index 00000000..be73d1af
Binary files /dev/null and b/graphics/sprites/npcs/dig-03.png differ
diff --git a/graphics/sprites/npcs/dig-03.xml b/graphics/sprites/npcs/dig-03.xml
new file mode 100644
index 00000000..c5f631e2
--- /dev/null
+++ b/graphics/sprites/npcs/dig-03.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-04-flow.png b/graphics/sprites/npcs/dig-04-flow.png
new file mode 100644
index 00000000..fdcd9ef6
Binary files /dev/null and b/graphics/sprites/npcs/dig-04-flow.png differ
diff --git a/graphics/sprites/npcs/dig-04-flow.xml b/graphics/sprites/npcs/dig-04-flow.xml
new file mode 100644
index 00000000..3dbd7ce5
--- /dev/null
+++ b/graphics/sprites/npcs/dig-04-flow.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-04-glow.png b/graphics/sprites/npcs/dig-04-glow.png
new file mode 100644
index 00000000..172274fe
Binary files /dev/null and b/graphics/sprites/npcs/dig-04-glow.png differ
diff --git a/graphics/sprites/npcs/dig-04-glow.xml b/graphics/sprites/npcs/dig-04-glow.xml
new file mode 100644
index 00000000..fb274ab5
--- /dev/null
+++ b/graphics/sprites/npcs/dig-04-glow.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/dig-04.png b/graphics/sprites/npcs/dig-04.png
new file mode 100644
index 00000000..42d9ea10
Binary files /dev/null and b/graphics/sprites/npcs/dig-04.png differ
diff --git a/graphics/sprites/npcs/dig-04.xml b/graphics/sprites/npcs/dig-04.xml
new file mode 100644
index 00000000..fe55de89
--- /dev/null
+++ b/graphics/sprites/npcs/dig-04.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/griffen-meway-gpl.png b/graphics/sprites/npcs/griffen-meway-gpl.png
new file mode 100644
index 00000000..087ff74d
Binary files /dev/null and b/graphics/sprites/npcs/griffen-meway-gpl.png differ
diff --git a/graphics/sprites/npcs/griffen-meway-gpl.xml b/graphics/sprites/npcs/griffen-meway-gpl.xml
new file mode 100644
index 00000000..fc58e478
--- /dev/null
+++ b/graphics/sprites/npcs/griffen-meway-gpl.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/mouboo-injured.xml b/graphics/sprites/npcs/mouboo-injured.xml
new file mode 100644
index 00000000..af469330
--- /dev/null
+++ b/graphics/sprites/npcs/mouboo-injured.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/portal_32x64-01.png b/graphics/sprites/npcs/portal_32x64-01.png
new file mode 100644
index 00000000..e15b6dd9
Binary files /dev/null and b/graphics/sprites/npcs/portal_32x64-01.png differ
diff --git a/graphics/sprites/npcs/portal_32x64-01.xml b/graphics/sprites/npcs/portal_32x64-01.xml
new file mode 100644
index 00000000..e56b3106
--- /dev/null
+++ b/graphics/sprites/npcs/portal_32x64-01.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/teapot.png b/graphics/sprites/npcs/teapot.png
new file mode 100644
index 00000000..a1d0f0a5
Binary files /dev/null and b/graphics/sprites/npcs/teapot.png differ
diff --git a/graphics/sprites/npcs/teapot.xml b/graphics/sprites/npcs/teapot.xml
new file mode 100644
index 00000000..e640447f
--- /dev/null
+++ b/graphics/sprites/npcs/teapot.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/graphics/tiles/aethyra/snow.png b/graphics/tiles/aethyra/snow.png
new file mode 100644
index 00000000..a7545c94
Binary files /dev/null and b/graphics/tiles/aethyra/snow.png differ
diff --git a/graphics/tiles/aethyra/snow_building.png b/graphics/tiles/aethyra/snow_building.png
new file mode 100644
index 00000000..3e55b251
Binary files /dev/null and b/graphics/tiles/aethyra/snow_building.png differ
diff --git a/graphics/tiles/aethyra/snow_roof.png b/graphics/tiles/aethyra/snow_roof.png
new file mode 100644
index 00000000..efc797fc
Binary files /dev/null and b/graphics/tiles/aethyra/snow_roof.png differ
diff --git a/graphics/tiles/aethyra/snow_water.png b/graphics/tiles/aethyra/snow_water.png
new file mode 100644
index 00000000..5a98f542
Binary files /dev/null and b/graphics/tiles/aethyra/snow_water.png differ
diff --git a/graphics/tiles/aethyra/snowset.png b/graphics/tiles/aethyra/snowset.png
new file mode 100644
index 00000000..b866952c
Binary files /dev/null and b/graphics/tiles/aethyra/snowset.png differ
diff --git a/graphics/tiles/blanc.png b/graphics/tiles/blanc.png
new file mode 100644
index 00000000..1d294db4
Binary files /dev/null and b/graphics/tiles/blanc.png differ
diff --git a/graphics/tiles/br/christmastree.png b/graphics/tiles/br/christmastree.png
new file mode 100644
index 00000000..ec323633
Binary files /dev/null and b/graphics/tiles/br/christmastree.png differ
diff --git a/graphics/tiles/br/snow_x3.png b/graphics/tiles/br/snow_x3.png
new file mode 100644
index 00000000..dc5cbfc8
Binary files /dev/null and b/graphics/tiles/br/snow_x3.png differ
diff --git a/graphics/tiles/castle2.png b/graphics/tiles/castle2.png
index c71ba0ee..81c7800d 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
new file mode 100644
index 00000000..744ee26c
Binary files /dev/null and b/graphics/tiles/christmas.png differ
diff --git a/graphics/tiles/crypt1.png b/graphics/tiles/crypt1.png
index 6f94f827..7e52973a 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
new file mode 100644
index 00000000..c7e695af
Binary files /dev/null and b/graphics/tiles/desert-piramide.png differ
diff --git a/graphics/tiles/edges_black_rotated.png b/graphics/tiles/edges_black_rotated.png
new file mode 100644
index 00000000..31015305
Binary files /dev/null and b/graphics/tiles/edges_black_rotated.png differ
diff --git a/graphics/tiles/edges_ice_rotated.png b/graphics/tiles/edges_ice_rotated.png
new file mode 100644
index 00000000..191b4aa8
Binary files /dev/null and b/graphics/tiles/edges_ice_rotated.png differ
diff --git a/graphics/tiles/lof/warp_gates.png b/graphics/tiles/lof/warp_gates.png
new file mode 100644
index 00000000..cceec189
Binary files /dev/null and b/graphics/tiles/lof/warp_gates.png differ
diff --git a/graphics/tiles/lof/woodland_indoor.png b/graphics/tiles/lof/woodland_indoor.png
new file mode 100644
index 00000000..0038de1a
Binary files /dev/null and b/graphics/tiles/lof/woodland_indoor.png differ
diff --git a/graphics/tiles/lof/woodland_indoor_extra.png b/graphics/tiles/lof/woodland_indoor_extra.png
new file mode 100644
index 00000000..3eca9142
Binary files /dev/null and b/graphics/tiles/lof/woodland_indoor_extra.png differ
diff --git a/graphics/tiles/ml/cabana_in_fada.png b/graphics/tiles/ml/cabana_in_fada.png
new file mode 100644
index 00000000..90509c45
Binary files /dev/null and b/graphics/tiles/ml/cabana_in_fada.png differ
diff --git a/graphics/tiles/mushrooms_x2.png b/graphics/tiles/mushrooms_x2.png
index 5ea36de5..1f6550eb 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 c6ed64bc..051cdeeb 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
new file mode 100644
index 00000000..aa6e1bfb
Binary files /dev/null and b/graphics/tiles/set_cave.png differ
diff --git a/graphics/tiles/set_desert.png b/graphics/tiles/set_desert.png
new file mode 100644
index 00000000..77a41eb9
Binary files /dev/null and b/graphics/tiles/set_desert.png differ
diff --git a/graphics/tiles/set_icecave.png b/graphics/tiles/set_icecave.png
new file mode 100644
index 00000000..8a1319b9
Binary files /dev/null and b/graphics/tiles/set_icecave.png differ
diff --git a/graphics/tiles/set_icemountain.png b/graphics/tiles/set_icemountain.png
new file mode 100644
index 00000000..3dab22e9
Binary files /dev/null and b/graphics/tiles/set_icemountain.png differ
diff --git a/graphics/tiles/set_rules.png b/graphics/tiles/set_rules.png
new file mode 100644
index 00000000..bf7f93c7
Binary files /dev/null and b/graphics/tiles/set_rules.png differ
diff --git a/graphics/tiles/set_thermin_cave.png b/graphics/tiles/set_thermin_cave.png
new file mode 100644
index 00000000..05b23249
Binary files /dev/null and b/graphics/tiles/set_thermin_cave.png differ
diff --git a/graphics/tiles/set_woodland.png b/graphics/tiles/set_woodland.png
new file mode 100644
index 00000000..9661f074
Binary files /dev/null and b/graphics/tiles/set_woodland.png differ
diff --git a/graphics/tiles/signs_wooden_round_numbered.png b/graphics/tiles/signs_wooden_round_numbered.png
new file mode 100644
index 00000000..760e9280
Binary files /dev/null and b/graphics/tiles/signs_wooden_round_numbered.png differ
diff --git a/graphics/tiles/snow_village2.png b/graphics/tiles/snow_village2.png
index 118c8086..bc93774b 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 8f2de99d..5403969e 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
new file mode 100644
index 00000000..32ce8e3c
Binary files /dev/null and b/graphics/tiles/ukarWalls.png differ
diff --git a/graphics/tiles/woodland_graveyard_ground.png b/graphics/tiles/woodland_graveyard_ground.png
index 961638dc..8fd88e4e 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 726525e7..857a9820 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 66a40507..0673ddf9 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
new file mode 100644
index 00000000..7277c5e7
Binary files /dev/null and b/graphics/tiles/woodland_inn_1.png differ
diff --git a/graphics/tiles/woodland_inn_2.png b/graphics/tiles/woodland_inn_2.png
new file mode 100644
index 00000000..b136a0cb
Binary files /dev/null and b/graphics/tiles/woodland_inn_2.png differ
diff --git a/graphics/tiles/woodland_inn_x2.png b/graphics/tiles/woodland_inn_x2.png
new file mode 100644
index 00000000..664f3295
Binary files /dev/null and b/graphics/tiles/woodland_inn_x2.png differ
diff --git a/graphics/tiles/woodland_inn_x3.png b/graphics/tiles/woodland_inn_x3.png
new file mode 100644
index 00000000..1983d0ec
Binary files /dev/null and b/graphics/tiles/woodland_inn_x3.png differ
diff --git a/graphics/tiles/woodland_inn_x4.png b/graphics/tiles/woodland_inn_x4.png
new file mode 100644
index 00000000..57002386
Binary files /dev/null and b/graphics/tiles/woodland_inn_x4.png differ
diff --git a/itemfields.xml b/itemfields.xml
index 1eb69361..33d0b3d2 100644
--- a/itemfields.xml
+++ b/itemfields.xml
@@ -34,7 +34,9 @@ Copyright (C) 2016 Evol Online -->
+
+
diff --git a/items.xml b/items.xml
index 36bdd7df..e6be37cc 100644
--- a/items.xml
+++ b/items.xml
@@ -1,19 +1,21 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-1hand/_include.xml b/items/equip-1hand/_include.xml
index e2339ca5..105c7907 100644
--- a/items/equip-1hand/_include.xml
+++ b/items/equip-1hand/_include.xml
@@ -1,27 +1,24 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/items/equip-1hand/item521_Dagger.xml b/items/equip-1hand/item0521_Dagger.xml
similarity index 53%
rename from items/equip-1hand/item521_Dagger.xml
rename to items/equip-1hand/item0521_Dagger.xml
index 27eeb202..b855d30a 100644
--- a/items/equip-1hand/item521_Dagger.xml
+++ b/items/equip-1hand/item0521_Dagger.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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/item522_SharpKnife.xml b/items/equip-1hand/item0522_SharpKnife.xml
similarity index 58%
rename from items/equip-1hand/item522_SharpKnife.xml
rename to items/equip-1hand/item0522_SharpKnife.xml
index fe32f5cd..ec223b33 100644
--- a/items/equip-1hand/item522_SharpKnife.xml
+++ b/items/equip-1hand/item0522_SharpKnife.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
+
-
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/item0536_ShortSword.xml b/items/equip-1hand/item0536_ShortSword.xml
new file mode 100644
index 00000000..2cd48e94
--- /dev/null
+++ b/items/equip-1hand/item0536_ShortSword.xml
@@ -0,0 +1,9 @@
+
+
+
-
+ 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/item549_Axe.xml b/items/equip-1hand/item0549_Axe.xml
similarity index 52%
rename from items/equip-1hand/item549_Axe.xml
rename to items/equip-1hand/item0549_Axe.xml
index 4d1de488..ec8f72a1 100644
--- a/items/equip-1hand/item549_Axe.xml
+++ b/items/equip-1hand/item0549_Axe.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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/item570_BoneKnife.xml b/items/equip-1hand/item0570_BoneKnife.xml
similarity index 58%
rename from items/equip-1hand/item570_BoneKnife.xml
rename to items/equip-1hand/item0570_BoneKnife.xml
index c07579df..4cef4ae4 100644
--- a/items/equip-1hand/item570_BoneKnife.xml
+++ b/items/equip-1hand/item0570_BoneKnife.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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/item0571_Setzer.xml b/items/equip-1hand/item0571_Setzer.xml
new file mode 100644
index 00000000..c7fd2169
--- /dev/null
+++ b/items/equip-1hand/item0571_Setzer.xml
@@ -0,0 +1,12 @@
+
+
+
-
+ 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
new file mode 100644
index 00000000..b8ee7350
--- /dev/null
+++ b/items/equip-1hand/item0576_Beheader.xml
@@ -0,0 +1,12 @@
+
+
+ -
+ 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
new file mode 100644
index 00000000..84d16c4e
--- /dev/null
+++ b/items/equip-1hand/item0578_SandCutter.xml
@@ -0,0 +1,9 @@
+
+
+ -
+ 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/item579_RockKnife.xml b/items/equip-1hand/item0579_RockKnife.xml
similarity index 58%
rename from items/equip-1hand/item579_RockKnife.xml
rename to items/equip-1hand/item0579_RockKnife.xml
index 7ef7346f..9d1debf7 100644
--- a/items/equip-1hand/item579_RockKnife.xml
+++ b/items/equip-1hand/item0579_RockKnife.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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/item0584_Jackal.xml b/items/equip-1hand/item0584_Jackal.xml
new file mode 100644
index 00000000..e6c248d1
--- /dev/null
+++ b/items/equip-1hand/item0584_Jackal.xml
@@ -0,0 +1,26 @@
+
+
+
-
+ 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
new file mode 100644
index 00000000..824b1059
--- /dev/null
+++ b/items/equip-1hand/item0587_Sword.xml
@@ -0,0 +1,8 @@
+
+
+ -
+ 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
new file mode 100644
index 00000000..f737ecf9
--- /dev/null
+++ b/items/equip-1hand/item0590_DragonSword.xml
@@ -0,0 +1,29 @@
+
+
+ -
+ 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
new file mode 100644
index 00000000..478042fc
--- /dev/null
+++ b/items/equip-1hand/item0591_LongSword.xml
@@ -0,0 +1,26 @@
+
+
+ -
+ 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/item599_FireSword.xml b/items/equip-1hand/item0599_FireSword.xml
similarity index 52%
rename from items/equip-1hand/item599_FireSword.xml
rename to items/equip-1hand/item0599_FireSword.xml
index fe7d795a..e6dd6108 100644
--- a/items/equip-1hand/item599_FireSword.xml
+++ b/items/equip-1hand/item0599_FireSword.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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/item867_IceGladius.xml b/items/equip-1hand/item0867_IceGladius.xml
similarity index 59%
rename from items/equip-1hand/item867_IceGladius.xml
rename to items/equip-1hand/item0867_IceGladius.xml
index ee130e5b..9b8ec863 100644
--- a/items/equip-1hand/item867_IceGladius.xml
+++ b/items/equip-1hand/item0867_IceGladius.xml
@@ -1,12 +1,18 @@
-
-
-
-
-
-
- -
+
-
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-1hand/item0910_Rainerang.xml b/items/equip-1hand/item0910_Rainerang.xml
new file mode 100644
index 00000000..046ba3e6
--- /dev/null
+++ b/items/equip-1hand/item0910_Rainerang.xml
@@ -0,0 +1,18 @@
+
+
+
-
+ 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 d98d2724..8a07471b 100644
--- a/items/equip-1hand/item1171_Wand.xml
+++ b/items/equip-1hand/item1171_Wand.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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 a67cffe9..d4c33b27 100644
--- a/items/equip-1hand/item1201_Knife.xml
+++ b/items/equip-1hand/item1201_Knife.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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 0e3e31fb..48a3ec2a 100644
--- a/items/equip-1hand/item1215_ToySabre.xml
+++ b/items/equip-1hand/item1215_ToySabre.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
+
-
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/item5261_Launcher.xml b/items/equip-1hand/item5261_Launcher.xml
index 13ca52c1..9587d061 100644
--- a/items/equip-1hand/item5261_Launcher.xml
+++ b/items/equip-1hand/item5261_Launcher.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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
new file mode 100644
index 00000000..dfb341c9
--- /dev/null
+++ b/items/equip-1hand/item5284_Flintlock.xml
@@ -0,0 +1,25 @@
+
+
+
-
+ 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
deleted file mode 100644
index 6fd195ef..00000000
--- a/items/equip-1hand/item5284_Revolver.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
- -
- 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
deleted file mode 100644
index 1ab6a40a..00000000
--- a/items/equip-1hand/item536_ShortSword.xml
+++ /dev/null
@@ -1,15 +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/item571_Setzer.xml b/items/equip-1hand/item571_Setzer.xml
deleted file mode 100644
index fa574961..00000000
--- a/items/equip-1hand/item571_Setzer.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
- -
- 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
deleted file mode 100644
index 4be57579..00000000
--- a/items/equip-1hand/item576_Beheader.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
- -
- 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
deleted file mode 100644
index 3ea20114..00000000
--- a/items/equip-1hand/item578_SandCutter.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
- -
- 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/item587_Sword.xml b/items/equip-1hand/item587_Sword.xml
deleted file mode 100644
index e1bb8ba3..00000000
--- a/items/equip-1hand/item587_Sword.xml
+++ /dev/null
@@ -1,31 +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
-
- -
- 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
deleted file mode 100644
index 12fbb17d..00000000
--- a/items/equip-1hand/item591_LongSword.xml
+++ /dev/null
@@ -1,13 +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/_include.xml b/items/equip-2hand/_include.xml
index b9c99813..68aae96d 100644
--- a/items/equip-2hand/_include.xml
+++ b/items/equip-2hand/_include.xml
@@ -1,23 +1,20 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-2hand/item530_ShortBow.xml b/items/equip-2hand/item0530_ShortBow.xml
similarity index 53%
rename from items/equip-2hand/item530_ShortBow.xml
rename to items/equip-2hand/item0530_ShortBow.xml
index 3c3a92e0..6b9cbe68 100644
--- a/items/equip-2hand/item530_ShortBow.xml
+++ b/items/equip-2hand/item0530_ShortBow.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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/item545_ForestBow.xml b/items/equip-2hand/item0545_ForestBow.xml
similarity index 53%
rename from items/equip-2hand/item545_ForestBow.xml
rename to items/equip-2hand/item0545_ForestBow.xml
index 7fa5afd0..890dacf4 100644
--- a/items/equip-2hand/item545_ForestBow.xml
+++ b/items/equip-2hand/item0545_ForestBow.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
+
-
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/item548_Halberd.xml b/items/equip-2hand/item0548_Halberd.xml
similarity index 60%
rename from items/equip-2hand/item548_Halberd.xml
rename to items/equip-2hand/item0548_Halberd.xml
index cf01373a..63459c0f 100644
--- a/items/equip-2hand/item548_Halberd.xml
+++ b/items/equip-2hand/item0548_Halberd.xml
@@ -1,12 +1,17 @@
-
-
-
-
-
-
-
-
+
-
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/item0588_BastardSword.xml b/items/equip-2hand/item0588_BastardSword.xml
new file mode 100644
index 00000000..cd596241
--- /dev/null
+++ b/items/equip-2hand/item0588_BastardSword.xml
@@ -0,0 +1,17 @@
+
+
+
-
+ 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
new file mode 100644
index 00000000..2bca4833
--- /dev/null
+++ b/items/equip-2hand/item0594_Spear.xml
@@ -0,0 +1,17 @@
+
+
+ -
+ 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/item595_HeavySpear.xml b/items/equip-2hand/item0595_HeavySpear.xml
similarity index 57%
rename from items/equip-2hand/item595_HeavySpear.xml
rename to items/equip-2hand/item0595_HeavySpear.xml
index 428c548d..ac896423 100644
--- a/items/equip-2hand/item595_HeavySpear.xml
+++ b/items/equip-2hand/item0595_HeavySpear.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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
new file mode 100644
index 00000000..ac6027fd
--- /dev/null
+++ b/items/equip-2hand/item0596_Pike.xml
@@ -0,0 +1,18 @@
+
+
+ -
+ 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/item597_HeavyPike.xml b/items/equip-2hand/item0597_HeavyPike.xml
similarity index 57%
rename from items/equip-2hand/item597_HeavyPike.xml
rename to items/equip-2hand/item0597_HeavyPike.xml
index a04d4eb1..31cfdc9d 100644
--- a/items/equip-2hand/item597_HeavyPike.xml
+++ b/items/equip-2hand/item0597_HeavyPike.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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
new file mode 100644
index 00000000..6ea71da1
--- /dev/null
+++ b/items/equip-2hand/item0609_ImperialBow.xml
@@ -0,0 +1,29 @@
+
+
+ -
+ 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/item623_Scythe.xml b/items/equip-2hand/item0623_Scythe.xml
similarity index 58%
rename from items/equip-2hand/item623_Scythe.xml
rename to items/equip-2hand/item0623_Scythe.xml
index dca6fb5e..5f29134c 100644
--- a/items/equip-2hand/item623_Scythe.xml
+++ b/items/equip-2hand/item0623_Scythe.xml
@@ -1,12 +1,17 @@
-
-
-
-
-
-
- -
+
-
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/item758_WoodenStaff.xml b/items/equip-2hand/item0758_WoodenStaff.xml
similarity index 53%
rename from items/equip-2hand/item758_WoodenStaff.xml
rename to items/equip-2hand/item0758_WoodenStaff.xml
index 8d4a277c..137e622b 100644
--- a/items/equip-2hand/item758_WoodenStaff.xml
+++ b/items/equip-2hand/item0758_WoodenStaff.xml
@@ -1,12 +1,19 @@
-
-
-
-
-
-
-
-
+
-
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/item878_BansheeBow.xml b/items/equip-2hand/item0878_BansheeBow.xml
similarity index 61%
rename from items/equip-2hand/item878_BansheeBow.xml
rename to items/equip-2hand/item0878_BansheeBow.xml
index 40f8ecfd..d6d57e0c 100644
--- a/items/equip-2hand/item878_BansheeBow.xml
+++ b/items/equip-2hand/item0878_BansheeBow.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
+
-
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/item903_SlingShot.xml b/items/equip-2hand/item0903_SlingShot.xml
similarity index 58%
rename from items/equip-2hand/item903_SlingShot.xml
rename to items/equip-2hand/item0903_SlingShot.xml
index 8b49e59e..f625fef8 100644
--- a/items/equip-2hand/item903_SlingShot.xml
+++ b/items/equip-2hand/item0903_SlingShot.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
+
-
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/item0906_KidBook.xml b/items/equip-2hand/item0906_KidBook.xml
new file mode 100644
index 00000000..68d5f7e7
--- /dev/null
+++ b/items/equip-2hand/item0906_KidBook.xml
@@ -0,0 +1,23 @@
+
+
+ -
+
+
+
+
+
+ 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
new file mode 100644
index 00000000..5c575984
--- /dev/null
+++ b/items/equip-2hand/item0907_FloydBook.xml
@@ -0,0 +1,23 @@
+
+
+ -
+
+
+
+
+ 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
new file mode 100644
index 00000000..c2a60f8e
--- /dev/null
+++ b/items/equip-2hand/item1170_SweetToothStaff.xml
@@ -0,0 +1,24 @@
+
+
+ -
+ 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 56a293dd..02d1e593 100644
--- a/items/equip-2hand/item1200_Bow.xml
+++ b/items/equip-2hand/item1200_Bow.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
- -
+
-
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/item588_BastardSword.xml b/items/equip-2hand/item588_BastardSword.xml
deleted file mode 100644
index c8e84a56..00000000
--- a/items/equip-2hand/item588_BastardSword.xml
+++ /dev/null
@@ -1,13 +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/item594_Spear.xml b/items/equip-2hand/item594_Spear.xml
deleted file mode 100644
index d38b0d52..00000000
--- a/items/equip-2hand/item594_Spear.xml
+++ /dev/null
@@ -1,13 +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/item596_Pike.xml b/items/equip-2hand/item596_Pike.xml
deleted file mode 100644
index 8b3f03ea..00000000
--- a/items/equip-2hand/item596_Pike.xml
+++ /dev/null
@@ -1,13 +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/item906_KidBook.xml b/items/equip-2hand/item906_KidBook.xml
deleted file mode 100644
index 985a5f50..00000000
--- a/items/equip-2hand/item906_KidBook.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
-
diff --git a/items/equip-ammo/_include.xml b/items/equip-ammo/_include.xml
index d5e7b54f..22e92869 100644
--- a/items/equip-ammo/_include.xml
+++ b/items/equip-ammo/_include.xml
@@ -1,15 +1,12 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/items/equip-ammo/item0529_IronArrow.xml b/items/equip-ammo/item0529_IronArrow.xml
new file mode 100644
index 00000000..70eaf434
--- /dev/null
+++ b/items/equip-ammo/item0529_IronArrow.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-ammo/item0762_TerraniteArrow.xml b/items/equip-ammo/item0762_TerraniteArrow.xml
new file mode 100644
index 00000000..bb87fa48
--- /dev/null
+++ b/items/equip-ammo/item0762_TerraniteArrow.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-ammo/item0904_SlingBullet.xml b/items/equip-ammo/item0904_SlingBullet.xml
new file mode 100644
index 00000000..74e3fabc
--- /dev/null
+++ b/items/equip-ammo/item0904_SlingBullet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-ammo/item1199_Arrow.xml b/items/equip-ammo/item1199_Arrow.xml
index 30c29704..09568b52 100644
--- a/items/equip-ammo/item1199_Arrow.xml
+++ b/items/equip-ammo/item1199_Arrow.xml
@@ -1,10 +1,4 @@
-
-
-
-
-
-
diff --git a/items/equip-ammo/item1282_BoneArrows.xml b/items/equip-ammo/item1282_BoneArrows.xml
index a8a905f6..616a2228 100644
--- a/items/equip-ammo/item1282_BoneArrows.xml
+++ b/items/equip-ammo/item1282_BoneArrows.xml
@@ -1,10 +1,4 @@
-
-
-
-
-
-
-
+
diff --git a/items/equip-ammo/item5260_Snowball.xml b/items/equip-ammo/item5260_Snowball.xml
index d4fc5bbb..a6accc98 100644
--- a/items/equip-ammo/item5260_Snowball.xml
+++ b/items/equip-ammo/item5260_Snowball.xml
@@ -1,10 +1,4 @@
-
-
-
-
-
-
diff --git a/items/equip-ammo/item5289_ArmorBreakerArrow.xml b/items/equip-ammo/item5289_ArmorBreakerArrow.xml
new file mode 100644
index 00000000..4345b202
--- /dev/null
+++ b/items/equip-ammo/item5289_ArmorBreakerArrow.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/equip-ammo/item5290_SilverArrow.xml b/items/equip-ammo/item5290_SilverArrow.xml
new file mode 100644
index 00000000..ceba8f26
--- /dev/null
+++ b/items/equip-ammo/item5290_SilverArrow.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/equip-ammo/item5291_ThornArrow.xml b/items/equip-ammo/item5291_ThornArrow.xml
new file mode 100644
index 00000000..55a3d877
--- /dev/null
+++ b/items/equip-ammo/item5291_ThornArrow.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/equip-ammo/item529_IronArrow.xml b/items/equip-ammo/item529_IronArrow.xml
deleted file mode 100644
index 42d16da4..00000000
--- a/items/equip-ammo/item529_IronArrow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-ammo/item762_TerraniteArrow.xml b/items/equip-ammo/item762_TerraniteArrow.xml
deleted file mode 100644
index d61e811e..00000000
--- a/items/equip-ammo/item762_TerraniteArrow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-ammo/item904_SlingBullet.xml b/items/equip-ammo/item904_SlingBullet.xml
deleted file mode 100644
index 4219794c..00000000
--- a/items/equip-ammo/item904_SlingBullet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-amulet/_include.xml b/items/equip-amulet/_include.xml
new file mode 100644
index 00000000..006583e5
--- /dev/null
+++ b/items/equip-amulet/_include.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml b/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml
new file mode 100644
index 00000000..dbc8e72e
--- /dev/null
+++ b/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml b/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml
new file mode 100644
index 00000000..53413745
--- /dev/null
+++ b/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-amulet/item0831_SilverFourLeafAmulet.xml b/items/equip-amulet/item0831_SilverFourLeafAmulet.xml
new file mode 100644
index 00000000..97c0e6bf
--- /dev/null
+++ b/items/equip-amulet/item0831_SilverFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml b/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml
new file mode 100644
index 00000000..14285fc7
--- /dev/null
+++ b/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-amulet/item0908_GMAmulet.xml b/items/equip-amulet/item0908_GMAmulet.xml
new file mode 100644
index 00000000..23c57f42
--- /dev/null
+++ b/items/equip-amulet/item0908_GMAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-amulet/item1227_EnchantersAmulet.xml b/items/equip-amulet/item1227_EnchantersAmulet.xml
new file mode 100644
index 00000000..c24506d5
--- /dev/null
+++ b/items/equip-amulet/item1227_EnchantersAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-amulet/item5252_GuardianWings.xml b/items/equip-amulet/item5252_GuardianWings.xml
new file mode 100644
index 00000000..baa87550
--- /dev/null
+++ b/items/equip-amulet/item5252_GuardianWings.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ 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
new file mode 100644
index 00000000..dbd6c3e3
--- /dev/null
+++ b/items/equip-amulet/item5269_AssassinAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-amulet/item5270_ManaPearl.xml b/items/equip-amulet/item5270_ManaPearl.xml
new file mode 100644
index 00000000..39c232bf
--- /dev/null
+++ b/items/equip-amulet/item5270_ManaPearl.xml
@@ -0,0 +1,6 @@
+
+
+ -
+ graphics/particles/manapearl.particle.xml
+
+
diff --git a/items/equip-arms/_include.xml b/items/equip-arms/_include.xml
index 365c9f55..a5ee0467 100644
--- a/items/equip-arms/_include.xml
+++ b/items/equip-arms/_include.xml
@@ -1,19 +1,12 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/items/equip-arms/item531_MinerGloves.xml b/items/equip-arms/item0531_MinerGloves.xml
similarity index 53%
rename from items/equip-arms/item531_MinerGloves.xml
rename to items/equip-arms/item0531_MinerGloves.xml
index 68589d07..db72ecd8 100644
--- a/items/equip-arms/item531_MinerGloves.xml
+++ b/items/equip-arms/item0531_MinerGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/hands/generic.xml|#202020,505050
equipment/hands/generic-female.xml|#202020,505050
diff --git a/items/equip-arms/item532_LeatherGloves.xml b/items/equip-arms/item0532_LeatherGloves.xml
similarity index 53%
rename from items/equip-arms/item532_LeatherGloves.xml
rename to items/equip-arms/item0532_LeatherGloves.xml
index 9cf388e0..74ff6969 100644
--- a/items/equip-arms/item532_LeatherGloves.xml
+++ b/items/equip-arms/item0532_LeatherGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/hands/generic.xml|#4e2e18,c8752f
equipment/hands/generic-female.xml|#4e2e18,c8752f
diff --git a/items/equip-arms/item563_WinterGloves.xml b/items/equip-arms/item0563_WinterGloves.xml
similarity index 56%
rename from items/equip-arms/item563_WinterGloves.xml
rename to items/equip-arms/item0563_WinterGloves.xml
index 70529537..b7c6e0da 100644
--- a/items/equip-arms/item563_WinterGloves.xml
+++ b/items/equip-arms/item0563_WinterGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/hands/generic.xml|#202020,c0c0c0,ffffff,ffffff
equipment/hands/generic-female.xml|#202020,c0c0c0,ffffff,ffffff
diff --git a/items/equip-arms/item741_CottonGloves.xml b/items/equip-arms/item0741_CottonGloves.xml
similarity index 54%
rename from items/equip-arms/item741_CottonGloves.xml
rename to items/equip-arms/item0741_CottonGloves.xml
index 73a30b82..be66bae7 100644
--- a/items/equip-arms/item741_CottonGloves.xml
+++ b/items/equip-arms/item0741_CottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/hands/generic.xml|#a4b2b2,ffffff
equipment/hands/generic-female.xml|#a4b2b2,ffffff
diff --git a/items/equip-arms/item0756_AssassinGloves.xml b/items/equip-arms/item0756_AssassinGloves.xml
new file mode 100644
index 00000000..349d6e4f
--- /dev/null
+++ b/items/equip-arms/item0756_AssassinGloves.xml
@@ -0,0 +1,7 @@
+
+
+
-
+ 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
new file mode 100644
index 00000000..850c630a
--- /dev/null
+++ b/items/equip-arms/item0794_BromenalGloves.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/hands/bromenalgloves.xml
+ equipment/hands/bromenalgloves-female.xml
+
+
diff --git a/items/equip-arms/item868_SilkGloves.xml b/items/equip-arms/item0868_SilkGloves.xml
similarity index 57%
rename from items/equip-arms/item868_SilkGloves.xml
rename to items/equip-arms/item0868_SilkGloves.xml
index 0184a903..bfeb432f 100644
--- a/items/equip-arms/item868_SilkGloves.xml
+++ b/items/equip-arms/item0868_SilkGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/hands/generic.xml|#87876c,bbc39c,edf4e1,ffffff
equipment/hands/generic-female.xml|#87876c,bbc39c,edf4e1,ffffff
diff --git a/items/equip-arms/item2160_RedCottonGloves.xml b/items/equip-arms/item2160_RedCottonGloves.xml
index e12616be..fe26136e 100644
--- a/items/equip-arms/item2160_RedCottonGloves.xml
+++ b/items/equip-arms/item2160_RedCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 2462a384..9feb5268 100644
--- a/items/equip-arms/item2161_GreenCottonGloves.xml
+++ b/items/equip-arms/item2161_GreenCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 4b525f01..0e826005 100644
--- a/items/equip-arms/item2162_DarkBlueCottonGloves.xml
+++ b/items/equip-arms/item2162_DarkBlueCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 22461832..8dd4556a 100644
--- a/items/equip-arms/item2163_YellowCottonGloves.xml
+++ b/items/equip-arms/item2163_YellowCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 734924c7..dca55667 100644
--- a/items/equip-arms/item2164_LightBlueCottonGloves.xml
+++ b/items/equip-arms/item2164_LightBlueCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 2798f5f7..75733dc4 100644
--- a/items/equip-arms/item2165_PinkCottonGloves.xml
+++ b/items/equip-arms/item2165_PinkCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 a99d2116..0494d360 100644
--- a/items/equip-arms/item2166_BlackCottonGloves.xml
+++ b/items/equip-arms/item2166_BlackCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 5425d2d9..41a35755 100644
--- a/items/equip-arms/item2167_OrangeCottonGloves.xml
+++ b/items/equip-arms/item2167_OrangeCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 8c0ed892..98b9d76b 100644
--- a/items/equip-arms/item2168_PurpleCottonGloves.xml
+++ b/items/equip-arms/item2168_PurpleCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 4e4a24bd..a5666b0a 100644
--- a/items/equip-arms/item2169_DarkGreenCottonGloves.xml
+++ b/items/equip-arms/item2169_DarkGreenCottonGloves.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/hands/generic.xml|#0b300b,195519,3e832e,3e9c3e
equipment/hands/generic-female.xml|#0b300b,195519,3e832e,3e9c3e
diff --git a/items/equip-arms/item585_ScarabArmlet.xml b/items/equip-arms/item585_ScarabArmlet.xml
deleted file mode 100644
index 96f95ee4..00000000
--- a/items/equip-arms/item585_ScarabArmlet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-arms/item756_AssassinGloves.xml b/items/equip-arms/item756_AssassinGloves.xml
deleted file mode 100644
index 17220262..00000000
--- a/items/equip-arms/item756_AssassinGloves.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
- -
- 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
deleted file mode 100644
index daeb94d6..00000000
--- a/items/equip-arms/item794_BromenalGloves.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
- -
- equipment/hands/bromenalgloves.xml
- equipment/hands/bromenalgloves-female.xml
-
-
diff --git a/items/equip-charm/_include.xml b/items/equip-charm/_include.xml
index eb5bd1ca..ff7953a8 100644
--- a/items/equip-charm/_include.xml
+++ b/items/equip-charm/_include.xml
@@ -1,21 +1,9 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/items/equip-charm/item0677_HeartNecklace.xml b/items/equip-charm/item0677_HeartNecklace.xml
new file mode 100644
index 00000000..8437197f
--- /dev/null
+++ b/items/equip-charm/item0677_HeartNecklace.xml
@@ -0,0 +1,6 @@
+
+
+ -
+ graphics/particles/heartnecklace.particle.xml
+
+
diff --git a/items/equip-charm/item0742_FourLeafClover.xml b/items/equip-charm/item0742_FourLeafClover.xml
new file mode 100644
index 00000000..0a320ad1
--- /dev/null
+++ b/items/equip-charm/item0742_FourLeafClover.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item0749_Towel.xml b/items/equip-charm/item0749_Towel.xml
new file mode 100644
index 00000000..72952a0a
--- /dev/null
+++ b/items/equip-charm/item0749_Towel.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item0865_Grimoire.xml b/items/equip-charm/item0865_Grimoire.xml
new file mode 100644
index 00000000..6181962b
--- /dev/null
+++ b/items/equip-charm/item0865_Grimoire.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item0879_HeartofIsis.xml b/items/equip-charm/item0879_HeartofIsis.xml
new file mode 100644
index 00000000..1435ada7
--- /dev/null
+++ b/items/equip-charm/item0879_HeartofIsis.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item1227_EnchantersAmulet.xml b/items/equip-charm/item1227_EnchantersAmulet.xml
deleted file mode 100644
index 27229111..00000000
--- a/items/equip-charm/item1227_EnchantersAmulet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item1244_DarkTalisman.xml b/items/equip-charm/item1244_DarkTalisman.xml
new file mode 100644
index 00000000..2a002698
--- /dev/null
+++ b/items/equip-charm/item1244_DarkTalisman.xml
@@ -0,0 +1,6 @@
+
+
+ -
+ graphics/particles/dark-talisman.xml
+
+
diff --git a/items/equip-charm/item5269_AssassinAmulet.xml b/items/equip-charm/item5269_AssassinAmulet.xml
deleted file mode 100644
index e18b1579..00000000
--- a/items/equip-charm/item5269_AssassinAmulet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item5270_ManaPearl.xml b/items/equip-charm/item5270_ManaPearl.xml
deleted file mode 100644
index 88b77c7c..00000000
--- a/items/equip-charm/item5270_ManaPearl.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
- -
- graphics/particles/manapearl.particle.xml
-
-
diff --git a/items/equip-charm/item677_HeartNecklace.xml b/items/equip-charm/item677_HeartNecklace.xml
deleted file mode 100644
index d0ecf7eb..00000000
--- a/items/equip-charm/item677_HeartNecklace.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
- -
- graphics/particles/heartnecklace.particle.xml
-
-
diff --git a/items/equip-charm/item742_FourLeafClover.xml b/items/equip-charm/item742_FourLeafClover.xml
deleted file mode 100644
index 9e5c718e..00000000
--- a/items/equip-charm/item742_FourLeafClover.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item749_Towel.xml b/items/equip-charm/item749_Towel.xml
deleted file mode 100644
index a1571e7a..00000000
--- a/items/equip-charm/item749_Towel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml b/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml
deleted file mode 100644
index 1f01c0be..00000000
--- a/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item830_BromenalFourLeafAmulet.xml b/items/equip-charm/item830_BromenalFourLeafAmulet.xml
deleted file mode 100644
index 20be81b6..00000000
--- a/items/equip-charm/item830_BromenalFourLeafAmulet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item831_SilverFourLeafAmulet.xml b/items/equip-charm/item831_SilverFourLeafAmulet.xml
deleted file mode 100644
index d6d595ee..00000000
--- a/items/equip-charm/item831_SilverFourLeafAmulet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item832_GoldenFourLeafAmulet.xml b/items/equip-charm/item832_GoldenFourLeafAmulet.xml
deleted file mode 100644
index 20d1a799..00000000
--- a/items/equip-charm/item832_GoldenFourLeafAmulet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item865_Grimoire.xml b/items/equip-charm/item865_Grimoire.xml
deleted file mode 100644
index 59224e9a..00000000
--- a/items/equip-charm/item865_Grimoire.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-charm/item879_HeartofIsis.xml b/items/equip-charm/item879_HeartofIsis.xml
deleted file mode 100644
index 67ea1ad2..00000000
--- a/items/equip-charm/item879_HeartofIsis.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-feet/_include.xml b/items/equip-feet/_include.xml
index 00ac813f..ad7b2328 100644
--- a/items/equip-feet/_include.xml
+++ b/items/equip-feet/_include.xml
@@ -1,17 +1,12 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -23,4 +18,5 @@
+
diff --git a/items/equip-feet/item528_Boots.xml b/items/equip-feet/item0528_Boots.xml
similarity index 53%
rename from items/equip-feet/item528_Boots.xml
rename to items/equip-feet/item0528_Boots.xml
index e94e7dff..8d32a99a 100644
--- a/items/equip-feet/item528_Boots.xml
+++ b/items/equip-feet/item0528_Boots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/feet/boots.xml|#623a34,f0c2b4
equipment/feet/boots-female.xml|#623a34,f0c2b4
diff --git a/items/equip-feet/item655_FurBoots.xml b/items/equip-feet/item0655_FurBoots.xml
similarity index 50%
rename from items/equip-feet/item655_FurBoots.xml
rename to items/equip-feet/item0655_FurBoots.xml
index ca0fe737..b661f5c8 100644
--- a/items/equip-feet/item655_FurBoots.xml
+++ b/items/equip-feet/item0655_FurBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/feet/furboots.xml
equipment/feet/furboots-female.xml
diff --git a/items/equip-feet/item734_BlackBoots.xml b/items/equip-feet/item0734_BlackBoots.xml
similarity index 56%
rename from items/equip-feet/item734_BlackBoots.xml
rename to items/equip-feet/item0734_BlackBoots.xml
index 1e46db5e..9b93bc5c 100644
--- a/items/equip-feet/item734_BlackBoots.xml
+++ b/items/equip-feet/item0734_BlackBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/feet/boots.xml|#212121
equipment/feet/boots-female.xml|#212121
diff --git a/items/equip-feet/item0735_CottonBoots.xml b/items/equip-feet/item0735_CottonBoots.xml
new file mode 100644
index 00000000..14aed202
--- /dev/null
+++ b/items/equip-feet/item0735_CottonBoots.xml
@@ -0,0 +1,7 @@
+
+
+
-
+ 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
new file mode 100644
index 00000000..2952d91b
--- /dev/null
+++ b/items/equip-feet/item0757_AssassinBoots.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ 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
new file mode 100644
index 00000000..ada38699
--- /dev/null
+++ b/items/equip-feet/item0792_BromenalBoots.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/feet/bromenalboots.xml
+ equipment/feet/bromenalboots-female.xml
+
+
diff --git a/items/equip-feet/item876_WarlordBoots.xml b/items/equip-feet/item0876_WarlordBoots.xml
similarity index 53%
rename from items/equip-feet/item876_WarlordBoots.xml
rename to items/equip-feet/item0876_WarlordBoots.xml
index 85d3db94..097f482c 100644
--- a/items/equip-feet/item876_WarlordBoots.xml
+++ b/items/equip-feet/item0876_WarlordBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/feet/warlordboots.xml
equipment/feet/warlordboots-female.xml
diff --git a/items/equip-feet/item1188_RedStockings.xml b/items/equip-feet/item1188_RedStockings.xml
index 8b4d9fa4..29ac0d8f 100644
--- a/items/equip-feet/item1188_RedStockings.xml
+++ b/items/equip-feet/item1188_RedStockings.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 b61412aa..14774164 100644
--- a/items/equip-feet/item2150_RedCottonBoots.xml
+++ b/items/equip-feet/item2150_RedCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 48cca892..4e1415f3 100644
--- a/items/equip-feet/item2151_GreenCottonBoots.xml
+++ b/items/equip-feet/item2151_GreenCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 b3eaa9c6..2ea5b2f1 100644
--- a/items/equip-feet/item2152_DarkBlueCottonBoots.xml
+++ b/items/equip-feet/item2152_DarkBlueCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 9a821cbd..ba9d500c 100644
--- a/items/equip-feet/item2153_YellowCottonBoots.xml
+++ b/items/equip-feet/item2153_YellowCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 cdc2a9f3..44680fbc 100644
--- a/items/equip-feet/item2154_LightBlueCottonBoots.xml
+++ b/items/equip-feet/item2154_LightBlueCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 c5288292..d41e31ea 100644
--- a/items/equip-feet/item2155_PinkCottonBoots.xml
+++ b/items/equip-feet/item2155_PinkCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 cfbf08af..ce01d448 100644
--- a/items/equip-feet/item2156_BlackCottonBoots.xml
+++ b/items/equip-feet/item2156_BlackCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 31e07919..cf95bc46 100644
--- a/items/equip-feet/item2157_OrangeCottonBoots.xml
+++ b/items/equip-feet/item2157_OrangeCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 509313d0..47098cec 100644
--- a/items/equip-feet/item2158_PurpleCottonBoots.xml
+++ b/items/equip-feet/item2158_PurpleCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
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 8f3e9874..a4205498 100644
--- a/items/equip-feet/item2159_DarkGreenCottonBoots.xml
+++ b/items/equip-feet/item2159_DarkGreenCottonBoots.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/feet/boots.xml|#0b300b,195519,3e832e,3e9c3e
equipment/feet/boots-female.xml|#0b300b,195519,3e832e,3e9c3e
diff --git a/items/equip-feet/item5323_BlackWarlordBoots.xml b/items/equip-feet/item5323_BlackWarlordBoots.xml
new file mode 100644
index 00000000..dbe8817e
--- /dev/null
+++ b/items/equip-feet/item5323_BlackWarlordBoots.xml
@@ -0,0 +1,7 @@
+
+
+
-
+ equipment/feet/warlordboots.xml|#000000,ffffff
+ equipment/feet/warlordboots-female.xml|#000000,ffffff
+
+
diff --git a/items/equip-feet/item757_AssassinBoots.xml b/items/equip-feet/item757_AssassinBoots.xml
deleted file mode 100644
index d750f12a..00000000
--- a/items/equip-feet/item757_AssassinBoots.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
- -
- 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
deleted file mode 100644
index 6f1eac0e..00000000
--- a/items/equip-feet/item792_BromenalBoots.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
- -
- equipment/feet/bromenalboots.xml
- equipment/feet/bromenalboots-female.xml
-
-
diff --git a/items/equip-head/_include.xml b/items/equip-head/_include.xml
index 3399382e..f36c30eb 100644
--- a/items/equip-head/_include.xml
+++ b/items/equip-head/_include.xml
@@ -1,84 +1,79 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -227,5 +222,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-head/item511_SantaHat.xml b/items/equip-head/item0511_SantaHat.xml
similarity index 77%
rename from items/equip-head/item511_SantaHat.xml
rename to items/equip-head/item0511_SantaHat.xml
index 1e306b8a..a3755124 100644
--- a/items/equip-head/item511_SantaHat.xml
+++ b/items/equip-head/item0511_SantaHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/santahat.xml|#580000,a40000,c02020;#87876c,bbc39c,edf4e1,ffffff
equipment/head/santahat-female.xml|#580000,a40000,c02020;#87876c,bbc39c,edf4e1,ffffff
diff --git a/items/equip-head/item524_FancyHat.xml b/items/equip-head/item0524_FancyHat.xml
similarity index 65%
rename from items/equip-head/item524_FancyHat.xml
rename to items/equip-head/item0524_FancyHat.xml
index 4306bff7..4b9243df 100644
--- a/items/equip-head/item524_FancyHat.xml
+++ b/items/equip-head/item0524_FancyHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/fancyhat.xml
equipment/head/fancyhat-female.xml
diff --git a/items/equip-head/item525_MinersHat.xml b/items/equip-head/item0525_MinersHat.xml
similarity index 55%
rename from items/equip-head/item525_MinersHat.xml
rename to items/equip-head/item0525_MinersHat.xml
index 55f347ce..4ffe686d 100644
--- a/items/equip-head/item525_MinersHat.xml
+++ b/items/equip-head/item0525_MinersHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/minershat.xml
equipment/head/minershat-female.xml
diff --git a/items/equip-head/item543_StandardHeadband.xml b/items/equip-head/item0543_StandardHeadband.xml
similarity index 57%
rename from items/equip-head/item543_StandardHeadband.xml
rename to items/equip-head/item0543_StandardHeadband.xml
index 842f9817..cd198b54 100644
--- a/items/equip-head/item543_StandardHeadband.xml
+++ b/items/equip-head/item0543_StandardHeadband.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/standardheadband.xml|#563f25,99784c,d8bd86,ffffff
equipment/head/standardheadband-female.xml|#563f25,99784c,d8bd86,ffffff
diff --git a/items/equip-head/item544_SilkHeadband.xml b/items/equip-head/item0544_SilkHeadband.xml
similarity index 55%
rename from items/equip-head/item544_SilkHeadband.xml
rename to items/equip-head/item0544_SilkHeadband.xml
index 46774f62..84923108 100644
--- a/items/equip-head/item544_SilkHeadband.xml
+++ b/items/equip-head/item0544_SilkHeadband.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/silkheadband.xml|#87876c,bbc39c,edf4e1,ffffff
equipment/head/silkheadband-female.xml|#87876c,bbc39c,edf4e1,ffffff
diff --git a/items/equip-head/item0604_PirateBandana.xml b/items/equip-head/item0604_PirateBandana.xml
new file mode 100644
index 00000000..1c8b5265
--- /dev/null
+++ b/items/equip-head/item0604_PirateBandana.xml
@@ -0,0 +1,23 @@
+
+
+
-
+ equipment/head/bandana.xml|#212121,555555
+ equipment/head/bandana-female.xml|#212121,555555
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-head/item615_PumpkinHelmet.xml b/items/equip-head/item0615_PumpkinHelmet.xml
similarity index 56%
rename from items/equip-head/item615_PumpkinHelmet.xml
rename to items/equip-head/item0615_PumpkinHelmet.xml
index 403f4e63..34fc92eb 100644
--- a/items/equip-head/item615_PumpkinHelmet.xml
+++ b/items/equip-head/item0615_PumpkinHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/pumpkinhelmet.xml
equipment/head/pumpkinhelmet-female.xml
diff --git a/items/equip-head/item0616_AxeHat.xml b/items/equip-head/item0616_AxeHat.xml
new file mode 100644
index 00000000..19c28300
--- /dev/null
+++ b/items/equip-head/item0616_AxeHat.xml
@@ -0,0 +1,7 @@
+
+
+
-
+ equipment/head/axehat.xml
+ equipment/head/axehat-female.xml
+
+
diff --git a/items/equip-head/item617_PirateHat.xml b/items/equip-head/item0617_PirateHat.xml
similarity index 54%
rename from items/equip-head/item617_PirateHat.xml
rename to items/equip-head/item0617_PirateHat.xml
index 064c711d..8fef4196 100644
--- a/items/equip-head/item617_PirateHat.xml
+++ b/items/equip-head/item0617_PirateHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/piratehat.xml
equipment/head/piratehat-female.xml
diff --git a/items/equip-head/item618_Goggles.xml b/items/equip-head/item0618_Goggles.xml
similarity index 53%
rename from items/equip-head/item618_Goggles.xml
rename to items/equip-head/item0618_Goggles.xml
index e984dbcd..cf296b9f 100644
--- a/items/equip-head/item618_Goggles.xml
+++ b/items/equip-head/item0618_Goggles.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/goggles.xml|#787878,f7f7f7
equipment/head/goggles-female.xml|#787878,f7f7f7
diff --git a/items/equip-head/item619_LeatherGoggles.xml b/items/equip-head/item0619_LeatherGoggles.xml
similarity index 54%
rename from items/equip-head/item619_LeatherGoggles.xml
rename to items/equip-head/item0619_LeatherGoggles.xml
index ec359e93..73dea66d 100644
--- a/items/equip-head/item619_LeatherGoggles.xml
+++ b/items/equip-head/item0619_LeatherGoggles.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/goggles.xml|#783c00,ff973b
equipment/head/goggles-female.xml|#783c00,ff973b
diff --git a/items/equip-head/item620_Circlet.xml b/items/equip-head/item0620_Circlet.xml
similarity index 50%
rename from items/equip-head/item620_Circlet.xml
rename to items/equip-head/item0620_Circlet.xml
index ba47beb2..9cb11ebe 100644
--- a/items/equip-head/item620_Circlet.xml
+++ b/items/equip-head/item0620_Circlet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/circlet.xml
equipment/head/circlet-female.xml
diff --git a/items/equip-head/item621_Eyepatch.xml b/items/equip-head/item0621_Eyepatch.xml
similarity index 51%
rename from items/equip-head/item621_Eyepatch.xml
rename to items/equip-head/item0621_Eyepatch.xml
index e7773ae6..30079e82 100644
--- a/items/equip-head/item621_Eyepatch.xml
+++ b/items/equip-head/item0621_Eyepatch.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/eyepatch.xml
equipment/head/eyepatch-female.xml
diff --git a/items/equip-head/item0622_Bandana.xml b/items/equip-head/item0622_Bandana.xml
new file mode 100644
index 00000000..dde4bec1
--- /dev/null
+++ b/items/equip-head/item0622_Bandana.xml
@@ -0,0 +1,23 @@
+
+
+
-
+ equipment/head/bandana.xml|#ffffff;#ff4645
+ equipment/head/bandana-female.xml|#ffffff;#ff4645
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-head/item627_TopHat.xml b/items/equip-head/item0627_TopHat.xml
similarity index 56%
rename from items/equip-head/item627_TopHat.xml
rename to items/equip-head/item0627_TopHat.xml
index 02ec04ff..a085661b 100644
--- a/items/equip-head/item627_TopHat.xml
+++ b/items/equip-head/item0627_TopHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/tophat.xml
equipment/head/tophat-female.xml
diff --git a/items/equip-head/item628_FunkyHat.xml b/items/equip-head/item0628_FunkyHat.xml
similarity index 75%
rename from items/equip-head/item628_FunkyHat.xml
rename to items/equip-head/item0628_FunkyHat.xml
index d79f3a5d..6a9d4cd1 100644
--- a/items/equip-head/item628_FunkyHat.xml
+++ b/items/equip-head/item0628_FunkyHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/funkywinter.xml
equipment/head/funkywinter-female.xml
diff --git a/items/equip-head/item629_MushHat.xml b/items/equip-head/item0629_MushHat.xml
similarity index 55%
rename from items/equip-head/item629_MushHat.xml
rename to items/equip-head/item0629_MushHat.xml
index 0ed95548..406c218a 100644
--- a/items/equip-head/item629_MushHat.xml
+++ b/items/equip-head/item0629_MushHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/mushroom.xml
equipment/head/mushroom-female.xml
diff --git a/items/equip-head/item630_ShroomHat.xml b/items/equip-head/item0630_ShroomHat.xml
similarity index 55%
rename from items/equip-head/item630_ShroomHat.xml
rename to items/equip-head/item0630_ShroomHat.xml
index 4b6c0670..2aa70645 100644
--- a/items/equip-head/item630_ShroomHat.xml
+++ b/items/equip-head/item0630_ShroomHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/shroom.xml
equipment/head/shroom-female.xml
diff --git a/items/equip-head/item633_ChristmasElfHat.xml b/items/equip-head/item0633_ChristmasElfHat.xml
similarity index 76%
rename from items/equip-head/item633_ChristmasElfHat.xml
rename to items/equip-head/item0633_ChristmasElfHat.xml
index 0318261c..3af7602c 100644
--- a/items/equip-head/item633_ChristmasElfHat.xml
+++ b/items/equip-head/item0633_ChristmasElfHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/xmaself.xml
equipment/head/xmaself-female.xml
diff --git a/items/equip-head/item634_FaceMask.xml b/items/equip-head/item0634_FaceMask.xml
similarity index 51%
rename from items/equip-head/item634_FaceMask.xml
rename to items/equip-head/item0634_FaceMask.xml
index 7f2c4d8e..04a1fc2f 100644
--- a/items/equip-head/item634_FaceMask.xml
+++ b/items/equip-head/item0634_FaceMask.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/mask.xml
equipment/head/mask-female.xml
diff --git a/items/equip-head/item636_WarlordHelmet.xml b/items/equip-head/item0636_WarlordHelmet.xml
similarity index 59%
rename from items/equip-head/item636_WarlordHelmet.xml
rename to items/equip-head/item0636_WarlordHelmet.xml
index b1cfd7bc..d48f7abd 100644
--- a/items/equip-head/item636_WarlordHelmet.xml
+++ b/items/equip-head/item0636_WarlordHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/warlordhelm.xml
equipment/head/warlordhelm-female.xml
diff --git a/items/equip-head/item637_KnightsHelmet.xml b/items/equip-head/item0637_KnightsHelmet.xml
similarity index 61%
rename from items/equip-head/item637_KnightsHelmet.xml
rename to items/equip-head/item0637_KnightsHelmet.xml
index ec08e690..29c6bdc0 100644
--- a/items/equip-head/item637_KnightsHelmet.xml
+++ b/items/equip-head/item0637_KnightsHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/knighthelm.xml
equipment/head/knighthelm-female.xml
diff --git a/items/equip-head/item638_InfantryHelmet.xml b/items/equip-head/item0638_InfantryHelmet.xml
similarity index 62%
rename from items/equip-head/item638_InfantryHelmet.xml
rename to items/equip-head/item0638_InfantryHelmet.xml
index a0aea4e9..fe98275f 100644
--- a/items/equip-head/item638_InfantryHelmet.xml
+++ b/items/equip-head/item0638_InfantryHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/infantryhelm.xml
equipment/head/infantryhelm-female.xml
diff --git a/items/equip-head/item639_CrusadeHelmet.xml b/items/equip-head/item0639_CrusadeHelmet.xml
similarity index 55%
rename from items/equip-head/item639_CrusadeHelmet.xml
rename to items/equip-head/item0639_CrusadeHelmet.xml
index 870d1695..d680cdb2 100644
--- a/items/equip-head/item639_CrusadeHelmet.xml
+++ b/items/equip-head/item0639_CrusadeHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/crusadehelm.xml
equipment/head/crusadehelm-female.xml
diff --git a/items/equip-head/item643_WhiteCowboyHat.xml b/items/equip-head/item0643_WhiteCowboyHat.xml
similarity index 57%
rename from items/equip-head/item643_WhiteCowboyHat.xml
rename to items/equip-head/item0643_WhiteCowboyHat.xml
index dc99f284..da5204a0 100644
--- a/items/equip-head/item643_WhiteCowboyHat.xml
+++ b/items/equip-head/item0643_WhiteCowboyHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/cowboywhite.xml
equipment/head/cowboywhite-female.xml
diff --git a/items/equip-head/item644_BlackCowboyHat.xml b/items/equip-head/item0644_BlackCowboyHat.xml
similarity index 58%
rename from items/equip-head/item644_BlackCowboyHat.xml
rename to items/equip-head/item0644_BlackCowboyHat.xml
index 3550d2f9..da12e51d 100644
--- a/items/equip-head/item644_BlackCowboyHat.xml
+++ b/items/equip-head/item0644_BlackCowboyHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/cowboyblack.xml
equipment/head/cowboyblack-female.xml
diff --git a/items/equip-head/item646_Crown.xml b/items/equip-head/item0646_Crown.xml
similarity index 56%
rename from items/equip-head/item646_Crown.xml
rename to items/equip-head/item0646_Crown.xml
index 06b53c2a..f3440cfb 100644
--- a/items/equip-head/item646_Crown.xml
+++ b/items/equip-head/item0646_Crown.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/crown.xml
equipment/head/crown-female.xml
diff --git a/items/equip-head/item647_DevelopersCap.xml b/items/equip-head/item0647_DevelopersCap.xml
similarity index 58%
rename from items/equip-head/item647_DevelopersCap.xml
rename to items/equip-head/item0647_DevelopersCap.xml
index cb8be462..1690dafd 100644
--- a/items/equip-head/item647_DevelopersCap.xml
+++ b/items/equip-head/item0647_DevelopersCap.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/devcap.xml|#9999ff
equipment/head/devcap-female.xml|#9999ff
diff --git a/items/equip-head/item654_Cap.xml b/items/equip-head/item0654_Cap.xml
similarity index 57%
rename from items/equip-head/item654_Cap.xml
rename to items/equip-head/item0654_Cap.xml
index b051898a..eac60119 100644
--- a/items/equip-head/item654_Cap.xml
+++ b/items/equip-head/item0654_Cap.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/cap.xml|#d94800
equipment/head/cap-female.xml|#d94800
diff --git a/items/equip-head/item656_SerfHat.xml b/items/equip-head/item0656_SerfHat.xml
similarity index 54%
rename from items/equip-head/item656_SerfHat.xml
rename to items/equip-head/item0656_SerfHat.xml
index acaa0619..4751ae55 100644
--- a/items/equip-head/item656_SerfHat.xml
+++ b/items/equip-head/item0656_SerfHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/serf.xml
equipment/head/serf-female.xml
diff --git a/items/equip-head/item0675_GraduationCap.xml b/items/equip-head/item0675_GraduationCap.xml
new file mode 100644
index 00000000..8d3b911c
--- /dev/null
+++ b/items/equip-head/item0675_GraduationCap.xml
@@ -0,0 +1,7 @@
+
+
+
-
+ equipment/head/gradcap.xml
+ equipment/head/gradcap-female.xml
+
+
diff --git a/items/equip-head/item678_NohMask.xml b/items/equip-head/item0678_NohMask.xml
similarity index 51%
rename from items/equip-head/item678_NohMask.xml
rename to items/equip-head/item0678_NohMask.xml
index d90bc9f2..61d90d0c 100644
--- a/items/equip-head/item678_NohMask.xml
+++ b/items/equip-head/item0678_NohMask.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/nohmask.xml
equipment/head/nohmask-female.xml
diff --git a/items/equip-head/item679_DemonMask.xml b/items/equip-head/item0679_DemonMask.xml
similarity index 57%
rename from items/equip-head/item679_DemonMask.xml
rename to items/equip-head/item0679_DemonMask.xml
index 3a623d2b..b0ef0bca 100644
--- a/items/equip-head/item679_DemonMask.xml
+++ b/items/equip-head/item0679_DemonMask.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/demonmask.xml|#87876c,bbc39c,edf4e1,ffffff;#d62626
equipment/head/demonmask-female.xml|#87876c,bbc39c,edf4e1,ffffff;#d62626
diff --git a/items/equip-head/item721_HighPriestCrown.xml b/items/equip-head/item0721_HighPriestCrown.xml
similarity index 55%
rename from items/equip-head/item721_HighPriestCrown.xml
rename to items/equip-head/item0721_HighPriestCrown.xml
index 72b68912..55486251 100644
--- a/items/equip-head/item721_HighPriestCrown.xml
+++ b/items/equip-head/item0721_HighPriestCrown.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/highpriest-crown.xml
equipment/head/highpriest-crown-female.xml
diff --git a/items/equip-head/item722_MonsterSkullHelmet.xml b/items/equip-head/item0722_MonsterSkullHelmet.xml
similarity index 60%
rename from items/equip-head/item722_MonsterSkullHelmet.xml
rename to items/equip-head/item0722_MonsterSkullHelmet.xml
index dcd0fd9c..534ef968 100644
--- a/items/equip-head/item722_MonsterSkullHelmet.xml
+++ b/items/equip-head/item0722_MonsterSkullHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/monster-skull-helm.xml
equipment/head/monster-skull-helm-female.xml
diff --git a/items/equip-head/item723_DesertHat.xml b/items/equip-head/item0723_DesertHat.xml
similarity index 62%
rename from items/equip-head/item723_DesertHat.xml
rename to items/equip-head/item0723_DesertHat.xml
index 165a0dae..f5562a47 100644
--- a/items/equip-head/item723_DesertHat.xml
+++ b/items/equip-head/item0723_DesertHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/deserthat.xml|#87876c,bbc39c,edf4e1,ffffff
equipment/head/deserthat-female.xml|#87876c,bbc39c,edf4e1,ffffff
diff --git a/items/equip-head/item724_CottonHeadband.xml b/items/equip-head/item0724_CottonHeadband.xml
similarity index 54%
rename from items/equip-head/item724_CottonHeadband.xml
rename to items/equip-head/item0724_CottonHeadband.xml
index f1621312..ab187fc5 100644
--- a/items/equip-head/item724_CottonHeadband.xml
+++ b/items/equip-head/item0724_CottonHeadband.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/standardheadband.xml|#a4b2b2,ffffff
equipment/head/standardheadband-female.xml|#a4b2b2,ffffff
diff --git a/items/equip-head/item725_GMCap.xml b/items/equip-head/item0725_GMCap.xml
similarity index 58%
rename from items/equip-head/item725_GMCap.xml
rename to items/equip-head/item0725_GMCap.xml
index f3a87ced..f61e175d 100644
--- a/items/equip-head/item725_GMCap.xml
+++ b/items/equip-head/item0725_GMCap.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/gmcap.xml|#bf0e08
equipment/head/gmcap-female.xml|#bf0e08
diff --git a/items/equip-head/item751_PinkieHat.xml b/items/equip-head/item0751_PinkieHat.xml
similarity index 54%
rename from items/equip-head/item751_PinkieHat.xml
rename to items/equip-head/item0751_PinkieHat.xml
index 47e6de02..7b0b0211 100644
--- a/items/equip-head/item751_PinkieHat.xml
+++ b/items/equip-head/item0751_PinkieHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/pinkiehat.xml
equipment/head/pinkiehat-female.xml
diff --git a/items/equip-head/item752_FluffyHat.xml b/items/equip-head/item0752_FluffyHat.xml
similarity index 52%
rename from items/equip-head/item752_FluffyHat.xml
rename to items/equip-head/item0752_FluffyHat.xml
index e4abbe84..503112a8 100644
--- a/items/equip-head/item752_FluffyHat.xml
+++ b/items/equip-head/item0752_FluffyHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/fluffyhat.xml
equipment/head/fluffyhat-female.xml
diff --git a/items/equip-head/item759_PaladinsHelmet.xml b/items/equip-head/item0759_PaladinsHelmet.xml
similarity index 50%
rename from items/equip-head/item759_PaladinsHelmet.xml
rename to items/equip-head/item0759_PaladinsHelmet.xml
index f5cecbd9..8acb5750 100644
--- a/items/equip-head/item759_PaladinsHelmet.xml
+++ b/items/equip-head/item0759_PaladinsHelmet.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
+
-
equipment/head/paladinhelm.xml
equipment/head/paladinhelm-female.xml
diff --git a/items/equip-head/item0760_OverlordsHelmet.xml b/items/equip-head/item0760_OverlordsHelmet.xml
new file mode 100644
index 00000000..16d5a7f9
--- /dev/null
+++ b/items/equip-head/item0760_OverlordsHelmet.xml
@@ -0,0 +1,10 @@
+
+
+
-
+ equipment/head/overlordhelm.xml
+ equipment/head/overlordhelm-female.xml
+
+
+
+
+
diff --git a/items/equip-head/item761_DesertHelmet.xml b/items/equip-head/item0761_DesertHelmet.xml
similarity index 51%
rename from items/equip-head/item761_DesertHelmet.xml
rename to items/equip-head/item0761_DesertHelmet.xml
index db8640ae..c50639a2 100644
--- a/items/equip-head/item761_DesertHelmet.xml
+++ b/items/equip-head/item0761_DesertHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/desert-helmet.xml
equipment/head/desert-helmet-female.xml
diff --git a/items/equip-head/item0764_SailorHat.xml b/items/equip-head/item0764_SailorHat.xml
new file mode 100644
index 00000000..13962835
--- /dev/null
+++ b/items/equip-head/item0764_SailorHat.xml
@@ -0,0 +1,7 @@
+
+
+
-
+ 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
new file mode 100644
index 00000000..3f77644e
--- /dev/null
+++ b/items/equip-head/item0765_CaptainsHat.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/captain-hat.xml
+ equipment/head/captain-hat-female.xml
+
+
diff --git a/items/equip-head/item766_TerraniteHelmet.xml b/items/equip-head/item0766_TerraniteHelmet.xml
similarity index 62%
rename from items/equip-head/item766_TerraniteHelmet.xml
rename to items/equip-head/item0766_TerraniteHelmet.xml
index 469263c0..afffe1e9 100644
--- a/items/equip-head/item766_TerraniteHelmet.xml
+++ b/items/equip-head/item0766_TerraniteHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/terranitehelm.xml
equipment/head/terranitehelm-female.xml
diff --git a/items/equip-head/item769_GuyFawkesMask.xml b/items/equip-head/item0769_GuyFawkesMask.xml
similarity index 51%
rename from items/equip-head/item769_GuyFawkesMask.xml
rename to items/equip-head/item0769_GuyFawkesMask.xml
index 24f47baa..612c882d 100644
--- a/items/equip-head/item769_GuyFawkesMask.xml
+++ b/items/equip-head/item0769_GuyFawkesMask.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/guyfawkes.xml
equipment/head/guyfawkes-female.xml
diff --git a/items/equip-head/item770_FairyHat.xml b/items/equip-head/item0770_FairyHat.xml
similarity index 57%
rename from items/equip-head/item770_FairyHat.xml
rename to items/equip-head/item0770_FairyHat.xml
index 0bbaace0..38c14512 100644
--- a/items/equip-head/item770_FairyHat.xml
+++ b/items/equip-head/item0770_FairyHat.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/fairy_hat.xml
equipment/head/fairy_hat-female.xml
diff --git a/items/equip-head/item781_WitchDoctorsMask.xml b/items/equip-head/item0781_WitchDoctorsMask.xml
similarity index 54%
rename from items/equip-head/item781_WitchDoctorsMask.xml
rename to items/equip-head/item0781_WitchDoctorsMask.xml
index d8a16315..3bce5e7f 100644
--- a/items/equip-head/item781_WitchDoctorsMask.xml
+++ b/items/equip-head/item0781_WitchDoctorsMask.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/witch-doctor-mask.xml
equipment/head/witch-doctor-mask-female.xml
diff --git a/items/equip-head/item795_BromenalHelmet.xml b/items/equip-head/item0795_BromenalHelmet.xml
similarity index 55%
rename from items/equip-head/item795_BromenalHelmet.xml
rename to items/equip-head/item0795_BromenalHelmet.xml
index 1bbe0e11..c3041c7b 100644
--- a/items/equip-head/item795_BromenalHelmet.xml
+++ b/items/equip-head/item0795_BromenalHelmet.xml
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
+
-
equipment/head/bromenalhelmet.xml
equipment/head/bromenalhelmet-female.xml
diff --git a/items/equip-head/item800_BowlerHatBrown.xml b/items/equip-head/item0800_BowlerHatBrown.xml
similarity index 58%
rename from items/equip-head/item800_BowlerHatBrown.xml
rename to items/equip-head/item0800_BowlerHatBrown.xml
index f83b1fbc..d586c9de 100644
--- a/items/equip-head/item800_BowlerHatBrown.xml
+++ b/items/equip-head/item0800_BowlerHatBrown.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/bowler-hat-brown.xml
equipment/head/bowler-hat-brown-female.xml
diff --git a/items/equip-head/item0801_PinkieHelmet.xml b/items/equip-head/item0801_PinkieHelmet.xml
new file mode 100644
index 00000000..1e3972d9
--- /dev/null
+++ b/items/equip-head/item0801_PinkieHelmet.xml
@@ -0,0 +1,19 @@
+
+
+
-
+ equipment/head/pinkie-helmet.xml
+ equipment/head/pinkie-helmet-female.xml
+
+
+
+
+
diff --git a/items/equip-head/item848_Earmuffs.xml b/items/equip-head/item0848_Earmuffs.xml
similarity index 52%
rename from items/equip-head/item848_Earmuffs.xml
rename to items/equip-head/item0848_Earmuffs.xml
index 392a1542..44016128 100644
--- a/items/equip-head/item848_Earmuffs.xml
+++ b/items/equip-head/item0848_Earmuffs.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/earmuffs.xml
equipment/head/earmuffs-female.xml
diff --git a/items/equip-head/item854_ElfNightcap.xml b/items/equip-head/item0854_ElfNightcap.xml
similarity index 57%
rename from items/equip-head/item854_ElfNightcap.xml
rename to items/equip-head/item0854_ElfNightcap.xml
index 1d9b12c4..bcbbd293 100644
--- a/items/equip-head/item854_ElfNightcap.xml
+++ b/items/equip-head/item0854_ElfNightcap.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/elf-nightcap.xml
equipment/head/elf-nightcap-female.xml
diff --git a/items/equip-head/item855_Sunglasses.xml b/items/equip-head/item0855_Sunglasses.xml
similarity index 54%
rename from items/equip-head/item855_Sunglasses.xml
rename to items/equip-head/item0855_Sunglasses.xml
index 3f0d17ce..4d698dec 100644
--- a/items/equip-head/item855_Sunglasses.xml
+++ b/items/equip-head/item0855_Sunglasses.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/sunglasses.xml
equipment/head/sunglasses-female.xml
diff --git a/items/equip-head/item856_KnitCap.xml b/items/equip-head/item0856_KnitCap.xml
similarity index 77%
rename from items/equip-head/item856_KnitCap.xml
rename to items/equip-head/item0856_KnitCap.xml
index 2620f2ad..52bea928 100644
--- a/items/equip-head/item856_KnitCap.xml
+++ b/items/equip-head/item0856_KnitCap.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
diff --git a/items/equip-head/item877_BullHelmet.xml b/items/equip-head/item0877_BullHelmet.xml
similarity index 64%
rename from items/equip-head/item877_BullHelmet.xml
rename to items/equip-head/item0877_BullHelmet.xml
index 939422f7..cd579b99 100644
--- a/items/equip-head/item877_BullHelmet.xml
+++ b/items/equip-head/item0877_BullHelmet.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
-
equipment/head/bull.xml
equipment/head/bull-female.xml
diff --git a/items/equip-head/item882_RedEggshellHat.xml b/items/equip-head/item0882_RedEggshellHat.xml
similarity index 62%
rename from items/equip-head/item882_RedEggshellHat.xml
rename to items/equip-head/item0882_RedEggshellHat.xml
index 98bdae13..8b0f38c9 100644
--- a/items/equip-head/item882_RedEggshellHat.xml
+++ b/items/equip-head/item0882_RedEggshellHat.xml
@@ -1,11 +1,5 @@
-