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
index 29c34a4e..b003594a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
stages:
- test
-image: debian:buster
+image: debian:bullseye
before_script:
- uname -a
@@ -17,11 +17,26 @@ imagemagiccheck:
- ./.tools/imagemagiccheck.sh
allow_failure: true
-manaplus:
+manaverse:
stage: test
+ image: ubuntu:20.04
+ variables:
+ GIT_SUBMODULE_STRATEGY: recursive
script:
- - ./.tools/manaplus.sh
- image: debian:stable
+ - ./.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
@@ -54,8 +69,6 @@ licensecheck:
testxml:
stage: test
image: ubuntu:18.04
- tags:
- - glados
script:
- ./.tools/testxml.sh
- pwd
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
index cbfadf1b..8b85eeea 100755
--- a/.tools/contributors.sh
+++ b/.tools/contributors.sh
@@ -5,7 +5,8 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core gcc ca-certificates libxml2-utils make xsltproc
+aptget_install git-core make xsltproc
+
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
diff --git a/.tools/deploy.sh b/.tools/deploy.sh
deleted file mode 100755
index 82b8c292..00000000
--- a/.tools/deploy.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-clientdata_init
-
-aptget_update
-aptget_install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python
-rm -rf tools
-gitclone https://git.themanaworld.org/evolved tools.git tools
-
-cd clientdata
-rm -rf public
-mkdir public
-
-cd ..
-
-# FIXME
-#rm -rf music
-#gitclone https://git.themanaworld.org/evolved music.git music
-
-cd tools/update
-
-# FIXME
-./createnew.sh
-check_error $?
-#./create_music.sh
-#check_error $?
-
-cp -r upload/* ../../clientdata/public
-cd ../../clientdata
-gitclone https://git.themanaworld.org/mana pagesindexgen.git pagesindexgen
-cd pagesindexgen
-./pagesindexgen.py ../public
-check_error $?
-ls ../public
diff --git a/.tools/downloadlib.sh b/.tools/downloadlib.sh
deleted file mode 100755
index c1aff5a4..00000000
--- a/.tools/downloadlib.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-export zipname="lib.zip"
-export libname="$1_$2"
-
-mkdir libdownload
-cd libdownload
-rm "${zipname}"
-../client-data/.tools/retry.sh wget -O "${zipname}" "https://git.themanaworld.org/mana/spm/builds/artifacts/$1/download?job=${libname}"
-unzip "${zipname}"
-cp -r "bin/${libname}" ..
-cd ..
-
-rm -rf /usr/local/spm/bin/${libname}
-mkdir -p /usr/local/spm/bin
-
-cp -r libdownload/bin/${libname} /usr/local/spm/bin/
-ls /usr/local/spm/bin/${libname}
-if [ "$?" != 0 ]; then
- echo "Library $1 $2 unpack failed"
- exit 1
-fi
diff --git a/.tools/imagemagiccheck.sh b/.tools/imagemagiccheck.sh
index 34621cdd..a7e8e481 100755
--- a/.tools/imagemagiccheck.sh
+++ b/.tools/imagemagiccheck.sh
@@ -5,7 +5,8 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core gcc ca-certificates imagemagick
+aptget_install git-core imagemagick
+
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
diff --git a/.tools/init.sh b/.tools/init.sh
index 4fe533ef..15f096d9 100755
--- a/.tools/init.sh
+++ b/.tools/init.sh
@@ -7,6 +7,30 @@ function check_error {
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
@@ -23,19 +47,7 @@ function gitclone {
export name2=${CI_BUILD_REPO##*@}
export name2=https://${name2%/*}/$2
- gitclone1 "$name1" "$name2" $3
- if [ "$?" != 0 ]; then
- sleep 1s
- gitclone1 "$name1" "$name2" $3
- if [ "$?" != 0 ]; then
- sleep 3s
- gitclone1 "$name1" "$name2" $3
- if [ "$?" != 0 ]; then
- sleep 5s
- gitclone1 "$name1" "$name2" $3
- fi
- fi
- fi
+ retry_with_increasing_wait gitclone1 "$name1" "$name2" "$3"
check_error $?
}
@@ -57,34 +69,20 @@ function update_repos {
function aptget_update {
update_repos
- apt-get update
- if [ "$?" != 0 ]; then
- sleep 1s
- apt-get update
- if [ "$?" != 0 ]; then
- sleep 1s
- apt-get update
- fi
- fi
+ retry_with_increasing_wait apt-get -y -qq update
check_error $?
}
function aptget_install {
- apt-get -y -qq install $*
- if [ "$?" != 0 ]; then
- sleep 1s
- apt-get -y -qq install $*
- if [ "$?" != 0 ]; then
- sleep 2s
- apt-get -y -qq install $*
- fi
- fi
+ 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 ..
- ln -s clientdata client-data
- check_error $?
}
diff --git a/.tools/licensecheck.sh b/.tools/licensecheck.sh
index ba2be45f..412b4def 100755
--- a/.tools/licensecheck.sh
+++ b/.tools/licensecheck.sh
@@ -5,7 +5,8 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core gcc ca-certificates grep
+aptget_install git-core grep
+
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
diff --git a/.tools/manaplus.sh b/.tools/manaplus.sh
index aeb39a86..d7ffc469 100755
--- a/.tools/manaplus.sh
+++ b/.tools/manaplus.sh
@@ -1,33 +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
-aptget_install gcc g++ \
- make autoconf automake autopoint gettext \
- libxml2-dev libcurl4-gnutls-dev libpng-dev \
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev \
+# 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
+ls -la
-./clientdata/.tools/downloadlib.sh manaplus master || exit 1
+# --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"
-export HOME=`pwd`/clientdata/shared
+# 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
-cd manaplus_master || exit 1
+PATH="$PATH:/usr/games"
export SDL_VIDEODRIVER=dummy
-./bin/manaplus --validate -u -d ../clientdata || exit 1
+manaplus --version || exit 1
+manaplus --validate -u -d clientdata || exit 1
-ls "${HOME}/.local/share/mana/manaplus.log" || exit 1
-grep -A 10 "Assert:" "${HOME}/.local/share/mana/manaplus.log"
-
-if [ "$?" == 0 ]; then
- echo "Asserts found"
+log_path="$HOME/.local/share/mana/$logfile"
+if [[ ! -f "$log_path" ]]; then
+ printf "Error: logfile %s not found\n" "$log_path"
exit 1
fi
-cd ..
+# 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/retry.sh b/.tools/retry.sh
deleted file mode 100755
index aaa50e98..00000000
--- a/.tools/retry.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-n=0
-
-while true; do
- $*
- if [ "$?" == 0 ]; then
- exit 0
- fi
- if [[ $n -ge 10 ]]; then
- exit -1
- fi
- sleep 5s
- n=$((n+1))
-done
diff --git a/.tools/testxml.sh b/.tools/testxml.sh
index a0dc16b3..458d7b85 100755
--- a/.tools/testxml.sh
+++ b/.tools/testxml.sh
@@ -5,7 +5,8 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python python-pyvorbis python-ogg python-pil
+aptget_install git-core libxml2-utils python python-pil python-pyvorbis
+
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
@@ -16,7 +17,7 @@ check_error $?
export RES=$(cat errors.txt)
if [[ -n "${RES}" ]]; then
echo "xml check failed" >../../../clientdata/shared/error.log
- echo ${RES} >>../../../clientdata/shared/error.log
+ cat errors.txt >>../../../clientdata/shared/error.log
cat ../../../clientdata/shared/error.log
exit 1
fi
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/charcreation.xml b/charcreation.xml
index 9c48f015..b6e0bd52 100644
--- a/charcreation.xml
+++ b/charcreation.xml
@@ -1,13 +1,13 @@
-
+
-
+
-
-
+
+
diff --git a/effects.xml b/effects.xml
index 4a095a57..332c54f9 100644
--- a/effects.xml
+++ b/effects.xml
@@ -54,9 +54,10 @@
+
-
+
@@ -77,8 +78,8 @@
-
-
+
+
@@ -89,7 +90,18 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -107,6 +119,11 @@
+
+
+
+
+
@@ -216,4 +233,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/emotes.xml b/emotes.xml
index 6d5606c5..67ae3b0f 100644
--- a/emotes.xml
+++ b/emotes.xml
@@ -1,45 +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/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/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
index 36791fc7..ee52d0a7 100644
Binary files a/graphics/images/login_wallpaper_fall.png 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
index 7379e778..7cf4b43a 100644
Binary files a/graphics/images/login_wallpaper_spring.png 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
index a8c3b414..f27371f8 100644
Binary files a/graphics/images/login_wallpaper_summer.png 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
index e8b3fa01..90995318 100644
Binary files a/graphics/images/login_wallpaper_winter.png and b/graphics/images/login_wallpaper_winter.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/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/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
index 68a3e9c8..46e9f40f 100644
Binary files a/graphics/items/equipment/weapon/floydbook.png 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/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/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-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/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/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/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/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/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/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/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/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/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/dragon-sword.png b/graphics/sprites/equipment/weapons/dragon-sword.png
deleted file mode 100644
index 91a27abd..00000000
Binary files a/graphics/sprites/equipment/weapons/dragon-sword.png and /dev/null differ
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 ee74ee54..00000000
Binary files a/graphics/sprites/equipment/weapons/jackal.png and /dev/null differ
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/dragon-sword.xml b/graphics/sprites/equipment/weapons/sword-dragon.xml
similarity index 60%
rename from graphics/sprites/equipment/weapons/dragon-sword.xml
rename to graphics/sprites/equipment/weapons/sword-dragon.xml
index 1f980832..b46fda5c 100644
--- a/graphics/sprites/equipment/weapons/dragon-sword.xml
+++ b/graphics/sprites/equipment/weapons/sword-dragon.xml
@@ -3,9 +3,9 @@
Copyright (C) 2020 Evol Online -->
-
+
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 96%
rename from graphics/sprites/equipment/weapons/jackal.xml
rename to graphics/sprites/equipment/weapons/sword-jackal.xml
index d8cdf3f9..60c6fdb4 100644
--- a/graphics/sprites/equipment/weapons/jackal.xml
+++ b/graphics/sprites/equipment/weapons/sword-jackal.xml
@@ -1,7 +1,7 @@
-
+
@@ -69,15 +69,19 @@
+
+
+
+
diff --git a/graphics/sprites/equipment/weapons/lidersword.png b/graphics/sprites/equipment/weapons/sword-lider.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/lidersword.png
rename to graphics/sprites/equipment/weapons/sword-lider.png
diff --git a/graphics/sprites/equipment/weapons/lidersword.xml b/graphics/sprites/equipment/weapons/sword-lider.xml
similarity index 96%
rename from graphics/sprites/equipment/weapons/lidersword.xml
rename to graphics/sprites/equipment/weapons/sword-lider.xml
index 2002cf58..528dcb9d 100644
--- a/graphics/sprites/equipment/weapons/lidersword.xml
+++ b/graphics/sprites/equipment/weapons/sword-lider.xml
@@ -1,6 +1,6 @@
-
+
@@ -34,23 +34,23 @@
-
+
-
+
-
+
-
+
-
+
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
index 5441acd9..4114d66c 100644
Binary files a/graphics/sprites/icons/spell-cooldown-ar-outline.png 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
index 04058e16..730ec630 100644
Binary files a/graphics/sprites/icons/spell-cooldown-ar.png and b/graphics/sprites/icons/spell-cooldown-ar.png differ
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
index 5950f38d..da364c59 100644
Binary files a/graphics/sprites/icons/spell-cooldown-ench.png and b/graphics/sprites/icons/spell-cooldown-ench.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-koy.png b/graphics/sprites/icons/spell-cooldown-koy.png
index 8efece99..cde985e6 100644
Binary files a/graphics/sprites/icons/spell-cooldown-koy.png and b/graphics/sprites/icons/spell-cooldown-koy.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-mg.png b/graphics/sprites/icons/spell-cooldown-mg.png
index 31e46a53..7777ac77 100644
Binary files a/graphics/sprites/icons/spell-cooldown-mg.png and b/graphics/sprites/icons/spell-cooldown-mg.png differ
diff --git a/graphics/sprites/icons/spell-cooldown-mt.png b/graphics/sprites/icons/spell-cooldown-mt.png
index 84fe8322..215de45a 100644
Binary files a/graphics/sprites/icons/spell-cooldown-mt.png and b/graphics/sprites/icons/spell-cooldown-mt.png differ
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
index af56eda5..22d3cf1e 100644
Binary files a/graphics/sprites/icons/spell-cooldown-r-outline.png 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
index 67555ebf..d09821d2 100644
Binary files a/graphics/sprites/icons/spell-cooldown-r.png and b/graphics/sprites/icons/spell-cooldown-r.png differ
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/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/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/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/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/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/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
index 7c3e01d9..7277c5e7 100644
Binary files a/graphics/tiles/woodland_inn_1.png 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
index f1669dc9..b136a0cb 100644
Binary files a/graphics/tiles/woodland_inn_2.png 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
index b7792e6c..664f3295 100644
Binary files a/graphics/tiles/woodland_inn_x2.png 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
index a6c54641..1983d0ec 100644
Binary files a/graphics/tiles/woodland_inn_x3.png 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
index ab42f34f..57002386 100644
Binary files a/graphics/tiles/woodland_inn_x4.png 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 1c82c815..e6be37cc 100644
--- a/items.xml
+++ b/items.xml
@@ -14,213 +14,8 @@
+
- -
- 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
-
- -
- equipment/weapons/dragon-sword.xml
- weapons/other/halberd/halberd-hit1.ogg
- weapons/other/halberd/halberd-hit2.ogg
- weapons/other/halberd/halberd-hit3.ogg
- weapons/swords/sword-miss1.ogg
-
- -
- equipment/weapons/bow-life.xml
- weapons/bows/banshee/banshee-miss1.ogg
- weapons/bows/banshee/banshee-miss2.ogg
- weapons/bows/banshee/banshee-miss3.ogg
- weapons/bows/banshee/banshee-hit1.ogg
- weapons/bows/banshee/banshee-hit2.ogg
- weapons/bows/banshee/banshee-hit3.ogg
-
- -
- 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
-
-
-
-
-
-
-
-
- -
- equipment/head/leprechaunhat.xml
-
- -
- equipment/head/party-red.xml
-
- -
- equipment/head/party-green.xml
-
- -
- equipment/head/party-blue.xml
-
-
-
-
-
-
-
-
diff --git a/items/equip-1hand/_include.xml b/items/equip-1hand/_include.xml
index fc4e3007..105c7907 100644
--- a/items/equip-1hand/_include.xml
+++ b/items/equip-1hand/_include.xml
@@ -1,21 +1,24 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/items/equip-1hand/item521_Dagger.xml b/items/equip-1hand/item0521_Dagger.xml
similarity index 78%
rename from items/equip-1hand/item521_Dagger.xml
rename to items/equip-1hand/item0521_Dagger.xml
index 3de9a3af..b855d30a 100644
--- a/items/equip-1hand/item521_Dagger.xml
+++ b/items/equip-1hand/item0521_Dagger.xml
@@ -1,6 +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 83%
rename from items/equip-1hand/item522_SharpKnife.xml
rename to items/equip-1hand/item0522_SharpKnife.xml
index 451d4872..ec223b33 100644
--- a/items/equip-1hand/item522_SharpKnife.xml
+++ b/items/equip-1hand/item0522_SharpKnife.xml
@@ -1,6 +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/item536_ShortSword.xml b/items/equip-1hand/item0536_ShortSword.xml
similarity index 66%
rename from items/equip-1hand/item536_ShortSword.xml
rename to items/equip-1hand/item0536_ShortSword.xml
index a799c66e..2cd48e94 100644
--- a/items/equip-1hand/item536_ShortSword.xml
+++ b/items/equip-1hand/item0536_ShortSword.xml
@@ -1,6 +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
weapons/knives/knife-miss1.ogg
diff --git a/items/equip-1hand/item549_Axe.xml b/items/equip-1hand/item0549_Axe.xml
similarity index 76%
rename from items/equip-1hand/item549_Axe.xml
rename to items/equip-1hand/item0549_Axe.xml
index 6937ca2e..ec8f72a1 100644
--- a/items/equip-1hand/item549_Axe.xml
+++ b/items/equip-1hand/item0549_Axe.xml
@@ -1,6 +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 81%
rename from items/equip-1hand/item570_BoneKnife.xml
rename to items/equip-1hand/item0570_BoneKnife.xml
index 1301cc12..4cef4ae4 100644
--- a/items/equip-1hand/item570_BoneKnife.xml
+++ b/items/equip-1hand/item0570_BoneKnife.xml
@@ -1,6 +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/item571_Setzer.xml b/items/equip-1hand/item0571_Setzer.xml
similarity index 56%
rename from items/equip-1hand/item571_Setzer.xml
rename to items/equip-1hand/item0571_Setzer.xml
index e5edf196..c7fd2169 100644
--- a/items/equip-1hand/item571_Setzer.xml
+++ b/items/equip-1hand/item0571_Setzer.xml
@@ -1,8 +1,7 @@
-
-
- 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
+
-
+ equipment/weapons/dagger-setzer.xml
weapons/knives/setzer/setzer-hit1.ogg
weapons/knives/setzer/setzer-hit2.ogg
weapons/knives/setzer/setzer-hit3.ogg
diff --git a/items/equip-1hand/item576_Beheader.xml b/items/equip-1hand/item0576_Beheader.xml
similarity index 65%
rename from items/equip-1hand/item576_Beheader.xml
rename to items/equip-1hand/item0576_Beheader.xml
index 77fd2292..b8ee7350 100644
--- a/items/equip-1hand/item576_Beheader.xml
+++ b/items/equip-1hand/item0576_Beheader.xml
@@ -1,7 +1,7 @@
-
-
- equipment/weapons/beheader.xml
+
-
+ equipment/weapons/sword-beheader.xml
weapons/other/staff/staff-miss1.ogg
weapons/other/staff/staff-miss2.ogg
weapons/other/staff/staff-miss3.ogg
diff --git a/items/equip-1hand/item578_SandCutter.xml b/items/equip-1hand/item0578_SandCutter.xml
similarity index 64%
rename from items/equip-1hand/item578_SandCutter.xml
rename to items/equip-1hand/item0578_SandCutter.xml
index c649281b..84d16c4e 100644
--- a/items/equip-1hand/item578_SandCutter.xml
+++ b/items/equip-1hand/item0578_SandCutter.xml
@@ -1,7 +1,7 @@
-
-
- equipment/weapons/sandcutter.xml
+
-
+ 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 78%
rename from items/equip-1hand/item579_RockKnife.xml
rename to items/equip-1hand/item0579_RockKnife.xml
index 6087eb3e..9d1debf7 100644
--- a/items/equip-1hand/item579_RockKnife.xml
+++ b/items/equip-1hand/item0579_RockKnife.xml
@@ -1,6 +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/item587_Sword.xml b/items/equip-1hand/item0587_Sword.xml
similarity index 70%
rename from items/equip-1hand/item587_Sword.xml
rename to items/equip-1hand/item0587_Sword.xml
index 7383e3a0..824b1059 100644
--- a/items/equip-1hand/item587_Sword.xml
+++ b/items/equip-1hand/item0587_Sword.xml
@@ -1,6 +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/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 76%
rename from items/equip-1hand/item599_FireSword.xml
rename to items/equip-1hand/item0599_FireSword.xml
index b42c0e4e..e6dd6108 100644
--- a/items/equip-1hand/item599_FireSword.xml
+++ b/items/equip-1hand/item0599_FireSword.xml
@@ -1,6 +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 68%
rename from items/equip-1hand/item867_IceGladius.xml
rename to items/equip-1hand/item0867_IceGladius.xml
index 5d66ecfe..9b8ec863 100644
--- a/items/equip-1hand/item867_IceGladius.xml
+++ b/items/equip-1hand/item0867_IceGladius.xml
@@ -1,6 +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 86e25608..8a07471b 100644
--- a/items/equip-1hand/item1171_Wand.xml
+++ b/items/equip-1hand/item1171_Wand.xml
@@ -1,6 +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 033ab28c..d4c33b27 100644
--- a/items/equip-1hand/item1201_Knife.xml
+++ b/items/equip-1hand/item1201_Knife.xml
@@ -1,6 +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 4b1de188..48a3ec2a 100644
--- a/items/equip-1hand/item1215_ToySabre.xml
+++ b/items/equip-1hand/item1215_ToySabre.xml
@@ -1,6 +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 e141f40e..9587d061 100644
--- a/items/equip-1hand/item5261_Launcher.xml
+++ b/items/equip-1hand/item5261_Launcher.xml
@@ -1,6 +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 9789f779..00000000
--- a/items/equip-1hand/item5284_Revolver.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- -
- equipment/weapons/gun.xml
- weapons/gun/shot.ogg
- weapons/gun/shot.ogg
-
-
diff --git a/items/equip-2hand/_include.xml b/items/equip-2hand/_include.xml
index f8bfbbf9..68aae96d 100644
--- a/items/equip-2hand/_include.xml
+++ b/items/equip-2hand/_include.xml
@@ -1,18 +1,20 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-2hand/item530_ShortBow.xml b/items/equip-2hand/item0530_ShortBow.xml
similarity index 72%
rename from items/equip-2hand/item530_ShortBow.xml
rename to items/equip-2hand/item0530_ShortBow.xml
index 0defa8af..6b9cbe68 100644
--- a/items/equip-2hand/item530_ShortBow.xml
+++ b/items/equip-2hand/item0530_ShortBow.xml
@@ -1,6 +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 70%
rename from items/equip-2hand/item545_ForestBow.xml
rename to items/equip-2hand/item0545_ForestBow.xml
index 791ba3a4..890dacf4 100644
--- a/items/equip-2hand/item545_ForestBow.xml
+++ b/items/equip-2hand/item0545_ForestBow.xml
@@ -1,6 +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 70%
rename from items/equip-2hand/item548_Halberd.xml
rename to items/equip-2hand/item0548_Halberd.xml
index 5df9008f..63459c0f 100644
--- a/items/equip-2hand/item548_Halberd.xml
+++ b/items/equip-2hand/item0548_Halberd.xml
@@ -1,6 +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-1hand/item591_LongSword.xml b/items/equip-2hand/item0588_BastardSword.xml
similarity index 51%
rename from items/equip-1hand/item591_LongSword.xml
rename to items/equip-2hand/item0588_BastardSword.xml
index 6d69692c..cd596241 100644
--- a/items/equip-1hand/item591_LongSword.xml
+++ b/items/equip-2hand/item0588_BastardSword.xml
@@ -1,6 +1,16 @@
-
-
+
-
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/item596_Pike.xml b/items/equip-2hand/item0594_Spear.xml
similarity index 57%
rename from items/equip-2hand/item596_Pike.xml
rename to items/equip-2hand/item0594_Spear.xml
index 8e24ec34..2bca4833 100644
--- a/items/equip-2hand/item596_Pike.xml
+++ b/items/equip-2hand/item0594_Spear.xml
@@ -1,6 +1,16 @@
- -
+
-
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 80%
rename from items/equip-2hand/item595_HeavySpear.xml
rename to items/equip-2hand/item0595_HeavySpear.xml
index af46c51d..ac896423 100644
--- a/items/equip-2hand/item595_HeavySpear.xml
+++ b/items/equip-2hand/item0595_HeavySpear.xml
@@ -1,6 +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/item594_Spear.xml b/items/equip-2hand/item0596_Pike.xml
similarity index 56%
rename from items/equip-2hand/item594_Spear.xml
rename to items/equip-2hand/item0596_Pike.xml
index 985f39e6..ac6027fd 100644
--- a/items/equip-2hand/item594_Spear.xml
+++ b/items/equip-2hand/item0596_Pike.xml
@@ -1,6 +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/item597_HeavyPike.xml b/items/equip-2hand/item0597_HeavyPike.xml
similarity index 81%
rename from items/equip-2hand/item597_HeavyPike.xml
rename to items/equip-2hand/item0597_HeavyPike.xml
index 88e50e66..31cfdc9d 100644
--- a/items/equip-2hand/item597_HeavyPike.xml
+++ b/items/equip-2hand/item0597_HeavyPike.xml
@@ -1,6 +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 68%
rename from items/equip-2hand/item623_Scythe.xml
rename to items/equip-2hand/item0623_Scythe.xml
index fc1f0098..5f29134c 100644
--- a/items/equip-2hand/item623_Scythe.xml
+++ b/items/equip-2hand/item0623_Scythe.xml
@@ -1,6 +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 62%
rename from items/equip-2hand/item758_WoodenStaff.xml
rename to items/equip-2hand/item0758_WoodenStaff.xml
index 596d6b19..137e622b 100644
--- a/items/equip-2hand/item758_WoodenStaff.xml
+++ b/items/equip-2hand/item0758_WoodenStaff.xml
@@ -1,6 +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 78%
rename from items/equip-2hand/item878_BansheeBow.xml
rename to items/equip-2hand/item0878_BansheeBow.xml
index fc9dde61..d6d57e0c 100644
--- a/items/equip-2hand/item878_BansheeBow.xml
+++ b/items/equip-2hand/item0878_BansheeBow.xml
@@ -1,6 +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 78%
rename from items/equip-2hand/item903_SlingShot.xml
rename to items/equip-2hand/item0903_SlingShot.xml
index a17ca411..f625fef8 100644
--- a/items/equip-2hand/item903_SlingShot.xml
+++ b/items/equip-2hand/item0903_SlingShot.xml
@@ -1,6 +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 2e44d2e3..02d1e593 100644
--- a/items/equip-2hand/item1200_Bow.xml
+++ b/items/equip-2hand/item1200_Bow.xml
@@ -1,6 +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 2e49acca..00000000
--- a/items/equip-2hand/item588_BastardSword.xml
+++ /dev/null
@@ -1,7 +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/item906_KidBook.xml b/items/equip-2hand/item906_KidBook.xml
deleted file mode 100644
index ab0f4178..00000000
--- a/items/equip-2hand/item906_KidBook.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- -
-
-
-
-
-
-
diff --git a/items/equip-2hand/item907_FloydBook.xml b/items/equip-2hand/item907_FloydBook.xml
deleted file mode 100644
index 6fefdb88..00000000
--- a/items/equip-2hand/item907_FloydBook.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- -
-
-
-
-
-
-
diff --git a/items/equip-ammo/_include.xml b/items/equip-ammo/_include.xml
index a442407c..22e92869 100644
--- a/items/equip-ammo/_include.xml
+++ b/items/equip-ammo/_include.xml
@@ -1,9 +1,12 @@
-
-
-
+
+
+
+
+
+
diff --git a/items/equip-ammo/item529_IronArrow.xml b/items/equip-ammo/item0529_IronArrow.xml
similarity index 100%
rename from items/equip-ammo/item529_IronArrow.xml
rename to items/equip-ammo/item0529_IronArrow.xml
diff --git a/items/equip-ammo/item762_TerraniteArrow.xml b/items/equip-ammo/item0762_TerraniteArrow.xml
similarity index 100%
rename from items/equip-ammo/item762_TerraniteArrow.xml
rename to items/equip-ammo/item0762_TerraniteArrow.xml
diff --git a/items/equip-ammo/item904_SlingBullet.xml b/items/equip-ammo/item0904_SlingBullet.xml
similarity index 100%
rename from items/equip-ammo/item904_SlingBullet.xml
rename to items/equip-ammo/item0904_SlingBullet.xml
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-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 3e568e73..a5ee0467 100644
--- a/items/equip-arms/_include.xml
+++ b/items/equip-arms/_include.xml
@@ -1,13 +1,12 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/items/equip-arms/item531_MinerGloves.xml b/items/equip-arms/item0531_MinerGloves.xml
similarity index 100%
rename from items/equip-arms/item531_MinerGloves.xml
rename to items/equip-arms/item0531_MinerGloves.xml
diff --git a/items/equip-arms/item532_LeatherGloves.xml b/items/equip-arms/item0532_LeatherGloves.xml
similarity index 100%
rename from items/equip-arms/item532_LeatherGloves.xml
rename to items/equip-arms/item0532_LeatherGloves.xml
diff --git a/items/equip-arms/item563_WinterGloves.xml b/items/equip-arms/item0563_WinterGloves.xml
similarity index 100%
rename from items/equip-arms/item563_WinterGloves.xml
rename to items/equip-arms/item0563_WinterGloves.xml
diff --git a/items/equip-arms/item741_CottonGloves.xml b/items/equip-arms/item0741_CottonGloves.xml
similarity index 100%
rename from items/equip-arms/item741_CottonGloves.xml
rename to items/equip-arms/item0741_CottonGloves.xml
diff --git a/items/equip-arms/item756_AssassinGloves.xml b/items/equip-arms/item0756_AssassinGloves.xml
similarity index 73%
rename from items/equip-arms/item756_AssassinGloves.xml
rename to items/equip-arms/item0756_AssassinGloves.xml
index a72666ba..349d6e4f 100644
--- a/items/equip-arms/item756_AssassinGloves.xml
+++ b/items/equip-arms/item0756_AssassinGloves.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/hands/assassin.xml
equipment/hands/assassin-female.xml
diff --git a/items/equip-arms/item794_BromenalGloves.xml b/items/equip-arms/item0794_BromenalGloves.xml
similarity index 84%
rename from items/equip-arms/item794_BromenalGloves.xml
rename to items/equip-arms/item0794_BromenalGloves.xml
index fdddc2d6..850c630a 100644
--- a/items/equip-arms/item794_BromenalGloves.xml
+++ b/items/equip-arms/item0794_BromenalGloves.xml
@@ -1,6 +1,6 @@
- -
+
-
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 100%
rename from items/equip-arms/item868_SilkGloves.xml
rename to items/equip-arms/item0868_SilkGloves.xml
diff --git a/items/equip-arms/item585_ScarabArmlet.xml b/items/equip-arms/item585_ScarabArmlet.xml
deleted file mode 100644
index c867e8e4..00000000
--- a/items/equip-arms/item585_ScarabArmlet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/_include.xml b/items/equip-charm/_include.xml
index 0fc214aa..ff7953a8 100644
--- a/items/equip-charm/_include.xml
+++ b/items/equip-charm/_include.xml
@@ -1,16 +1,9 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
diff --git a/items/equip-charm/item677_HeartNecklace.xml b/items/equip-charm/item0677_HeartNecklace.xml
similarity index 100%
rename from items/equip-charm/item677_HeartNecklace.xml
rename to items/equip-charm/item0677_HeartNecklace.xml
diff --git a/items/equip-charm/item742_FourLeafClover.xml b/items/equip-charm/item0742_FourLeafClover.xml
similarity index 100%
rename from items/equip-charm/item742_FourLeafClover.xml
rename to items/equip-charm/item0742_FourLeafClover.xml
diff --git a/items/equip-charm/item749_Towel.xml b/items/equip-charm/item0749_Towel.xml
similarity index 100%
rename from items/equip-charm/item749_Towel.xml
rename to items/equip-charm/item0749_Towel.xml
diff --git a/items/equip-charm/item865_Grimoire.xml b/items/equip-charm/item0865_Grimoire.xml
similarity index 100%
rename from items/equip-charm/item865_Grimoire.xml
rename to items/equip-charm/item0865_Grimoire.xml
diff --git a/items/equip-charm/item879_HeartofIsis.xml b/items/equip-charm/item0879_HeartofIsis.xml
similarity index 100%
rename from items/equip-charm/item879_HeartofIsis.xml
rename to items/equip-charm/item0879_HeartofIsis.xml
diff --git a/items/equip-charm/item1227_EnchantersAmulet.xml b/items/equip-charm/item1227_EnchantersAmulet.xml
deleted file mode 100644
index ba13cb75..00000000
--- a/items/equip-charm/item1227_EnchantersAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item1244_DarkTalisman.xml b/items/equip-charm/item1244_DarkTalisman.xml
index 647f7d80..2a002698 100644
--- a/items/equip-charm/item1244_DarkTalisman.xml
+++ b/items/equip-charm/item1244_DarkTalisman.xml
@@ -1,6 +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 ec66cbdc..00000000
--- a/items/equip-charm/item5269_AssassinAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item5270_ManaPearl.xml b/items/equip-charm/item5270_ManaPearl.xml
deleted file mode 100644
index 04daab60..00000000
--- a/items/equip-charm/item5270_ManaPearl.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- -
- graphics/particles/manapearl.particle.xml
-
-
diff --git a/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml b/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml
deleted file mode 100644
index 29d60d62..00000000
--- a/items/equip-charm/item829_CrozeniteFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item830_BromenalFourLeafAmulet.xml b/items/equip-charm/item830_BromenalFourLeafAmulet.xml
deleted file mode 100644
index 79394b97..00000000
--- a/items/equip-charm/item830_BromenalFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item831_SilverFourLeafAmulet.xml b/items/equip-charm/item831_SilverFourLeafAmulet.xml
deleted file mode 100644
index 379d3635..00000000
--- a/items/equip-charm/item831_SilverFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-charm/item832_GoldenFourLeafAmulet.xml b/items/equip-charm/item832_GoldenFourLeafAmulet.xml
deleted file mode 100644
index a1a5a12b..00000000
--- a/items/equip-charm/item832_GoldenFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-feet/_include.xml b/items/equip-feet/_include.xml
index 6c06d202..ad7b2328 100644
--- a/items/equip-feet/_include.xml
+++ b/items/equip-feet/_include.xml
@@ -1,11 +1,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -17,4 +18,5 @@
+
diff --git a/items/equip-feet/item528_Boots.xml b/items/equip-feet/item0528_Boots.xml
similarity index 100%
rename from items/equip-feet/item528_Boots.xml
rename to items/equip-feet/item0528_Boots.xml
diff --git a/items/equip-feet/item655_FurBoots.xml b/items/equip-feet/item0655_FurBoots.xml
similarity index 100%
rename from items/equip-feet/item655_FurBoots.xml
rename to items/equip-feet/item0655_FurBoots.xml
diff --git a/items/equip-feet/item734_BlackBoots.xml b/items/equip-feet/item0734_BlackBoots.xml
similarity index 100%
rename from items/equip-feet/item734_BlackBoots.xml
rename to items/equip-feet/item0734_BlackBoots.xml
diff --git a/items/equip-head/item735_CottonBoots.xml b/items/equip-feet/item0735_CottonBoots.xml
similarity index 84%
rename from items/equip-head/item735_CottonBoots.xml
rename to items/equip-feet/item0735_CottonBoots.xml
index ed9f57d7..14aed202 100644
--- a/items/equip-head/item735_CottonBoots.xml
+++ b/items/equip-feet/item0735_CottonBoots.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/feet/boots.xml|#a4b2b2,ffffff
equipment/feet/boots-female.xml|#a4b2b2,ffffff
diff --git a/items/equip-feet/item757_AssassinBoots.xml b/items/equip-feet/item0757_AssassinBoots.xml
similarity index 67%
rename from items/equip-feet/item757_AssassinBoots.xml
rename to items/equip-feet/item0757_AssassinBoots.xml
index ab0d8e24..2952d91b 100644
--- a/items/equip-feet/item757_AssassinBoots.xml
+++ b/items/equip-feet/item0757_AssassinBoots.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/feet/assassin-boots.xml
equipment/feet/assassin-boots-female.xml
diff --git a/items/equip-feet/item792_BromenalBoots.xml b/items/equip-feet/item0792_BromenalBoots.xml
similarity index 86%
rename from items/equip-feet/item792_BromenalBoots.xml
rename to items/equip-feet/item0792_BromenalBoots.xml
index ac1f349d..ada38699 100644
--- a/items/equip-feet/item792_BromenalBoots.xml
+++ b/items/equip-feet/item0792_BromenalBoots.xml
@@ -1,6 +1,6 @@
- -
+
-
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 100%
rename from items/equip-feet/item876_WarlordBoots.xml
rename to items/equip-feet/item0876_WarlordBoots.xml
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-head/_include.xml b/items/equip-head/_include.xml
index f592b50b..f36c30eb 100644
--- a/items/equip-head/_include.xml
+++ b/items/equip-head/_include.xml
@@ -1,78 +1,79 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -221,5 +222,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-head/item511_SantaHat.xml b/items/equip-head/item0511_SantaHat.xml
similarity index 100%
rename from items/equip-head/item511_SantaHat.xml
rename to items/equip-head/item0511_SantaHat.xml
diff --git a/items/equip-head/item524_FancyHat.xml b/items/equip-head/item0524_FancyHat.xml
similarity index 100%
rename from items/equip-head/item524_FancyHat.xml
rename to items/equip-head/item0524_FancyHat.xml
diff --git a/items/equip-head/item525_MinersHat.xml b/items/equip-head/item0525_MinersHat.xml
similarity index 100%
rename from items/equip-head/item525_MinersHat.xml
rename to items/equip-head/item0525_MinersHat.xml
diff --git a/items/equip-head/item543_StandardHeadband.xml b/items/equip-head/item0543_StandardHeadband.xml
similarity index 100%
rename from items/equip-head/item543_StandardHeadband.xml
rename to items/equip-head/item0543_StandardHeadband.xml
diff --git a/items/equip-head/item544_SilkHeadband.xml b/items/equip-head/item0544_SilkHeadband.xml
similarity index 100%
rename from items/equip-head/item544_SilkHeadband.xml
rename to items/equip-head/item0544_SilkHeadband.xml
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 100%
rename from items/equip-head/item615_PumpkinHelmet.xml
rename to items/equip-head/item0615_PumpkinHelmet.xml
diff --git a/items/equip-head/item616_AxeHat.xml b/items/equip-head/item0616_AxeHat.xml
similarity index 100%
rename from items/equip-head/item616_AxeHat.xml
rename to items/equip-head/item0616_AxeHat.xml
diff --git a/items/equip-head/item617_PirateHat.xml b/items/equip-head/item0617_PirateHat.xml
similarity index 100%
rename from items/equip-head/item617_PirateHat.xml
rename to items/equip-head/item0617_PirateHat.xml
diff --git a/items/equip-head/item618_Goggles.xml b/items/equip-head/item0618_Goggles.xml
similarity index 100%
rename from items/equip-head/item618_Goggles.xml
rename to items/equip-head/item0618_Goggles.xml
diff --git a/items/equip-head/item619_LeatherGoggles.xml b/items/equip-head/item0619_LeatherGoggles.xml
similarity index 100%
rename from items/equip-head/item619_LeatherGoggles.xml
rename to items/equip-head/item0619_LeatherGoggles.xml
diff --git a/items/equip-head/item620_Circlet.xml b/items/equip-head/item0620_Circlet.xml
similarity index 100%
rename from items/equip-head/item620_Circlet.xml
rename to items/equip-head/item0620_Circlet.xml
diff --git a/items/equip-head/item621_Eyepatch.xml b/items/equip-head/item0621_Eyepatch.xml
similarity index 100%
rename from items/equip-head/item621_Eyepatch.xml
rename to items/equip-head/item0621_Eyepatch.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 100%
rename from items/equip-head/item627_TopHat.xml
rename to items/equip-head/item0627_TopHat.xml
diff --git a/items/equip-head/item628_FunkyHat.xml b/items/equip-head/item0628_FunkyHat.xml
similarity index 100%
rename from items/equip-head/item628_FunkyHat.xml
rename to items/equip-head/item0628_FunkyHat.xml
diff --git a/items/equip-head/item629_MushHat.xml b/items/equip-head/item0629_MushHat.xml
similarity index 100%
rename from items/equip-head/item629_MushHat.xml
rename to items/equip-head/item0629_MushHat.xml
diff --git a/items/equip-head/item630_ShroomHat.xml b/items/equip-head/item0630_ShroomHat.xml
similarity index 100%
rename from items/equip-head/item630_ShroomHat.xml
rename to items/equip-head/item0630_ShroomHat.xml
diff --git a/items/equip-head/item633_ChristmasElfHat.xml b/items/equip-head/item0633_ChristmasElfHat.xml
similarity index 100%
rename from items/equip-head/item633_ChristmasElfHat.xml
rename to items/equip-head/item0633_ChristmasElfHat.xml
diff --git a/items/equip-head/item634_FaceMask.xml b/items/equip-head/item0634_FaceMask.xml
similarity index 100%
rename from items/equip-head/item634_FaceMask.xml
rename to items/equip-head/item0634_FaceMask.xml
diff --git a/items/equip-head/item636_WarlordHelmet.xml b/items/equip-head/item0636_WarlordHelmet.xml
similarity index 100%
rename from items/equip-head/item636_WarlordHelmet.xml
rename to items/equip-head/item0636_WarlordHelmet.xml
diff --git a/items/equip-head/item637_KnightsHelmet.xml b/items/equip-head/item0637_KnightsHelmet.xml
similarity index 100%
rename from items/equip-head/item637_KnightsHelmet.xml
rename to items/equip-head/item0637_KnightsHelmet.xml
diff --git a/items/equip-head/item638_InfantryHelmet.xml b/items/equip-head/item0638_InfantryHelmet.xml
similarity index 100%
rename from items/equip-head/item638_InfantryHelmet.xml
rename to items/equip-head/item0638_InfantryHelmet.xml
diff --git a/items/equip-head/item639_CrusadeHelmet.xml b/items/equip-head/item0639_CrusadeHelmet.xml
similarity index 100%
rename from items/equip-head/item639_CrusadeHelmet.xml
rename to items/equip-head/item0639_CrusadeHelmet.xml
diff --git a/items/equip-head/item643_WhiteCowboyHat.xml b/items/equip-head/item0643_WhiteCowboyHat.xml
similarity index 100%
rename from items/equip-head/item643_WhiteCowboyHat.xml
rename to items/equip-head/item0643_WhiteCowboyHat.xml
diff --git a/items/equip-head/item644_BlackCowboyHat.xml b/items/equip-head/item0644_BlackCowboyHat.xml
similarity index 100%
rename from items/equip-head/item644_BlackCowboyHat.xml
rename to items/equip-head/item0644_BlackCowboyHat.xml
diff --git a/items/equip-head/item646_Crown.xml b/items/equip-head/item0646_Crown.xml
similarity index 100%
rename from items/equip-head/item646_Crown.xml
rename to items/equip-head/item0646_Crown.xml
diff --git a/items/equip-head/item647_DevelopersCap.xml b/items/equip-head/item0647_DevelopersCap.xml
similarity index 100%
rename from items/equip-head/item647_DevelopersCap.xml
rename to items/equip-head/item0647_DevelopersCap.xml
diff --git a/items/equip-head/item654_Cap.xml b/items/equip-head/item0654_Cap.xml
similarity index 100%
rename from items/equip-head/item654_Cap.xml
rename to items/equip-head/item0654_Cap.xml
diff --git a/items/equip-head/item656_SerfHat.xml b/items/equip-head/item0656_SerfHat.xml
similarity index 100%
rename from items/equip-head/item656_SerfHat.xml
rename to items/equip-head/item0656_SerfHat.xml
diff --git a/items/equip-head/item675_GraduationCap.xml b/items/equip-head/item0675_GraduationCap.xml
similarity index 79%
rename from items/equip-head/item675_GraduationCap.xml
rename to items/equip-head/item0675_GraduationCap.xml
index 2b70d6be..8d3b911c 100644
--- a/items/equip-head/item675_GraduationCap.xml
+++ b/items/equip-head/item0675_GraduationCap.xml
@@ -1,6 +1,6 @@
- -
+
-
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 100%
rename from items/equip-head/item678_NohMask.xml
rename to items/equip-head/item0678_NohMask.xml
diff --git a/items/equip-head/item679_DemonMask.xml b/items/equip-head/item0679_DemonMask.xml
similarity index 100%
rename from items/equip-head/item679_DemonMask.xml
rename to items/equip-head/item0679_DemonMask.xml
diff --git a/items/equip-head/item721_HighPriestCrown.xml b/items/equip-head/item0721_HighPriestCrown.xml
similarity index 100%
rename from items/equip-head/item721_HighPriestCrown.xml
rename to items/equip-head/item0721_HighPriestCrown.xml
diff --git a/items/equip-head/item722_MonsterSkullHelmet.xml b/items/equip-head/item0722_MonsterSkullHelmet.xml
similarity index 100%
rename from items/equip-head/item722_MonsterSkullHelmet.xml
rename to items/equip-head/item0722_MonsterSkullHelmet.xml
diff --git a/items/equip-head/item723_DesertHat.xml b/items/equip-head/item0723_DesertHat.xml
similarity index 100%
rename from items/equip-head/item723_DesertHat.xml
rename to items/equip-head/item0723_DesertHat.xml
diff --git a/items/equip-head/item724_CottonHeadband.xml b/items/equip-head/item0724_CottonHeadband.xml
similarity index 100%
rename from items/equip-head/item724_CottonHeadband.xml
rename to items/equip-head/item0724_CottonHeadband.xml
diff --git a/items/equip-head/item725_GMCap.xml b/items/equip-head/item0725_GMCap.xml
similarity index 100%
rename from items/equip-head/item725_GMCap.xml
rename to items/equip-head/item0725_GMCap.xml
diff --git a/items/equip-head/item751_PinkieHat.xml b/items/equip-head/item0751_PinkieHat.xml
similarity index 100%
rename from items/equip-head/item751_PinkieHat.xml
rename to items/equip-head/item0751_PinkieHat.xml
diff --git a/items/equip-head/item752_FluffyHat.xml b/items/equip-head/item0752_FluffyHat.xml
similarity index 100%
rename from items/equip-head/item752_FluffyHat.xml
rename to items/equip-head/item0752_FluffyHat.xml
diff --git a/items/equip-head/item759_PaladinsHelmet.xml b/items/equip-head/item0759_PaladinsHelmet.xml
similarity index 100%
rename from items/equip-head/item759_PaladinsHelmet.xml
rename to items/equip-head/item0759_PaladinsHelmet.xml
diff --git a/items/equip-head/item760_OverlordsHelmet.xml b/items/equip-head/item0760_OverlordsHelmet.xml
similarity index 74%
rename from items/equip-head/item760_OverlordsHelmet.xml
rename to items/equip-head/item0760_OverlordsHelmet.xml
index d80588ad..16d5a7f9 100644
--- a/items/equip-head/item760_OverlordsHelmet.xml
+++ b/items/equip-head/item0760_OverlordsHelmet.xml
@@ -1,6 +1,6 @@
- -
+
-
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 100%
rename from items/equip-head/item761_DesertHelmet.xml
rename to items/equip-head/item0761_DesertHelmet.xml
diff --git a/items/equip-head/item764_SailorHat.xml b/items/equip-head/item0764_SailorHat.xml
similarity index 100%
rename from items/equip-head/item764_SailorHat.xml
rename to items/equip-head/item0764_SailorHat.xml
diff --git a/items/equip-head/item765_CaptainsHat.xml b/items/equip-head/item0765_CaptainsHat.xml
similarity index 100%
rename from items/equip-head/item765_CaptainsHat.xml
rename to items/equip-head/item0765_CaptainsHat.xml
diff --git a/items/equip-head/item766_TerraniteHelmet.xml b/items/equip-head/item0766_TerraniteHelmet.xml
similarity index 100%
rename from items/equip-head/item766_TerraniteHelmet.xml
rename to items/equip-head/item0766_TerraniteHelmet.xml
diff --git a/items/equip-head/item769_GuyFawkesMask.xml b/items/equip-head/item0769_GuyFawkesMask.xml
similarity index 100%
rename from items/equip-head/item769_GuyFawkesMask.xml
rename to items/equip-head/item0769_GuyFawkesMask.xml
diff --git a/items/equip-head/item770_FairyHat.xml b/items/equip-head/item0770_FairyHat.xml
similarity index 100%
rename from items/equip-head/item770_FairyHat.xml
rename to items/equip-head/item0770_FairyHat.xml
diff --git a/items/equip-head/item781_WitchDoctorsMask.xml b/items/equip-head/item0781_WitchDoctorsMask.xml
similarity index 100%
rename from items/equip-head/item781_WitchDoctorsMask.xml
rename to items/equip-head/item0781_WitchDoctorsMask.xml
diff --git a/items/equip-head/item795_BromenalHelmet.xml b/items/equip-head/item0795_BromenalHelmet.xml
similarity index 88%
rename from items/equip-head/item795_BromenalHelmet.xml
rename to items/equip-head/item0795_BromenalHelmet.xml
index 5ca66fcb..c3041c7b 100644
--- a/items/equip-head/item795_BromenalHelmet.xml
+++ b/items/equip-head/item0795_BromenalHelmet.xml
@@ -1,6 +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 100%
rename from items/equip-head/item800_BowlerHatBrown.xml
rename to items/equip-head/item0800_BowlerHatBrown.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 100%
rename from items/equip-head/item848_Earmuffs.xml
rename to items/equip-head/item0848_Earmuffs.xml
diff --git a/items/equip-head/item854_ElfNightcap.xml b/items/equip-head/item0854_ElfNightcap.xml
similarity index 100%
rename from items/equip-head/item854_ElfNightcap.xml
rename to items/equip-head/item0854_ElfNightcap.xml
diff --git a/items/equip-head/item855_Sunglasses.xml b/items/equip-head/item0855_Sunglasses.xml
similarity index 100%
rename from items/equip-head/item855_Sunglasses.xml
rename to items/equip-head/item0855_Sunglasses.xml
diff --git a/items/equip-head/item856_KnitCap.xml b/items/equip-head/item0856_KnitCap.xml
similarity index 100%
rename from items/equip-head/item856_KnitCap.xml
rename to items/equip-head/item0856_KnitCap.xml
diff --git a/items/equip-head/item877_BullHelmet.xml b/items/equip-head/item0877_BullHelmet.xml
similarity index 100%
rename from items/equip-head/item877_BullHelmet.xml
rename to items/equip-head/item0877_BullHelmet.xml
diff --git a/items/equip-head/item882_RedEggshellHat.xml b/items/equip-head/item0882_RedEggshellHat.xml
similarity index 100%
rename from items/equip-head/item882_RedEggshellHat.xml
rename to items/equip-head/item0882_RedEggshellHat.xml
diff --git a/items/equip-head/item883_BlueEggshellHat.xml b/items/equip-head/item0883_BlueEggshellHat.xml
similarity index 100%
rename from items/equip-head/item883_BlueEggshellHat.xml
rename to items/equip-head/item0883_BlueEggshellHat.xml
diff --git a/items/equip-head/item884_YellowEggshellHat.xml b/items/equip-head/item0884_YellowEggshellHat.xml
similarity index 100%
rename from items/equip-head/item884_YellowEggshellHat.xml
rename to items/equip-head/item0884_YellowEggshellHat.xml
diff --git a/items/equip-head/item885_GreenEggshellHat.xml b/items/equip-head/item0885_GreenEggshellHat.xml
similarity index 100%
rename from items/equip-head/item885_GreenEggshellHat.xml
rename to items/equip-head/item0885_GreenEggshellHat.xml
diff --git a/items/equip-head/item886_OrangeEggshellHat.xml b/items/equip-head/item0886_OrangeEggshellHat.xml
similarity index 100%
rename from items/equip-head/item886_OrangeEggshellHat.xml
rename to items/equip-head/item0886_OrangeEggshellHat.xml
diff --git a/items/equip-head/item887_DarkEggshellHat.xml b/items/equip-head/item0887_DarkEggshellHat.xml
similarity index 100%
rename from items/equip-head/item887_DarkEggshellHat.xml
rename to items/equip-head/item0887_DarkEggshellHat.xml
diff --git a/items/equip-head/item888_MagicGMTopHat.xml b/items/equip-head/item0888_MagicGMTopHat.xml
similarity index 100%
rename from items/equip-head/item888_MagicGMTopHat.xml
rename to items/equip-head/item0888_MagicGMTopHat.xml
diff --git a/items/equip-head/item889_MurdererCrown.xml b/items/equip-head/item0889_MurdererCrown.xml
similarity index 100%
rename from items/equip-head/item889_MurdererCrown.xml
rename to items/equip-head/item0889_MurdererCrown.xml
diff --git a/items/equip-head/item890_BeanieCopter.xml b/items/equip-head/item0890_BeanieCopter.xml
similarity index 100%
rename from items/equip-head/item890_BeanieCopter.xml
rename to items/equip-head/item0890_BeanieCopter.xml
diff --git a/items/equip-head/item897_RedRoseHat.xml b/items/equip-head/item0897_RedRoseHat.xml
similarity index 100%
rename from items/equip-head/item897_RedRoseHat.xml
rename to items/equip-head/item0897_RedRoseHat.xml
diff --git a/items/equip-head/item898_WhiteRoseHat.xml b/items/equip-head/item0898_WhiteRoseHat.xml
similarity index 100%
rename from items/equip-head/item898_WhiteRoseHat.xml
rename to items/equip-head/item0898_WhiteRoseHat.xml
diff --git a/items/equip-head/item899_PinkRoseHat.xml b/items/equip-head/item0899_PinkRoseHat.xml
similarity index 100%
rename from items/equip-head/item899_PinkRoseHat.xml
rename to items/equip-head/item0899_PinkRoseHat.xml
diff --git a/items/equip-head/item900_YellowRoseHat.xml b/items/equip-head/item0900_YellowRoseHat.xml
similarity index 100%
rename from items/equip-head/item900_YellowRoseHat.xml
rename to items/equip-head/item0900_YellowRoseHat.xml
diff --git a/items/equip-head/item901_OrangeRoseHat.xml b/items/equip-head/item0901_OrangeRoseHat.xml
similarity index 100%
rename from items/equip-head/item901_OrangeRoseHat.xml
rename to items/equip-head/item0901_OrangeRoseHat.xml
diff --git a/items/equip-head/item902_BlueRoseHat.xml b/items/equip-head/item0902_BlueRoseHat.xml
similarity index 100%
rename from items/equip-head/item902_BlueRoseHat.xml
rename to items/equip-head/item0902_BlueRoseHat.xml
diff --git a/items/equip-head/item905_BucketHat.xml b/items/equip-head/item0905_BucketHat.xml
similarity index 100%
rename from items/equip-head/item905_BucketHat.xml
rename to items/equip-head/item0905_BucketHat.xml
diff --git a/items/equip-head/item0909_LeprechaunHead.xml b/items/equip-head/item0909_LeprechaunHead.xml
new file mode 100644
index 00000000..9afc03cd
--- /dev/null
+++ b/items/equip-head/item0909_LeprechaunHead.xml
@@ -0,0 +1,16 @@
+
+
+ -
+ equipment/head/leprechaunhead.xml
+
+
+
+
+
diff --git a/items/equip-head/item1174_CashiersShade.xml b/items/equip-head/item1174_CashiersShade.xml
index 555662b9..9cc11ce5 100644
--- a/items/equip-head/item1174_CashiersShade.xml
+++ b/items/equip-head/item1174_CashiersShade.xml
@@ -1,6 +1,14 @@
- -
+
-
equipment/head/cashiershade.xml|#909090;#70ff1f
equipment/head/cashiershade-female.xml|#909090;#70ff1f
diff --git a/items/equip-head/item1203_RangerHat.xml b/items/equip-head/item1203_RangerHat.xml
index 646476cb..6aa6894f 100644
--- a/items/equip-head/item1203_RangerHat.xml
+++ b/items/equip-head/item1203_RangerHat.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/head/rangerhat.xml
equipment/head/rangerhat-female.xml
diff --git a/items/equip-head/item4027_YetiMask.xml b/items/equip-head/item4027_YetiMask.xml
index 00aa75b0..3f0f90ea 100644
--- a/items/equip-head/item4027_YetiMask.xml
+++ b/items/equip-head/item4027_YetiMask.xml
@@ -3,5 +3,8 @@
-
equipment/head/yeti-mask.xml
equipment/head/yeti-mask-female.xml
+
+
+
diff --git a/items/equip-head/item5128_DarkHelm.xml b/items/equip-head/item5128_DarkHelm.xml
index c9526392..5d6f76c2 100644
--- a/items/equip-head/item5128_DarkHelm.xml
+++ b/items/equip-head/item5128_DarkHelm.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/head/dark-helm.xml
equipment/head/dark-helm-female.xml
diff --git a/items/equip-head/item5129_UnderworldMask.xml b/items/equip-head/item5129_UnderworldMask.xml
index fc585cb4..b50fd80c 100644
--- a/items/equip-head/item5129_UnderworldMask.xml
+++ b/items/equip-head/item5129_UnderworldMask.xml
@@ -1,9 +1,9 @@
-
-
+
-
equipment/head/underworld-mask.xml
equipment/head/underworld-mask-female.xml
-
+
diff --git a/items/equip-head/item5130_Phylactery.xml b/items/equip-head/item5130_Phylactery.xml
index 7f165ac0..49411f13 100644
--- a/items/equip-head/item5130_Phylactery.xml
+++ b/items/equip-head/item5130_Phylactery.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/head/phylactery.xml
equipment/head/phylactery-female.xml
diff --git a/items/equip-head/item5202_PilotHat.xml b/items/equip-head/item5202_PilotHat.xml
index f6d84669..713ee67c 100644
--- a/items/equip-head/item5202_PilotHat.xml
+++ b/items/equip-head/item5202_PilotHat.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/head/pilot-hat.xml
equipment/head/pilot-hat-female.xml
diff --git a/items/equip-head/item5203_MoonshroomHat.xml b/items/equip-head/item5203_MoonshroomHat.xml
index 670df756..9cc6d048 100644
--- a/items/equip-head/item5203_MoonshroomHat.xml
+++ b/items/equip-head/item5203_MoonshroomHat.xml
@@ -1,6 +1,7 @@
- -
+
-
+ graphics/particles/monster-mushroom-moon.particle.xml
equipment/head/moonshroomhat.xml
equipment/head/moonshroomhat-female.xml
diff --git a/items/equip-head/item5205_EskimoHat.xml b/items/equip-head/item5205_EskimoHat.xml
index 549ba20c..9ad4f32a 100644
--- a/items/equip-head/item5205_EskimoHat.xml
+++ b/items/equip-head/item5205_EskimoHat.xml
@@ -1,6 +1,6 @@
-
-
+
-
equipment/head/eskimohat.xml
equipment/head/eskimohat-female.xml
diff --git a/items/equip-head/item5231_RedPresentHat.xml b/items/equip-head/item5231_RedPresentHat.xml
index c8a7291b..143813ae 100644
--- a/items/equip-head/item5231_RedPresentHat.xml
+++ b/items/equip-head/item5231_RedPresentHat.xml
@@ -3,5 +3,8 @@
-
equipment/head/presenthat.xml|#ff4b4b,ffcccc;#72ED5A,CCF9C3
equipment/head/presenthat-female.xml|#ff4b4b,ffcccc;#72ED5A,CCF9C3
+
+
+
diff --git a/items/equip-head/item5232_GreenPresentHat.xml b/items/equip-head/item5232_GreenPresentHat.xml
index 9bcac764..68b9d339 100644
--- a/items/equip-head/item5232_GreenPresentHat.xml
+++ b/items/equip-head/item5232_GreenPresentHat.xml
@@ -3,5 +3,8 @@
-
equipment/head/presenthat.xml|#4bff4b,ccffcc;#EF4A76,FF9FB9
equipment/head/presenthat-female.xml|#4bff4b,ccffcc;#EF4A76,FF9FB9
+
+
+
diff --git a/items/equip-head/item5233_BluePresentHat.xml b/items/equip-head/item5233_BluePresentHat.xml
index b0e347e0..937898e2 100644
--- a/items/equip-head/item5233_BluePresentHat.xml
+++ b/items/equip-head/item5233_BluePresentHat.xml
@@ -3,5 +3,8 @@
-
equipment/head/presenthat.xml|#4b99ff,cceeff;#FF8D00,FCCA8C
equipment/head/presenthat-female.xml|#4b99ff,cceeff;#FF8D00,FCCA8C
+
+
+
diff --git a/items/equip-head/item5266_CloverHat.xml b/items/equip-head/item5266_CloverHat.xml
index bf2149c9..adece8f2 100644
--- a/items/equip-head/item5266_CloverHat.xml
+++ b/items/equip-head/item5266_CloverHat.xml
@@ -1,6 +1,14 @@
- -
+
-
diff --git a/items/equip-head/item5267_AssassinMask.xml b/items/equip-head/item5267_AssassinMask.xml
index 7ec31eda..3259acff 100644
--- a/items/equip-head/item5267_AssassinMask.xml
+++ b/items/equip-head/item5267_AssassinMask.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/head/assassin-mask.xml
equipment/head/assassin-mask-female.xml
diff --git a/items/equip-head/item5280_LeprechaunHat.xml b/items/equip-head/item5280_LeprechaunHat.xml
new file mode 100644
index 00000000..ac9a68a3
--- /dev/null
+++ b/items/equip-head/item5280_LeprechaunHat.xml
@@ -0,0 +1,13 @@
+
+
+
-
+ equipment/head/leprechaunhat.xml
+
+
diff --git a/items/equip-head/item5281_PartyHatRed.xml b/items/equip-head/item5281_PartyHatRed.xml
new file mode 100644
index 00000000..3248f33d
--- /dev/null
+++ b/items/equip-head/item5281_PartyHatRed.xml
@@ -0,0 +1,12 @@
+
+
+ -
+ equipment/head/party-red.xml
+
+
diff --git a/items/equip-head/item5282_PartyHatGreen.xml b/items/equip-head/item5282_PartyHatGreen.xml
new file mode 100644
index 00000000..8087ec8a
--- /dev/null
+++ b/items/equip-head/item5282_PartyHatGreen.xml
@@ -0,0 +1,12 @@
+
+
+ -
+ equipment/head/party-green.xml
+
+
diff --git a/items/equip-head/item5283_PartyHatBlue.xml b/items/equip-head/item5283_PartyHatBlue.xml
new file mode 100644
index 00000000..16d41287
--- /dev/null
+++ b/items/equip-head/item5283_PartyHatBlue.xml
@@ -0,0 +1,12 @@
+
+
+ -
+ equipment/head/party-blue.xml
+
+
diff --git a/items/equip-head/item5324_BlackWarlordHelmet.xml b/items/equip-head/item5324_BlackWarlordHelmet.xml
new file mode 100644
index 00000000..3cd6ab28
--- /dev/null
+++ b/items/equip-head/item5324_BlackWarlordHelmet.xml
@@ -0,0 +1,12 @@
+
+
+ -
+ equipment/head/warlordhelm.xml|#000000,ffffff
+ equipment/head/warlordhelm-female.xml|#000000,ffffff
+
+
+
+
+
+
+
diff --git a/items/equip-head/item5325_BlackInfantryHelmet.xml b/items/equip-head/item5325_BlackInfantryHelmet.xml
new file mode 100644
index 00000000..f83f6a0f
--- /dev/null
+++ b/items/equip-head/item5325_BlackInfantryHelmet.xml
@@ -0,0 +1,14 @@
+
+
+ -
+ equipment/head/infantryhelm.xml|#000000,ffffff
+ equipment/head/infantryhelm-female.xml|#000000,ffffff
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-head/item5326_BlackCrusadeHelmet.xml b/items/equip-head/item5326_BlackCrusadeHelmet.xml
new file mode 100644
index 00000000..62029b35
--- /dev/null
+++ b/items/equip-head/item5326_BlackCrusadeHelmet.xml
@@ -0,0 +1,10 @@
+
+
+ -
+ equipment/head/crusadehelm.xml|#000000,ffffff
+ equipment/head/crusadehelm-female.xml|#000000,ffffff
+
+
+
+
+
diff --git a/items/equip-head/item5392_SunshroomHat.xml b/items/equip-head/item5392_SunshroomHat.xml
new file mode 100644
index 00000000..476e8151
--- /dev/null
+++ b/items/equip-head/item5392_SunshroomHat.xml
@@ -0,0 +1,11 @@
+
+
+ -
+ graphics/particles/monster-mushroom-sun.particle.xml
+ equipment/head/sunshroomhat.xml
+ equipment/head/sunshroomhat-female.xml
+
+
+
+
+
diff --git a/items/equip-head/item5394_BlackKnightsHelmet.xml b/items/equip-head/item5394_BlackKnightsHelmet.xml
new file mode 100644
index 00000000..5d587cf3
--- /dev/null
+++ b/items/equip-head/item5394_BlackKnightsHelmet.xml
@@ -0,0 +1,12 @@
+
+
+ -
+ equipment/head/knighthelm-dyable.xml|#000000,ffffff
+ equipment/head/knighthelm-dyable-female.xml|#000000,ffffff
+
+
+
+
+
+
+
diff --git a/items/equip-head/item5395_BlackRoseHat.xml b/items/equip-head/item5395_BlackRoseHat.xml
new file mode 100644
index 00000000..bddcc4c3
--- /dev/null
+++ b/items/equip-head/item5395_BlackRoseHat.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/rosehat.xml|#111111,444444,555555,ffffff
+ equipment/head/rosehat-female.xml|#111111,444444,555555,ffffff
+
+
diff --git a/items/equip-head/item5396_SnowshroomHat.xml b/items/equip-head/item5396_SnowshroomHat.xml
new file mode 100644
index 00000000..8eb7819b
--- /dev/null
+++ b/items/equip-head/item5396_SnowshroomHat.xml
@@ -0,0 +1,11 @@
+
+
+ -
+ graphics/particles/monster-mushroom-snow.particle.xml
+ equipment/head/snowshroomhat.xml
+ equipment/head/snowshroomhat-female.xml
+
+
+
+
+
diff --git a/items/equip-head/item5397_WickedMushroomHat.xml b/items/equip-head/item5397_WickedMushroomHat.xml
new file mode 100644
index 00000000..c21b1c55
--- /dev/null
+++ b/items/equip-head/item5397_WickedMushroomHat.xml
@@ -0,0 +1,10 @@
+
+
+ -
+ equipment/head/wickedmushroomhat.xml
+ equipment/head/wickedmushroomhat-female.xml
+
+
+
+
+
diff --git a/items/equip-head/item5399_IceSkullMask.xml b/items/equip-head/item5399_IceSkullMask.xml
new file mode 100644
index 00000000..b846189a
--- /dev/null
+++ b/items/equip-head/item5399_IceSkullMask.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/skullmask-dyable.xml|#2b55ab,6b95eb,88a9cd,b9d0e8,eff8ff;#000000
+ equipment/head/skullmask-dyable-female.xml|#2b55ab,6b95eb,88a9cd,b9d0e8,eff8ff;#000000
+
+
diff --git a/items/equip-head/item5400_GoldenSkullMask.xml b/items/equip-head/item5400_GoldenSkullMask.xml
new file mode 100644
index 00000000..dfc5bd1f
--- /dev/null
+++ b/items/equip-head/item5400_GoldenSkullMask.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/skullmask-dyable.xml|#573f10,9c8226,d3c04b,ffffff;#000000
+ equipment/head/skullmask-dyable-female.xml|#573f10,9c8226,d3c04b,ffffff;#000000
+
+
diff --git a/items/equip-head/item5401_YellowHeadSlime.xml b/items/equip-head/item5401_YellowHeadSlime.xml
new file mode 100644
index 00000000..df601899
--- /dev/null
+++ b/items/equip-head/item5401_YellowHeadSlime.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/headslime.xml|#b47f00,ffffff
+ equipment/head/headslime-female.xml|#b47f00,ffffff
+
+
diff --git a/items/equip-head/item5402_RedHeadSlime.xml b/items/equip-head/item5402_RedHeadSlime.xml
new file mode 100644
index 00000000..51fd9ee6
--- /dev/null
+++ b/items/equip-head/item5402_RedHeadSlime.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/headslime.xml|#7e0000,ffffff
+ equipment/head/headslime-female.xml|#7e0000,ffffff
+
+
diff --git a/items/equip-head/item5403_GreenHeadSlime.xml b/items/equip-head/item5403_GreenHeadSlime.xml
new file mode 100644
index 00000000..ee47e9c2
--- /dev/null
+++ b/items/equip-head/item5403_GreenHeadSlime.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/headslime.xml|#72982c,ffffff
+ equipment/head/headslime-female.xml|#72982c,ffffff
+
+
diff --git a/items/equip-head/item5404_BlueHeadSlime.xml b/items/equip-head/item5404_BlueHeadSlime.xml
new file mode 100644
index 00000000..8fa3fc43
--- /dev/null
+++ b/items/equip-head/item5404_BlueHeadSlime.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/head/headslime.xml|#2121ae,ffffff
+ equipment/head/headslime-female.xml|#2121ae,ffffff
+
+
diff --git a/items/equip-head/item5407_RainshroomHat.xml b/items/equip-head/item5407_RainshroomHat.xml
new file mode 100644
index 00000000..658572ff
--- /dev/null
+++ b/items/equip-head/item5407_RainshroomHat.xml
@@ -0,0 +1,11 @@
+
+
+ -
+ graphics/particles/monster-mushroom-rain.particle.xml
+ equipment/head/rainshroomhat.xml
+ equipment/head/rainshroomhat-female.xml
+
+
+
+
+
diff --git a/items/equip-head/item622_Bandana.xml b/items/equip-head/item622_Bandana.xml
deleted file mode 100644
index a47926f9..00000000
--- a/items/equip-head/item622_Bandana.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- -
- equipment/head/bandana.xml|#ffffff;#ff4645
- equipment/head/bandana-female.xml|#ffffff;#ff4645
-
-
-
-
-
diff --git a/items/equip-head/item801_PinkieHelmet.xml b/items/equip-head/item801_PinkieHelmet.xml
deleted file mode 100644
index 00c1d8f5..00000000
--- a/items/equip-head/item801_PinkieHelmet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- -
- equipment/head/pinkie-helmet.xml
- equipment/head/pinkie-helmet-female.xml
-
-
-
-
-
diff --git a/items/equip-legs/_include.xml b/items/equip-legs/_include.xml
index bed2022f..28da0c09 100644
--- a/items/equip-legs/_include.xml
+++ b/items/equip-legs/_include.xml
@@ -1,16 +1,16 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-legs/item586_CottonShorts.xml b/items/equip-legs/item0586_CottonShorts.xml
similarity index 100%
rename from items/equip-legs/item586_CottonShorts.xml
rename to items/equip-legs/item0586_CottonShorts.xml
diff --git a/items/equip-legs/item610_JeansShorts.xml b/items/equip-legs/item0610_JeansShorts.xml
similarity index 100%
rename from items/equip-legs/item610_JeansShorts.xml
rename to items/equip-legs/item0610_JeansShorts.xml
diff --git a/items/equip-legs/item632_CottonSkirt.xml b/items/equip-legs/item0632_CottonSkirt.xml
similarity index 100%
rename from items/equip-legs/item632_CottonSkirt.xml
rename to items/equip-legs/item0632_CottonSkirt.xml
diff --git a/items/equip-legs/item642_JeansChaps.xml b/items/equip-legs/item0642_JeansChaps.xml
similarity index 100%
rename from items/equip-legs/item642_JeansChaps.xml
rename to items/equip-legs/item0642_JeansChaps.xml
diff --git a/items/equip-legs/item648_CottonTrousers.xml b/items/equip-legs/item0648_CottonTrousers.xml
similarity index 100%
rename from items/equip-legs/item648_CottonTrousers.xml
rename to items/equip-legs/item0648_CottonTrousers.xml
diff --git a/items/equip-legs/item731_AssassinPants.xml b/items/equip-legs/item0731_AssassinPants.xml
similarity index 66%
rename from items/equip-legs/item731_AssassinPants.xml
rename to items/equip-legs/item0731_AssassinPants.xml
index 404d9fef..4df67df7 100644
--- a/items/equip-legs/item731_AssassinPants.xml
+++ b/items/equip-legs/item0731_AssassinPants.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/legs/assassin.xml
equipment/legs/assassin-female.xml
diff --git a/items/equip-legs/item768_TerraniteLegs.xml b/items/equip-legs/item0768_TerraniteLegs.xml
similarity index 100%
rename from items/equip-legs/item768_TerraniteLegs.xml
rename to items/equip-legs/item0768_TerraniteLegs.xml
diff --git a/items/equip-legs/item771_Miniskirt.xml b/items/equip-legs/item0771_Miniskirt.xml
similarity index 100%
rename from items/equip-legs/item771_Miniskirt.xml
rename to items/equip-legs/item0771_Miniskirt.xml
diff --git a/items/equip-legs/item796_BromenalLegs.xml b/items/equip-legs/item0796_BromenalLegs.xml
similarity index 83%
rename from items/equip-legs/item796_BromenalLegs.xml
rename to items/equip-legs/item0796_BromenalLegs.xml
index 8fe6fb8a..4a2604f5 100644
--- a/items/equip-legs/item796_BromenalLegs.xml
+++ b/items/equip-legs/item0796_BromenalLegs.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/legs/bromenallegs.xml
equipment/legs/bromenallegs-female.xml
diff --git a/items/equip-legs/item857_LeatherTrousers.xml b/items/equip-legs/item0857_LeatherTrousers.xml
similarity index 100%
rename from items/equip-legs/item857_LeatherTrousers.xml
rename to items/equip-legs/item0857_LeatherTrousers.xml
diff --git a/items/equip-legs/item881_RaggedShorts.xml b/items/equip-legs/item0881_RaggedShorts.xml
similarity index 100%
rename from items/equip-legs/item881_RaggedShorts.xml
rename to items/equip-legs/item0881_RaggedShorts.xml
diff --git a/items/equip-ring/_include.xml b/items/equip-ring/_include.xml
index 71518519..628269c4 100644
--- a/items/equip-ring/_include.xml
+++ b/items/equip-ring/_include.xml
@@ -1,6 +1,6 @@
-
+
@@ -8,7 +8,6 @@
-
diff --git a/items/equip-ring/item702_WeddingRing.xml b/items/equip-ring/item0702_WeddingRing.xml
similarity index 100%
rename from items/equip-ring/item702_WeddingRing.xml
rename to items/equip-ring/item0702_WeddingRing.xml
diff --git a/items/equip-ring/item5252_GuardianWings.xml b/items/equip-ring/item5252_GuardianWings.xml
deleted file mode 100644
index dd9b9663..00000000
--- a/items/equip-ring/item5252_GuardianWings.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/angel-wings.xml
- graphics/particles/angel.particle.xml
-
-
diff --git a/items/equip-ring/item5253_MagicRing.xml b/items/equip-ring/item5253_MagicRing.xml
index b16e193e..43316a8a 100644
--- a/items/equip-ring/item5253_MagicRing.xml
+++ b/items/equip-ring/item5253_MagicRing.xml
@@ -1,5 +1,14 @@
- -
+
-
diff --git a/items/equip-shield/_include.xml b/items/equip-shield/_include.xml
index 2ff019f2..52c514bf 100644
--- a/items/equip-shield/_include.xml
+++ b/items/equip-shield/_include.xml
@@ -1,7 +1,10 @@
-
-
-
+
+
+
+
+
+
diff --git a/items/equip-shield/item0585_ScarabArmlet.xml b/items/equip-shield/item0585_ScarabArmlet.xml
new file mode 100644
index 00000000..e2f5ed6e
--- /dev/null
+++ b/items/equip-shield/item0585_ScarabArmlet.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/equip-shield/item601_SteelShield.xml b/items/equip-shield/item0601_SteelShield.xml
similarity index 100%
rename from items/equip-shield/item601_SteelShield.xml
rename to items/equip-shield/item0601_SteelShield.xml
diff --git a/items/equip-shield/item602_WoodenShield.xml b/items/equip-shield/item0602_WoodenShield.xml
similarity index 100%
rename from items/equip-shield/item602_WoodenShield.xml
rename to items/equip-shield/item0602_WoodenShield.xml
diff --git a/items/equip-shield/item603_LeatherShield.xml b/items/equip-shield/item0603_LeatherShield.xml
similarity index 100%
rename from items/equip-shield/item603_LeatherShield.xml
rename to items/equip-shield/item0603_LeatherShield.xml
diff --git a/items/equip-shield/item0797_BromenalShield.xml b/items/equip-shield/item0797_BromenalShield.xml
new file mode 100644
index 00000000..7bd4eb51
--- /dev/null
+++ b/items/equip-shield/item0797_BromenalShield.xml
@@ -0,0 +1,15 @@
+
+
+ -
+
+ equipment/shields/wooden.xml
+
+
diff --git a/items/equip-shield/item5285_DragonShield.xml b/items/equip-shield/item5285_DragonShield.xml
index 642ae392..8f0a76ff 100644
--- a/items/equip-shield/item5285_DragonShield.xml
+++ b/items/equip-shield/item5285_DragonShield.xml
@@ -4,7 +4,6 @@
image="equipment/shield/dragonshield.png"
name="Dragon Shield"
description="A mighty shield from the dragons of another world."
- effect="Unobtainable."
defense="27"
mattack="-200"
type="equip-shield"
diff --git a/items/equip-shield/item5393_BlackSteelShield.xml b/items/equip-shield/item5393_BlackSteelShield.xml
new file mode 100644
index 00000000..685e6b98
--- /dev/null
+++ b/items/equip-shield/item5393_BlackSteelShield.xml
@@ -0,0 +1,13 @@
+
+
+ -
+ equipment/shields/steel-dyable.xml|#000000,ffffff
+
+
diff --git a/items/equip-torso/_include.xml b/items/equip-torso/_include.xml
index c40f010b..00f8ec37 100644
--- a/items/equip-torso/_include.xml
+++ b/items/equip-torso/_include.xml
@@ -1,32 +1,32 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -239,4 +239,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/equip-torso/item523_LeatherShirt.xml b/items/equip-torso/item0523_LeatherShirt.xml
similarity index 100%
rename from items/equip-torso/item523_LeatherShirt.xml
rename to items/equip-torso/item0523_LeatherShirt.xml
diff --git a/items/equip-torso/item546_DesertShirt.xml b/items/equip-torso/item0546_DesertShirt.xml
similarity index 100%
rename from items/equip-torso/item546_DesertShirt.xml
rename to items/equip-torso/item0546_DesertShirt.xml
diff --git a/items/equip-torso/item564_TurtleneckSweater.xml b/items/equip-torso/item0564_TurtleneckSweater.xml
similarity index 100%
rename from items/equip-torso/item564_TurtleneckSweater.xml
rename to items/equip-torso/item0564_TurtleneckSweater.xml
diff --git a/items/equip-torso/item624_VNeckSweater.xml b/items/equip-torso/item0624_VNeckSweater.xml
similarity index 100%
rename from items/equip-torso/item624_VNeckSweater.xml
rename to items/equip-torso/item0624_VNeckSweater.xml
diff --git a/items/equip-torso/item625_ChainmailShirt.xml b/items/equip-torso/item0625_ChainmailShirt.xml
similarity index 100%
rename from items/equip-torso/item625_ChainmailShirt.xml
rename to items/equip-torso/item0625_ChainmailShirt.xml
diff --git a/items/equip-torso/item626_LightPlatemail.xml b/items/equip-torso/item0626_LightPlatemail.xml
similarity index 100%
rename from items/equip-torso/item626_LightPlatemail.xml
rename to items/equip-torso/item0626_LightPlatemail.xml
diff --git a/items/equip-torso/item645_GoldenPlatemail.xml b/items/equip-torso/item0645_GoldenPlatemail.xml
similarity index 79%
rename from items/equip-torso/item645_GoldenPlatemail.xml
rename to items/equip-torso/item0645_GoldenPlatemail.xml
index f754bcdb..30da7a0b 100644
--- a/items/equip-torso/item645_GoldenPlatemail.xml
+++ b/items/equip-torso/item0645_GoldenPlatemail.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/chest/lightplatemail.xml|#573f10,9c8226,d3c04b,ffffff
equipment/chest/lightplatemail-female.xml|#573f10,9c8226,d3c04b,ffffff
diff --git a/items/equip-torso/item649_WhiteEvokersRobeBlue.xml b/items/equip-torso/item0649_WhiteEvokersRobeBlue.xml
similarity index 100%
rename from items/equip-torso/item649_WhiteEvokersRobeBlue.xml
rename to items/equip-torso/item0649_WhiteEvokersRobeBlue.xml
diff --git a/items/equip-torso/item650_BlackEvokersRobeBlue.xml b/items/equip-torso/item0650_BlackEvokersRobeBlue.xml
similarity index 100%
rename from items/equip-torso/item650_BlackEvokersRobeBlue.xml
rename to items/equip-torso/item0650_BlackEvokersRobeBlue.xml
diff --git a/items/equip-torso/item651_WhiteWizardRobe.xml b/items/equip-torso/item0651_WhiteWizardRobe.xml
similarity index 100%
rename from items/equip-torso/item651_WhiteWizardRobe.xml
rename to items/equip-torso/item0651_WhiteWizardRobe.xml
diff --git a/items/equip-torso/item652_BlackWizardRobe.xml b/items/equip-torso/item0652_BlackWizardRobe.xml
similarity index 100%
rename from items/equip-torso/item652_BlackWizardRobe.xml
rename to items/equip-torso/item0652_BlackWizardRobe.xml
diff --git a/items/equip-torso/item653_ApprenticeRobe.xml b/items/equip-torso/item0653_ApprenticeRobe.xml
similarity index 100%
rename from items/equip-torso/item653_ApprenticeRobe.xml
rename to items/equip-torso/item0653_ApprenticeRobe.xml
diff --git a/items/equip-torso/item658_WarlordPlate.xml b/items/equip-torso/item0658_WarlordPlate.xml
similarity index 100%
rename from items/equip-torso/item658_WarlordPlate.xml
rename to items/equip-torso/item0658_WarlordPlate.xml
diff --git a/items/equip-torso/item659_GoldenWarlordPlate.xml b/items/equip-torso/item0659_GoldenWarlordPlate.xml
similarity index 83%
rename from items/equip-torso/item659_GoldenWarlordPlate.xml
rename to items/equip-torso/item0659_GoldenWarlordPlate.xml
index e11fed4b..fd425941 100644
--- a/items/equip-torso/item659_GoldenWarlordPlate.xml
+++ b/items/equip-torso/item0659_GoldenWarlordPlate.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/chest/warlordplate.xml|#573f10,9c8226,d3c04b,ffffff
equipment/chest/warlordplate-female.xml|#573f10,9c8226,d3c04b,ffffff
diff --git a/items/equip-torso/item688_TankTop.xml b/items/equip-torso/item0688_TankTop.xml
similarity index 100%
rename from items/equip-torso/item688_TankTop.xml
rename to items/equip-torso/item0688_TankTop.xml
diff --git a/items/equip-torso/item689_ShortTankTop.xml b/items/equip-torso/item0689_ShortTankTop.xml
similarity index 100%
rename from items/equip-torso/item689_ShortTankTop.xml
rename to items/equip-torso/item0689_ShortTankTop.xml
diff --git a/items/equip-torso/item720_SilkRobe.xml b/items/equip-torso/item0720_SilkRobe.xml
similarity index 100%
rename from items/equip-torso/item720_SilkRobe.xml
rename to items/equip-torso/item0720_SilkRobe.xml
diff --git a/items/equip-torso/item726_GMRobe.xml b/items/equip-torso/item0726_GMRobe.xml
similarity index 100%
rename from items/equip-torso/item726_GMRobe.xml
rename to items/equip-torso/item0726_GMRobe.xml
diff --git a/items/equip-torso/item755_AssassinShirt.xml b/items/equip-torso/item0755_AssassinShirt.xml
similarity index 60%
rename from items/equip-torso/item755_AssassinShirt.xml
rename to items/equip-torso/item0755_AssassinShirt.xml
index 42be3e1e..a44a88ae 100644
--- a/items/equip-torso/item755_AssassinShirt.xml
+++ b/items/equip-torso/item0755_AssassinShirt.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/chest/assassin.xml
equipment/chest/assassin-female.xml
diff --git a/items/equip-torso/item767_TerraniteChestArmor.xml b/items/equip-torso/item0767_TerraniteChestArmor.xml
similarity index 100%
rename from items/equip-torso/item767_TerraniteChestArmor.xml
rename to items/equip-torso/item0767_TerraniteChestArmor.xml
diff --git a/items/equip-torso/item782_ForestArmor.xml b/items/equip-torso/item0782_ForestArmor.xml
similarity index 100%
rename from items/equip-torso/item782_ForestArmor.xml
rename to items/equip-torso/item0782_ForestArmor.xml
diff --git a/items/equip-torso/item783_ValentineDress.xml b/items/equip-torso/item0783_ValentineDress.xml
similarity index 100%
rename from items/equip-torso/item783_ValentineDress.xml
rename to items/equip-torso/item0783_ValentineDress.xml
diff --git a/items/equip-torso/item791_YetiSkinShirt.xml b/items/equip-torso/item0791_YetiSkinShirt.xml
similarity index 100%
rename from items/equip-torso/item791_YetiSkinShirt.xml
rename to items/equip-torso/item0791_YetiSkinShirt.xml
diff --git a/items/equip-torso/item793_BromenalChest.xml b/items/equip-torso/item0793_BromenalChest.xml
similarity index 84%
rename from items/equip-torso/item793_BromenalChest.xml
rename to items/equip-torso/item0793_BromenalChest.xml
index efefec54..0bc9e4d6 100644
--- a/items/equip-torso/item793_BromenalChest.xml
+++ b/items/equip-torso/item0793_BromenalChest.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/chest/bromenalchest.xml|#fbf5e9
equipment/chest/bromenalchest-female.xml|#fbf5e9
diff --git a/items/equip-torso/item798_SorcererRobeRed.xml b/items/equip-torso/item0798_SorcererRobeRed.xml
similarity index 100%
rename from items/equip-torso/item798_SorcererRobeRed.xml
rename to items/equip-torso/item0798_SorcererRobeRed.xml
diff --git a/items/equip-torso/item870_FineDress.xml b/items/equip-torso/item0870_FineDress.xml
similarity index 100%
rename from items/equip-torso/item870_FineDress.xml
rename to items/equip-torso/item0870_FineDress.xml
diff --git a/items/equip-torso/item880_LazuriteRobe.xml b/items/equip-torso/item0880_LazuriteRobe.xml
similarity index 79%
rename from items/equip-torso/item880_LazuriteRobe.xml
rename to items/equip-torso/item0880_LazuriteRobe.xml
index 9ef34667..ed8088ad 100644
--- a/items/equip-torso/item880_LazuriteRobe.xml
+++ b/items/equip-torso/item0880_LazuriteRobe.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/chest/sorcerer-robe.xml|#2470BF,C9EAFF,D9D244;#cc7722
equipment/chest/sorcerer-robe-female.xml|#2470BF,C9EAFF,D9D244;#cc7722
diff --git a/items/equip-torso/item5299_RedSaviorArmor.xml b/items/equip-torso/item5299_RedSaviorArmor.xml
new file mode 100644
index 00000000..b93f6eaa
--- /dev/null
+++ b/items/equip-torso/item5299_RedSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+
-
+ equipment/chest/saviorarmor-male.xml|#581a1a,a41111,c03a3a,ff6060
+ equipment/chest/saviorarmor-female.xml|#581a1a,a41111,c03a3a,ff6060
+
+
diff --git a/items/equip-torso/item5300_GreenSaviorArmor.xml b/items/equip-torso/item5300_GreenSaviorArmor.xml
new file mode 100644
index 00000000..1916d605
--- /dev/null
+++ b/items/equip-torso/item5300_GreenSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#255511,579932,4aaf36,4ed65e
+ equipment/chest/saviorarmor-female.xml|#255511,579932,4aaf36,4ed65e
+
+
diff --git a/items/equip-torso/item5301_DarkBlueSaviorArmor.xml b/items/equip-torso/item5301_DarkBlueSaviorArmor.xml
new file mode 100644
index 00000000..b5824cce
--- /dev/null
+++ b/items/equip-torso/item5301_DarkBlueSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#1a1a41,392b6e,4c529f,5d5dc2
+ equipment/chest/saviorarmor-female.xml|#1a1a41,392b6e,4c529f,5d5dc2
+
+
diff --git a/items/equip-torso/item5302_YellowSaviorArmor.xml b/items/equip-torso/item5302_YellowSaviorArmor.xml
new file mode 100644
index 00000000..a699a300
--- /dev/null
+++ b/items/equip-torso/item5302_YellowSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#846928,dab641,ffef93,fff7c9
+ equipment/chest/saviorarmor-female.xml|#846928,dab641,ffef93,fff7c9
+
+
diff --git a/items/equip-torso/item5303_LightBlueSaviorArmor.xml b/items/equip-torso/item5303_LightBlueSaviorArmor.xml
new file mode 100644
index 00000000..0083ee8a
--- /dev/null
+++ b/items/equip-torso/item5303_LightBlueSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#16486e,498ec5,e4f2fc
+ equipment/chest/saviorarmor-female.xml|#16486e,498ec5,e4f2fc
+
+
diff --git a/items/equip-torso/item5304_PinkSaviorArmor.xml b/items/equip-torso/item5304_PinkSaviorArmor.xml
new file mode 100644
index 00000000..10c75155
--- /dev/null
+++ b/items/equip-torso/item5304_PinkSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#bf369b,f25cb1,ff87b7,ffcccf
+ equipment/chest/saviorarmor-female.xml|#bf369b,f25cb1,ff87b7,ffcccf
+
+
diff --git a/items/equip-torso/item5305_BlackSaviorArmor.xml b/items/equip-torso/item5305_BlackSaviorArmor.xml
new file mode 100644
index 00000000..56b0c29c
--- /dev/null
+++ b/items/equip-torso/item5305_BlackSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#111111,222222,333333,444444,555555,aaaaaa
+ equipment/chest/saviorarmor-female.xml|#111111,222222,333333,444444,555555,aaaaaa
+
+
diff --git a/items/equip-torso/item5306_OrangeSaviorArmor.xml b/items/equip-torso/item5306_OrangeSaviorArmor.xml
new file mode 100644
index 00000000..d97aa7b4
--- /dev/null
+++ b/items/equip-torso/item5306_OrangeSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#80280f,b04810,ef681f,ffb830
+ equipment/chest/saviorarmor-female.xml|#80280f,b04810,ef681f,ffb830
+
+
diff --git a/items/equip-torso/item5307_PurpleSaviorArmor.xml b/items/equip-torso/item5307_PurpleSaviorArmor.xml
new file mode 100644
index 00000000..f58fc074
--- /dev/null
+++ b/items/equip-torso/item5307_PurpleSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#1a0a33,380f4d,82158c,b359ab
+ equipment/chest/saviorarmor-female.xml|#1a0a33,380f4d,82158c,b359ab
+
+
diff --git a/items/equip-torso/item5308_DarkGreenSaviorArmor.xml b/items/equip-torso/item5308_DarkGreenSaviorArmor.xml
new file mode 100644
index 00000000..1e1b4729
--- /dev/null
+++ b/items/equip-torso/item5308_DarkGreenSaviorArmor.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/saviorarmor-male.xml|#0b300b,195519,3e832e,3e9c3e
+ equipment/chest/saviorarmor-female.xml|#0b300b,195519,3e832e,3e9c3e
+
+
diff --git a/items/equip-torso/item5320_BlackChainmailShirt.xml b/items/equip-torso/item5320_BlackChainmailShirt.xml
new file mode 100644
index 00000000..de8e2bec
--- /dev/null
+++ b/items/equip-torso/item5320_BlackChainmailShirt.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/chainmail.xml|#000000,ffffff
+ equipment/chest/chainmail-female.xml|#000000,ffffff
+
+
diff --git a/items/equip-torso/item5321_BlackLightPlatemail.xml b/items/equip-torso/item5321_BlackLightPlatemail.xml
new file mode 100644
index 00000000..e2e53b70
--- /dev/null
+++ b/items/equip-torso/item5321_BlackLightPlatemail.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/lightplatemail.xml|#000000,ffffff
+ equipment/chest/lightplatemail-female.xml|#000000,ffffff
+
+
diff --git a/items/equip-torso/item5322_BlackWarlordPlate.xml b/items/equip-torso/item5322_BlackWarlordPlate.xml
new file mode 100644
index 00000000..86e94d61
--- /dev/null
+++ b/items/equip-torso/item5322_BlackWarlordPlate.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ equipment/chest/warlordplate.xml|#000000,ffffff
+ equipment/chest/warlordplate-female.xml|#000000,ffffff
+
+
diff --git a/items/equip-torso/item5398_RaggedShirt.xml b/items/equip-torso/item5398_RaggedShirt.xml
new file mode 100644
index 00000000..d23bd12b
--- /dev/null
+++ b/items/equip-torso/item5398_RaggedShirt.xml
@@ -0,0 +1,15 @@
+
+
+ -
+ equipment/chest/cotton.xml|#95887F,E0D1C9
+ equipment/chest/cotton-female.xml|#95887F,E0D1C9
+
+
+
+
+
+
+
+
+
+
diff --git a/items/generic/_include.xml b/items/generic/_include.xml
index 8b450b61..2c9418dc 100644
--- a/items/generic/_include.xml
+++ b/items/generic/_include.xml
@@ -1,147 +1,147 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -159,7 +159,6 @@
-
@@ -223,7 +222,7 @@
-
+
@@ -250,5 +249,60 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/generic/item503_CasinoCoins.xml b/items/generic/item0503_CasinoCoins.xml
similarity index 100%
rename from items/generic/item503_CasinoCoins.xml
rename to items/generic/item0503_CasinoCoins.xml
diff --git a/items/generic/item504_DecorCandy.xml b/items/generic/item0504_DecorCandy.xml
similarity index 100%
rename from items/generic/item504_DecorCandy.xml
rename to items/generic/item0504_DecorCandy.xml
diff --git a/items/generic/item0505_InsectSlime.xml b/items/generic/item0505_InsectSlime.xml
new file mode 100644
index 00000000..e7fa77d8
--- /dev/null
+++ b/items/generic/item0505_InsectSlime.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item507_ScorpionStinger.xml b/items/generic/item0507_ScorpionStinger.xml
similarity index 100%
rename from items/generic/item507_ScorpionStinger.xml
rename to items/generic/item0507_ScorpionStinger.xml
diff --git a/items/generic/item515_PurplePresentBox.xml b/items/generic/item0515_PurplePresentBox.xml
similarity index 100%
rename from items/generic/item515_PurplePresentBox.xml
rename to items/generic/item0515_PurplePresentBox.xml
diff --git a/items/generic/item516_BluePresentBox.xml b/items/generic/item0516_BluePresentBox.xml
similarity index 100%
rename from items/generic/item516_BluePresentBox.xml
rename to items/generic/item0516_BluePresentBox.xml
diff --git a/items/generic/item517_RedScorpionStinger.xml b/items/generic/item0517_RedScorpionStinger.xml
similarity index 100%
rename from items/generic/item517_RedScorpionStinger.xml
rename to items/generic/item0517_RedScorpionStinger.xml
diff --git a/items/generic/item0518_InsectLeg.xml b/items/generic/item0518_InsectLeg.xml
new file mode 100644
index 00000000..7f1b3162
--- /dev/null
+++ b/items/generic/item0518_InsectLeg.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item526_CoinBag.xml b/items/generic/item0526_CoinBag.xml
similarity index 100%
rename from items/generic/item526_CoinBag.xml
rename to items/generic/item0526_CoinBag.xml
diff --git a/items/generic/item537_TreasureKey.xml b/items/generic/item0537_TreasureKey.xml
similarity index 100%
rename from items/generic/item537_TreasureKey.xml
rename to items/generic/item0537_TreasureKey.xml
diff --git a/items/generic/item538_GreenPresentBox.xml b/items/generic/item0538_GreenPresentBox.xml
similarity index 100%
rename from items/generic/item538_GreenPresentBox.xml
rename to items/generic/item0538_GreenPresentBox.xml
diff --git a/items/generic/item540_EmptyBottle.xml b/items/generic/item0540_EmptyBottle.xml
similarity index 61%
rename from items/generic/item540_EmptyBottle.xml
rename to items/generic/item0540_EmptyBottle.xml
index 7168acad..31781bb7 100644
--- a/items/generic/item540_EmptyBottle.xml
+++ b/items/generic/item0540_EmptyBottle.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item542_BottleofSand.xml b/items/generic/item0542_BottleofSand.xml
similarity index 100%
rename from items/generic/item542_BottleofSand.xml
rename to items/generic/item0542_BottleofSand.xml
diff --git a/items/generic/item551_AquaHint.xml b/items/generic/item0551_AquaHint.xml
similarity index 100%
rename from items/generic/item551_AquaHint.xml
rename to items/generic/item0551_AquaHint.xml
diff --git a/items/generic/item552_MagentaHint.xml b/items/generic/item0552_MagentaHint.xml
similarity index 100%
rename from items/generic/item552_MagentaHint.xml
rename to items/generic/item0552_MagentaHint.xml
diff --git a/items/generic/item553_YellowHint.xml b/items/generic/item0553_YellowHint.xml
similarity index 100%
rename from items/generic/item553_YellowHint.xml
rename to items/generic/item0553_YellowHint.xml
diff --git a/items/generic/item554_GreenHint.xml b/items/generic/item0554_GreenHint.xml
similarity index 100%
rename from items/generic/item554_GreenHint.xml
rename to items/generic/item0554_GreenHint.xml
diff --git a/items/generic/item555_TealHint.xml b/items/generic/item0555_TealHint.xml
similarity index 100%
rename from items/generic/item555_TealHint.xml
rename to items/generic/item0555_TealHint.xml
diff --git a/items/generic/item556_PurpleHint.xml b/items/generic/item0556_PurpleHint.xml
similarity index 100%
rename from items/generic/item556_PurpleHint.xml
rename to items/generic/item0556_PurpleHint.xml
diff --git a/items/generic/item557_RedHint.xml b/items/generic/item0557_RedHint.xml
similarity index 100%
rename from items/generic/item557_RedHint.xml
rename to items/generic/item0557_RedHint.xml
diff --git a/items/generic/item558_BlueHint.xml b/items/generic/item0558_BlueHint.xml
similarity index 100%
rename from items/generic/item558_BlueHint.xml
rename to items/generic/item0558_BlueHint.xml
diff --git a/items/generic/item559_OrangeHint.xml b/items/generic/item0559_OrangeHint.xml
similarity index 100%
rename from items/generic/item559_OrangeHint.xml
rename to items/generic/item0559_OrangeHint.xml
diff --git a/items/generic/item560_GrayHint.xml b/items/generic/item0560_GrayHint.xml
similarity index 100%
rename from items/generic/item560_GrayHint.xml
rename to items/generic/item0560_GrayHint.xml
diff --git a/items/generic/item569_RawLog.xml b/items/generic/item0569_RawLog.xml
similarity index 100%
rename from items/generic/item569_RawLog.xml
rename to items/generic/item0569_RawLog.xml
diff --git a/items/generic/item589_Toothbrush.xml b/items/generic/item0589_Toothbrush.xml
similarity index 100%
rename from items/generic/item589_Toothbrush.xml
rename to items/generic/item0589_Toothbrush.xml
diff --git a/items/generic/item611_WhiteFur.xml b/items/generic/item0611_WhiteFur.xml
similarity index 100%
rename from items/generic/item611_WhiteFur.xml
rename to items/generic/item0611_WhiteFur.xml
diff --git a/items/generic/item612_CaveSnakeLamp.xml b/items/generic/item0612_CaveSnakeLamp.xml
similarity index 100%
rename from items/generic/item612_CaveSnakeLamp.xml
rename to items/generic/item0612_CaveSnakeLamp.xml
diff --git a/items/generic/item613_HardSpike.xml b/items/generic/item0613_HardSpike.xml
similarity index 100%
rename from items/generic/item613_HardSpike.xml
rename to items/generic/item0613_HardSpike.xml
diff --git a/items/generic/item614_PinkAntenna.xml b/items/generic/item0614_PinkAntenna.xml
similarity index 100%
rename from items/generic/item614_PinkAntenna.xml
rename to items/generic/item0614_PinkAntenna.xml
diff --git a/items/generic/item631_DarkCrystal.xml b/items/generic/item0631_DarkCrystal.xml
similarity index 100%
rename from items/generic/item631_DarkCrystal.xml
rename to items/generic/item0631_DarkCrystal.xml
diff --git a/items/generic/item635_SantaCookie.xml b/items/generic/item0635_SantaCookie.xml
similarity index 100%
rename from items/generic/item635_SantaCookie.xml
rename to items/generic/item0635_SantaCookie.xml
diff --git a/items/generic/item640_IronOre.xml b/items/generic/item0640_IronOre.xml
similarity index 100%
rename from items/generic/item640_IronOre.xml
rename to items/generic/item0640_IronOre.xml
diff --git a/items/generic/item641_SnakeSkin.xml b/items/generic/item0641_SnakeSkin.xml
similarity index 100%
rename from items/generic/item641_SnakeSkin.xml
rename to items/generic/item0641_SnakeSkin.xml
diff --git a/items/generic/item660_CottonCloth.xml b/items/generic/item0660_CottonCloth.xml
similarity index 100%
rename from items/generic/item660_CottonCloth.xml
rename to items/generic/item0660_CottonCloth.xml
diff --git a/items/generic/item661_RedRose.xml b/items/generic/item0661_RedRose.xml
similarity index 100%
rename from items/generic/item661_RedRose.xml
rename to items/generic/item0661_RedRose.xml
diff --git a/items/generic/item662_WhiteRose.xml b/items/generic/item0662_WhiteRose.xml
similarity index 100%
rename from items/generic/item662_WhiteRose.xml
rename to items/generic/item0662_WhiteRose.xml
diff --git a/items/generic/item663_DarkRedRose.xml b/items/generic/item0663_DarkRedRose.xml
similarity index 100%
rename from items/generic/item663_DarkRedRose.xml
rename to items/generic/item0663_DarkRedRose.xml
diff --git a/items/generic/item664_PinkRose.xml b/items/generic/item0664_PinkRose.xml
similarity index 100%
rename from items/generic/item664_PinkRose.xml
rename to items/generic/item0664_PinkRose.xml
diff --git a/items/generic/item665_YellowRose.xml b/items/generic/item0665_YellowRose.xml
similarity index 100%
rename from items/generic/item665_YellowRose.xml
rename to items/generic/item0665_YellowRose.xml
diff --git a/items/generic/item666_BlackRose.xml b/items/generic/item0666_BlackRose.xml
similarity index 100%
rename from items/generic/item666_BlackRose.xml
rename to items/generic/item0666_BlackRose.xml
diff --git a/items/generic/item667_OrangeRose.xml b/items/generic/item0667_OrangeRose.xml
similarity index 100%
rename from items/generic/item667_OrangeRose.xml
rename to items/generic/item0667_OrangeRose.xml
diff --git a/items/generic/item668_BlueRose.xml b/items/generic/item0668_BlueRose.xml
similarity index 100%
rename from items/generic/item668_BlueRose.xml
rename to items/generic/item0668_BlueRose.xml
diff --git a/items/generic/item669_YellowTulip.xml b/items/generic/item0669_YellowTulip.xml
similarity index 100%
rename from items/generic/item669_YellowTulip.xml
rename to items/generic/item0669_YellowTulip.xml
diff --git a/items/generic/item670_PurpleTulip.xml b/items/generic/item0670_PurpleTulip.xml
similarity index 100%
rename from items/generic/item670_PurpleTulip.xml
rename to items/generic/item0670_PurpleTulip.xml
diff --git a/items/generic/item671_RedTulip.xml b/items/generic/item0671_RedTulip.xml
similarity index 100%
rename from items/generic/item671_RedTulip.xml
rename to items/generic/item0671_RedTulip.xml
diff --git a/items/generic/item672_WhiteTulip.xml b/items/generic/item0672_WhiteTulip.xml
similarity index 100%
rename from items/generic/item672_WhiteTulip.xml
rename to items/generic/item0672_WhiteTulip.xml
diff --git a/items/generic/item673_PinkTulip.xml b/items/generic/item0673_PinkTulip.xml
similarity index 100%
rename from items/generic/item673_PinkTulip.xml
rename to items/generic/item0673_PinkTulip.xml
diff --git a/items/generic/item674_OrangeTulip.xml b/items/generic/item0674_OrangeTulip.xml
similarity index 100%
rename from items/generic/item674_OrangeTulip.xml
rename to items/generic/item0674_OrangeTulip.xml
diff --git a/items/generic/item680_MauveHerb.xml b/items/generic/item0680_MauveHerb.xml
similarity index 100%
rename from items/generic/item680_MauveHerb.xml
rename to items/generic/item0680_MauveHerb.xml
diff --git a/items/generic/item681_CobaltHerb.xml b/items/generic/item0681_CobaltHerb.xml
similarity index 100%
rename from items/generic/item681_CobaltHerb.xml
rename to items/generic/item0681_CobaltHerb.xml
diff --git a/items/generic/item682_GambogeHerb.xml b/items/generic/item0682_GambogeHerb.xml
similarity index 100%
rename from items/generic/item682_GambogeHerb.xml
rename to items/generic/item0682_GambogeHerb.xml
diff --git a/items/generic/item683_AlizarinHerb.xml b/items/generic/item0683_AlizarinHerb.xml
similarity index 100%
rename from items/generic/item683_AlizarinHerb.xml
rename to items/generic/item0683_AlizarinHerb.xml
diff --git a/items/generic/item690_RedDye.xml b/items/generic/item0690_RedDye.xml
similarity index 100%
rename from items/generic/item690_RedDye.xml
rename to items/generic/item0690_RedDye.xml
diff --git a/items/generic/item691_GreenDye.xml b/items/generic/item0691_GreenDye.xml
similarity index 100%
rename from items/generic/item691_GreenDye.xml
rename to items/generic/item0691_GreenDye.xml
diff --git a/items/generic/item692_DarkBlueDye.xml b/items/generic/item0692_DarkBlueDye.xml
similarity index 100%
rename from items/generic/item692_DarkBlueDye.xml
rename to items/generic/item0692_DarkBlueDye.xml
diff --git a/items/generic/item693_YellowDye.xml b/items/generic/item0693_YellowDye.xml
similarity index 100%
rename from items/generic/item693_YellowDye.xml
rename to items/generic/item0693_YellowDye.xml
diff --git a/items/generic/item694_LightBlueDye.xml b/items/generic/item0694_LightBlueDye.xml
similarity index 100%
rename from items/generic/item694_LightBlueDye.xml
rename to items/generic/item0694_LightBlueDye.xml
diff --git a/items/generic/item695_PinkDye.xml b/items/generic/item0695_PinkDye.xml
similarity index 100%
rename from items/generic/item695_PinkDye.xml
rename to items/generic/item0695_PinkDye.xml
diff --git a/items/generic/item696_BlackDye.xml b/items/generic/item0696_BlackDye.xml
similarity index 100%
rename from items/generic/item696_BlackDye.xml
rename to items/generic/item0696_BlackDye.xml
diff --git a/items/generic/item697_OrangeDye.xml b/items/generic/item0697_OrangeDye.xml
similarity index 100%
rename from items/generic/item697_OrangeDye.xml
rename to items/generic/item0697_OrangeDye.xml
diff --git a/items/generic/item698_PurpleDye.xml b/items/generic/item0698_PurpleDye.xml
similarity index 100%
rename from items/generic/item698_PurpleDye.xml
rename to items/generic/item0698_PurpleDye.xml
diff --git a/items/generic/item699_DarkGreenDye.xml b/items/generic/item0699_DarkGreenDye.xml
similarity index 100%
rename from items/generic/item699_DarkGreenDye.xml
rename to items/generic/item0699_DarkGreenDye.xml
diff --git a/items/generic/item700_Pearl.xml b/items/generic/item0700_Pearl.xml
similarity index 100%
rename from items/generic/item700_Pearl.xml
rename to items/generic/item0700_Pearl.xml
diff --git a/items/generic/item701_PileofAsh.xml b/items/generic/item0701_PileofAsh.xml
similarity index 100%
rename from items/generic/item701_PileofAsh.xml
rename to items/generic/item0701_PileofAsh.xml
diff --git a/items/generic/item703_SulphurPowder.xml b/items/generic/item0703_SulphurPowder.xml
similarity index 100%
rename from items/generic/item703_SulphurPowder.xml
rename to items/generic/item0703_SulphurPowder.xml
diff --git a/items/generic/item704_IronPowder.xml b/items/generic/item0704_IronPowder.xml
similarity index 100%
rename from items/generic/item704_IronPowder.xml
rename to items/generic/item0704_IronPowder.xml
diff --git a/items/generic/item706_GoldenScorpionStinger.xml b/items/generic/item0706_GoldenScorpionStinger.xml
similarity index 100%
rename from items/generic/item706_GoldenScorpionStinger.xml
rename to items/generic/item0706_GoldenScorpionStinger.xml
diff --git a/items/generic/item707_MonsterOilPotion.xml b/items/generic/item0707_MonsterOilPotion.xml
similarity index 100%
rename from items/generic/item707_MonsterOilPotion.xml
rename to items/generic/item0707_MonsterOilPotion.xml
diff --git a/items/generic/item708_LeatherPatch.xml b/items/generic/item0708_LeatherPatch.xml
similarity index 100%
rename from items/generic/item708_LeatherPatch.xml
rename to items/generic/item0708_LeatherPatch.xml
diff --git a/items/generic/item709_BlackScorpionStinger.xml b/items/generic/item0709_BlackScorpionStinger.xml
similarity index 100%
rename from items/generic/item709_BlackScorpionStinger.xml
rename to items/generic/item0709_BlackScorpionStinger.xml
diff --git a/items/generic/item710_SnakeTongue.xml b/items/generic/item0710_SnakeTongue.xml
similarity index 100%
rename from items/generic/item710_SnakeTongue.xml
rename to items/generic/item0710_SnakeTongue.xml
diff --git a/items/generic/item711_MountainSnakeTongue.xml b/items/generic/item0711_MountainSnakeTongue.xml
similarity index 100%
rename from items/generic/item711_MountainSnakeTongue.xml
rename to items/generic/item0711_MountainSnakeTongue.xml
diff --git a/items/generic/item712_GrassSnakeTongue.xml b/items/generic/item0712_GrassSnakeTongue.xml
similarity index 100%
rename from items/generic/item712_GrassSnakeTongue.xml
rename to items/generic/item0712_GrassSnakeTongue.xml
diff --git a/items/generic/item713_CaveSnakeTongue.xml b/items/generic/item0713_CaveSnakeTongue.xml
similarity index 100%
rename from items/generic/item713_CaveSnakeTongue.xml
rename to items/generic/item0713_CaveSnakeTongue.xml
diff --git a/items/generic/item718_SilkCocoon.xml b/items/generic/item0718_SilkCocoon.xml
similarity index 100%
rename from items/generic/item718_SilkCocoon.xml
rename to items/generic/item0718_SilkCocoon.xml
diff --git a/items/generic/item727_Iten.xml b/items/generic/item0727_Iten.xml
similarity index 100%
rename from items/generic/item727_Iten.xml
rename to items/generic/item0727_Iten.xml
diff --git a/items/generic/item728_MoubooFigurine.xml b/items/generic/item0728_MoubooFigurine.xml
similarity index 100%
rename from items/generic/item728_MoubooFigurine.xml
rename to items/generic/item0728_MoubooFigurine.xml
diff --git a/items/generic/item729_WarpedLog.xml b/items/generic/item0729_WarpedLog.xml
similarity index 100%
rename from items/generic/item729_WarpedLog.xml
rename to items/generic/item0729_WarpedLog.xml
diff --git a/items/generic/item730_Lifestone.xml b/items/generic/item0730_Lifestone.xml
similarity index 100%
rename from items/generic/item730_Lifestone.xml
rename to items/generic/item0730_Lifestone.xml
diff --git a/items/generic/item732_DruidTreeBranch.xml b/items/generic/item0732_DruidTreeBranch.xml
similarity index 100%
rename from items/generic/item732_DruidTreeBranch.xml
rename to items/generic/item0732_DruidTreeBranch.xml
diff --git a/items/generic/item740_Root.xml b/items/generic/item0740_Root.xml
similarity index 100%
rename from items/generic/item740_Root.xml
rename to items/generic/item0740_Root.xml
diff --git a/items/generic/item753_BatWing.xml b/items/generic/item0753_BatWing.xml
similarity index 100%
rename from items/generic/item753_BatWing.xml
rename to items/generic/item0753_BatWing.xml
diff --git a/items/generic/item754_BatTeeth.xml b/items/generic/item0754_BatTeeth.xml
similarity index 100%
rename from items/generic/item754_BatTeeth.xml
rename to items/generic/item0754_BatTeeth.xml
diff --git a/items/generic/item763_TerraniteOre.xml b/items/generic/item0763_TerraniteOre.xml
similarity index 100%
rename from items/generic/item763_TerraniteOre.xml
rename to items/generic/item0763_TerraniteOre.xml
diff --git a/items/generic/item772_WispPowder.xml b/items/generic/item0772_WispPowder.xml
similarity index 100%
rename from items/generic/item772_WispPowder.xml
rename to items/generic/item0772_WispPowder.xml
diff --git a/items/generic/item773_SpectrePowder.xml b/items/generic/item0773_SpectrePowder.xml
similarity index 100%
rename from items/generic/item773_SpectrePowder.xml
rename to items/generic/item0773_SpectrePowder.xml
diff --git a/items/generic/item774_PoltergeistPowder.xml b/items/generic/item0774_PoltergeistPowder.xml
similarity index 100%
rename from items/generic/item774_PoltergeistPowder.xml
rename to items/generic/item0774_PoltergeistPowder.xml
diff --git a/items/generic/item775_Bone.xml b/items/generic/item0775_Bone.xml
similarity index 100%
rename from items/generic/item775_Bone.xml
rename to items/generic/item0775_Bone.xml
diff --git a/items/generic/item776_Skull.xml b/items/generic/item0776_Skull.xml
similarity index 100%
rename from items/generic/item776_Skull.xml
rename to items/generic/item0776_Skull.xml
diff --git a/items/generic/item777_RottenRags.xml b/items/generic/item0777_RottenRags.xml
similarity index 100%
rename from items/generic/item777_RottenRags.xml
rename to items/generic/item0777_RottenRags.xml
diff --git a/items/generic/item778_DiseasedHeart.xml b/items/generic/item0778_DiseasedHeart.xml
similarity index 100%
rename from items/generic/item778_DiseasedHeart.xml
rename to items/generic/item0778_DiseasedHeart.xml
diff --git a/items/generic/item779_UndeadEar.xml b/items/generic/item0779_UndeadEar.xml
similarity index 100%
rename from items/generic/item779_UndeadEar.xml
rename to items/generic/item0779_UndeadEar.xml
diff --git a/items/generic/item780_UndeadEye.xml b/items/generic/item0780_UndeadEye.xml
similarity index 100%
rename from items/generic/item780_UndeadEye.xml
rename to items/generic/item0780_UndeadEye.xml
diff --git a/items/generic/item799_MylarinDust.xml b/items/generic/item0799_MylarinDust.xml
similarity index 100%
rename from items/generic/item799_MylarinDust.xml
rename to items/generic/item0799_MylarinDust.xml
diff --git a/items/generic/item802_EasterBasket.xml b/items/generic/item0802_EasterBasket.xml
similarity index 100%
rename from items/generic/item802_EasterBasket.xml
rename to items/generic/item0802_EasterBasket.xml
diff --git a/items/generic/item803_GrassLiner.xml b/items/generic/item0803_GrassLiner.xml
similarity index 100%
rename from items/generic/item803_GrassLiner.xml
rename to items/generic/item0803_GrassLiner.xml
diff --git a/items/generic/item804_JellyBeans.xml b/items/generic/item0804_JellyBeans.xml
similarity index 100%
rename from items/generic/item804_JellyBeans.xml
rename to items/generic/item0804_JellyBeans.xml
diff --git a/items/generic/item805_ChocolateMouboo.xml b/items/generic/item0805_ChocolateMouboo.xml
similarity index 100%
rename from items/generic/item805_ChocolateMouboo.xml
rename to items/generic/item0805_ChocolateMouboo.xml
diff --git a/items/generic/item806_ReedBundle.xml b/items/generic/item0806_ReedBundle.xml
similarity index 100%
rename from items/generic/item806_ReedBundle.xml
rename to items/generic/item0806_ReedBundle.xml
diff --git a/items/generic/item807_GrassSeeds.xml b/items/generic/item0807_GrassSeeds.xml
similarity index 100%
rename from items/generic/item807_GrassSeeds.xml
rename to items/generic/item0807_GrassSeeds.xml
diff --git a/items/generic/item819_DiamondPowder.xml b/items/generic/item0819_DiamondPowder.xml
similarity index 100%
rename from items/generic/item819_DiamondPowder.xml
rename to items/generic/item0819_DiamondPowder.xml
diff --git a/items/generic/item820_RubyPowder.xml b/items/generic/item0820_RubyPowder.xml
similarity index 100%
rename from items/generic/item820_RubyPowder.xml
rename to items/generic/item0820_RubyPowder.xml
diff --git a/items/generic/item821_EmeraldPowder.xml b/items/generic/item0821_EmeraldPowder.xml
similarity index 100%
rename from items/generic/item821_EmeraldPowder.xml
rename to items/generic/item0821_EmeraldPowder.xml
diff --git a/items/generic/item822_SapphirePowder.xml b/items/generic/item0822_SapphirePowder.xml
similarity index 100%
rename from items/generic/item822_SapphirePowder.xml
rename to items/generic/item0822_SapphirePowder.xml
diff --git a/items/generic/item823_TopazPowder.xml b/items/generic/item0823_TopazPowder.xml
similarity index 100%
rename from items/generic/item823_TopazPowder.xml
rename to items/generic/item0823_TopazPowder.xml
diff --git a/items/generic/item824_AmethystPowder.xml b/items/generic/item0824_AmethystPowder.xml
similarity index 100%
rename from items/generic/item824_AmethystPowder.xml
rename to items/generic/item0824_AmethystPowder.xml
diff --git a/items/generic/item833_BrokenFourLeafAmulet.xml b/items/generic/item0833_BrokenFourLeafAmulet.xml
similarity index 100%
rename from items/generic/item833_BrokenFourLeafAmulet.xml
rename to items/generic/item0833_BrokenFourLeafAmulet.xml
diff --git a/items/generic/item834_BrokenDoll.xml b/items/generic/item0834_BrokenDoll.xml
similarity index 100%
rename from items/generic/item834_BrokenDoll.xml
rename to items/generic/item0834_BrokenDoll.xml
diff --git a/items/generic/item835_HyvernStinger.xml b/items/generic/item0835_HyvernStinger.xml
similarity index 100%
rename from items/generic/item835_HyvernStinger.xml
rename to items/generic/item0835_HyvernStinger.xml
diff --git a/items/generic/item836_GrubSlime.xml b/items/generic/item0836_GrubSlime.xml
similarity index 100%
rename from items/generic/item836_GrubSlime.xml
rename to items/generic/item0836_GrubSlime.xml
diff --git a/items/generic/item841_RedDottedWrap.xml b/items/generic/item0841_RedDottedWrap.xml
similarity index 100%
rename from items/generic/item841_RedDottedWrap.xml
rename to items/generic/item0841_RedDottedWrap.xml
diff --git a/items/generic/item842_YellowDottedWrap.xml b/items/generic/item0842_YellowDottedWrap.xml
similarity index 100%
rename from items/generic/item842_YellowDottedWrap.xml
rename to items/generic/item0842_YellowDottedWrap.xml
diff --git a/items/generic/item843_BlueDottedWrap.xml b/items/generic/item0843_BlueDottedWrap.xml
similarity index 100%
rename from items/generic/item843_BlueDottedWrap.xml
rename to items/generic/item0843_BlueDottedWrap.xml
diff --git a/items/generic/item844_PurpleStripedWrap.xml b/items/generic/item0844_PurpleStripedWrap.xml
similarity index 100%
rename from items/generic/item844_PurpleStripedWrap.xml
rename to items/generic/item0844_PurpleStripedWrap.xml
diff --git a/items/generic/item845_RedGoldenStripedWrap.xml b/items/generic/item0845_RedGoldenStripedWrap.xml
similarity index 100%
rename from items/generic/item845_RedGoldenStripedWrap.xml
rename to items/generic/item0845_RedGoldenStripedWrap.xml
diff --git a/items/generic/item846_GreenRedStripedWrap.xml b/items/generic/item0846_GreenRedStripedWrap.xml
similarity index 100%
rename from items/generic/item846_GreenRedStripedWrap.xml
rename to items/generic/item0846_GreenRedStripedWrap.xml
diff --git a/items/generic/item847_PlushMouboo.xml b/items/generic/item0847_PlushMouboo.xml
similarity index 100%
rename from items/generic/item847_PlushMouboo.xml
rename to items/generic/item0847_PlushMouboo.xml
diff --git a/items/generic/item849_OpenPresentBox.xml b/items/generic/item0849_OpenPresentBox.xml
similarity index 100%
rename from items/generic/item849_OpenPresentBox.xml
rename to items/generic/item0849_OpenPresentBox.xml
diff --git a/items/generic/item850_ClosedChristmasBox.xml b/items/generic/item0850_ClosedChristmasBox.xml
similarity index 100%
rename from items/generic/item850_ClosedChristmasBox.xml
rename to items/generic/item0850_ClosedChristmasBox.xml
diff --git a/items/generic/item851_StickReinboo.xml b/items/generic/item0851_StickReinboo.xml
similarity index 100%
rename from items/generic/item851_StickReinboo.xml
rename to items/generic/item0851_StickReinboo.xml
diff --git a/items/generic/item852_LeatherBall.xml b/items/generic/item0852_LeatherBall.xml
similarity index 100%
rename from items/generic/item852_LeatherBall.xml
rename to items/generic/item0852_LeatherBall.xml
diff --git a/items/generic/item853_Doll.xml b/items/generic/item0853_Doll.xml
similarity index 100%
rename from items/generic/item853_Doll.xml
rename to items/generic/item0853_Doll.xml
diff --git a/items/generic/item858_WolvernTooth.xml b/items/generic/item0858_WolvernTooth.xml
similarity index 100%
rename from items/generic/item858_WolvernTooth.xml
rename to items/generic/item0858_WolvernTooth.xml
diff --git a/items/generic/item859_WolvernPelt.xml b/items/generic/item0859_WolvernPelt.xml
similarity index 100%
rename from items/generic/item859_WolvernPelt.xml
rename to items/generic/item0859_WolvernPelt.xml
diff --git a/items/generic/item860_SquirrelPelt.xml b/items/generic/item0860_SquirrelPelt.xml
similarity index 100%
rename from items/generic/item860_SquirrelPelt.xml
rename to items/generic/item0860_SquirrelPelt.xml
diff --git a/items/generic/item861_WhiteBellTuber.xml b/items/generic/item0861_WhiteBellTuber.xml
similarity index 100%
rename from items/generic/item861_WhiteBellTuber.xml
rename to items/generic/item0861_WhiteBellTuber.xml
diff --git a/items/generic/item862_IcedWater.xml b/items/generic/item0862_IcedWater.xml
similarity index 100%
rename from items/generic/item862_IcedWater.xml
rename to items/generic/item0862_IcedWater.xml
diff --git a/items/generic/item863_SilverMirror.xml b/items/generic/item0863_SilverMirror.xml
similarity index 83%
rename from items/generic/item863_SilverMirror.xml
rename to items/generic/item0863_SilverMirror.xml
index 43565e2d..43ae6161 100644
--- a/items/generic/item863_SilverMirror.xml
+++ b/items/generic/item0863_SilverMirror.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item864_BookPage.xml b/items/generic/item0864_BookPage.xml
similarity index 100%
rename from items/generic/item864_BookPage.xml
rename to items/generic/item0864_BookPage.xml
diff --git a/items/generic/item866_LeatherSuitcase.xml b/items/generic/item0866_LeatherSuitcase.xml
similarity index 100%
rename from items/generic/item866_LeatherSuitcase.xml
rename to items/generic/item0866_LeatherSuitcase.xml
diff --git a/items/generic/item869_Antlers.xml b/items/generic/item0869_Antlers.xml
similarity index 100%
rename from items/generic/item869_Antlers.xml
rename to items/generic/item0869_Antlers.xml
diff --git a/items/generic/item871_SealedSoul.xml b/items/generic/item0871_SealedSoul.xml
similarity index 100%
rename from items/generic/item871_SealedSoul.xml
rename to items/generic/item0871_SealedSoul.xml
diff --git a/items/generic/item872_LockPicks.xml b/items/generic/item0872_LockPicks.xml
similarity index 100%
rename from items/generic/item872_LockPicks.xml
rename to items/generic/item0872_LockPicks.xml
diff --git a/items/generic/item873_LazuriteShard.xml b/items/generic/item0873_LazuriteShard.xml
similarity index 100%
rename from items/generic/item873_LazuriteShard.xml
rename to items/generic/item0873_LazuriteShard.xml
diff --git a/items/generic/item874_LazuriteCrystal.xml b/items/generic/item0874_LazuriteCrystal.xml
similarity index 100%
rename from items/generic/item874_LazuriteCrystal.xml
rename to items/generic/item0874_LazuriteCrystal.xml
diff --git a/items/generic/item875_HeartofLazurite.xml b/items/generic/item0875_HeartofLazurite.xml
similarity index 100%
rename from items/generic/item875_HeartofLazurite.xml
rename to items/generic/item0875_HeartofLazurite.xml
diff --git a/items/generic/item891_SilkSheet.xml b/items/generic/item0891_SilkSheet.xml
similarity index 100%
rename from items/generic/item891_SilkSheet.xml
rename to items/generic/item0891_SilkSheet.xml
diff --git a/items/generic/item892_OrangeSummonFlower.xml b/items/generic/item0892_OrangeSummonFlower.xml
similarity index 100%
rename from items/generic/item892_OrangeSummonFlower.xml
rename to items/generic/item0892_OrangeSummonFlower.xml
diff --git a/items/generic/item893_PurpleSummonFlower.xml b/items/generic/item0893_PurpleSummonFlower.xml
similarity index 100%
rename from items/generic/item893_PurpleSummonFlower.xml
rename to items/generic/item0893_PurpleSummonFlower.xml
diff --git a/items/generic/item894_WhiteSummonFlower.xml b/items/generic/item0894_WhiteSummonFlower.xml
similarity index 100%
rename from items/generic/item894_WhiteSummonFlower.xml
rename to items/generic/item0894_WhiteSummonFlower.xml
diff --git a/items/generic/item895_YellowSummonFlower.xml b/items/generic/item0895_YellowSummonFlower.xml
similarity index 100%
rename from items/generic/item895_YellowSummonFlower.xml
rename to items/generic/item0895_YellowSummonFlower.xml
diff --git a/items/generic/item896_RedSummonFlower.xml b/items/generic/item0896_RedSummonFlower.xml
similarity index 100%
rename from items/generic/item896_RedSummonFlower.xml
rename to items/generic/item0896_RedSummonFlower.xml
diff --git a/items/generic/item505_MaggotSlime.xml b/items/generic/item505_MaggotSlime.xml
deleted file mode 100644
index e5c98a00..00000000
--- a/items/generic/item505_MaggotSlime.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5116_StalkerHorn.xml b/items/generic/item5116_StalkerHorn.xml
new file mode 100644
index 00000000..02bde735
--- /dev/null
+++ b/items/generic/item5116_StalkerHorn.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5116_WraithHorn.xml b/items/generic/item5116_WraithHorn.xml
deleted file mode 100644
index ed65df51..00000000
--- a/items/generic/item5116_WraithHorn.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item518_BugLeg.xml b/items/generic/item518_BugLeg.xml
deleted file mode 100644
index 419dd335..00000000
--- a/items/generic/item518_BugLeg.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5218_RedTicket.xml b/items/generic/item5218_RedTicket.xml
index 98897d84..bb8bf5c1 100644
--- a/items/generic/item5218_RedTicket.xml
+++ b/items/generic/item5218_RedTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5219_YellowTicket.xml b/items/generic/item5219_YellowTicket.xml
index 70b1708a..2bc02fe4 100644
--- a/items/generic/item5219_YellowTicket.xml
+++ b/items/generic/item5219_YellowTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5220_GoldTicket.xml b/items/generic/item5220_GoldTicket.xml
index c1d4f0ef..455c281d 100644
--- a/items/generic/item5220_GoldTicket.xml
+++ b/items/generic/item5220_GoldTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5221_GreenTicket.xml b/items/generic/item5221_GreenTicket.xml
index f09044f2..7618fd3e 100644
--- a/items/generic/item5221_GreenTicket.xml
+++ b/items/generic/item5221_GreenTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5222_AquaTicket.xml b/items/generic/item5222_AquaTicket.xml
index 48a87ce0..47c09188 100644
--- a/items/generic/item5222_AquaTicket.xml
+++ b/items/generic/item5222_AquaTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5223_BlueTicket.xml b/items/generic/item5223_BlueTicket.xml
index fc5c460a..5ca5dc23 100644
--- a/items/generic/item5223_BlueTicket.xml
+++ b/items/generic/item5223_BlueTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5224_PurpleTicket.xml b/items/generic/item5224_PurpleTicket.xml
index f3b9c32e..a907718c 100644
--- a/items/generic/item5224_PurpleTicket.xml
+++ b/items/generic/item5224_PurpleTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5225_PinkTicket.xml b/items/generic/item5225_PinkTicket.xml
index f352b535..9d8da2fa 100644
--- a/items/generic/item5225_PinkTicket.xml
+++ b/items/generic/item5225_PinkTicket.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5279_Carrot.xml b/items/generic/item5279_Carrot.xml
deleted file mode 100644
index 0e2719f3..00000000
--- a/items/generic/item5279_Carrot.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5279_LegendaryCarrot.xml b/items/generic/item5279_LegendaryCarrot.xml
new file mode 100644
index 00000000..78abefa3
--- /dev/null
+++ b/items/generic/item5279_LegendaryCarrot.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5288_Naphthalene.xml b/items/generic/item5288_Naphthalene.xml
new file mode 100644
index 00000000..47ad85dc
--- /dev/null
+++ b/items/generic/item5288_Naphthalene.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5292_SilverOre.xml b/items/generic/item5292_SilverOre.xml
new file mode 100644
index 00000000..483cbc82
--- /dev/null
+++ b/items/generic/item5292_SilverOre.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5293_CrystallizedDragonBlood.xml b/items/generic/item5293_CrystallizedDragonBlood.xml
new file mode 100644
index 00000000..3a5ed859
--- /dev/null
+++ b/items/generic/item5293_CrystallizedDragonBlood.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5295_PinkFlowerSeed.xml b/items/generic/item5295_PinkFlowerSeed.xml
new file mode 100644
index 00000000..9507c5bb
--- /dev/null
+++ b/items/generic/item5295_PinkFlowerSeed.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5296_SilverIngot.xml b/items/generic/item5296_SilverIngot.xml
new file mode 100644
index 00000000..83f4b43a
--- /dev/null
+++ b/items/generic/item5296_SilverIngot.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/items/generic/item5297_GoldenTooth.xml b/items/generic/item5297_GoldenTooth.xml
new file mode 100644
index 00000000..cc9c441d
--- /dev/null
+++ b/items/generic/item5297_GoldenTooth.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/generic/item5298_CloverDrawing.xml b/items/generic/item5298_CloverDrawing.xml
new file mode 100644
index 00000000..e6762288
--- /dev/null
+++ b/items/generic/item5298_CloverDrawing.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/generic/item5311_ShadowHerb.xml b/items/generic/item5311_ShadowHerb.xml
new file mode 100644
index 00000000..d8027ac6
--- /dev/null
+++ b/items/generic/item5311_ShadowHerb.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5313_CrozeniteCrystal.xml b/items/generic/item5313_CrozeniteCrystal.xml
new file mode 100644
index 00000000..cce5c85d
--- /dev/null
+++ b/items/generic/item5313_CrozeniteCrystal.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5314_GoldOre.xml b/items/generic/item5314_GoldOre.xml
new file mode 100644
index 00000000..bb6ece6b
--- /dev/null
+++ b/items/generic/item5314_GoldOre.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5315_GoldIngot.xml b/items/generic/item5315_GoldIngot.xml
new file mode 100644
index 00000000..f4bf128e
--- /dev/null
+++ b/items/generic/item5315_GoldIngot.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/items/generic/item5316_BromenalOre.xml b/items/generic/item5316_BromenalOre.xml
new file mode 100644
index 00000000..743ccfff
--- /dev/null
+++ b/items/generic/item5316_BromenalOre.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5317_BromenalIngot.xml b/items/generic/item5317_BromenalIngot.xml
new file mode 100644
index 00000000..fbc5044f
--- /dev/null
+++ b/items/generic/item5317_BromenalIngot.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/items/generic/item5318_BromenalDroplet.xml b/items/generic/item5318_BromenalDroplet.xml
new file mode 100644
index 00000000..3c1ac35a
--- /dev/null
+++ b/items/generic/item5318_BromenalDroplet.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/generic/item5319_ShadowPlantCrystalDust.xml b/items/generic/item5319_ShadowPlantCrystalDust.xml
new file mode 100644
index 00000000..094e5bf5
--- /dev/null
+++ b/items/generic/item5319_ShadowPlantCrystalDust.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5327_CopperOre.xml b/items/generic/item5327_CopperOre.xml
new file mode 100644
index 00000000..5b9cd3d2
--- /dev/null
+++ b/items/generic/item5327_CopperOre.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5328_CopperIngot.xml b/items/generic/item5328_CopperIngot.xml
new file mode 100644
index 00000000..ff1bc62c
--- /dev/null
+++ b/items/generic/item5328_CopperIngot.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/generic/item5332_Charcoal.xml b/items/generic/item5332_Charcoal.xml
new file mode 100644
index 00000000..a8f373e7
--- /dev/null
+++ b/items/generic/item5332_Charcoal.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5355_TortugaShellFragment.xml b/items/generic/item5355_TortugaShellFragment.xml
new file mode 100644
index 00000000..3caed153
--- /dev/null
+++ b/items/generic/item5355_TortugaShellFragment.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5356_TortugaShell.xml b/items/generic/item5356_TortugaShell.xml
new file mode 100644
index 00000000..995904ea
--- /dev/null
+++ b/items/generic/item5356_TortugaShell.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5357_RattoTail.xml b/items/generic/item5357_RattoTail.xml
new file mode 100644
index 00000000..f1da9ab9
--- /dev/null
+++ b/items/generic/item5357_RattoTail.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5358_RattoTeeth.xml b/items/generic/item5358_RattoTeeth.xml
new file mode 100644
index 00000000..379641de
--- /dev/null
+++ b/items/generic/item5358_RattoTeeth.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5359_SilverKey.xml b/items/generic/item5359_SilverKey.xml
new file mode 100644
index 00000000..7d7d0f96
--- /dev/null
+++ b/items/generic/item5359_SilverKey.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5360_MushroomSpores.xml b/items/generic/item5360_MushroomSpores.xml
new file mode 100644
index 00000000..149f91ab
--- /dev/null
+++ b/items/generic/item5360_MushroomSpores.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5361_Snowflake.xml b/items/generic/item5361_Snowflake.xml
new file mode 100644
index 00000000..d98d5837
--- /dev/null
+++ b/items/generic/item5361_Snowflake.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5362_BeeStinger.xml b/items/generic/item5362_BeeStinger.xml
new file mode 100644
index 00000000..63879cc9
--- /dev/null
+++ b/items/generic/item5362_BeeStinger.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5363_Flour.xml b/items/generic/item5363_Flour.xml
new file mode 100644
index 00000000..81b51d8a
--- /dev/null
+++ b/items/generic/item5363_Flour.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5365_DuckFeather.xml b/items/generic/item5365_DuckFeather.xml
new file mode 100644
index 00000000..a5ed3806
--- /dev/null
+++ b/items/generic/item5365_DuckFeather.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5366_CrocClaw.xml b/items/generic/item5366_CrocClaw.xml
new file mode 100644
index 00000000..57d403db
--- /dev/null
+++ b/items/generic/item5366_CrocClaw.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5367_ScorpionClaw.xml b/items/generic/item5367_ScorpionClaw.xml
new file mode 100644
index 00000000..79c3cb73
--- /dev/null
+++ b/items/generic/item5367_ScorpionClaw.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5368_RedScorpionClaw.xml b/items/generic/item5368_RedScorpionClaw.xml
new file mode 100644
index 00000000..59d18273
--- /dev/null
+++ b/items/generic/item5368_RedScorpionClaw.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5369_BlackScorpionClaw.xml b/items/generic/item5369_BlackScorpionClaw.xml
new file mode 100644
index 00000000..4395918d
--- /dev/null
+++ b/items/generic/item5369_BlackScorpionClaw.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5370_GoldenScorpionClaw.xml b/items/generic/item5370_GoldenScorpionClaw.xml
new file mode 100644
index 00000000..d4b900e8
--- /dev/null
+++ b/items/generic/item5370_GoldenScorpionClaw.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/items/generic/item5371_DragonScales.xml b/items/generic/item5371_DragonScales.xml
new file mode 100644
index 00000000..040c8fa0
--- /dev/null
+++ b/items/generic/item5371_DragonScales.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/generic/item5372_DragonHorn.xml b/items/generic/item5372_DragonHorn.xml
new file mode 100644
index 00000000..50e3e3d3
--- /dev/null
+++ b/items/generic/item5372_DragonHorn.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/generic/item5375_JunglefowlFeather.xml b/items/generic/item5375_JunglefowlFeather.xml
new file mode 100644
index 00000000..11d5093f
--- /dev/null
+++ b/items/generic/item5375_JunglefowlFeather.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5376_KingChonkyBirbFeather.xml b/items/generic/item5376_KingChonkyBirbFeather.xml
new file mode 100644
index 00000000..88da7a16
--- /dev/null
+++ b/items/generic/item5376_KingChonkyBirbFeather.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5377_Honeycomb.xml b/items/generic/item5377_Honeycomb.xml
new file mode 100644
index 00000000..a6c1b611
--- /dev/null
+++ b/items/generic/item5377_Honeycomb.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5378_Beeswax.xml b/items/generic/item5378_Beeswax.xml
new file mode 100644
index 00000000..09ae4120
--- /dev/null
+++ b/items/generic/item5378_Beeswax.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5380_Stone.xml b/items/generic/item5380_Stone.xml
new file mode 100644
index 00000000..e9d87f5d
--- /dev/null
+++ b/items/generic/item5380_Stone.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5381_Brick.xml b/items/generic/item5381_Brick.xml
new file mode 100644
index 00000000..deb6b9e6
--- /dev/null
+++ b/items/generic/item5381_Brick.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5384_MountainCrystal.xml b/items/generic/item5384_MountainCrystal.xml
new file mode 100644
index 00000000..9fea62f0
--- /dev/null
+++ b/items/generic/item5384_MountainCrystal.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5385_BlackQuartz.xml b/items/generic/item5385_BlackQuartz.xml
new file mode 100644
index 00000000..c919c947
--- /dev/null
+++ b/items/generic/item5385_BlackQuartz.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5386_GlassShards.xml b/items/generic/item5386_GlassShards.xml
new file mode 100644
index 00000000..7574de96
--- /dev/null
+++ b/items/generic/item5386_GlassShards.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5387_Hay.xml b/items/generic/item5387_Hay.xml
new file mode 100644
index 00000000..41497f7a
--- /dev/null
+++ b/items/generic/item5387_Hay.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5388_Straw.xml b/items/generic/item5388_Straw.xml
new file mode 100644
index 00000000..15c6f8be
--- /dev/null
+++ b/items/generic/item5388_Straw.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5389_SpeltSeeds.xml b/items/generic/item5389_SpeltSeeds.xml
new file mode 100644
index 00000000..cce7e8fa
--- /dev/null
+++ b/items/generic/item5389_SpeltSeeds.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5390_MoonDust.xml b/items/generic/item5390_MoonDust.xml
new file mode 100644
index 00000000..4464262c
--- /dev/null
+++ b/items/generic/item5390_MoonDust.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5391_SunDust.xml b/items/generic/item5391_SunDust.xml
new file mode 100644
index 00000000..dab7cd40
--- /dev/null
+++ b/items/generic/item5391_SunDust.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5410_WonderWood.xml b/items/generic/item5410_WonderWood.xml
new file mode 100644
index 00000000..e851154a
--- /dev/null
+++ b/items/generic/item5410_WonderWood.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5411_WonderWoodlingBlossom.xml b/items/generic/item5411_WonderWoodlingBlossom.xml
new file mode 100644
index 00000000..affd5e30
--- /dev/null
+++ b/items/generic/item5411_WonderWoodlingBlossom.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5412_WonderWoodlingSeed.xml b/items/generic/item5412_WonderWoodlingSeed.xml
new file mode 100644
index 00000000..9c7c585b
--- /dev/null
+++ b/items/generic/item5412_WonderWoodlingSeed.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5413_Moonshiner.xml b/items/generic/item5413_Moonshiner.xml
new file mode 100644
index 00000000..1f326864
--- /dev/null
+++ b/items/generic/item5413_Moonshiner.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5414_Raindrop.xml b/items/generic/item5414_Raindrop.xml
new file mode 100644
index 00000000..94838f47
--- /dev/null
+++ b/items/generic/item5414_Raindrop.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5415_PinkQuartz.xml b/items/generic/item5415_PinkQuartz.xml
new file mode 100644
index 00000000..41e8ac1b
--- /dev/null
+++ b/items/generic/item5415_PinkQuartz.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/hairsprite/_include.xml b/items/hairsprite/_include.xml
index 0fae080e..aaeb9cb7 100644
--- a/items/hairsprite/_include.xml
+++ b/items/hairsprite/_include.xml
@@ -1,23 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/hairsprite/item-1_Bald.xml b/items/hairsprite/item01_Bald.xml
similarity index 100%
rename from items/hairsprite/item-1_Bald.xml
rename to items/hairsprite/item01_Bald.xml
diff --git a/items/hairsprite/item-2_Flatponytail.xml b/items/hairsprite/item02_Flatponytail.xml
similarity index 100%
rename from items/hairsprite/item-2_Flatponytail.xml
rename to items/hairsprite/item02_Flatponytail.xml
diff --git a/items/hairsprite/item-3_Bowlcut.xml b/items/hairsprite/item03_Bowlcut.xml
similarity index 100%
rename from items/hairsprite/item-3_Bowlcut.xml
rename to items/hairsprite/item03_Bowlcut.xml
diff --git a/items/hairsprite/item-4_Combedback.xml b/items/hairsprite/item04_Combedback.xml
similarity index 100%
rename from items/hairsprite/item-4_Combedback.xml
rename to items/hairsprite/item04_Combedback.xml
diff --git a/items/hairsprite/item-5_Emo.xml b/items/hairsprite/item05_Emo.xml
similarity index 100%
rename from items/hairsprite/item-5_Emo.xml
rename to items/hairsprite/item05_Emo.xml
diff --git a/items/hairsprite/item-6_Mohawk.xml b/items/hairsprite/item06_Mohawk.xml
similarity index 100%
rename from items/hairsprite/item-6_Mohawk.xml
rename to items/hairsprite/item06_Mohawk.xml
diff --git a/items/hairsprite/item-7_Pompadour.xml b/items/hairsprite/item07_Pompadour.xml
similarity index 100%
rename from items/hairsprite/item-7_Pompadour.xml
rename to items/hairsprite/item07_Pompadour.xml
diff --git a/items/hairsprite/item-8_CenterpartingShortandslick.xml b/items/hairsprite/item08_CenterpartingShortandslick.xml
similarity index 100%
rename from items/hairsprite/item-8_CenterpartingShortandslick.xml
rename to items/hairsprite/item08_CenterpartingShortandslick.xml
diff --git a/items/hairsprite/item-9_Longandslick.xml b/items/hairsprite/item09_Longandslick.xml
similarity index 100%
rename from items/hairsprite/item-9_Longandslick.xml
rename to items/hairsprite/item09_Longandslick.xml
diff --git a/items/hairsprite/item-10_Shortandcurly.xml b/items/hairsprite/item10_Shortandcurly.xml
similarity index 100%
rename from items/hairsprite/item-10_Shortandcurly.xml
rename to items/hairsprite/item10_Shortandcurly.xml
diff --git a/items/hairsprite/item-11_Pigtails.xml b/items/hairsprite/item11_Pigtails.xml
similarity index 100%
rename from items/hairsprite/item-11_Pigtails.xml
rename to items/hairsprite/item11_Pigtails.xml
diff --git a/items/hairsprite/item-12_Longandcurly.xml b/items/hairsprite/item12_Longandcurly.xml
similarity index 100%
rename from items/hairsprite/item-12_Longandcurly.xml
rename to items/hairsprite/item12_Longandcurly.xml
diff --git a/items/hairsprite/item-13_Parted.xml b/items/hairsprite/item13_Parted.xml
similarity index 100%
rename from items/hairsprite/item-13_Parted.xml
rename to items/hairsprite/item13_Parted.xml
diff --git a/items/hairsprite/item-14_Perkyponytail.xml b/items/hairsprite/item14_Perkyponytail.xml
similarity index 100%
rename from items/hairsprite/item-14_Perkyponytail.xml
rename to items/hairsprite/item14_Perkyponytail.xml
diff --git a/items/hairsprite/item-15_Wave.xml b/items/hairsprite/item15_Wave.xml
similarity index 100%
rename from items/hairsprite/item-15_Wave.xml
rename to items/hairsprite/item15_Wave.xml
diff --git a/items/hairsprite/item-16_Mane.xml b/items/hairsprite/item16_Mane.xml
similarity index 100%
rename from items/hairsprite/item-16_Mane.xml
rename to items/hairsprite/item16_Mane.xml
diff --git a/items/hairsprite/item-17_Bun.xml b/items/hairsprite/item17_Bun.xml
similarity index 100%
rename from items/hairsprite/item-17_Bun.xml
rename to items/hairsprite/item17_Bun.xml
diff --git a/items/hairsprite/item-18_Shoulderlengthflick.xml b/items/hairsprite/item18_Shoulderlengthflick.xml
similarity index 100%
rename from items/hairsprite/item-18_Shoulderlengthflick.xml
rename to items/hairsprite/item18_Shoulderlengthflick.xml
diff --git a/items/hairsprite/item-19_Fizzy.xml b/items/hairsprite/item19_Fizzy.xml
similarity index 100%
rename from items/hairsprite/item-19_Fizzy.xml
rename to items/hairsprite/item19_Fizzy.xml
diff --git a/items/hairsprite/item-20_LongandClipped.xml b/items/hairsprite/item20_LongandClipped.xml
similarity index 100%
rename from items/hairsprite/item-20_LongandClipped.xml
rename to items/hairsprite/item20_LongandClipped.xml
diff --git a/items/misc/_include.xml b/items/misc/_include.xml
index dec94feb..ab2c12b0 100644
--- a/items/misc/_include.xml
+++ b/items/misc/_include.xml
@@ -1,11 +1,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/items/misc/item30_.xml b/items/misc/item0030_.xml
similarity index 100%
rename from items/misc/item30_.xml
rename to items/misc/item0030_.xml
diff --git a/items/misc/item31_.xml b/items/misc/item0031_.xml
similarity index 100%
rename from items/misc/item31_.xml
rename to items/misc/item0031_.xml
diff --git a/items/misc/item32_.xml b/items/misc/item0032_.xml
similarity index 100%
rename from items/misc/item32_.xml
rename to items/misc/item0032_.xml
diff --git a/items/misc/item33_.xml b/items/misc/item0033_.xml
similarity index 100%
rename from items/misc/item33_.xml
rename to items/misc/item0033_.xml
diff --git a/items/misc/item34_.xml b/items/misc/item0034_.xml
similarity index 100%
rename from items/misc/item34_.xml
rename to items/misc/item0034_.xml
diff --git a/items/misc/item35_.xml b/items/misc/item0035_.xml
similarity index 100%
rename from items/misc/item35_.xml
rename to items/misc/item0035_.xml
diff --git a/items/racesprite/_include.xml b/items/racesprite/_include.xml
index 20941000..f0879182 100644
--- a/items/racesprite/_include.xml
+++ b/items/racesprite/_include.xml
@@ -1,11 +1,12 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/items/racesprite/item-100_Deprecated.xml b/items/racesprite/item00100_Deprecated.xml
similarity index 100%
rename from items/racesprite/item-100_Deprecated.xml
rename to items/racesprite/item00100_Deprecated.xml
diff --git a/items/racesprite/item-101_Talpan.xml b/items/racesprite/item00101_Talpan.xml
similarity index 100%
rename from items/racesprite/item-101_Talpan.xml
rename to items/racesprite/item00101_Talpan.xml
diff --git a/items/racesprite/item-102_Tritan.xml b/items/racesprite/item00102_Tritan.xml
similarity index 100%
rename from items/racesprite/item-102_Tritan.xml
rename to items/racesprite/item00102_Tritan.xml
diff --git a/items/racesprite/item-103_Ifriton.xml b/items/racesprite/item00103_Ifriton.xml
similarity index 100%
rename from items/racesprite/item-103_Ifriton.xml
rename to items/racesprite/item00103_Ifriton.xml
diff --git a/items/racesprite/item-104_Gispaan.xml b/items/racesprite/item00104_Gispaan.xml
similarity index 100%
rename from items/racesprite/item-104_Gispaan.xml
rename to items/racesprite/item00104_Gispaan.xml
diff --git a/items/racesprite/item-105_Sparron.xml b/items/racesprite/item00105_Sparron.xml
similarity index 100%
rename from items/racesprite/item-105_Sparron.xml
rename to items/racesprite/item00105_Sparron.xml
diff --git a/items/racesprite/item-106_Undead.xml b/items/racesprite/item00106_Undead.xml
similarity index 100%
rename from items/racesprite/item-106_Undead.xml
rename to items/racesprite/item00106_Undead.xml
diff --git a/items/racesprite/item-99054_Troll.xml b/items/racesprite/item99054_Troll.xml
similarity index 63%
rename from items/racesprite/item-99054_Troll.xml
rename to items/racesprite/item99054_Troll.xml
index 767539d7..5a1bcdf0 100644
--- a/items/racesprite/item-99054_Troll.xml
+++ b/items/racesprite/item99054_Troll.xml
@@ -3,7 +3,4 @@
-
monsters/troll-race.xml|#FFDEC2;#FF4D4D;#FF99FF;#FFC88A
- -
- monsters/floyd.xml
-
diff --git a/items/racesprite/item99168_Floyd.xml b/items/racesprite/item99168_Floyd.xml
new file mode 100644
index 00000000..30f09265
--- /dev/null
+++ b/items/racesprite/item99168_Floyd.xml
@@ -0,0 +1,6 @@
+
+
+ -
+ monsters/floyd.xml
+
+
diff --git a/items/usable/_include.xml b/items/usable/_include.xml
index a2b7283d..2f79dc5a 100644
--- a/items/usable/_include.xml
+++ b/items/usable/_include.xml
@@ -1,77 +1,78 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -81,9 +82,11 @@
-
+
+
+
@@ -91,6 +94,11 @@
+
+
+
+
+
@@ -99,4 +107,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/items/usable/item501_CactusDrink.xml b/items/usable/item0501_CactusDrink.xml
similarity index 100%
rename from items/usable/item501_CactusDrink.xml
rename to items/usable/item0501_CactusDrink.xml
diff --git a/items/usable/item502_CactusPotion.xml b/items/usable/item0502_CactusPotion.xml
similarity index 100%
rename from items/usable/item502_CactusPotion.xml
rename to items/usable/item0502_CactusPotion.xml
diff --git a/items/usable/item506_CandyCane.xml b/items/usable/item0506_CandyCane.xml
similarity index 100%
rename from items/usable/item506_CandyCane.xml
rename to items/usable/item0506_CandyCane.xml
diff --git a/items/usable/item508_XmasCake.xml b/items/usable/item0508_XmasCake.xml
similarity index 100%
rename from items/usable/item508_XmasCake.xml
rename to items/usable/item0508_XmasCake.xml
diff --git a/items/usable/item509_ChocolateBar.xml b/items/usable/item0509_ChocolateBar.xml
similarity index 100%
rename from items/usable/item509_ChocolateBar.xml
rename to items/usable/item0509_ChocolateBar.xml
diff --git a/items/usable/item510_Candy.xml b/items/usable/item0510_Candy.xml
similarity index 100%
rename from items/usable/item510_Candy.xml
rename to items/usable/item0510_Candy.xml
diff --git a/items/usable/item512_GingerBreadMan.xml b/items/usable/item0512_GingerBreadMan.xml
similarity index 100%
rename from items/usable/item512_GingerBreadMan.xml
rename to items/usable/item0512_GingerBreadMan.xml
diff --git a/items/usable/item513_Cake.xml b/items/usable/item0513_Cake.xml
similarity index 100%
rename from items/usable/item513_Cake.xml
rename to items/usable/item0513_Cake.xml
diff --git a/items/usable/item514_XmasCandyCane.xml b/items/usable/item0514_XmasCandyCane.xml
similarity index 100%
rename from items/usable/item514_XmasCandyCane.xml
rename to items/usable/item0514_XmasCandyCane.xml
diff --git a/items/usable/item519_CherryCake.xml b/items/usable/item0519_CherryCake.xml
similarity index 100%
rename from items/usable/item519_CherryCake.xml
rename to items/usable/item0519_CherryCake.xml
diff --git a/items/usable/item520_EasterEgg.xml b/items/usable/item0520_EasterEgg.xml
similarity index 100%
rename from items/usable/item520_EasterEgg.xml
rename to items/usable/item0520_EasterEgg.xml
diff --git a/items/usable/item527_Milk.xml b/items/usable/item0527_Milk.xml
similarity index 100%
rename from items/usable/item527_Milk.xml
rename to items/usable/item0527_Milk.xml
diff --git a/items/usable/item533_RoastedMaggot.xml b/items/usable/item0533_RoastedMaggot.xml
similarity index 100%
rename from items/usable/item533_RoastedMaggot.xml
rename to items/usable/item0533_RoastedMaggot.xml
diff --git a/items/usable/item534_OrangeCupcake.xml b/items/usable/item0534_OrangeCupcake.xml
similarity index 100%
rename from items/usable/item534_OrangeCupcake.xml
rename to items/usable/item0534_OrangeCupcake.xml
diff --git a/items/usable/item535_RedApple.xml b/items/usable/item0535_RedApple.xml
similarity index 100%
rename from items/usable/item535_RedApple.xml
rename to items/usable/item0535_RedApple.xml
diff --git a/items/usable/item539_Beer.xml b/items/usable/item0539_Beer.xml
similarity index 100%
rename from items/usable/item539_Beer.xml
rename to items/usable/item0539_Beer.xml
diff --git a/items/usable/item541_BottleofWater.xml b/items/usable/item0541_BottleofWater.xml
similarity index 100%
rename from items/usable/item541_BottleofWater.xml
rename to items/usable/item0541_BottleofWater.xml
diff --git a/items/usable/item0562_BirdLeg.xml b/items/usable/item0562_BirdLeg.xml
new file mode 100644
index 00000000..f162341d
--- /dev/null
+++ b/items/usable/item0562_BirdLeg.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/usable/item565_PinkPetal.xml b/items/usable/item0565_PinkPetal.xml
similarity index 85%
rename from items/usable/item565_PinkPetal.xml
rename to items/usable/item0565_PinkPetal.xml
index 43726747..8ed50411 100644
--- a/items/usable/item565_PinkPetal.xml
+++ b/items/usable/item0565_PinkPetal.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item566_SmallMushroom.xml b/items/usable/item0566_SmallMushroom.xml
similarity index 95%
rename from items/usable/item566_SmallMushroom.xml
rename to items/usable/item0566_SmallMushroom.xml
index c076bc85..cf2ffd6e 100644
--- a/items/usable/item566_SmallMushroom.xml
+++ b/items/usable/item0566_SmallMushroom.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item567_IronPotion.xml b/items/usable/item0567_IronPotion.xml
similarity index 100%
rename from items/usable/item567_IronPotion.xml
rename to items/usable/item0567_IronPotion.xml
diff --git a/items/usable/item568_ConcentrationPotion.xml b/items/usable/item0568_ConcentrationPotion.xml
similarity index 100%
rename from items/usable/item568_ConcentrationPotion.xml
rename to items/usable/item0568_ConcentrationPotion.xml
diff --git a/items/usable/item657_Orange.xml b/items/usable/item0657_Orange.xml
similarity index 100%
rename from items/usable/item657_Orange.xml
rename to items/usable/item0657_Orange.xml
diff --git a/items/usable/item676_Steak.xml b/items/usable/item0676_Steak.xml
similarity index 100%
rename from items/usable/item676_Steak.xml
rename to items/usable/item0676_Steak.xml
diff --git a/items/usable/item684_TinyHealingPotion.xml b/items/usable/item0684_TinyHealingPotion.xml
similarity index 100%
rename from items/usable/item684_TinyHealingPotion.xml
rename to items/usable/item0684_TinyHealingPotion.xml
diff --git a/items/usable/item685_SmallHealingPotion.xml b/items/usable/item0685_SmallHealingPotion.xml
similarity index 100%
rename from items/usable/item685_SmallHealingPotion.xml
rename to items/usable/item0685_SmallHealingPotion.xml
diff --git a/items/usable/item686_MediumHealingPotion.xml b/items/usable/item0686_MediumHealingPotion.xml
similarity index 100%
rename from items/usable/item686_MediumHealingPotion.xml
rename to items/usable/item0686_MediumHealingPotion.xml
diff --git a/items/usable/item687_LargeHealingPotion.xml b/items/usable/item0687_LargeHealingPotion.xml
similarity index 100%
rename from items/usable/item687_LargeHealingPotion.xml
rename to items/usable/item0687_LargeHealingPotion.xml
diff --git a/items/usable/item705_ManaPotion.xml b/items/usable/item0705_ManaPotion.xml
similarity index 100%
rename from items/usable/item705_ManaPotion.xml
rename to items/usable/item0705_ManaPotion.xml
diff --git a/items/usable/item714_SnakeEgg.xml b/items/usable/item0714_SnakeEgg.xml
similarity index 100%
rename from items/usable/item714_SnakeEgg.xml
rename to items/usable/item0714_SnakeEgg.xml
diff --git a/items/usable/item715_MountainSnakeEgg.xml b/items/usable/item0715_MountainSnakeEgg.xml
similarity index 100%
rename from items/usable/item715_MountainSnakeEgg.xml
rename to items/usable/item0715_MountainSnakeEgg.xml
diff --git a/items/usable/item716_GrassSnakeEgg.xml b/items/usable/item0716_GrassSnakeEgg.xml
similarity index 100%
rename from items/usable/item716_GrassSnakeEgg.xml
rename to items/usable/item0716_GrassSnakeEgg.xml
diff --git a/items/usable/item717_CaveSnakeEgg.xml b/items/usable/item0717_CaveSnakeEgg.xml
similarity index 100%
rename from items/usable/item717_CaveSnakeEgg.xml
rename to items/usable/item0717_CaveSnakeEgg.xml
diff --git a/items/usable/item719_GreenApple.xml b/items/usable/item0719_GreenApple.xml
similarity index 81%
rename from items/usable/item719_GreenApple.xml
rename to items/usable/item0719_GreenApple.xml
index f59c2aff..7efa7485 100644
--- a/items/usable/item719_GreenApple.xml
+++ b/items/usable/item0719_GreenApple.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item733_PurificationPotion.xml b/items/usable/item0733_PurificationPotion.xml
similarity index 100%
rename from items/usable/item733_PurificationPotion.xml
rename to items/usable/item0733_PurificationPotion.xml
diff --git a/items/usable/item736_WhiteCake.xml b/items/usable/item0736_WhiteCake.xml
similarity index 100%
rename from items/usable/item736_WhiteCake.xml
rename to items/usable/item0736_WhiteCake.xml
diff --git a/items/usable/item737_ChocolateCake.xml b/items/usable/item0737_ChocolateCake.xml
similarity index 100%
rename from items/usable/item737_ChocolateCake.xml
rename to items/usable/item0737_ChocolateCake.xml
diff --git a/items/usable/item738_OrangeCake.xml b/items/usable/item0738_OrangeCake.xml
similarity index 100%
rename from items/usable/item738_OrangeCake.xml
rename to items/usable/item0738_OrangeCake.xml
diff --git a/items/usable/item739_AppleCake.xml b/items/usable/item0739_AppleCake.xml
similarity index 100%
rename from items/usable/item739_AppleCake.xml
rename to items/usable/item0739_AppleCake.xml
diff --git a/items/usable/item743_Acorn.xml b/items/usable/item0743_Acorn.xml
similarity index 100%
rename from items/usable/item743_Acorn.xml
rename to items/usable/item0743_Acorn.xml
diff --git a/items/usable/item744_DilutedConcentrationPotion.xml b/items/usable/item0744_DilutedConcentrationPotion.xml
similarity index 100%
rename from items/usable/item744_DilutedConcentrationPotion.xml
rename to items/usable/item0744_DilutedConcentrationPotion.xml
diff --git a/items/usable/item745_DarkConcentrationPotion.xml b/items/usable/item0745_DarkConcentrationPotion.xml
similarity index 100%
rename from items/usable/item745_DarkConcentrationPotion.xml
rename to items/usable/item0745_DarkConcentrationPotion.xml
diff --git a/items/usable/item746_MopoxCurePotion.xml b/items/usable/item0746_MopoxCurePotion.xml
similarity index 100%
rename from items/usable/item746_MopoxCurePotion.xml
rename to items/usable/item0746_MopoxCurePotion.xml
diff --git a/items/usable/item747_LacedChocolateCake.xml b/items/usable/item0747_LacedChocolateCake.xml
similarity index 100%
rename from items/usable/item747_LacedChocolateCake.xml
rename to items/usable/item0747_LacedChocolateCake.xml
diff --git a/items/usable/item748_LacedOrangeCupcake.xml b/items/usable/item0748_LacedOrangeCupcake.xml
similarity index 100%
rename from items/usable/item748_LacedOrangeCupcake.xml
rename to items/usable/item0748_LacedOrangeCupcake.xml
diff --git a/items/usable/item750_SlowPoisonPotion.xml b/items/usable/item0750_SlowPoisonPotion.xml
similarity index 100%
rename from items/usable/item750_SlowPoisonPotion.xml
rename to items/usable/item0750_SlowPoisonPotion.xml
diff --git a/items/usable/item784_ZombieNachos.xml b/items/usable/item0784_ZombieNachos.xml
similarity index 100%
rename from items/usable/item784_ZombieNachos.xml
rename to items/usable/item0784_ZombieNachos.xml
diff --git a/items/usable/item785_LadyFingers.xml b/items/usable/item0785_LadyFingers.xml
similarity index 100%
rename from items/usable/item785_LadyFingers.xml
rename to items/usable/item0785_LadyFingers.xml
diff --git a/items/usable/item786_SlimeJellAhh.xml b/items/usable/item0786_SlimeJellAhh.xml
similarity index 100%
rename from items/usable/item786_SlimeJellAhh.xml
rename to items/usable/item0786_SlimeJellAhh.xml
diff --git a/items/usable/item787_Snapple.xml b/items/usable/item0787_Snapple.xml
similarity index 100%
rename from items/usable/item787_Snapple.xml
rename to items/usable/item0787_Snapple.xml
diff --git a/items/usable/item788_BeetleJuice.xml b/items/usable/item0788_BeetleJuice.xml
similarity index 100%
rename from items/usable/item788_BeetleJuice.xml
rename to items/usable/item0788_BeetleJuice.xml
diff --git a/items/usable/item789_GutBusterAle.xml b/items/usable/item0789_GutBusterAle.xml
similarity index 100%
rename from items/usable/item789_GutBusterAle.xml
rename to items/usable/item0789_GutBusterAle.xml
diff --git a/items/usable/item790_BloodWine.xml b/items/usable/item0790_BloodWine.xml
similarity index 100%
rename from items/usable/item790_BloodWine.xml
rename to items/usable/item0790_BloodWine.xml
diff --git a/items/usable/item808_HitchhikersTowel.xml b/items/usable/item0808_HitchhikersTowel.xml
similarity index 63%
rename from items/usable/item808_HitchhikersTowel.xml
rename to items/usable/item0808_HitchhikersTowel.xml
index abbf794e..82ec32bd 100644
--- a/items/usable/item808_HitchhikersTowel.xml
+++ b/items/usable/item0808_HitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item809_WhiteHitchhikersTowel.xml b/items/usable/item0809_WhiteHitchhikersTowel.xml
similarity index 77%
rename from items/usable/item809_WhiteHitchhikersTowel.xml
rename to items/usable/item0809_WhiteHitchhikersTowel.xml
index d0f5889e..9af2e10e 100644
--- a/items/usable/item809_WhiteHitchhikersTowel.xml
+++ b/items/usable/item0809_WhiteHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item810_RedHitchhikersTowel.xml b/items/usable/item0810_RedHitchhikersTowel.xml
similarity index 76%
rename from items/usable/item810_RedHitchhikersTowel.xml
rename to items/usable/item0810_RedHitchhikersTowel.xml
index bbef7a84..1c753a01 100644
--- a/items/usable/item810_RedHitchhikersTowel.xml
+++ b/items/usable/item0810_RedHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item811_GreenHitchhikersTowel.xml b/items/usable/item0811_GreenHitchhikersTowel.xml
similarity index 57%
rename from items/usable/item811_GreenHitchhikersTowel.xml
rename to items/usable/item0811_GreenHitchhikersTowel.xml
index c34193b0..60e18c69 100644
--- a/items/usable/item811_GreenHitchhikersTowel.xml
+++ b/items/usable/item0811_GreenHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item812_BlueHitchhikersTowel.xml b/items/usable/item0812_BlueHitchhikersTowel.xml
similarity index 57%
rename from items/usable/item812_BlueHitchhikersTowel.xml
rename to items/usable/item0812_BlueHitchhikersTowel.xml
index f5f3f72b..bc7cd983 100644
--- a/items/usable/item812_BlueHitchhikersTowel.xml
+++ b/items/usable/item0812_BlueHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item813_YellowHitchhikersTowel.xml b/items/usable/item0813_YellowHitchhikersTowel.xml
similarity index 77%
rename from items/usable/item813_YellowHitchhikersTowel.xml
rename to items/usable/item0813_YellowHitchhikersTowel.xml
index 7905f785..98322ccb 100644
--- a/items/usable/item813_YellowHitchhikersTowel.xml
+++ b/items/usable/item0813_YellowHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item814_PurpleHitchhikersTowel.xml b/items/usable/item0814_PurpleHitchhikersTowel.xml
similarity index 77%
rename from items/usable/item814_PurpleHitchhikersTowel.xml
rename to items/usable/item0814_PurpleHitchhikersTowel.xml
index a51b60d2..aef4e613 100644
--- a/items/usable/item814_PurpleHitchhikersTowel.xml
+++ b/items/usable/item0814_PurpleHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item815_OrangeHitchhikersTowel.xml b/items/usable/item0815_OrangeHitchhikersTowel.xml
similarity index 75%
rename from items/usable/item815_OrangeHitchhikersTowel.xml
rename to items/usable/item0815_OrangeHitchhikersTowel.xml
index b9d409ab..b5d5171c 100644
--- a/items/usable/item815_OrangeHitchhikersTowel.xml
+++ b/items/usable/item0815_OrangeHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item816_PinkHitchhikersTowel.xml b/items/usable/item0816_PinkHitchhikersTowel.xml
similarity index 76%
rename from items/usable/item816_PinkHitchhikersTowel.xml
rename to items/usable/item0816_PinkHitchhikersTowel.xml
index 6dfcbc88..e5957e8f 100644
--- a/items/usable/item816_PinkHitchhikersTowel.xml
+++ b/items/usable/item0816_PinkHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item817_TealHitchhikersTowel.xml b/items/usable/item0817_TealHitchhikersTowel.xml
similarity index 59%
rename from items/usable/item817_TealHitchhikersTowel.xml
rename to items/usable/item0817_TealHitchhikersTowel.xml
index 0ee888fd..f8ef8b54 100644
--- a/items/usable/item817_TealHitchhikersTowel.xml
+++ b/items/usable/item0817_TealHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item818_LimeHitchhikersTowel.xml b/items/usable/item0818_LimeHitchhikersTowel.xml
similarity index 59%
rename from items/usable/item818_LimeHitchhikersTowel.xml
rename to items/usable/item0818_LimeHitchhikersTowel.xml
index f87cfe09..834e3213 100644
--- a/items/usable/item818_LimeHitchhikersTowel.xml
+++ b/items/usable/item0818_LimeHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item825_TinyManaElixir.xml b/items/usable/item0825_TinyManaElixir.xml
similarity index 100%
rename from items/usable/item825_TinyManaElixir.xml
rename to items/usable/item0825_TinyManaElixir.xml
diff --git a/items/usable/item826_SmallManaElixir.xml b/items/usable/item0826_SmallManaElixir.xml
similarity index 100%
rename from items/usable/item826_SmallManaElixir.xml
rename to items/usable/item0826_SmallManaElixir.xml
diff --git a/items/usable/item827_MediumManaElixir.xml b/items/usable/item0827_MediumManaElixir.xml
similarity index 100%
rename from items/usable/item827_MediumManaElixir.xml
rename to items/usable/item0827_MediumManaElixir.xml
diff --git a/items/usable/item828_LargeManaElixir.xml b/items/usable/item0828_LargeManaElixir.xml
similarity index 100%
rename from items/usable/item828_LargeManaElixir.xml
rename to items/usable/item0828_LargeManaElixir.xml
diff --git a/items/usable/item838_CranberryLollipop.xml b/items/usable/item0838_CranberryLollipop.xml
similarity index 100%
rename from items/usable/item838_CranberryLollipop.xml
rename to items/usable/item0838_CranberryLollipop.xml
diff --git a/items/usable/item839_GrapeLollipop.xml b/items/usable/item0839_GrapeLollipop.xml
similarity index 100%
rename from items/usable/item839_GrapeLollipop.xml
rename to items/usable/item0839_GrapeLollipop.xml
diff --git a/items/usable/item840_OrangeLollipop.xml b/items/usable/item0840_OrangeLollipop.xml
similarity index 100%
rename from items/usable/item840_OrangeLollipop.xml
rename to items/usable/item0840_OrangeLollipop.xml
diff --git a/items/generic/item1226_SilverBell.xml b/items/usable/item1226_SilverBell.xml
similarity index 53%
rename from items/generic/item1226_SilverBell.xml
rename to items/usable/item1226_SilverBell.xml
index 21ff07d4..2d0b837e 100644
--- a/items/generic/item1226_SilverBell.xml
+++ b/items/usable/item1226_SilverBell.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item1258_Honey.xml b/items/usable/item1258_GlutenFreeHoney.xml
similarity index 100%
rename from items/usable/item1258_Honey.xml
rename to items/usable/item1258_GlutenFreeHoney.xml
diff --git a/items/usable/item1283_ArrowBundle.xml b/items/usable/item1283_ArrowBundle.xml
new file mode 100644
index 00000000..65e79c44
--- /dev/null
+++ b/items/usable/item1283_ArrowBundle.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/usable/item1284_LightningOrb.xml b/items/usable/item1284_LightningOrb.xml
new file mode 100644
index 00000000..3dc5b895
--- /dev/null
+++ b/items/usable/item1284_LightningOrb.xml
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/items/usable/item3001_RubberBat.xml b/items/usable/item3001_RubberBat.xml
index d5ceb24a..999c5064 100644
--- a/items/usable/item3001_RubberBat.xml
+++ b/items/usable/item3001_RubberBat.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item5141_AlizarinScroll.xml b/items/usable/item5141_AlizarinScroll.xml
new file mode 100644
index 00000000..6336ce0e
--- /dev/null
+++ b/items/usable/item5141_AlizarinScroll.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5142_CobaltScroll.xml b/items/usable/item5142_CobaltScroll.xml
new file mode 100644
index 00000000..00db9044
--- /dev/null
+++ b/items/usable/item5142_CobaltScroll.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5143_GambogeScroll.xml b/items/usable/item5143_GambogeScroll.xml
new file mode 100644
index 00000000..57274572
--- /dev/null
+++ b/items/usable/item5143_GambogeScroll.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5144_MauveScroll.xml b/items/usable/item5144_MauveScroll.xml
new file mode 100644
index 00000000..6fa1edfc
--- /dev/null
+++ b/items/usable/item5144_MauveScroll.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5145_JoyplimScroll.xml b/items/usable/item5145_JoyplimScroll.xml
new file mode 100644
index 00000000..73952f8b
--- /dev/null
+++ b/items/usable/item5145_JoyplimScroll.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5214_LactoseFreeAcorn.xml b/items/usable/item5214_LactoseFreeAcorn.xml
index 35390de7..20cb2842 100644
--- a/items/usable/item5214_LactoseFreeAcorn.xml
+++ b/items/usable/item5214_LactoseFreeAcorn.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item5251_Tomato.xml b/items/usable/item5251_Tomato.xml
index ec9fb156..21377e44 100644
--- a/items/usable/item5251_Tomato.xml
+++ b/items/usable/item5251_Tomato.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item5294_CrazyRum.xml b/items/usable/item5294_CrazyRum.xml
new file mode 100644
index 00000000..14445f7b
--- /dev/null
+++ b/items/usable/item5294_CrazyRum.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5309_ManaDust.xml b/items/usable/item5309_ManaDust.xml
new file mode 100644
index 00000000..1a1e459e
--- /dev/null
+++ b/items/usable/item5309_ManaDust.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/items/usable/item5310_EnlighteningElixir.xml b/items/usable/item5310_EnlighteningElixir.xml
new file mode 100644
index 00000000..dc23fa4e
--- /dev/null
+++ b/items/usable/item5310_EnlighteningElixir.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/usable/item5312_Honey.xml b/items/usable/item5312_Honey.xml
new file mode 100644
index 00000000..e1a252a6
--- /dev/null
+++ b/items/usable/item5312_Honey.xml
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/items/usable/item5329_IronShovel.xml b/items/usable/item5329_IronShovel.xml
new file mode 100644
index 00000000..21e24963
--- /dev/null
+++ b/items/usable/item5329_IronShovel.xml
@@ -0,0 +1,25 @@
+
+
+ -
+
+
+
+
+
+
diff --git a/items/usable/item5330_ShadowScroll.xml b/items/usable/item5330_ShadowScroll.xml
new file mode 100644
index 00000000..9760f785
--- /dev/null
+++ b/items/usable/item5330_ShadowScroll.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5331_YellowApple.xml b/items/usable/item5331_YellowApple.xml
new file mode 100644
index 00000000..c2eae7a9
--- /dev/null
+++ b/items/usable/item5331_YellowApple.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/usable/item5333_Bread.xml b/items/usable/item5333_Bread.xml
new file mode 100644
index 00000000..ca963776
--- /dev/null
+++ b/items/usable/item5333_Bread.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5334_Fungus.xml b/items/usable/item5334_Fungus.xml
new file mode 100644
index 00000000..af23deb8
--- /dev/null
+++ b/items/usable/item5334_Fungus.xml
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/items/usable/item5335_Cheese.xml b/items/usable/item5335_Cheese.xml
new file mode 100644
index 00000000..5904953d
--- /dev/null
+++ b/items/usable/item5335_Cheese.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5336_LettuceLeaf.xml b/items/usable/item5336_LettuceLeaf.xml
new file mode 100644
index 00000000..3db3dd36
--- /dev/null
+++ b/items/usable/item5336_LettuceLeaf.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5337_Piberries.xml b/items/usable/item5337_Piberries.xml
new file mode 100644
index 00000000..b4e3ea63
--- /dev/null
+++ b/items/usable/item5337_Piberries.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5338_Croconut.xml b/items/usable/item5338_Croconut.xml
new file mode 100644
index 00000000..417f7902
--- /dev/null
+++ b/items/usable/item5338_Croconut.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/usable/item5339_HalfCroconut.xml b/items/usable/item5339_HalfCroconut.xml
new file mode 100644
index 00000000..04a4de74
--- /dev/null
+++ b/items/usable/item5339_HalfCroconut.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5340_DeliciousCookie.xml b/items/usable/item5340_DeliciousCookie.xml
new file mode 100644
index 00000000..1eff11f2
--- /dev/null
+++ b/items/usable/item5340_DeliciousCookie.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5341_Manana.xml b/items/usable/item5341_Manana.xml
new file mode 100644
index 00000000..43a34a7e
--- /dev/null
+++ b/items/usable/item5341_Manana.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5342_Carrot.xml b/items/usable/item5342_Carrot.xml
new file mode 100644
index 00000000..af979de4
--- /dev/null
+++ b/items/usable/item5342_Carrot.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5343_PumpkinJuice.xml b/items/usable/item5343_PumpkinJuice.xml
new file mode 100644
index 00000000..17fea6b6
--- /dev/null
+++ b/items/usable/item5343_PumpkinJuice.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5344_ChocolateBiscuit.xml b/items/usable/item5344_ChocolateBiscuit.xml
new file mode 100644
index 00000000..c474f612
--- /dev/null
+++ b/items/usable/item5344_ChocolateBiscuit.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5345_ChocolateBunny.xml b/items/usable/item5345_ChocolateBunny.xml
new file mode 100644
index 00000000..10b348e6
--- /dev/null
+++ b/items/usable/item5345_ChocolateBunny.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5346_Potatoz.xml b/items/usable/item5346_Potatoz.xml
new file mode 100644
index 00000000..15b153f9
--- /dev/null
+++ b/items/usable/item5346_Potatoz.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5347_RipePumpkin.xml b/items/usable/item5347_RipePumpkin.xml
new file mode 100644
index 00000000..82356933
--- /dev/null
+++ b/items/usable/item5347_RipePumpkin.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5348_FruitSalad.xml b/items/usable/item5348_FruitSalad.xml
new file mode 100644
index 00000000..75ed6d04
--- /dev/null
+++ b/items/usable/item5348_FruitSalad.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5349_DuckEgg.xml b/items/usable/item5349_DuckEgg.xml
new file mode 100644
index 00000000..0fc82cc6
--- /dev/null
+++ b/items/usable/item5349_DuckEgg.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/items/usable/item5350_Dragonfruit.xml b/items/usable/item5350_Dragonfruit.xml
new file mode 100644
index 00000000..5514efdd
--- /dev/null
+++ b/items/usable/item5350_Dragonfruit.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5351_PirateTreasureMap.xml b/items/usable/item5351_PirateTreasureMap.xml
new file mode 100644
index 00000000..ce50c1f8
--- /dev/null
+++ b/items/usable/item5351_PirateTreasureMap.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5352_DungeonMap.xml b/items/usable/item5352_DungeonMap.xml
new file mode 100644
index 00000000..0ef07ce0
--- /dev/null
+++ b/items/usable/item5352_DungeonMap.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5353_TreasureMap.xml b/items/usable/item5353_TreasureMap.xml
new file mode 100644
index 00000000..8ddcb6fc
--- /dev/null
+++ b/items/usable/item5353_TreasureMap.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5354_RubberDucky.xml b/items/usable/item5354_RubberDucky.xml
new file mode 100644
index 00000000..86be9967
--- /dev/null
+++ b/items/usable/item5354_RubberDucky.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/usable/item5364_ButterButterfly.xml b/items/usable/item5364_ButterButterfly.xml
new file mode 100644
index 00000000..654a6361
--- /dev/null
+++ b/items/usable/item5364_ButterButterfly.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5373_JunglefowlEgg.xml b/items/usable/item5373_JunglefowlEgg.xml
new file mode 100644
index 00000000..2b1c2179
--- /dev/null
+++ b/items/usable/item5373_JunglefowlEgg.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/usable/item5374_KingChonkyBirbEgg.xml b/items/usable/item5374_KingChonkyBirbEgg.xml
new file mode 100644
index 00000000..6bc8b5d5
--- /dev/null
+++ b/items/usable/item5374_KingChonkyBirbEgg.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/usable/item5379_Sauerkraut.xml b/items/usable/item5379_Sauerkraut.xml
new file mode 100644
index 00000000..f4695072
--- /dev/null
+++ b/items/usable/item5379_Sauerkraut.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item5382_AnchorStone.xml b/items/usable/item5382_AnchorStone.xml
new file mode 100644
index 00000000..c846eaa1
--- /dev/null
+++ b/items/usable/item5382_AnchorStone.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/usable/item5383_AnchoredAnchorStone.xml b/items/usable/item5383_AnchoredAnchorStone.xml
new file mode 100644
index 00000000..8b55497e
--- /dev/null
+++ b/items/usable/item5383_AnchoredAnchorStone.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/items/usable/item5405_LegendaryShovel.xml b/items/usable/item5405_LegendaryShovel.xml
new file mode 100644
index 00000000..5861ee4d
--- /dev/null
+++ b/items/usable/item5405_LegendaryShovel.xml
@@ -0,0 +1,25 @@
+
+
+ -
+
+
+
+
+
+
diff --git a/items/usable/item5406_LegendaryTreasureMap.xml b/items/usable/item5406_LegendaryTreasureMap.xml
new file mode 100644
index 00000000..d4c9a076
--- /dev/null
+++ b/items/usable/item5406_LegendaryTreasureMap.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/items/usable/item562_ChickenLeg.xml b/items/usable/item562_ChickenLeg.xml
deleted file mode 100644
index 710e4b24..00000000
--- a/items/usable/item562_ChickenLeg.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/license.md b/license.md
index ef76d32c..24704df4 100644
--- a/license.md
+++ b/license.md
@@ -106,7 +106,11 @@ File | Artists | Licenses
### Ambient Effects
File | Artists | Licenses
---- |:-------:|:--------:
+`graphics/images/ambient/aethyr.jpg` | LuminousDragonGames | CC0
+`graphics/images/ambient/cloud.png` | Len, Reid | CC BY-SA 3.0
`graphics/images/ambient/clouds.png` | Crush | GPLv2, CC BY-SA 3.0
+`graphics/images/ambient/darkness1.png` | jesusalva | CC0
+`graphics/images/ambient/darkness2.png` | jesusalva | CC0
`graphics/images/ambient/dd5_absorb.png` | Crush, Jesusalva | GPLv2, CC BY-SA 3.0
`graphics/images/ambient/dd5_bones.png` | Crush, Jesusalva | GPLv2, CC BY-SA 3.0
`graphics/images/ambient/dd5_doubledef.png` | Crush, Jesusalva | GPLv2, CC BY-SA 3.0
@@ -115,6 +119,7 @@ File | Artists | Licenses
`graphics/images/ambient/dd5_kaflosh.png` | Crush, Jesusalva | GPLv2, CC BY-SA 3.0
`graphics/images/ambient/dd5_melee.png` | Crush, Jesusalva | GPLv2, CC BY-SA 3.0
`graphics/images/ambient/dd5_potions.png` | Crush, Jesusalva | GPLv2, CC BY-SA 3.0
+`graphics/images/ambient/desertclouds.png` | Saulc | CC BY-SA 4.0
`graphics/images/ambient/fog.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/images/ambient/night.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/images/ambient/rain.png` | wushin | GPLv2, CC BY-SA 3.0
@@ -140,18 +145,34 @@ File | Artists | Licenses
`graphics/items/equipment/ammo/snowball.png` | Ledmitz, Reid | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/ammo/stoneprojectile-icon.png` | wushin, tux9th | GPLv2, CC BY-SA 3.0
+#### Amulets
+File | Artists | Licenses
+---- |:-------:|:--------:
+`graphics/items/equipment/amulets/angel-wings.png` | :grey_question:, Varuna, Arikel, HoraK-FDF | GPLv2
+`graphics/items/equipment/amulets/enchanter.png` | Fate | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/amulets/fourleaf-amulet.png` | Fate | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/amulets/gmamulet.png` | Ledmitz | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/amulets/manapearl.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/equipment/amulets/assassin-amulet.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+
#### Charms
File | Artists | Licenses
---- |:-------:|:--------:
`graphics/items/equipment/charms/clover.png` | 5t3v3 | GPLv2
-`graphics/items/equipment/charms/enchanter.png` | Fate | GPLv2, CC BY-SA 3.0
-`graphics/items/equipment/charms/fourleaf-amulet.png` | Fate | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/charms/heart-of-isis.png` | V0id | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/charms/heartnecklace.png` | Jetryl | GPLv2
`graphics/items/equipment/charms/skeletoncharm.png` | Cassy, Jetryl | GPLv2
`graphics/items/equipment/charms/towel.png` | Bjorn | GPLv2, CC BY-SA 3.0
-`graphics/items/equipment/charms/manapearl.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
-`graphics/items/equipment/charms/assassin-amulet.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/equipment/charms/darktalisman.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+
+#### Rings
+File | Artists | Licenses
+---- |:-------:|:--------:
+`graphics/items/equipment/rings/gem.png` | Salmondine | GPLv2
+`graphics/items/equipment/rings/magic.png` | Nami | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/rings/simple.png` | Salmondine | GPLv2
+`graphics/items/equipment/rings/wedding.png` | Kess | GPLv2
+`graphics/items/equipment/rings/assassin-ring.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
#### Chest
File | Artists | Licenses
@@ -201,7 +222,7 @@ File | Artists | Licenses
`graphics/items/equipment/head/phylactery.png` | strealyn, wushin | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/nutcrackerhat.png` | Chayenne, Alige, Lizandra, Salmondine | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/dark-helm.png` | Bankai777 | GPLv2
-`graphics/sprites/equipment/head/underworld-mask.png` | wushin | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/head/underworld-mask.png` | wushin | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/bandana.png` | Modanung | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/beaniecopter.png` | Alige, Black Don, Milla, Veryape | GPLv2
`graphics/items/equipment/head/beret.png` | Varuna | GPLv2
@@ -236,19 +257,24 @@ File | Artists | Licenses
`graphics/items/equipment/head/goggles.png` | Fettsack | GPLv2
`graphics/items/equipment/head/gradcap.png` | Arilious | GPLv2
`graphics/items/equipment/head/guyfawkes.png` | 5t3v3 | GPLv2
+`graphics/items/equipment/head/headslime.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/equipment/head/heart-glasses.png` | Lizandra | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/highpriest-crown.png` | Black Don | GPLv2
`graphics/items/equipment/head/infantryhelm.png` | Black Don | GPLv2
`graphics/items/equipment/head/inspector-hat.png` | Micksha | GPLv2
`graphics/items/equipment/head/jestermask.png` | Spit23 | GPLv2
`graphics/items/equipment/head/knighthelm.png` | Black Don | GPLv2
+`graphics/items/equipment/head/knighthelm-dyable.png` | Black Don, HoraK-FDF | GPLv2
`graphics/items/equipment/head/knit-cap.png` | Salmondine, jak1 | GPLv2
`graphics/items/equipment/head/leathergoggles.png` | Fettsack | GPLv2
+`graphics/items/equipment/head/leprechaunhat.png` | Scorpius, QOAL, Saulc | GPLv2
+`graphics/items/equipment/head/leprechaunhead.png` | Ledmitz, (leprechaunhat.png | Scorpius, QOAL, Saulc | GPLv2) | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/magicgmtophat.png` | QOAL, V0id | GPLv2
`graphics/items/equipment/head/mask.png` | QOAL | GPLv2
`graphics/items/equipment/head/minershat.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/monocle.png` | Skipy | GPLv2
`graphics/items/equipment/head/monster-skull-helm.png` | Black Don | GPLv2
+`graphics/items/equipment/head/moonshroomhat.png` | Cassy | CC BY-SA 3.0
`graphics/items/equipment/head/opera-mask.png` | Meway | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/overlord-helm.png` | Black Don | GPLv2
`graphics/items/equipment/head/paladin-helm.png` | Black Don | GPLv2
@@ -261,6 +287,7 @@ File | Artists | Licenses
`graphics/items/equipment/head/pvpcap.png` | Black Don, kytty | GPLv2
`graphics/items/equipment/head/pvpcap-golden.png` | Black Don, kytty, Ledmitz | GPLv2
`graphics/items/equipment/head/rabbit-ears.png` | Black Don, Harufym | GPLv2
+`graphics/items/equipment/head/rainshroomhat.png` | Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/items/equipment/head/rangerhat.png` | Pauan | GPLv2
`graphics/items/equipment/head/rednose.png` | ChefChelios, UntamedMonkey | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/rosehat.png` | Nami, skipy, Alige | GPLv2
@@ -268,13 +295,17 @@ File | Artists | Licenses
`graphics/items/equipment/head/santahat.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/silkheadband.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/skullmask.png` | Beelzebub, FotherJ | GPLv2
+`graphics/items/equipment/head/skullmask-dyable.png` | Beelzebub, FotherJ, HoraK-FDF | GPLv2
`graphics/items/equipment/head/snowgoggles.png` | VXD | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/head/snowshroomhat.png` | Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/items/equipment/head/sunglasses.png` | UntamedMonkey | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/head/sunshroomhat.png` | Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/items/equipment/head/terranitehelm.png` | Kr0n05931 | GPLv2
`graphics/items/equipment/head/thin-crown.png` | Black Don, V0id | GPLv2
`graphics/items/equipment/head/tophat.png` | QOAL | GPLv2
`graphics/items/equipment/head/warlordhelm.png` | Black Don | GPLv2
-`graphics/items/equipment/head/witch-doctor-mask.png` | Black Don | GPLv2
+`graphics/items/equipment/head/wickedmushroomhat.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
+`graphics/items/equipment/head/witch-doctor-mask.png` | Black Don, Hello=) | GPLv2
`graphics/items/equipment/head/witch-hat.png` | Meway | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/wizard-hat.png` | Crush, Hal9000 | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/yeti-mask.png` | Skipy | GPLv2
@@ -295,15 +326,6 @@ File | Artists | Licenses
`graphics/items/equipment/legs/silkpants.png` | LuH | GPLv2
`graphics/items/equipment/legs/terranitepants.png` | Kr0n05931 | GPLv2
-#### Rings
-File | Artists | Licenses
----- |:-------:|:--------:
-`graphics/items/equipment/rings/gem.png` | Salmondine | GPLv2
-`graphics/items/equipment/rings/magic.png` | Nami | GPLv2, CC BY-SA 3.0
-`graphics/items/equipment/rings/simple.png` | Salmondine | GPLv2
-`graphics/items/equipment/rings/wedding.png` | Kess | GPLv2
-`graphics/items/equipment/rings/assassin-ring.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
-
#### Shields
File | Artists | Licenses
---- |:-------:|:--------:
@@ -313,7 +335,9 @@ File | Artists | Licenses
`graphics/items/equipment/shield/leather.png` | Meway | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/shield/scarabarmlet.png` | Adarias | GPLv2
`graphics/items/equipment/shield/steel.png` | Irukard | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/shield/steel-dyable.png` | Irukard, HoraK-FDF | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/shield/wooden.png` | Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/shield/bromenal.png` | Skipy | GPLv2
`graphics/items/equipment/shield/dragonshield.png` | tametomo | GPLv2
#### Weapons
@@ -344,6 +368,7 @@ File | Artists | Licenses
`graphics/items/equipment/weapon/polearm-scorpion.png` | Adarias | GPLv2
`graphics/items/equipment/weapon/polearm-spear.png` | Irukard | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/weapon/polearm-trident.png` | Irukard | GPLv2, CC BY-SA 3.0
+`graphics/items/equipment/weapon/rainerang.png` | Ledmitz | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/weapon/staff-crescentrod.png` | Adarias | GPLv2
`graphics/items/equipment/weapon/staff-staffoffire.png` | Adarias | GPLv2
`graphics/items/equipment/weapon/staff-staffofice.png` | Adarias | GPLv2
@@ -366,7 +391,7 @@ File | Artists | Licenses
`graphics/items/equipment/weapon/slingshot-icon.png` | wushin | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/weapon/sword-dead.png` | Wombat, wushin | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/weapon/wand.png` | wushin | GPLv2, CC BY-SA 3.0
-`graphics/items/equipment/weapons/revolver.png` | Skipy, Micksha | GPLv2
+`graphics/items/equipment/weapons/flintlock.png` | Skipy, Micksha | GPLv2
#### Generic
File | Artists | Licenses
@@ -376,47 +401,71 @@ File | Artists | Licenses
`graphics/items/generic/bandit-hood.png` | Wombat, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/batteeth.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/batwing.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/beeswax.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/bent-needle.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/blackpearl.png` | :grey_question:, Fate, Enchilado | GPLv2
+`graphics/items/generic/blackscorpionclaw.png` | Saulc | CC BY-SA 3.0
`graphics/items/generic/blanket.png` | Nami, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/blossom-wonderwoodling.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/bone.png` | Yosuhara, Enchilado | GPLv2
`graphics/items/generic/bottle-empty.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/bottle-ice.png` | FotherJ, Nami, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/bottle-moon.png` | FotherJ, Enchilado, HoraK-FDF | GPLv2, CC BY-SA 3.0
`graphics/items/generic/bottle-sand.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/brick-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/broken-fourleaf-amulet.png` | Alige, Fate, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/brokendoll.png` | Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/bromenal-droplet.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/bugleg.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/butterfly.png` | Meway, Saulc | GPL 3.0/CC BY-SA 3.0
+`graphics/items/generic/carrot-legendary.png` | Enchilado, Reid, ? | CC BY-SA 3.0
`graphics/items/generic/casinocoins.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/cavesnakelamp.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/charcoal.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/chocolatemouboo.png` | :grey_question:, Chicka-Maria, Enchilado | GPLv2
`graphics/items/generic/christmasbox-closed.png` | Lizandra, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/christmasbox-open.png` | Lizandra, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/christmasbulb.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/claylump_big.png` | Jumpy, Enchilado | GPLv2
`graphics/items/generic/claylump_small.png` | Fate, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/clover-drawing.png` | Adamaix, Enchilado, HoraK | GPLv2
`graphics/items/generic/coal.png` | Enchilado, Meway, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/coinbag.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/crocclaw.png` | Reid, Enchilado | CC BY-SA 3.0
`graphics/items/generic/crystal.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/crystal-black-quartz.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/generic/crystal-crozenite.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/generic/crystal-mountain.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/generic/crystal-pink-quartz.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/generic/crystalized-dragon-blood.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/dark-easter-egg.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/dark-petal.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/doll.png` | Lizandra, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/dragon-horn.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/generic/dragonscales.png` | Lugia/Lunovox?, TMW-Br | GPLv2
`graphics/items/generic/dry-branch.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/duckfeather.png` | Saulc | CC BY-SA 4.0
`graphics/items/generic/ear-zombie.png` | Goku, Enchilado | GPLv2
`graphics/items/generic/easterbasket.png` | Salmondine, Enchilado | GPLv2
`graphics/items/generic/easteregg.png` | Crush, Enchilado, wushin | GPLv2, CC BY-SA 3.0
`graphics/items/generic/eyeball.png` | Yosuhara, Enchilado | GPLv2
`graphics/items/generic/fabric.png` | Crush, Enchilado, wushin | GPLv2, CC BY-SA 3.0
`graphics/items/generic/fakefangs.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/feather-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/flawed-lens.png` | Skipy, Enchilado | GPLv2
`graphics/items/generic/flighttalisman.png` | Nami, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/flour.png` | Micksha | MIT
`graphics/items/generic/frozen-yeti-tear.png` | ChefChelios, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/gempowder.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/gemstone-a.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/gemstone-b.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/glass-shards.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/generic/golden-tooth.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/grassliner.png` | Salmondine, Enchilado | GPLv2
`graphics/items/generic/grassseeds.png` | Coolkid782, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/grub-slime.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/hardspike.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/hay.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/heart-diseased.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/herb.png` | Irukard | GPLv2, CC BY-SA 3.0
`graphics/items/generic/herb-mauve.png` | Enchilado | GPLv2, CC BY-SA 3.0
@@ -424,6 +473,7 @@ File | Artists | Licenses
`graphics/items/generic/herb-gamboge.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/herb-alizarin.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/hint.png` | Modanung, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/honeycomb.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/ice-cube.png` | Alige, Arikel, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/ingot.png` | Wombat, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/ironore.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
@@ -436,19 +486,25 @@ File | Artists | Licenses
`graphics/items/generic/lazurite-shard.png` | V0id, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/leatherball.png` | Lizandra, Salmondine, Enchilado | GPLv2
`graphics/items/generic/leathersuitcase.png` | Nami, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/mushroomspores.png` | Reid | CC BY-SA 3.0
`graphics/items/generic/mylarin-dust.png` | :grey_question:, FotherJ, Salmondine | GPLv2
`graphics/items/generic/patch-leather.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/pearl.png` | Fate, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/petal.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/pink-flower-seed.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/pinkantennae.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/plushmouboo.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/powder.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/pumpkinseed.png` | Enchilado | GPLv2
`graphics/items/generic/presentbox.png` | Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/raindrop.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/rags-rotten.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/rattotail.png` | Reid, Alige | CC BY-SA 3.0
+`graphics/items/generic/rattoteeth.png` | Reid, Alige | CC BY-SA 3.0
`graphics/items/generic/rawlog.png` | Lien, Enchilado | GPLv2
`graphics/items/generic/rawtalisman.png` | Nami, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/realisticbrain.png` | Skipy, Enchilado | GPLv2
+`graphics/items/generic/redscorpionclaw.png` | Saulc | CC BY-SA 3.0
`graphics/items/generic/redstocking.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/reedbundle.png` | Salmondine, Enchilado | GPLv2
`graphics/items/generic/reinboo-stick.png` | :grey_question:, Enchilado | GPLv2
@@ -459,9 +515,12 @@ File | Artists | Licenses
`graphics/items/generic/santacookie.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/santaglobe.png` | Enchilado | GPLv2
`graphics/items/generic/scissors.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/scorpionclaw.png` | Saulc | CC BY-SA 3.0
`graphics/items/generic/scorpionstinger.png` | :grey_question:, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/scroll.png` | Adamaix, Enchilado | GPLv2
+`graphics/items/generic/seed-wonderwoodling.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/sealed-soul.png` | V0id, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/shipkey.png` | Hal9000, Reid | CC BY-SA 3.0
`graphics/items/generic/silkcocoon.png` | Fate, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/silk-sheet.png` | bh28, Bjorn, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/silverbell.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
@@ -470,17 +529,24 @@ File | Artists | Licenses
`graphics/items/generic/smallmushroom.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/snake-tongue.png` | Fate, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/snakeskin.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/snowflake.png` | mkwong98, Open Game Art, jesusalva | CC0
`graphics/items/generic/snowmanglobe.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/spectral-orb.png` | Kr0n05931, Enchilado | GPLv2
`graphics/items/generic/spell-book-page.png` | Salmondine, Enchilado | GPLv2
`graphics/items/generic/spell-book.png` | Salmondine, Enchilado | GPLv2
+`graphics/items/generic/seeds-dyable.png` | Coolkid782, Enchilado, HoraK-FDF | GPLv2, CC BY-SA 3.0
`graphics/items/generic/spice.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/squichyclaws.png` | Reid | CC BY-SA 3.0
`graphics/items/generic/squirrel-pelt.png` | Wombat, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/stinger.png` | Wombat, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/stone-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/strange-coin.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/generic/straw.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/terraniteore.png` | Kr0n05931, Enchilado | GPLv2
`graphics/items/generic/tongue.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/toothbrush.png` | Chay | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/tortugashell.png` | Reid | CC BY-SA 3.0
+`graphics/items/generic/tortugashellfragment.png` | Reid | CC BY-SA 3.0
`graphics/items/generic/transmutedflower` | Korcha, V0id, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/treasurekey.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/tuber.png` | Salmondine, Enchilado | GPLv2
@@ -489,6 +555,7 @@ File | Artists | Licenses
`graphics/items/generic/whitefur.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/wolvern-pelt.png` | Len, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/wolvern-tooth.png` | Alige, Nami, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/generic/wonder-wood.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/wooden-mouboo.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/wrapping-paper-dotted.png` | Lizandra, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/wrapping-paper-striped.png` | Lizandra, Enchilado | GPLv2, CC BY-SA 3.0
@@ -509,37 +576,57 @@ File | Artists | Licenses
`graphics/items/use/food/acornroasted.png` | Nami, V0id, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/use/food/apple.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/beer.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/use/food/bird-big-egg-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/use/food/bird-egg-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/use/food/bigcake.png` | Freeyorp101, Kr0n05931, Enchilado | GPLv2
`graphics/items/use/food/blueberries.png` | Meway, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/use/food/bread.png` | Coolkid782 | CC BY-SA 3.0
`graphics/items/use/food/cake.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/candy.png` | Kekskiller, Enchilado | GPLv2
`graphics/items/use/food/candycane.png` | Kekskiller, Enchilado | GPLv2
`graphics/items/use/food/candypumpkin.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/caramelapple.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/caramelcandy.png` | TMW-BR Team | GPLv2
+`graphics/items/use/food/carrot.png` | Enchilado, Reid | CC BY-SA 3.0
+`graphics/items/use/food/cheese.png` | Reid | CC BY-SA 3.0
`graphics/items/use/food/cherry.png` | Alige, Len, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/use/food/cherrycake.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/chickenleg.png` | Modanung, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/use/food/chocolatebar.png` | Kinwa, Enchilado | GPLv2
+`graphics/items/use/food/chocolatebiscuit.png` | jesusalva, TMW-Br | GPLv2
+`graphics/items/use/food/chocolatebunny.png` | TMW.Org Forum | GPLv2
`graphics/items/use/food/decorcandy.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/use/food/deliciouscookie.png` | Enchilado, Alige | CC BY-SA 3.0
+`graphics/items/use/food/dragonfruit.png` | seeds | GPL3/CC BY-SA 4.0
+`graphics/items/use/food/duckegg.png` | +seeds | CC BY-SA 4.0
`graphics/items/use/food/easteregg.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/use/food/fruit-salad.png` | Meway, jesusalva | MIT
+`graphics/items/use/food/fungus.png` | Enchilado | CC BY-SA 3.0
`graphics/items/use/food/gingerbreadman.png` | Kekskiller, Enchilado | GPLv2
`graphics/items/use/food/golden-apple.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/use/food/halfcroconut.png` | Hal9000 | CC BY-SA 3.0
`graphics/items/use/food/honey.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/jello.png` | Nmaligec, Salmondine, Enchilado | GPLv2
`graphics/items/use/food/jellyskull.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/juice.png` | Nmaligec, Skipy, Enchilado | GPLv2
`graphics/items/use/food/lady-fingers.png` | ChefChelios, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/use/food/lettuceleaf.png` | Reid | CC BY-SA 3.0
`graphics/items/use/food/lollipop.png` | :grey_question:, Wombat, Enchilado | GPLv2
`graphics/items/use/food/lollipop2.png` | Lizandra, Enchilado, wushin | GPLv2, CC BY-SA 3.0
+`graphics/items/use/food/manana.png` | Reid, IvanMorve | CC BY-SA 3.0
`graphics/items/use/food/marshmallow.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/milk.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/orange.png` | EJlol, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/use/food/orangecupcake.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/use/food/pear.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/use/food/piberries.png` | Reid | CC BY-SA 3.0
`graphics/items/use/food/pickled_beets.png` | Nami, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/use/food/plum.png` | Alige, Meway, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/use/food/potatoz.png` | Saulc, Joshua Taylor | CC BY-SA 3.0
+`graphics/items/use/food/pumpkin.png` | Enchilado | CC BY-SA 3.0
+`graphics/items/use/food/pumpkinjuice.png` | Enchilado, Reid | CC BY-SA 3.0
`graphics/items/use/food/roastedmaggot.png` | :grey_question:, Enchilado | GPLv2
+`graphics/items/use/food/sauerkraut.png` | Nmaligec, Salmondine, Enchilado, HoraK-FDF | GPLv2
`graphics/items/use/food/sex-candy.png` | TMW-BR Team | GPLv2
`graphics/items/use/food/shock-candy.png` | Kekskiller, Enchilado | GPLv2
`graphics/items/use/food/skull-mug.png` | :grey_question:, Enchilado | GPLv2
@@ -557,6 +644,17 @@ File | Artists | Licenses
#### Misc Usable Items
File | Artists | Licenses
---- |:-------:|:--------:
+`graphics/items/use/others/anchor-stone.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/use/others/anchor-stone-anchored.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/use/others/arrow_bundle.png` Irukard, Wellvin | GPLv2, CC BY-SA 3.0
+`graphics/items/use/others/croconut.png` | Hal9000 | CC BY-SA 3.0
+`graphics/items/use/others/rubberducky.png` | Salmondine, dangerDuck | GPLv2
+`graphics/items/use/others/lightning-orb.png` | Hello=), Horak-FDF | GPLv2, CC BY-SA 4.0
+`graphics/items/use/others/shovel.png` | Alige, Reid | CC BY-SA 3.0
+`graphics/items/use/others/shovel-legendary.png` | Alige, Reid, ?, HoraK-FDF | CC BY-SA 3.0
+`graphics/items/use/others/treasuremap.png` | Diego, TMW-Br | GPLv2
+`graphics/items/use/others/treasuremap2.png` | Salmondine | GPLv2
+`graphics/items/use/others/treasuremap-legendary.png` | Salmondine, ?, HoraK-FDF | GPLv2
`graphics/items/use/others/warp-towel.png` | Bjorn, ChefChelios | GPLv2, CC BY-SA 3.0
#### Potions
@@ -567,20 +665,20 @@ File | Artists | Licenses
`graphics/items/use/potions/c.png` | Varuna, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/use/potions/d.png` | Varuna, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/use/potions/e.png` | Fate, Enchilado | GPLv2, CC BY-SA 3.0
+`graphics/items/use/potions/g.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/use/potions/skull.png` | Varuna | GPLv2, CC BY-SA 3.0
#### Scrolls
File | Artists | Licenses
---- |:-------:|:--------:
`graphics/items/use/scrolls/firescroll.png` | Adamaix, Enchilado | GPLv2
-
+`graphics/items/use/scrolls/scroll-shadow.png` | Adamaix, Enchilado, HoraK | GPLv2
### Minimaps
File | Artists | Licenses
---- |:-------:|:--------:
`graphics/minimaps/*.png` | The Mana World Development Team | GPLv2
-
### Particles
File | Artists | Licenses
---- |:-------:|:--------:
@@ -590,12 +688,17 @@ File | Artists | Licenses
`graphics/particles/arrowh-banshee.png` | :grey_question:, V0id | GPLv2
`graphics/particles/blaze.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/bubble_8px.png` | Crush | GPLv2, CC BY-SA 3.0
+`graphics/particles/bubble-ani_6x6.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/bubble-ani_8x8.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/anibubble_8px.png` | Crush,wushin | GPLv2, CC BY-SA 3.0
`graphics/particles/anibubble_8px_green.png` | Crush,wushin | GPLv2, CC BY-SA 3.0
+`graphics/particles/beam.png` | Ledmitz | GPLv2, CC BY-SA 3.0
+`graphics/particles/beam-crit.png` | Ledmitz | GPLv2, CC BY-SA 3.0
`graphics/particles/bubble_12px.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/bubble_32px.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/casket-trap_96x96.png` | Skipy | GPLv2
`graphics/particles/dart.png` | Ledmitz | GPLv2, CC BY-SA 3.0
+`graphics/particles/flame-8x8.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/fog-medium-a.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/fog-medium-b.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/fog-medium-c.png` | Crush | GPLv2, CC BY-SA 3.0
@@ -607,6 +710,8 @@ File | Artists | Licenses
`graphics/particles/mist-face-a.png` | Nmaligec | GPLv2
`graphics/particles/mist-face-b.png` | Nmaligec | GPLv2
`graphics/particles/monster-troll-foefire.particle.png` | FotherJ | GPLv2, CC BY-SA 3.0
+`graphics/particles/monster-rotter-crit.png` | Ledmitz | GPLv2, CC BY-SA 3.0
+`graphics/particles/monster-rotter-vomit.png` | Ledmitz | GPLv2, CC BY-SA 3.0
`graphics/particles/orb-large.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/orb-medium.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/orb-small.png` | Crush | GPLv2, CC BY-SA 3.0
@@ -614,12 +719,20 @@ File | Artists | Licenses
`graphics/particles/pool_32x59.particle.png` | Skipy | GPLv2
`graphics/particles/pool_65x27.particle.png` | Skipy | GPLv2
`graphics/particles/pool-undyed.png` | Alige, Skipy | GPLv2
+`graphics/particles/raindrop-hit_16x16.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/raindrop-hit_8x8.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/raindrop_3x5.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/raindrop_8x8.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/rainerang.png` | Ledmitz | GPLv2, CC BY-SA 3.0
`graphics/particles/snowball.png` | Ledmitz, Reid | GPLv2, CC BY-SA 3.0
`graphics/particles/star-medium.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/star-small.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/waterfall-a.png` | Modanung | GPLv2, CC BY-SA 3.0
`graphics/particles/manapearl_4x4.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
-
+`graphics/particles/snowflake-7x7.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/snowflake-9x9.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/hex-facet-outline.png` | ?, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/particles/hex-facet-outline-50.png` | ?, HoraK-FDF | GPLv2, CC BY-SA 4.0
### Skills
File | Artists | Licenses
@@ -650,8 +763,6 @@ File | Artists | Licenses
---- |:-------:|:--------:
`graphics/sprites/emote.png` | Alige, Arikel, DerLoisl, Modanung, Reid | GPLv2, CC BY-SA 3.0
`graphics/sprites/error.png` | Wushin | GPLv2, CC BY-SA 3.0
-`graphics/sprites/equipment/angel-wings.png` | :grey_question:, Varuna, Arikel | GPLv2
-`graphics/sprites/equipment/shields/dragon.png` | ?, TMW-Br Team | GPLv2
`graphics/sprites/races/savior-male.png` | Modanung, Talaroc, Alige, Reid, Saphy, Jesusalva | CC BY-SA 4.0 (GPLv3)
#### Status Icons
@@ -662,6 +773,26 @@ File | Artists | Licenses
`graphics/sprites/icons/slow-poison.png` | Freeyorp101 | GPLv2, CC BY-SA 3.0
`graphics/sprites/icons/spell-haste.png` | Graingert | GPLv2
`graphics/sprites/icons/spell-protection-generic.png` | Freeyorp101 | GPLv2, CC BY-SA 3.0
+`graphics/sprites/icons/cant-move.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/slow-move.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/weight-big.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/weight-small.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-cg.png` | Hocus, HoraK-FDF | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/icons/spell-cooldown-mg.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-mt.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-ench.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-koy.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-ar.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-ar-outline.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-r.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-r-outline.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-upmarmu.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/spell-cooldown-sg.png` | Hocus, HoraK-FDF | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/icons/spell-attack-generic-outline.png` | :grey_question:, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/feather-outline.png` | :grey_question:, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/hidden-outline.png` | :grey_question:, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/invisible-outline.png` | :grey_question:, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/potion-g.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
#### Actor Models
File | Artists | Licenses
@@ -671,6 +802,11 @@ File | Artists | Licenses
`graphics/sprites/model/male.png` | Modanung, Skipy, Talaroc, Wombat, Nami, Wushin | GPLv2
`graphics/sprites/model/city-emblems.png` | Alige, Wushin | GPLv2
+#### Amulets
+File | Artists | Licenses
+---- |:-------:|:--------:
+`graphics/sprites/equipment/amulets/angel-wings.png` | :grey_question:, Varuna, Arikel | GPLv2
+
#### Weapons
File | Artists | Licenses
---- |:-------:|:--------:
@@ -678,18 +814,20 @@ File | Artists | Licenses
`graphics/sprites/equipment/weapons/axe-stab.png` | :grey_question:, Wombat, Wushin, Varuna | GPLv2
`graphics/sprites/equipment/weapons/bow-banshee.png` | V0id | GPLv2
`graphics/sprites/equipment/weapons/bow-slingshot.png` | Chef Chelios, wushin | GPLv2
+`graphics/sprites/equipment/weapons/dagger-setzer.png` | :grey_question:, TMW-Br Team | GPLv2
`graphics/sprites/equipment/weapons/null.png` | Ledmitz | CC0
`graphics/sprites/equipment/weapons/polearm-blunt.png` | :grey_question:, Wombat, Wushin | GPLv2
`graphics/sprites/equipment/weapons/polearm-chop.png` | :grey_question:, Wombat, Wushin | GPLv2
`graphics/sprites/equipment/weapons/polearm-spear.png` | :grey_question:, Wombat, Wushin | GPLv2
`graphics/sprites/equipment/weapons/polearm-stab.png` | :grey_question:, Wombat, Wushin, Varuna | GPLv2
+`graphics/sprites/equipment/weapons/sword-beheader.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/sprites/equipment/weapons/sword-deadsword.png` | :grey_question:, Wombat, Wushin | GPLv2
`graphics/sprites/equipment/weapons/sword-long.png` | ChefChelios, Wushin | GPLv2
+`graphics/sprites/equipment/weapons/sword-sandcutter.png` | ?, TMW-Br Team, HoraK-FDF | GPLv2
`graphics/sprites/equipment/weapons/sword-short.png` | ChefChelios, Wushin | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/weapons/wand-deathshand.png` | :grey_question:, Wombat, Wushin | GPLv2
`graphics/sprites/equipment/weapons/wand.png` | :grey_question:, Wushin | GPLv2
-`graphics/sprites/equipment/weapons/beheader.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
-`graphics/sprites/equipment/weapons/gun.png` | Skipy, Jesusalva | GPLv2
+`graphics/sprites/equipment/weapons/flintlock.png` | Skipy, Jesusalva | GPLv2
#### Chest
File | Artists | Licenses
@@ -733,8 +871,8 @@ File | Artists | Licenses
`graphics/sprites/equipment/chest/vnecksweater-male.png` | Saphy | GPLv2
`graphics/sprites/equipment/chest/saviorarmor-male.png` | Saphy, slave | GPLv2
`graphics/sprites/equipment/chest/saviorarmor-female.png` | Saphy, slave | GPLv2
-`graphics/sprites/equipment/chest/redknightarmor-female.png` | ?, TMW-Br Team, Saulc | GPLv2
-`graphics/sprites/equipment/chest/redknightarmor-male.png` | ?, TMW-Br Team, Saulc | GPLv2
+`graphics/sprites/equipment/chest/redknightarmor-female.png` | :grey_question:, TMW-Br Team, Saulc | GPLv2
+`graphics/sprites/equipment/chest/redknightarmor-male.png` | :grey_question:, TMW-Br Team, Saulc | GPLv2
#### Feet
File | Artists | Licenses
@@ -800,18 +938,23 @@ File | Artists | Licenses
`graphics/sprites/equipment/head/goggles.png` | Fettsack | GPLv2
`graphics/sprites/equipment/head/gradcap.png` | Arilious | GPLv2
`graphics/sprites/equipment/head/guyfawkes.png` | 5t3v3 | GPLv2
+`graphics/sprites/equipment/head/headslime.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/sprites/equipment/head/heart-glasses.png` | Lizandra | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/highpriest-crown.png` | Black Don | GPLv2
`graphics/sprites/equipment/head/infantryhelm.png` | Black Don | GPLv2
`graphics/sprites/equipment/head/inspector-hat.png` | ? | GPLv2
`graphics/sprites/equipment/head/jestermask.png` | Spit23 | GPLv2
`graphics/sprites/equipment/head/knighthelm.png` | Black Don | GPLv2
+`graphics/sprites/equipment/head/knighthelm-dyable.png` | Black Don, HoraK-FDF | GPLv2
`graphics/sprites/equipment/head/knit-cap.png` | Salmondine | GPLv2
+`graphics/sprites/equipment/head/leprechaunhat.png` | Scorpius, QOAL, Saulc | GPLv2
+`graphics/sprites/equipment/head/leprechaunhead.png` | Ledmitz, (leprechaunhat.png | Scorpius, QOAL, Saulc | GPLv2) | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/magicgmtophat.png` | QOAL, V0id | GPLv2
`graphics/sprites/equipment/head/mask.png` | QOAL | GPLv2
`graphics/sprites/equipment/head/minershat.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/monocle.png` | Skipy | GPLv2
`graphics/sprites/equipment/head/monster-skull-helm.png` | Black Don | GPLv2
+`graphics/sprites/equipment/head/moonshroomhat.png` | Saulc, Cassy | CC BY-SA 3.0
`graphics/sprites/equipment/head/mushroom.png` | crevost2, Yuuki | GPLv2
`graphics/sprites/equipment/head/nutcrackerhat.png` | Chayenne, :grey_question:, Alige, Lizandra, Salmondine | GPLv2
`graphics/sprites/equipment/head/operamask.png` | Meway | GPLv2, CC BY-SA 3.0
@@ -826,6 +969,7 @@ File | Artists | Licenses
`graphics/sprites/equipment/head/pvp-cap.png` | Black Don, kytty | GPLv2
`graphics/sprites/equipment/head/pvpcap-golden.png` | Black Don, kytty, Ledmitz | GPLv2
`graphics/sprites/equipment/head/rabbit-ears.png` | Black Don, Harufym | GPLv2
+`graphics/sprites/equipment/head/rainhroomhat.png` | Saulc, Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/sprites/equipment/head/rangerhat.png` | Pauan | GPLv2
`graphics/sprites/equipment/head/rednose.png` | ChefChelios, UntamedMonkey | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/rosehat.png` | Nami, skipy, Alige | GPLv2
@@ -834,13 +978,18 @@ File | Artists | Licenses
`graphics/sprites/equipment/head/shroom.png` | crevost2, Yuuki | GPLv2
`graphics/sprites/equipment/head/silkheadband.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/skullmask.png` | Beelzebub, FotherJ | GPLv2
+`graphics/sprites/equipment/head/skullmask-dyable.png` | Beelzebub, FotherJ, HoraK-FDF | GPLv2
`graphics/sprites/equipment/head/smileycap.png` | +seeds | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/snowgoggles.png` | VXD | GPLv2, CC BY-SA 3.0
+`graphics/sprites/equipment/head/snowshroomhat.png` | Saulc, Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/sprites/equipment/head/sunglasses.png` | UntamedMonkey | GPLv2, CC BY-SA 3.0
+`graphics/sprites/equipment/head/sunshroomhat.png` | Saulc, Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/sprites/equipment/head/terranitehelm.png` | Kr0n05931 | GPLv2
`graphics/sprites/equipment/head/thin-crown.png` | Black Don, V0id | GPLv2
`graphics/sprites/equipment/head/tophat.png` | QOAL | GPLv2
+`graphics/sprites/equipment/head/underworld-mask.png` | Saulc, Dustman, wushin | CC BY-SA 3.0
`graphics/sprites/equipment/head/warlordhelm.png` | Black Don | GPLv2
+`graphics/sprites/equipment/head/wickedmushroomhat.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
`graphics/sprites/equipment/head/witch-doctor-mask.png` | Black Don | GPLv2
`graphics/sprites/equipment/head/witch-hat.png` | Meway | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/wizard-hat.png` | Chayenne, Crush, Hal9000 | GPLv2, CC BY-SA 3.0
@@ -849,7 +998,6 @@ File | Artists | Licenses
`graphics/sprites/equipment/head/shades.png` | jak1 | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/assassin-mask.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
-
#### Legs
File | Artists | Licenses
---- |:-------:|:--------:
@@ -868,6 +1016,15 @@ File | Artists | Licenses
`graphics/sprites/equipment/legs/terranite-female.png` | Kr0n05931 | GPLv2
`graphics/sprites/equipment/legs/terranite-male.png` | Kr0n05931 | GPLv2
+#### Shields
+File | Artists | Licenses
+---- |:-------:|:--------:
+`graphics/sprites/equipment/shields/dragon.png` | ?, TMW-Br Team | GPLv2
+`graphics/sprites/equipment/shields/leather.png` | ?, Irukard, TMW-Br Team | GPLv2
+`graphics/sprites/equipment/shields/steel.png` | ?, Irukard, TMW-Br Team | GPLv2
+`graphics/sprites/equipment/shields/steel-dyable.png` | ?, Irukard, TMW-Br Team, HoraK-FDF | GPLv2
+`graphics/sprites/equipment/shields/wooden.png` | Enchilado | GPL 3.0/CC BY-SA 3.0
+
#### Override
File | Artists | Licenses
---- |:-------:|:--------:
@@ -905,59 +1062,93 @@ File | Artists | Licenses
`graphics/sprites/monsters/bandit-lord.png` | Alige, Skipy, Wombat | GPLv2
`graphics/sprites/monsters/bandit.png` | Alige, Skipy, Wombat | GPLv2
`graphics/sprites/monsters/bat.png` | neoriceisgood | GPLv2
+`graphics/sprites/monsters/beehive.png` | Len, TMW.org | CC BY-SA 4.0
`graphics/sprites/monsters/bluepar.png` | Crush, Meway | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/bobone.png` | Pateame, HoraK-FDF | GPLv2
+`graphics/sprites/monsters/brainblow.png` | Ledmitz | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/butterfly.png` | Meway | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/cave-maggot-giant.png` | :grey_question:, Neoriceisgood | GPLv2
`graphics/sprites/monsters/cave-maggot.png` | :grey_question:, Neoriceisgood | GPLv2
`graphics/sprites/monsters/christmas-mouboo.png` | Cassy, Yuuki | GPLv2
`graphics/sprites/monsters/clover.png` | 5t3v3 | GPLv2
+`graphics/sprites/monsters/croc.png` | Reid, Coolkid782, Enchilado | CC BY-SA 3.0
+`graphics/sprites/monsters/darkduck.png` | Meway, ?, TMW-Br, dangerDuck | CC BY-SA 3.0
`graphics/sprites/monsters/demon.png` | FotherJ, V0id | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/dragon.png` | Lunovox, Jesusalva | GPLv2
`graphics/sprites/monsters/duck.png` | Meway | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/element-ball.png` | Reid | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/wonderwoodling.png` | macmanmatty, jesusalva | CC BY-SA 4.0
+`graphics/sprites/monsters/frog-big.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/frog-small.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/ghost-pumpkin.png` | :grey_question:, Modanung | GPLv2
`graphics/sprites/monsters/goblin-fire.png` | :grey_question:, Neoriceisgood | GPLv2
`graphics/sprites/monsters/goblin-ice.png` | :grey_question:, Neoriceisgood | GPLv2
`graphics/sprites/monsters/golem.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/golem-blackcrystal.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/golem-crystal.png` | Hocus, HoraK-FDF | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/golem-dyable.png` | Hocus, HoraK-FDF | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/golem-red.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/grass.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/monsters/junglefowl.png` | Pateame, Virtual Reality | GPLv2
`graphics/sprites/monsters/larvespa.png` | Arikel | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/lizard.png` | Len, Pateame | GPLv2
`graphics/sprites/monsters/logmonster.png` | FotherJ | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/maggot-giant.png` | :grey_question:, Neoriceisgood | GPLv2
`graphics/sprites/monsters/maggot.png` | Neoriceisgood | GPLv2
-`graphics/sprites/monsters/mana-bug.png` | Meway | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/mananatree.png` | Len, Saphy, Reid | CC BY-SA 3.0
+`graphics/sprites/monsters/mana-bug.png` | Meway, HoraK-FDF | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/mega-mana-bug.png` | Meway, HoraK-FDF | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/mister-prickles.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/moggun.png` | Modanung, Pateame | GPLv2
`graphics/sprites/monsters/mouboo.png` | Yuuki | GPLv2
`graphics/sprites/monsters/mouboo-demonic.png` | Cassy, Yuuki | GPLv2
+`graphics/sprites/monsters/moubootaur.png` | Hocus | MIT
+`graphics/sprites/monsters/montblanc.png` | KokoroReflections (piratehat.png | Fettsack | GPLv2) (cannon | AntumDeluge | CC BY 3.0, OGA BY 3.0) | CC BY 4.0
+`graphics/sprites/monsters/mushroom-moon.png` | Cassy, Yuuki | GPLv2
+`graphics/sprites/monsters/mushroom-rain.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
`graphics/sprites/monsters/mushroom-red.png` | Yuuki | GPLv2
+`graphics/sprites/monsters/mushroom-snow.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
`graphics/sprites/monsters/mushroom-spiky.png` | Yuuki | GPLv2
+`graphics/sprites/monsters/mushroom-sun.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
`graphics/sprites/monsters/mushroom-void.png` | Cassy, Yuuki, Jesusalva | GPLv2
`graphics/sprites/monsters/mushroom-wicked.png` | Cassy, Yuuki | GPLv2
-`graphics/sprites/monsters/mushroom-moon.png` | Cassy, Yuuki | GPLv2
`graphics/sprites/monsters/nutcracker.png` | Chayenne, :grey_question:, Alige, Lizandra, Salmondine | GPLv2
`graphics/sprites/monsters/penguin.png` | Fother | GPLv2
`graphics/sprites/monsters/pinkie.png` | Crush | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/piou-king.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/plant.png` | Crush, Seradest | GPLv2
+`graphics/sprites/monsters/ratto.png` | Coolkid782 | CC BY-SA 3.0
`graphics/sprites/monsters/reaper.png` | Alige, Len, Reid, Skipy | GPLv2
+`graphics/sprites/monsters/rot.png` | Ledmitz | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/rotter.png` | Ledmitz | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/sasquatch.png` | Xtreem | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/serqet.png` | ChefChelios | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/silkworm.png` | Fate | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/skeleton.png` | FotherJ | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/skull-fire.png` | Modanung | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/skull-golden.png` | ChefChelios, Saulc | CC BY-SA 3.0
`graphics/sprites/monsters/skull-ice.png` | ChefChelios | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/skull-poison.png` | Modanung | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/skull-warlord.png` | Saulc, Modanung, HoraK-FDF | CC BY-SA 3.0
`graphics/sprites/monsters/sleeping-bandit.png` | Alige, Skipy, V0id, Wombat | GPLv2
`graphics/sprites/monsters/slime.png` | :grey_question:, Neoriceisgood | GPLv2
+`graphics/sprites/monsters/slime-super.png` | Reid, HoraK-FDF | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/snail.png` | FotherJ | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/snake-cave.png` | :grey_question:, Neoriceisgood | GPLv2
`graphics/sprites/monsters/snake.png` | :grey_question:, Neoriceisgood | GPLv2
`graphics/sprites/monsters/snowflower.png` | Salmondine | GPLv2
+`graphics/sprites/monsters/spelt.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/sprites/monsters/spider.png` | FotherJ | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/spider-crystal.png` | FotherJ, HoraK-FDF | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/spider-queen.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/spider-queen-crystal.png` | Hocus, HoraK-FDF | MIT, GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/spinning-scythe.png` | Nmaligec, Skipy | GPLv2
`graphics/sprites/monsters/spirit-demonic.png` | :grey_question:, Neoriceisgood, V0id | GPLv2
`graphics/sprites/monsters/squirrel.png` | FotherJ, Wombat | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/terranite-mask.png` | Kr0n05931 | GPLv2
`graphics/sprites/monsters/tengu.png` | Hocus | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/terranite.png` | Kr0n05931 | GPLv2
+`graphics/sprites/monsters/tortuga.png` | Coolkid782, Reid | CC BY-SA 3.0
`graphics/sprites/monsters/troll.png` | FotherJ | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/vampire-bat.png` | Meway | GPLv2
`graphics/sprites/monsters/vespa.png` | Arikel | GPLv2, CC BY-SA 3.0
@@ -975,9 +1166,11 @@ File | Artists | Licenses
`graphics/sprites/monsters/accessories/mouboo-red-saddle.png` | Cassy | GPLv2
`graphics/sprites/monsters/accessories/mouboo-red-shoes.png` | Cassy | GPLv2
`graphics/sprites/monsters/accessories/mouboo-santa-hat.png` | Cassy | GPLv2
+`graphics/sprites/monsters/accessories/ratto-tail.png` | Coolkid782 | CC BY-SA 3.0
`graphics/sprites/monsters/accessories/slime-bubble.png` | Fother | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/accessories/slime-littleslime.png` | Wombat | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/accessories/slime-seajelly.png` | FotherJ | GPLv2, CC BY-SA 3.0
+`graphics/sprites/monsters/accessories/slime-super-crown.png` | Reid, HoraK-FDF | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/accessories/mushroom-base1-arms1.png` | FotherJ | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/accessories/mushroom-base1-cap1.png` | FotherJ | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/accessories/mushroom-base1-cap1-spikes.png` | FotherJ | GPLv2, CC BY-SA 3.0
@@ -991,11 +1184,23 @@ File | Artists | Licenses
---- |:-------:|:--------:
`graphics/sprites/npcs/airship.png` | Modanung | GPLv2
`graphics/sprites/npcs/anon.png` | Lien, Modanung, Reid, Crush, Fother, Nami, Talaroc | CC-BY-SA 3.0
+`graphics/npcs/blanc.png` | KokoroReflections, Hocus (piratehat.png | Fettsack | GPLv2) | CC BY 4.0
`graphics/sprites/npcs/bones.png` | FotherJ, Salmondine | GPLv2
`graphics/sprites/npcs/childoutfits.png` | Milla, Mrgrey, Nami, Salmondine, Wombat | GPLv2
`graphics/sprites/npcs/childposes.png` | Milla, Mrgrey, Nami, Salmondine | GPLv2
`graphics/sprites/npcs/christmas_npcs.png` | :grey_question:, Alige, Lizandra, Salmondine | GPLv2
`graphics/sprites/npcs/christmastree.png` | Chayenne, :grey_question:, Alige, Hal9000, Enchilado, Kekskiller, FotherJ | GPLv2
+`graphics/sprites/npcs/dig-01.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-02.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-03.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-04.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-01-flow.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-02-flow.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-04-flow.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-01-glow.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-02-glow.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-03-glow.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/npcs/dig-04-glow.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/sprites/npcs/furnace.png` | Salmondine | GPLv2
`graphics/sprites/npcs/hugenpcs.png` | ChefChelios, Nami | GPLv2, CC BY-SA 3.0
`graphics/sprites/npcs/npc-beerguyghost.png` | Reid, Skipy | GPLv2
@@ -1022,6 +1227,7 @@ File | Artists | Licenses
`graphics/sprites/npcs/npcs.png` | :grey_question:, Crush, Fate, Haay, Lien, Qwerty Dragon, Salmondine, Skipy, Wombat | GPLv2
`graphics/sprites/npcs/npcs2.png` | Reid, Salmondine, Skipy | GPLv2
`graphics/sprites/npcs/outfits.png` | Wombat | GPLv2, CC BY-SA 3.0
+`graphics/sprites/npcs/portal_32x64-01.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/sprites/npcs/poses.png` | Lien, Meemixes, Salmondine, Wombat | GPLv2
`graphics/sprites/npcs/saboteur.png` | Wombat | GPLv2, CC BY-SA 3.0
`graphics/sprites/npcs/sages.png` | Alige, Nami, Salmondine | GPLv2
@@ -1032,6 +1238,8 @@ File | Artists | Licenses
`graphics/sprites/npcs/thermin_npcs.png` | Lien, Nami, Salmondine, Varuna | GPLv2
`graphics/sprites/npcs/xmas-palm.png` | Chayenne, :grey_question:, Enchilado | GPLv2
`graphics/sprites/npcs/xmastree-nosnow.png` | Chayenne, :grey_question:, Alige, Hal9000, Enchilado, Kekskiller, FotherJ | GPLv2
+`graphics/sprites/npcs/teapot.png` | Reid | CC-BY-SA 3.0
+
### Tilesets
File | Artists | Licenses
@@ -1058,6 +1266,7 @@ File | Artists | Licenses
`graphics/tiles/cave2_x2.png` | :grey_question:, Bjorn, Octalot, Len, wushin | GPLv2
`graphics/tiles/clock.png` | Salmondine | GPLv2
`graphics/tiles/collision.png` | Bjorn | GPLv2
+`graphics/tiles/christmas.png` | ???, TMW.org | ???
`graphics/tiles/crypt1.png` | Black Don, Crush, Irukard, Skipy, Spit23, Wushin | GPLv2
`graphics/tiles/crypt2.png` | Black Don, Crush, Irukard, Skipy, Spit23, Wushin | GPLv2
`graphics/tiles/crypt2_x4.png` | Black Don, Crush, Irukard, Skipy, Spit23, Wushin | GPLv2
@@ -1093,6 +1302,8 @@ File | Artists | Licenses
`graphics/tiles/desert_city.png` | Modanung, Wushin | GPLv2, CC BY-SA 3.0
`graphics/tiles/desert_city_x2.png` | Modanung, Wushin | GPLv2, CC BY-SA 3.0
`graphics/tiles/desert_city_x4.png` | Modanung, Wushin | GPLv2, CC BY-SA 3.0
+`graphics/tiles/edges_black_rotated.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/tiles/edges_ice_rotated.png` | ?, Tametomo - Aethyra, HoraK-FDF | GPL 3.0
`graphics/tiles/evil_obelisk.png` | Alige, ChefChelios, Leela | GPLv2
`graphics/tiles/forest_cover.png` | Len | GPLv2, CC BY-SA 3.0
`graphics/tiles/forest.png` | Len | GPLv2
@@ -1110,9 +1321,9 @@ File | Artists | Licenses
`graphics/tiles/snow_ground.png` | bagzie, gumi, :grey_question: | GPLv2
`graphics/tiles/snow_tree_x3.png` | :grey_question:, Alige, Hal9000 | GPLv2
`graphics/tiles/snow_village.png` | bagzie, gumi, :grey_question: | GPLv2
-`graphics/tiles/snow_village_x3.png` | bagzie, gumi, :grey_question: | GPLv2
+`graphics/tiles/snow_village_x3.png` | bagzie, gumi, :grey_question:, HoraK-FDF | GPLv2
`graphics/tiles/snow_village_x4.png` | bagzie, gumi, :grey_question: | GPLv2
-`graphics/tiles/snow_village2.png` | bagzie, gumi, :grey_question: | GPLv2
+`graphics/tiles/snow_village2.png` | bagzie, gumi, :grey_question:, HoraK-FDF | GPLv2
`graphics/tiles/snow_x2.png` | Nami, Salmondine, Arkhen | (CC BY 4.0)
`graphics/tiles/snow_x4.png` | gumi | GPLv2
`graphics/tiles/snow.png` | bagzie, gumi, wushin, :grey_question: | GPLv2
@@ -1144,6 +1355,25 @@ File | Artists | Licenses
`graphics/tiles/woodland_x8.png` | Len | GPLv2, CC BY-SA 3.0
`graphics/tiles/arrows.png` | gumi | CC0
+### Aethyra Tilesets
+`graphics/tiles/aethyra/snow.png` | ?, Tametomo - Aethyra | GPL 3.0
+`graphics/tiles/aethyra/snow_building.png` | ?, Tametomo - Aethyra | GPL 3.0
+`graphics/tiles/aethyra/snow_roof.png` | ? ,Tametomo - Aethyra | GPL 3.0
+`graphics/tiles/aethyra/snow_water.png` | ?, Tametomo - Aethyra | GPL 3.0
+`graphics/tiles/aethyra/snowset.png` | ?, Tametomo - Aethyra | GPL 3.0
+
+### Br Tilesets
+`graphics/tilesets/br/christmastree.png` | ?, TMW-BR, TMW Org | GPL 2.0
+`graphics/tilesets/br/snow_x3.png` | ?, TMW-BR | GPL 2.0
+
+### Lof Tilesets
+`graphics/tiles/lof/warp_gates.png` | ?, LoF | GPL 2.0
+`graphics/tiles/lof/woodland_indoor.png` | ?, LoF | GPL 2.0
+`graphics/tiles/lof/woodland_indoor_extra.png` | ?, LoF, Jesusalva | GPL 2.0
+
+### ML Tilesets
+`graphics/tiles/ml/cabana_in_fada.png` | Lunovox?, TMW-Br | GPLv2
+
## Sounds
File | Artists | Licenses
---- |:-------:|:--------:
@@ -1158,7 +1388,9 @@ File | Artists | Licenses
`sfx/env/env-waterfall1.ogg` | Dariuna | GPLv2
`sfx/env/fart.ogg` | unknown | CC0
`sfx/env/flame.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/env/rubber_duck.ogg` | Ledmitz | GPLv2, CC0
`sfx/env/spawn_burst.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/env/tiny_bell.ogg` | SamuelGremaud, Ledmitz | CC0
`sfx/env/zap.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/magic/astral.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/magic/betsanc-on.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
@@ -1194,8 +1426,22 @@ File | Artists | Licenses
`sfx/monsters/bee/bee-hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/bee/bee-miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/bee/bee-move1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/brainblow-die1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/brainblow-die2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/brainblow-die3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/casket-monster/casket-monster.ogg` | Dariuna | GPLv2
`sfx/monsters/cavesnake/cavesnake-hit1.ogg` | Krazyjakee | GPLv2
+`sfx/monsters/croc/hit1.ogg` | Ezili, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/croc/hit2.ogg` | Ezili, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/croc/hurt1.ogg` | Ezili, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/croc/hurt2.ogg` | Ezili, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/croc/hurt3.ogg` | Ezili, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/croc/miss1.ogg` | Ezili, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/croc/spawn1.ogg` | Ezili, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/crocotree/die1.ogg` | KomradeJack, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/crocotree/hurt1.ogg` | KomradeJack, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/crocotree/hurt2.ogg` | KomradeJack, Reid, Socapex | CC BY-SA 3.0
+`sfx/monsters/crocotree/hurt3.ogg` | KomradeJack, Reid, Socapex | CC BY-SA 3.0
`sfx/monsters/fallen/fallen-die1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/fallen/fallen-die2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/fallen/fallen-hurt1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
@@ -1215,11 +1461,21 @@ File | Artists | Licenses
`sfx/monsters/flower/flower-hit1.ogg` | Cosmostrator | GPLv2
`sfx/monsters/flower/flower-hit2.ogg` | Cosmostrator | GPLv2
`sfx/monsters/flower/flower-miss1.ogg` | Cosmostrator | GPLv2
+`sfx/monsters/floyd/floyd-die1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-hurt1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-hurt2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-hurt3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-move1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-move2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-move3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-move4.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/floyd/floyd-move5.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/fluffy/fluffy-hit1.ogg` | Cosmostrator | GPLv2
`sfx/monsters/fluffy/fluffy-hit2.ogg` | Cosmostrator | GPLv2
`sfx/monsters/fluffy/fluffy-hit3.ogg` | Cosmostrator | GPLv2
`sfx/monsters/fluffy/fluffy-hurt1.ogg` | Cosmostrator | GPLv2
`sfx/monsters/fluffy/fluffy-miss1.ogg` | Cosmostrator | GPLv2
+`sfx/monsters/frostiana/hit1.ogg` | Cosmostrator | CC BY-SA 3.0
`sfx/monsters/golem/die.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/golem/hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/golem/miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
@@ -1234,6 +1490,7 @@ File | Artists | Licenses
`sfx/monsters/maggot/maggot-hit1.ogg` | Cosmostrator | GPLv2
`sfx/monsters/maggot/maggot-hit2.ogg` | Cosmostrator | GPLv2
`sfx/monsters/maggot/maggot-miss1.ogg` | Cosmostrator | GPLv2
+`sfx/monsters/montblanc/montblanc-die1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/ghost/ghost-die1.ogg` | Ledmitz (ghostly-moans / Alivvie / CC by SA 3.0) | GPLv2, CC BY-SA 3.0
`sfx/monsters/ghost/ghost-move1.ogg` | Ledmitz (ghostly-moans / Alivvie / CC by SA 3.0) | GPLv2, CC BY-SA 3.0
`sfx/monsters/ghost/ghost-move2.ogg` | Ledmitz (ghostly-moans / Alivvie / CC by SA 3.0) | GPLv2, CC BY-SA 3.0
@@ -1251,10 +1508,25 @@ File | Artists | Licenses
`sfx/monsters/pollett/pollett-hurt5.ogg` | clort | GPLv2, CC BY-SA 3.0
`sfx/monsters/pollett/pollett-hurt6.ogg` | clort | GPLv2, CC BY-SA 3.0
`sfx/monsters/pumpkin/pumpkin-explosion.ogg` | Ledmitz (firework_explosion_fizz.wav / soundscalpel.co / CC BY 3.0) | GPLv2, CC BY-SA 3.0
+`sfx/monsters/ratto/die1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/ratto/hit1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/ratto/hit2.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/ratto/hurt1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/ratto/spawn1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
`sfx/monsters/reaper/reaper-die1.ogg` | Ledmitz, nmaligec | GPLv2, CC BY-SA 3.0
`sfx/monsters/reaper/reaper-hit1.ogg` | Ledmitz, nmaligec | GPLv2, CC BY-SA 3.0
`sfx/monsters/reaper/reaper-hurt1.ogg` | nmaligec | GPLv2
`sfx/monsters/reaper/reaper-move1.ogg` | Ledmitz, nmaligec | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/crit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/die1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/die2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/hit2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/miss2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/move1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/move2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/rotter/move3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/sasquatch/sasquatch-move1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/sasquatch/sasquatch-move2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/scorpion/scorpion-hit1.ogg` | Cosmostrator | GPLv2
@@ -1290,21 +1562,33 @@ File | Artists | Licenses
`sfx/monsters/slime/slime-hurt3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/slime/slime-move1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/slime/slime-move2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-die1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-hit2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-hit3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-hurt1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-hurt2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-hurt3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-miss2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-miss3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-move1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/slime-super/slime-super-move2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/snail/snail-die1.ogg` | alpha [Ledmitz] | GPLv2
`sfx/monsters/snail/snail-hit1.ogg` | alpha [Ledmitz] | GPLv2
`sfx/monsters/snail/snail-hurt1.ogg` | alpha [Ledmitz] | GPLv2
`sfx/monsters/snail/snail-hurt2.ogg` | alpha [Ledmitz] | GPLv2
`sfx/monsters/snowman_boss/hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/snowman_boss/miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
-`sfx/monsters/spider/spider-die1.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-hit1.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-hit2.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-hit3.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-move1.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-move2.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-move3.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-move4.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
-`sfx/monsters/spider/spider-move5.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0`
+`sfx/monsters/spider/spider-die1.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-hit1.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-hit2.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-hit3.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-move1.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-move2.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-move3.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-move4.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
+`sfx/monsters/spider/spider-move5.ogg` | alpha [Ledmitz] | GPLv2, CC BY-SA 3.0
`sfx/monsters/squirrel/squirrel-die1.ogg` | Krazyjakee | GPLv2
`sfx/monsters/squirrel/squirrel-die2.ogg` | Krazyjakee | GPLv2
`sfx/monsters/squirrel/squirrel-hurt1.ogg` | Krazyjakee | GPLv2
@@ -1327,6 +1611,12 @@ File | Artists | Licenses
`sfx/monsters/tengu/hurt2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/tengu/hurt3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/monsters/tengu/miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/monsters/tortuga/die1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/tortuga/hit1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/tortuga/hit2.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/tortuga/hurt1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/tortuga/miss1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
+`sfx/monsters/tortuga/spawn1.ogg` | Cosmostrator, Socapex | CC BY-SA 3.0
`sfx/monsters/wolvern/wolvern-dying1.ogg` | Chicka-Maria | GPLv2, CC BY-SA 3.0
`sfx/monsters/wolvern/wolvern-hit1.ogg` | Chicka-Maria | GPLv2, CC BY-SA 3.0
`sfx/monsters/wolvern/wolvern-hit2.ogg` | Chicka-Maria | GPLv2, CC BY-SA 3.0
@@ -1370,6 +1660,9 @@ File | Artists | Licenses
`sfx/weapons/miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/miss2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/miss3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/beam/beam-crit.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/beam/beam-hit.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/beam/beam-miss.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/bow_shoot_1.ogg` | Cosmostrator | GPLv2
`sfx/weapons/bows/banshee/banshee-hit1.ogg` | Ledmitz (rocket-shots.mp3 / Audionautics / CC BY 3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/banshee/banshee-hit2.ogg` | Ledmitz (rocket-shots.mp3 / Audionautics / CC BY 3.0) | GPLv2, CC BY-SA 3.0
@@ -1379,11 +1672,21 @@ File | Artists | Licenses
`sfx/weapons/bows/banshee/banshee-miss3.ogg` | Ledmitz (rocket-shots.mp3 / Audionautics / CC BY 3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/forest/forest-hit1.ogg` | Ledmitz (arrow_whoosh.ogg / smcameron / CC BY 3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/forest/forest-miss1.ogg` | Ledmitz (arrow_whoosh.ogg / smcameron / CC BY 3.0) | GPLv2, CC BY-SA 3.0
+`sfx/weapons/bows/imperial/imperial-hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/bows/imperial/imperial-hit2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/bows/imperial/imperial-hit3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/bows/imperial/imperial-hit4.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/bows/imperial/imperial-hit5.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/bows/imperial/imperial-hit6.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/bows/imperial/imperial-miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/short/short-hit1.ogg` | Ledmitz (arrow_whoosh.ogg / smcameron / CC BY 3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/short/short-miss1.ogg` | Ledmitz (arrow_whoosh.ogg / smcameron / CC BY 3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/bow-hit1.ogg` | Ledmitz (arrow_whoosh.ogg / smcameron / CC BY 3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/bows/bow-miss1.ogg` | Ledmitz (arrow_whoosh.ogg / smcameron / CC BY 3.0) | GPLv2, CC BY-SA 3.0
-`sfx/weapons/gunstaff/shot.ogg` | Bird-Man, Freesound.org, Jesusalva | CC 0
+`sfx/weapons/gun/gun-hit1.ogg` | Bird-Man, Freesound.org(shot), Jesusalva | CC 0
+`sfx/weapons/gun/gun-miss1.ogg` | Bird-Man, Freesound.org(shot), craigsmith, Freesound.org(Rifle ricochets), Jesusalva, Ledmitz | CC 0
+`sfx/weapons/gun/gun-miss2.ogg` | Bird-Man, Freesound.org(shot), craigsmith, Freesound.org(Rifle ricochets), Jesusalva, Ledmitz | CC 0
+`sfx/weapons/gun/gun-miss3.ogg` | Bird-Man, Freesound.org(shot), craigsmith, Freesound.org(Rifle ricochets), Jesusalva, Ledmitz | CC 0
`sfx/weapons/knives/knife-hit1.ogg` | Cosmostrator | GPLv2
`sfx/weapons/knives/knife-miss1.ogg` | Cosmostrator | GPLv2
`sfx/weapons/knives/rock/rock-hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
@@ -1392,11 +1695,17 @@ File | Artists | Licenses
`sfx/weapons/knives/setzer/setzer-hit2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/knives/setzer/setzer-hit3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/knives/sharpknife-miss1.ogg` | Krazyjakee | GPLv2
+`sfx/weapons/lightsaber/crit.ogg` | ?, FreedroidRPG | GPL v2)
+`sfx/weapons/lightsaber/hit1.ogg` | skytheguy, Freesound.org, Jesusalva | CC BY 3.0)
+`sfx/weapons/lightsaber/hit2.ogg` | skytheguy, Freesound.org, Jesusalva | CC BY 3.0)
+`sfx/weapons/lightsaber/hit3.ogg` | skytheguy, Freesound.org, Jesusalva | CC BY 3.0)
+`sfx/weapons/lightsaber/miss.ogg` | skytheguy, Freesound.org, Jesusalva | CC BY 3.0)
`sfx/weapons/projectiles/snowball/hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/projectiles/snowball/miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
-`sfx/weapons/punch1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
-`sfx/weapons/punch2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
-`sfx/weapons/punch3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/projectiles/rainerang/rainerang-hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/projectiles/rainerang/rainerang-hit2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/projectiles/rainerang/rainerang-hit3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
+`sfx/weapons/projectiles/rainerang/rainerang-miss1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/other/halberd/halberd-hit1.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/other/halberd/halberd-hit2.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
`sfx/weapons/other/halberd/halberd-hit3.ogg` | Ledmitz | GPLv2, CC BY-SA 3.0
@@ -1413,8 +1722,8 @@ File | Artists | Licenses
`sfx/weapons/swords/ice_gladius/ice_gladius-hit3.ogg` | Ledmitz (ting shas wav.mp3 / CMeeson / CC BY-3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/swords/ice_gladius/ice_gladius-hit4.ogg` | Ledmitz (ting shas wav.mp3 / CMeeson / CC BY-3.0) | GPLv2, CC BY-SA 3.0
`sfx/weapons/swords/ice_gladius/ice_gladius-hit5.ogg` | Ledmitz (ting shas wav.mp3 / CMeeson / CC BY-3.0) | GPLv2, CC BY-SA 3.0
-`sfx/weapons/swords/longsword-hit1.ogg` | Krazyjakee | GPLv2
-`sfx/weapons/swords/longsword-hit2.ogg` | Krazyjakee | GPLv2
+`sfx/weapons/swords/longsword/longsword-hit1.ogg` | Krazyjakee | GPLv2
+`sfx/weapons/swords/longsword/longsword-hit2.ogg` | Krazyjakee | GPLv2
`sfx/weapons/swords/longsword-miss1.ogg` | Krazyjakee | GPLv2
`sfx/weapons/swords/rapier-hit1.ogg` | Krazyjakee | GPLv2
`sfx/weapons/swords/sabre-hit1.ogg` | Krazyjakee | GPLv2
diff --git a/maps/001-1.tmx b/maps/001-1.tmx
index adceb3c0..d7e2a944 100644
--- a/maps/001-1.tmx
+++ b/maps/001-1.tmx
@@ -1,5 +1,5 @@
-