diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index d65f8759..00000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.tiled-session
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b003594a..29c34a4e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
stages:
- test
-image: debian:bullseye
+image: debian:buster
before_script:
- uname -a
@@ -17,26 +17,11 @@ imagemagiccheck:
- ./.tools/imagemagiccheck.sh
allow_failure: true
-manaverse:
+manaplus:
stage: test
- image: ubuntu:20.04
- variables:
- GIT_SUBMODULE_STRATEGY: recursive
script:
- - ./.tools/manaplus.sh master deb_pkg manaverse.log
- artifacts:
- paths:
- - shared
- when: always
- expire_in: 3 week
-
-old_manaplus:
- stage: test
- image: ubuntu:20.04
- variables:
- GIT_SUBMODULE_STRATEGY: recursive
- script:
- - ./.tools/manaplus.sh master4old deb_pkg_old manaplus.log
+ - ./.tools/manaplus.sh
+ image: debian:stable
artifacts:
paths:
- shared
@@ -69,6 +54,8 @@ licensecheck:
testxml:
stage: test
image: ubuntu:18.04
+ tags:
+ - glados
script:
- ./.tools/testxml.sh
- pwd
diff --git a/.gitmodules b/.gitmodules
index de9d5ec1..0930241e 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,6 @@
[submodule "music"]
path = music
- url = https://git.themanaworld.org/tmw/music.git
+ url = https://git.themanaworld.org/legacy/music.git
[submodule "mods"]
path = mods
- url = https://git.themanaworld.org/tmw/mods.git
+ url = https://git.themanaworld.org/legacy/mods.git
diff --git a/.tools/contributors.sh b/.tools/contributors.sh
index 8b85eeea..cbfadf1b 100755
--- a/.tools/contributors.sh
+++ b/.tools/contributors.sh
@@ -5,8 +5,7 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core make xsltproc
-
+aptget_install git-core gcc ca-certificates libxml2-utils make xsltproc
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
diff --git a/.tools/deploy.sh b/.tools/deploy.sh
new file mode 100755
index 00000000..82b8c292
--- /dev/null
+++ b/.tools/deploy.sh
@@ -0,0 +1,36 @@
+#!/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
new file mode 100755
index 00000000..c1aff5a4
--- /dev/null
+++ b/.tools/downloadlib.sh
@@ -0,0 +1,22 @@
+#!/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 a7e8e481..34621cdd 100755
--- a/.tools/imagemagiccheck.sh
+++ b/.tools/imagemagiccheck.sh
@@ -5,8 +5,7 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core imagemagick
-
+aptget_install git-core gcc ca-certificates imagemagick
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
diff --git a/.tools/init.sh b/.tools/init.sh
index 15f096d9..4fe533ef 100755
--- a/.tools/init.sh
+++ b/.tools/init.sh
@@ -7,30 +7,6 @@ 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
@@ -47,7 +23,19 @@ function gitclone {
export name2=${CI_BUILD_REPO##*@}
export name2=https://${name2%/*}/$2
- retry_with_increasing_wait gitclone1 "$name1" "$name2" "$3"
+ 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
check_error $?
}
@@ -69,20 +57,34 @@ function update_repos {
function aptget_update {
update_repos
- retry_with_increasing_wait apt-get -y -qq update
+ apt-get update
+ if [ "$?" != 0 ]; then
+ sleep 1s
+ apt-get update
+ if [ "$?" != 0 ]; then
+ sleep 1s
+ apt-get update
+ fi
+ fi
check_error $?
}
function aptget_install {
- retry_with_increasing_wait apt-get -y -qq 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
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 412b4def..ba2be45f 100755
--- a/.tools/licensecheck.sh
+++ b/.tools/licensecheck.sh
@@ -5,8 +5,7 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core grep
-
+aptget_install git-core gcc ca-certificates grep
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
diff --git a/.tools/manaplus.sh b/.tools/manaplus.sh
index d7ffc469..aeb39a86 100755
--- a/.tools/manaplus.sh
+++ b/.tools/manaplus.sh
@@ -1,62 +1,33 @@
#!/bin/bash
-client_branch="$1"
-client_job_name="$2"
-logfile="$3"
-
-set -e
-
source ./.tools/init.sh
clientdata_init
-# Stop tzdata from asking to pick a location, hanging the pipeline
-export DEBIAN_FRONTEND=noninteractive
-
aptget_update
-# Evidently libcurl3-gnutls ships libcurl4-gnutls.so.4
-aptget_install \
- x11-utils xdg-utils xsel \
- ttf-dejavu-core fonts-liberation \
- libcurl3-gnutls \
- libsdl-gfx1.2 libsdl-image1.2 libsdl-mixer1.2 libsdl-net1.2 libsdl-ttf2.0 \
+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 \
wget unzip
pwd
-ls -la
+ls
-# --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"
+./clientdata/.tools/downloadlib.sh manaplus master || exit 1
-# 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
+export HOME=`pwd`/clientdata/shared
-PATH="$PATH:/usr/games"
+cd manaplus_master || exit 1
export SDL_VIDEODRIVER=dummy
-manaplus --version || exit 1
-manaplus --validate -u -d clientdata || exit 1
+./bin/manaplus --validate -u -d ../clientdata || exit 1
-log_path="$HOME/.local/share/mana/$logfile"
-if [[ ! -f "$log_path" ]]; then
- printf "Error: logfile %s not found\n" "$log_path"
+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"
exit 1
fi
-# grep exits 0 (OK) if it found matches, this condition inverts it
-if grep -A 10 "Assert:" "$log_path"; then
- echo "Error: Asserts found"
- exit 1
-fi
+cd ..
diff --git a/.tools/retry.sh b/.tools/retry.sh
new file mode 100755
index 00000000..aaa50e98
--- /dev/null
+++ b/.tools/retry.sh
@@ -0,0 +1,15 @@
+#!/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 458d7b85..a0dc16b3 100755
--- a/.tools/testxml.sh
+++ b/.tools/testxml.sh
@@ -5,8 +5,7 @@ source ./.tools/init.sh
clientdata_init
aptget_update
-aptget_install git-core libxml2-utils python python-pil python-pyvorbis
-
+aptget_install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python python-pyvorbis python-ogg python-pil
rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools
@@ -17,7 +16,7 @@ check_error $?
export RES=$(cat errors.txt)
if [[ -n "${RES}" ]]; then
echo "xml check failed" >../../../clientdata/shared/error.log
- cat errors.txt >>../../../clientdata/shared/error.log
+ echo ${RES} >>../../../clientdata/shared/error.log
cat ../../../clientdata/shared/error.log
exit 1
fi
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 00000000..ed5c991f
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,18 @@
+# Contributing
+*This repository is* ***feature-frozen****. Anything that adds new content will NOT be merged.*
+
+Only patches for the following will be accepted:
+
+
+## High priority patches
+- Missing sprites for already-released content [(green Error boxes)](https://github.com/themanaworld/tmwa-client-data/blob/master/graphics/sprites/error.png).
+- XML errors.
+
+## Low priority patches
+- Typos.
+- Missing or incorrect item stats.
+- Missing or incorrect translation information in XML files.
+- Mapping errors (tiles on the wrong layer).
+- Quest log modifications.
+- Missing frames in sprites.
+- Misc visual improvements (avatars, icons, ...).
diff --git a/charcreation.xml b/charcreation.xml
index b6e0bd52..dddc01c3 100644
--- a/charcreation.xml
+++ b/charcreation.xml
@@ -1,13 +1,13 @@
-
+
-
+
-
-
-
-
+
+
+
+
diff --git a/effects.xml b/effects.xml
index 332c54f9..157b8fc0 100644
--- a/effects.xml
+++ b/effects.xml
@@ -57,7 +57,7 @@
-
+
@@ -78,8 +78,8 @@
-
-
+
+
@@ -90,18 +90,9 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
@@ -119,11 +110,6 @@
-
-
-
-
-
diff --git a/graphics/images/ambient/aethyr.jpg b/graphics/images/ambient/aethyr.jpg
deleted file mode 100644
index 359c0535..00000000
Binary files a/graphics/images/ambient/aethyr.jpg and /dev/null differ
diff --git a/graphics/images/ambient/cloud.png b/graphics/images/ambient/cloud.png
deleted file mode 100644
index c914b466..00000000
Binary files a/graphics/images/ambient/cloud.png and /dev/null differ
diff --git a/graphics/images/ambient/darkness1.png b/graphics/images/ambient/darkness1.png
deleted file mode 100644
index 5e9bc724..00000000
Binary files a/graphics/images/ambient/darkness1.png and /dev/null differ
diff --git a/graphics/images/ambient/darkness2.png b/graphics/images/ambient/darkness2.png
deleted file mode 100644
index dba9b9c6..00000000
Binary files a/graphics/images/ambient/darkness2.png and /dev/null differ
diff --git a/graphics/images/ambient/desertclouds.png b/graphics/images/ambient/desertclouds.png
deleted file mode 100644
index b95ad6c4..00000000
Binary files a/graphics/images/ambient/desertclouds.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/angel-wings.png b/graphics/items/equipment/amulets/angel-wings.png
deleted file mode 100644
index 17a5b710..00000000
Binary files a/graphics/items/equipment/amulets/angel-wings.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/gmamulet.png b/graphics/items/equipment/amulets/gmamulet.png
deleted file mode 100644
index 0724945b..00000000
Binary files a/graphics/items/equipment/amulets/gmamulet.png and /dev/null differ
diff --git a/graphics/items/equipment/amulets/assassin-amulet.png b/graphics/items/equipment/charms/assassin-amulet.png
similarity index 100%
rename from graphics/items/equipment/amulets/assassin-amulet.png
rename to graphics/items/equipment/charms/assassin-amulet.png
diff --git a/graphics/items/equipment/amulets/enchanter.png b/graphics/items/equipment/charms/enchanter.png
similarity index 100%
rename from graphics/items/equipment/amulets/enchanter.png
rename to graphics/items/equipment/charms/enchanter.png
diff --git a/graphics/items/equipment/amulets/fourleaf-amulet.png b/graphics/items/equipment/charms/fourleaf-amulet.png
similarity index 100%
rename from graphics/items/equipment/amulets/fourleaf-amulet.png
rename to graphics/items/equipment/charms/fourleaf-amulet.png
diff --git a/graphics/items/equipment/amulets/manapearl.png b/graphics/items/equipment/charms/manapearl.png
similarity index 100%
rename from graphics/items/equipment/amulets/manapearl.png
rename to graphics/items/equipment/charms/manapearl.png
diff --git a/graphics/items/equipment/head/headslime.png b/graphics/items/equipment/head/headslime.png
deleted file mode 100644
index 71ec7e10..00000000
Binary files a/graphics/items/equipment/head/headslime.png and /dev/null differ
diff --git a/graphics/items/equipment/head/knighthelm-dyable.png b/graphics/items/equipment/head/knighthelm-dyable.png
deleted file mode 100644
index 1c5db321..00000000
Binary files a/graphics/items/equipment/head/knighthelm-dyable.png and /dev/null differ
diff --git a/graphics/items/equipment/head/leprechaunhead.png b/graphics/items/equipment/head/leprechaunhead.png
deleted file mode 100644
index 64d8ccc3..00000000
Binary files a/graphics/items/equipment/head/leprechaunhead.png and /dev/null differ
diff --git a/graphics/items/equipment/head/rainshroomhat.png b/graphics/items/equipment/head/rainshroomhat.png
deleted file mode 100644
index 69c462e0..00000000
Binary files a/graphics/items/equipment/head/rainshroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/skullmask-dyable.png b/graphics/items/equipment/head/skullmask-dyable.png
deleted file mode 100644
index 13c6adfd..00000000
Binary files a/graphics/items/equipment/head/skullmask-dyable.png and /dev/null differ
diff --git a/graphics/items/equipment/head/snowshroomhat.png b/graphics/items/equipment/head/snowshroomhat.png
deleted file mode 100644
index 6799dc36..00000000
Binary files a/graphics/items/equipment/head/snowshroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/sunshroomhat.png b/graphics/items/equipment/head/sunshroomhat.png
deleted file mode 100644
index 4166ed53..00000000
Binary files a/graphics/items/equipment/head/sunshroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/wickedmushroomhat.png b/graphics/items/equipment/head/wickedmushroomhat.png
deleted file mode 100644
index e22c057d..00000000
Binary files a/graphics/items/equipment/head/wickedmushroomhat.png and /dev/null differ
diff --git a/graphics/items/equipment/head/witch-doctor-mask.png b/graphics/items/equipment/head/witch-doctor-mask.png
index fd3ea418..f2a641d1 100644
Binary files a/graphics/items/equipment/head/witch-doctor-mask.png and b/graphics/items/equipment/head/witch-doctor-mask.png differ
diff --git a/graphics/items/equipment/shield/steel-dyable.png b/graphics/items/equipment/shield/steel-dyable.png
deleted file mode 100644
index 6cbd8efa..00000000
Binary files a/graphics/items/equipment/shield/steel-dyable.png and /dev/null differ
diff --git a/graphics/items/equipment/weapon/rainerang.png b/graphics/items/equipment/weapon/rainerang.png
deleted file mode 100644
index 385951e4..00000000
Binary files a/graphics/items/equipment/weapon/rainerang.png and /dev/null differ
diff --git a/graphics/items/equipment/weapon/flintlock.png b/graphics/items/equipment/weapon/revolver.png
similarity index 100%
rename from graphics/items/equipment/weapon/flintlock.png
rename to graphics/items/equipment/weapon/revolver.png
diff --git a/graphics/items/generic/beeswax.png b/graphics/items/generic/beeswax.png
deleted file mode 100644
index ffa9763c..00000000
Binary files a/graphics/items/generic/beeswax.png and /dev/null differ
diff --git a/graphics/items/generic/blackscorpionclaw.png b/graphics/items/generic/blackscorpionclaw.png
deleted file mode 100644
index 889bf332..00000000
Binary files a/graphics/items/generic/blackscorpionclaw.png and /dev/null differ
diff --git a/graphics/items/generic/blossom-wonderwoodling.png b/graphics/items/generic/blossom-wonderwoodling.png
deleted file mode 100644
index 3bfd6ac0..00000000
Binary files a/graphics/items/generic/blossom-wonderwoodling.png and /dev/null differ
diff --git a/graphics/items/generic/bottle-moon.png b/graphics/items/generic/bottle-moon.png
deleted file mode 100644
index 4f8efe6f..00000000
Binary files a/graphics/items/generic/bottle-moon.png and /dev/null differ
diff --git a/graphics/items/generic/brick-a.png b/graphics/items/generic/brick-a.png
deleted file mode 100644
index c84377ec..00000000
Binary files a/graphics/items/generic/brick-a.png and /dev/null differ
diff --git a/graphics/items/generic/butterfly.png b/graphics/items/generic/butterfly.png
deleted file mode 100644
index e429af26..00000000
Binary files a/graphics/items/generic/butterfly.png and /dev/null differ
diff --git a/graphics/items/generic/carrot-legendary.png b/graphics/items/generic/carrot-legendary.png
deleted file mode 100644
index dd054770..00000000
Binary files a/graphics/items/generic/carrot-legendary.png and /dev/null differ
diff --git a/graphics/items/generic/carrot.png b/graphics/items/generic/carrot.png
new file mode 100644
index 00000000..c61f58f7
Binary files /dev/null and b/graphics/items/generic/carrot.png differ
diff --git a/graphics/items/generic/charcoal.png b/graphics/items/generic/charcoal.png
deleted file mode 100644
index 87819322..00000000
Binary files a/graphics/items/generic/charcoal.png and /dev/null differ
diff --git a/graphics/items/generic/crocclaw.png b/graphics/items/generic/crocclaw.png
deleted file mode 100644
index c44eebb4..00000000
Binary files a/graphics/items/generic/crocclaw.png and /dev/null differ
diff --git a/graphics/items/generic/crystal-black-quartz.png b/graphics/items/generic/crystal-black-quartz.png
deleted file mode 100644
index 4fe58a5d..00000000
Binary files a/graphics/items/generic/crystal-black-quartz.png and /dev/null differ
diff --git a/graphics/items/generic/crystal-mountain.png b/graphics/items/generic/crystal-mountain.png
deleted file mode 100644
index 810f5f1a..00000000
Binary files a/graphics/items/generic/crystal-mountain.png and /dev/null differ
diff --git a/graphics/items/generic/crystal-pink-quartz.png b/graphics/items/generic/crystal-pink-quartz.png
deleted file mode 100644
index 623e401f..00000000
Binary files a/graphics/items/generic/crystal-pink-quartz.png and /dev/null differ
diff --git a/graphics/items/generic/dragon-horn.png b/graphics/items/generic/dragon-horn.png
deleted file mode 100644
index 1ca80fbe..00000000
Binary files a/graphics/items/generic/dragon-horn.png and /dev/null differ
diff --git a/graphics/items/generic/dragonscales.png b/graphics/items/generic/dragonscales.png
deleted file mode 100644
index 272a6edc..00000000
Binary files a/graphics/items/generic/dragonscales.png and /dev/null differ
diff --git a/graphics/items/generic/duckfeather.png b/graphics/items/generic/duckfeather.png
deleted file mode 100644
index c1a88413..00000000
Binary files a/graphics/items/generic/duckfeather.png and /dev/null differ
diff --git a/graphics/items/generic/feather-a.png b/graphics/items/generic/feather-a.png
deleted file mode 100644
index b758d23f..00000000
Binary files a/graphics/items/generic/feather-a.png and /dev/null differ
diff --git a/graphics/items/generic/flour.png b/graphics/items/generic/flour.png
deleted file mode 100644
index 4b19f5e8..00000000
Binary files a/graphics/items/generic/flour.png and /dev/null differ
diff --git a/graphics/items/generic/glass-shards.png b/graphics/items/generic/glass-shards.png
deleted file mode 100644
index e749aaff..00000000
Binary files a/graphics/items/generic/glass-shards.png and /dev/null differ
diff --git a/graphics/items/generic/hay.png b/graphics/items/generic/hay.png
deleted file mode 100644
index 40d6cf8a..00000000
Binary files a/graphics/items/generic/hay.png and /dev/null differ
diff --git a/graphics/items/generic/honeycomb.png b/graphics/items/generic/honeycomb.png
deleted file mode 100644
index 14cb77e7..00000000
Binary files a/graphics/items/generic/honeycomb.png and /dev/null differ
diff --git a/graphics/items/generic/mushroomspores.png b/graphics/items/generic/mushroomspores.png
deleted file mode 100644
index 9e034349..00000000
Binary files a/graphics/items/generic/mushroomspores.png and /dev/null differ
diff --git a/graphics/items/generic/raindrop.png b/graphics/items/generic/raindrop.png
deleted file mode 100644
index 19f6a0d4..00000000
Binary files a/graphics/items/generic/raindrop.png and /dev/null differ
diff --git a/graphics/items/generic/rattotail.png b/graphics/items/generic/rattotail.png
deleted file mode 100644
index d0ca02ce..00000000
Binary files a/graphics/items/generic/rattotail.png and /dev/null differ
diff --git a/graphics/items/generic/rattoteeth.png b/graphics/items/generic/rattoteeth.png
deleted file mode 100644
index 73ffbfb4..00000000
Binary files a/graphics/items/generic/rattoteeth.png and /dev/null differ
diff --git a/graphics/items/generic/redscorpionclaw.png b/graphics/items/generic/redscorpionclaw.png
deleted file mode 100644
index 2ca06384..00000000
Binary files a/graphics/items/generic/redscorpionclaw.png and /dev/null differ
diff --git a/graphics/items/generic/scorpionclaw.png b/graphics/items/generic/scorpionclaw.png
deleted file mode 100644
index ce6ace6c..00000000
Binary files a/graphics/items/generic/scorpionclaw.png and /dev/null differ
diff --git a/graphics/items/generic/seed-wonderwoodling.png b/graphics/items/generic/seed-wonderwoodling.png
deleted file mode 100644
index 0f99dfad..00000000
Binary files a/graphics/items/generic/seed-wonderwoodling.png and /dev/null differ
diff --git a/graphics/items/generic/seeds-dyable.png b/graphics/items/generic/seeds-dyable.png
deleted file mode 100644
index b0a05d32..00000000
Binary files a/graphics/items/generic/seeds-dyable.png and /dev/null differ
diff --git a/graphics/items/generic/shipkey.png b/graphics/items/generic/shipkey.png
deleted file mode 100644
index 1e2a85ef..00000000
Binary files a/graphics/items/generic/shipkey.png and /dev/null differ
diff --git a/graphics/items/generic/snowflake.png b/graphics/items/generic/snowflake.png
deleted file mode 100644
index f4b47ffc..00000000
Binary files a/graphics/items/generic/snowflake.png and /dev/null differ
diff --git a/graphics/items/generic/squichyclaws.png b/graphics/items/generic/squichyclaws.png
deleted file mode 100644
index 89dfe049..00000000
Binary files a/graphics/items/generic/squichyclaws.png and /dev/null differ
diff --git a/graphics/items/generic/stone-a.png b/graphics/items/generic/stone-a.png
deleted file mode 100644
index 18bc06d1..00000000
Binary files a/graphics/items/generic/stone-a.png and /dev/null differ
diff --git a/graphics/items/generic/straw.png b/graphics/items/generic/straw.png
deleted file mode 100644
index ec8aed19..00000000
Binary files a/graphics/items/generic/straw.png and /dev/null differ
diff --git a/graphics/items/generic/tortugashell.png b/graphics/items/generic/tortugashell.png
deleted file mode 100644
index faca1a07..00000000
Binary files a/graphics/items/generic/tortugashell.png and /dev/null differ
diff --git a/graphics/items/generic/tortugashellfragment.png b/graphics/items/generic/tortugashellfragment.png
deleted file mode 100644
index db713772..00000000
Binary files a/graphics/items/generic/tortugashellfragment.png and /dev/null differ
diff --git a/graphics/items/generic/wonder-wood.png b/graphics/items/generic/wonder-wood.png
deleted file mode 100644
index 7092bf59..00000000
Binary files a/graphics/items/generic/wonder-wood.png and /dev/null differ
diff --git a/graphics/items/use/food/bird-big-egg-a.png b/graphics/items/use/food/bird-big-egg-a.png
deleted file mode 100644
index f40293ce..00000000
Binary files a/graphics/items/use/food/bird-big-egg-a.png and /dev/null differ
diff --git a/graphics/items/use/food/bird-egg-a.png b/graphics/items/use/food/bird-egg-a.png
deleted file mode 100644
index cca44dcf..00000000
Binary files a/graphics/items/use/food/bird-egg-a.png and /dev/null differ
diff --git a/graphics/items/use/food/bread.png b/graphics/items/use/food/bread.png
deleted file mode 100644
index cb203d05..00000000
Binary files a/graphics/items/use/food/bread.png and /dev/null differ
diff --git a/graphics/items/use/food/carrot.png b/graphics/items/use/food/carrot.png
deleted file mode 100644
index e0208f61..00000000
Binary files a/graphics/items/use/food/carrot.png and /dev/null differ
diff --git a/graphics/items/use/food/cheese.png b/graphics/items/use/food/cheese.png
deleted file mode 100644
index 1ee2c01a..00000000
Binary files a/graphics/items/use/food/cheese.png and /dev/null differ
diff --git a/graphics/items/use/food/chocolatebiscuit.png b/graphics/items/use/food/chocolatebiscuit.png
deleted file mode 100644
index 14eb803a..00000000
Binary files a/graphics/items/use/food/chocolatebiscuit.png and /dev/null differ
diff --git a/graphics/items/use/food/chocolatebunny.png b/graphics/items/use/food/chocolatebunny.png
deleted file mode 100644
index 79faf6f6..00000000
Binary files a/graphics/items/use/food/chocolatebunny.png and /dev/null differ
diff --git a/graphics/items/use/food/deliciouscookie.png b/graphics/items/use/food/deliciouscookie.png
deleted file mode 100644
index 6f5e78a8..00000000
Binary files a/graphics/items/use/food/deliciouscookie.png and /dev/null differ
diff --git a/graphics/items/use/food/dragonfruit.png b/graphics/items/use/food/dragonfruit.png
deleted file mode 100644
index e54bd672..00000000
Binary files a/graphics/items/use/food/dragonfruit.png and /dev/null differ
diff --git a/graphics/items/use/food/duckegg.png b/graphics/items/use/food/duckegg.png
deleted file mode 100644
index 1ef788be..00000000
Binary files a/graphics/items/use/food/duckegg.png and /dev/null differ
diff --git a/graphics/items/use/food/fruit-salad.png b/graphics/items/use/food/fruit-salad.png
deleted file mode 100644
index ab8f3f04..00000000
Binary files a/graphics/items/use/food/fruit-salad.png and /dev/null differ
diff --git a/graphics/items/use/food/fungus.png b/graphics/items/use/food/fungus.png
deleted file mode 100644
index 18b8fb5f..00000000
Binary files a/graphics/items/use/food/fungus.png and /dev/null differ
diff --git a/graphics/items/use/food/halfcroconut.png b/graphics/items/use/food/halfcroconut.png
deleted file mode 100644
index 85364e26..00000000
Binary files a/graphics/items/use/food/halfcroconut.png and /dev/null differ
diff --git a/graphics/items/use/food/lettuceleaf.png b/graphics/items/use/food/lettuceleaf.png
deleted file mode 100644
index 09ae053d..00000000
Binary files a/graphics/items/use/food/lettuceleaf.png and /dev/null differ
diff --git a/graphics/items/use/food/manana.png b/graphics/items/use/food/manana.png
deleted file mode 100644
index 3da632fe..00000000
Binary files a/graphics/items/use/food/manana.png and /dev/null differ
diff --git a/graphics/items/use/food/piberries.png b/graphics/items/use/food/piberries.png
deleted file mode 100644
index c34f4e85..00000000
Binary files a/graphics/items/use/food/piberries.png and /dev/null differ
diff --git a/graphics/items/use/food/potatoz.png b/graphics/items/use/food/potatoz.png
deleted file mode 100644
index bcb12631..00000000
Binary files a/graphics/items/use/food/potatoz.png and /dev/null differ
diff --git a/graphics/items/use/food/pumpkin.png b/graphics/items/use/food/pumpkin.png
deleted file mode 100644
index 3df097cd..00000000
Binary files a/graphics/items/use/food/pumpkin.png and /dev/null differ
diff --git a/graphics/items/use/food/pumpkinjuice.png b/graphics/items/use/food/pumpkinjuice.png
deleted file mode 100644
index d0f7a15c..00000000
Binary files a/graphics/items/use/food/pumpkinjuice.png and /dev/null differ
diff --git a/graphics/items/use/food/sauerkraut.png b/graphics/items/use/food/sauerkraut.png
deleted file mode 100644
index 3d4028d2..00000000
Binary files a/graphics/items/use/food/sauerkraut.png and /dev/null differ
diff --git a/graphics/items/use/others/anchor-stone-anchored.png b/graphics/items/use/others/anchor-stone-anchored.png
deleted file mode 100644
index ec0626a0..00000000
Binary files a/graphics/items/use/others/anchor-stone-anchored.png and /dev/null differ
diff --git a/graphics/items/use/others/anchor-stone.png b/graphics/items/use/others/anchor-stone.png
deleted file mode 100644
index ee9c4d4e..00000000
Binary files a/graphics/items/use/others/anchor-stone.png and /dev/null differ
diff --git a/graphics/items/use/others/arrow_bundle.png b/graphics/items/use/others/arrow_bundle.png
deleted file mode 100644
index 86583716..00000000
Binary files a/graphics/items/use/others/arrow_bundle.png and /dev/null differ
diff --git a/graphics/items/use/others/croconut.png b/graphics/items/use/others/croconut.png
deleted file mode 100644
index f939589a..00000000
Binary files a/graphics/items/use/others/croconut.png and /dev/null differ
diff --git a/graphics/items/use/others/lightning-orb.png b/graphics/items/use/others/lightning-orb.png
deleted file mode 100644
index 639527fe..00000000
Binary files a/graphics/items/use/others/lightning-orb.png and /dev/null differ
diff --git a/graphics/items/use/others/rubberducky.png b/graphics/items/use/others/rubberducky.png
deleted file mode 100644
index d490627f..00000000
Binary files a/graphics/items/use/others/rubberducky.png and /dev/null differ
diff --git a/graphics/items/use/others/shovel-legendary.png b/graphics/items/use/others/shovel-legendary.png
deleted file mode 100644
index 3c63ecf4..00000000
Binary files a/graphics/items/use/others/shovel-legendary.png and /dev/null differ
diff --git a/graphics/items/use/others/shovel.png b/graphics/items/use/others/shovel.png
deleted file mode 100644
index 4edf3a5e..00000000
Binary files a/graphics/items/use/others/shovel.png and /dev/null differ
diff --git a/graphics/items/use/others/treasuremap-legendary.png b/graphics/items/use/others/treasuremap-legendary.png
deleted file mode 100644
index 04c54567..00000000
Binary files a/graphics/items/use/others/treasuremap-legendary.png and /dev/null differ
diff --git a/graphics/items/use/others/treasuremap.png b/graphics/items/use/others/treasuremap.png
deleted file mode 100644
index 6c65dd81..00000000
Binary files a/graphics/items/use/others/treasuremap.png and /dev/null differ
diff --git a/graphics/items/use/others/treasuremap2.png b/graphics/items/use/others/treasuremap2.png
deleted file mode 100644
index d303244d..00000000
Binary files a/graphics/items/use/others/treasuremap2.png and /dev/null differ
diff --git a/graphics/items/use/scrolls/scroll-shadow.png b/graphics/items/use/scrolls/scroll-shadow.png
deleted file mode 100644
index 9e2ede2c..00000000
Binary files a/graphics/items/use/scrolls/scroll-shadow.png and /dev/null differ
diff --git a/graphics/minimaps/001-2.png b/graphics/minimaps/001-2.png
index 06ed9fca..4fbc5ef4 100644
Binary files a/graphics/minimaps/001-2.png and b/graphics/minimaps/001-2.png differ
diff --git a/graphics/minimaps/012-1.png b/graphics/minimaps/012-1.png
index 05bcc1c6..aaa9c1dc 100644
Binary files a/graphics/minimaps/012-1.png and b/graphics/minimaps/012-1.png differ
diff --git a/graphics/minimaps/080-1.png b/graphics/minimaps/080-1.png
deleted file mode 100644
index 0339a1e5..00000000
Binary files a/graphics/minimaps/080-1.png and /dev/null differ
diff --git a/graphics/minimaps/080-3.png b/graphics/minimaps/080-3.png
deleted file mode 100644
index fe7f6458..00000000
Binary files a/graphics/minimaps/080-3.png and /dev/null differ
diff --git a/graphics/minimaps/081-1.png b/graphics/minimaps/081-1.png
deleted file mode 100644
index 97e0abc9..00000000
Binary files a/graphics/minimaps/081-1.png and /dev/null differ
diff --git a/graphics/minimaps/081-2.png b/graphics/minimaps/081-2.png
deleted file mode 100644
index 14b93358..00000000
Binary files a/graphics/minimaps/081-2.png and /dev/null differ
diff --git a/graphics/minimaps/081-3.png b/graphics/minimaps/081-3.png
deleted file mode 100644
index 7f106a7c..00000000
Binary files a/graphics/minimaps/081-3.png and /dev/null differ
diff --git a/graphics/minimaps/082-2.png b/graphics/minimaps/082-2.png
deleted file mode 100644
index db05ed7e..00000000
Binary files a/graphics/minimaps/082-2.png and /dev/null differ
diff --git a/graphics/minimaps/082-3.png b/graphics/minimaps/082-3.png
deleted file mode 100644
index fb801d34..00000000
Binary files a/graphics/minimaps/082-3.png and /dev/null differ
diff --git a/graphics/minimaps/fermi.png b/graphics/minimaps/fermi.png
deleted file mode 100644
index 951bd7fa..00000000
Binary files a/graphics/minimaps/fermi.png and /dev/null differ
diff --git a/graphics/minimaps/guild.png b/graphics/minimaps/guild.png
deleted file mode 100644
index b3daa154..00000000
Binary files a/graphics/minimaps/guild.png and /dev/null differ
diff --git a/graphics/minimaps/prison.png b/graphics/minimaps/prison.png
deleted file mode 100644
index ae57c8f2..00000000
Binary files a/graphics/minimaps/prison.png and /dev/null differ
diff --git a/graphics/particles/beam-crit.png b/graphics/particles/beam-crit.png
deleted file mode 100644
index 8f64643d..00000000
Binary files a/graphics/particles/beam-crit.png and /dev/null differ
diff --git a/graphics/particles/beam-crit.xml b/graphics/particles/beam-crit.xml
deleted file mode 100644
index 1d5ba245..00000000
--- a/graphics/particles/beam-crit.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/beam.png b/graphics/particles/beam.png
deleted file mode 100644
index f340a61c..00000000
Binary files a/graphics/particles/beam.png and /dev/null differ
diff --git a/graphics/particles/beam.xml b/graphics/particles/beam.xml
deleted file mode 100644
index e05bc34c..00000000
--- a/graphics/particles/beam.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/bubble-ani_6x6.png b/graphics/particles/bubble-ani_6x6.png
deleted file mode 100644
index e04cc8c3..00000000
Binary files a/graphics/particles/bubble-ani_6x6.png and /dev/null differ
diff --git a/graphics/particles/bubble-ani_8x8.png b/graphics/particles/bubble-ani_8x8.png
deleted file mode 100644
index 134b352a..00000000
Binary files a/graphics/particles/bubble-ani_8x8.png and /dev/null differ
diff --git a/graphics/particles/bullet.xml b/graphics/particles/bullet.xml
deleted file mode 100644
index 244e3909..00000000
--- a/graphics/particles/bullet.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/cannonball.xml b/graphics/particles/cannonball.xml
deleted file mode 100644
index 9e31216b..00000000
--- a/graphics/particles/cannonball.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-cast-blue.particle.xml b/graphics/particles/channelling-cast-blue.particle.xml
deleted file mode 100644
index 871364cd..00000000
--- a/graphics/particles/channelling-cast-blue.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-cast-red.particle.xml b/graphics/particles/channelling-cast-red.particle.xml
deleted file mode 100644
index b0b0364b..00000000
--- a/graphics/particles/channelling-cast-red.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-raise-blue.particle.xml b/graphics/particles/channelling-raise-blue.particle.xml
deleted file mode 100644
index 7c3f8a6b..00000000
--- a/graphics/particles/channelling-raise-blue.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/channelling-raise-red.particle.xml b/graphics/particles/channelling-raise-red.particle.xml
deleted file mode 100644
index 4a0e9377..00000000
--- a/graphics/particles/channelling-raise-red.particle.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/crit.particle.xml b/graphics/particles/crit.particle.xml
index aee7111e..7f534477 100644
--- a/graphics/particles/crit.particle.xml
+++ b/graphics/particles/crit.particle.xml
@@ -1,6 +1,6 @@
diff --git a/graphics/particles/flame_8x8.png b/graphics/particles/flame_8x8.png
deleted file mode 100644
index daaea9af..00000000
Binary files a/graphics/particles/flame_8x8.png and /dev/null differ
diff --git a/graphics/particles/mana-battery-smoke-and-sparks.xml b/graphics/particles/mana-battery-smoke-and-sparks.xml
deleted file mode 100644
index 09a4bb80..00000000
--- a/graphics/particles/mana-battery-smoke-and-sparks.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-moon.particle.xml b/graphics/particles/monster-moonshroom.particle.xml
similarity index 100%
rename from graphics/particles/monster-mushroom-moon.particle.xml
rename to graphics/particles/monster-moonshroom.particle.xml
diff --git a/graphics/particles/monster-mushroom-rain-attack.particle.xml b/graphics/particles/monster-mushroom-rain-attack.particle.xml
deleted file mode 100644
index 5bba0f0b..00000000
--- a/graphics/particles/monster-mushroom-rain-attack.particle.xml
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-rain.particle.xml b/graphics/particles/monster-mushroom-rain.particle.xml
deleted file mode 100644
index 76136827..00000000
--- a/graphics/particles/monster-mushroom-rain.particle.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-snow-attack.particle.xml b/graphics/particles/monster-mushroom-snow-attack.particle.xml
deleted file mode 100644
index a772f494..00000000
--- a/graphics/particles/monster-mushroom-snow-attack.particle.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-snow.particle.xml b/graphics/particles/monster-mushroom-snow.particle.xml
deleted file mode 100644
index e2f50129..00000000
--- a/graphics/particles/monster-mushroom-snow.particle.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-sun-attack.particle.xml b/graphics/particles/monster-mushroom-sun-attack.particle.xml
deleted file mode 100644
index ec0611b9..00000000
--- a/graphics/particles/monster-mushroom-sun-attack.particle.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-mushroom-sun.particle.xml b/graphics/particles/monster-mushroom-sun.particle.xml
deleted file mode 100644
index 4f11949b..00000000
--- a/graphics/particles/monster-mushroom-sun.particle.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/monster-troll-foefire.particle.xml b/graphics/particles/monster-troll-foefire.particle.xml
index f042ed79..6e3bcce2 100644
--- a/graphics/particles/monster-troll-foefire.particle.xml
+++ b/graphics/particles/monster-troll-foefire.particle.xml
@@ -25,10 +25,10 @@ used for the foefire attack of the Trolls.
-
-
+
+
-
+
diff --git a/graphics/particles/monster-mushroom-moon-attack.particle.xml b/graphics/particles/moonshroom-attack.particle.xml
similarity index 100%
rename from graphics/particles/monster-mushroom-moon-attack.particle.xml
rename to graphics/particles/moonshroom-attack.particle.xml
diff --git a/graphics/particles/necroblast.particle.xml b/graphics/particles/necroblast.particle.xml
index 2f18a3f8..44a64ecd 100644
--- a/graphics/particles/necroblast.particle.xml
+++ b/graphics/particles/necroblast.particle.xml
@@ -1,6 +1,6 @@
@@ -8,54 +8,54 @@ Red Bone blaze: inspired by Demon fire
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
-
+
diff --git a/graphics/particles/quest-continue.particle.xml b/graphics/particles/quest-continue.particle.xml
deleted file mode 100644
index 90756040..00000000
--- a/graphics/particles/quest-continue.particle.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/quest-start.particle.xml b/graphics/particles/quest-start.particle.xml
deleted file mode 100644
index 315755d6..00000000
--- a/graphics/particles/quest-start.particle.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/rainbow-crit.xml b/graphics/particles/rainbow-crit.xml
deleted file mode 100644
index 1258ed15..00000000
--- a/graphics/particles/rainbow-crit.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/rainbow-hit.xml b/graphics/particles/rainbow-hit.xml
deleted file mode 100644
index 03ace72a..00000000
--- a/graphics/particles/rainbow-hit.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/raindrop-hit_16x16.png b/graphics/particles/raindrop-hit_16x16.png
deleted file mode 100644
index b0efb4ea..00000000
Binary files a/graphics/particles/raindrop-hit_16x16.png and /dev/null differ
diff --git a/graphics/particles/raindrop-hit_8x8.png b/graphics/particles/raindrop-hit_8x8.png
deleted file mode 100644
index f4484340..00000000
Binary files a/graphics/particles/raindrop-hit_8x8.png and /dev/null differ
diff --git a/graphics/particles/raindrop_3x5.png b/graphics/particles/raindrop_3x5.png
deleted file mode 100644
index 25ae3683..00000000
Binary files a/graphics/particles/raindrop_3x5.png and /dev/null differ
diff --git a/graphics/particles/raindrop_8x8.png b/graphics/particles/raindrop_8x8.png
deleted file mode 100644
index 281311a0..00000000
Binary files a/graphics/particles/raindrop_8x8.png and /dev/null differ
diff --git a/graphics/particles/rainerang.png b/graphics/particles/rainerang.png
deleted file mode 100644
index d20bb69b..00000000
Binary files a/graphics/particles/rainerang.png and /dev/null differ
diff --git a/graphics/particles/rainerang.xml b/graphics/particles/rainerang.xml
deleted file mode 100644
index 058938aa..00000000
--- a/graphics/particles/rainerang.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/particles/red-magic-cast.particle.xml b/graphics/particles/red-magic-cast.particle.xml
deleted file mode 100644
index 48160531..00000000
--- a/graphics/particles/red-magic-cast.particle.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/amulets/angel-wings.png b/graphics/sprites/equipment/angel-wings.png
similarity index 100%
rename from graphics/sprites/equipment/amulets/angel-wings.png
rename to graphics/sprites/equipment/angel-wings.png
diff --git a/graphics/sprites/equipment/amulets/angel-wings.xml b/graphics/sprites/equipment/angel-wings.xml
similarity index 96%
rename from graphics/sprites/equipment/amulets/angel-wings.xml
rename to graphics/sprites/equipment/angel-wings.xml
index cd13e426..83844588 100644
--- a/graphics/sprites/equipment/amulets/angel-wings.xml
+++ b/graphics/sprites/equipment/angel-wings.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/graphics/sprites/equipment/head/headslime-female.xml b/graphics/sprites/equipment/head/headslime-female.xml
deleted file mode 100644
index 8f5fe908..00000000
--- a/graphics/sprites/equipment/head/headslime-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/headslime.png b/graphics/sprites/equipment/head/headslime.png
deleted file mode 100644
index 30bca403..00000000
Binary files a/graphics/sprites/equipment/head/headslime.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/headslime.xml b/graphics/sprites/equipment/head/headslime.xml
deleted file mode 100644
index 7a7fb2c2..00000000
--- a/graphics/sprites/equipment/head/headslime.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/leprechaunhead.png b/graphics/sprites/equipment/head/leprechaunhead.png
deleted file mode 100644
index 6f71df92..00000000
Binary files a/graphics/sprites/equipment/head/leprechaunhead.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/leprechaunhead.xml b/graphics/sprites/equipment/head/leprechaunhead.xml
deleted file mode 100644
index 26bf9888..00000000
--- a/graphics/sprites/equipment/head/leprechaunhead.xml
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/rainshroomhat-female.xml b/graphics/sprites/equipment/head/rainshroomhat-female.xml
deleted file mode 100644
index 3f7daf1b..00000000
--- a/graphics/sprites/equipment/head/rainshroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/rainshroomhat.png b/graphics/sprites/equipment/head/rainshroomhat.png
deleted file mode 100644
index 48b8e336..00000000
Binary files a/graphics/sprites/equipment/head/rainshroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/rainshroomhat.xml b/graphics/sprites/equipment/head/rainshroomhat.xml
deleted file mode 100644
index 708df0f4..00000000
--- a/graphics/sprites/equipment/head/rainshroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/skullmask-dyable-female.xml b/graphics/sprites/equipment/head/skullmask-dyable-female.xml
deleted file mode 100644
index 818f9b49..00000000
--- a/graphics/sprites/equipment/head/skullmask-dyable-female.xml
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/skullmask-dyable.png b/graphics/sprites/equipment/head/skullmask-dyable.png
deleted file mode 100644
index 0bba274f..00000000
Binary files a/graphics/sprites/equipment/head/skullmask-dyable.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/skullmask-dyable.xml b/graphics/sprites/equipment/head/skullmask-dyable.xml
deleted file mode 100644
index a6f8b482..00000000
--- a/graphics/sprites/equipment/head/skullmask-dyable.xml
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/snowshroomhat-female.xml b/graphics/sprites/equipment/head/snowshroomhat-female.xml
deleted file mode 100644
index f88ad033..00000000
--- a/graphics/sprites/equipment/head/snowshroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/snowshroomhat.png b/graphics/sprites/equipment/head/snowshroomhat.png
deleted file mode 100644
index 57c2f39b..00000000
Binary files a/graphics/sprites/equipment/head/snowshroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/snowshroomhat.xml b/graphics/sprites/equipment/head/snowshroomhat.xml
deleted file mode 100644
index 464bd685..00000000
--- a/graphics/sprites/equipment/head/snowshroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/steel-dyable.png b/graphics/sprites/equipment/head/steel-dyable.png
deleted file mode 100644
index 9bea5878..00000000
Binary files a/graphics/sprites/equipment/head/steel-dyable.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/steel-dyable.xml b/graphics/sprites/equipment/head/steel-dyable.xml
deleted file mode 100644
index 8fbf13f9..00000000
--- a/graphics/sprites/equipment/head/steel-dyable.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/sunshroomhat-female.xml b/graphics/sprites/equipment/head/sunshroomhat-female.xml
deleted file mode 100644
index d984dc22..00000000
--- a/graphics/sprites/equipment/head/sunshroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/sunshroomhat.png b/graphics/sprites/equipment/head/sunshroomhat.png
deleted file mode 100644
index 90885482..00000000
Binary files a/graphics/sprites/equipment/head/sunshroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/sunshroomhat.xml b/graphics/sprites/equipment/head/sunshroomhat.xml
deleted file mode 100644
index b4e0cba2..00000000
--- a/graphics/sprites/equipment/head/sunshroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat-female.xml b/graphics/sprites/equipment/head/wickedmushroomhat-female.xml
deleted file mode 100644
index 23c8df2e..00000000
--- a/graphics/sprites/equipment/head/wickedmushroomhat-female.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat.png b/graphics/sprites/equipment/head/wickedmushroomhat.png
deleted file mode 100644
index f4aadeae1..00000000
Binary files a/graphics/sprites/equipment/head/wickedmushroomhat.png and /dev/null differ
diff --git a/graphics/sprites/equipment/head/wickedmushroomhat.xml b/graphics/sprites/equipment/head/wickedmushroomhat.xml
deleted file mode 100644
index 0c1d6679..00000000
--- a/graphics/sprites/equipment/head/wickedmushroomhat.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/equipment/head/yeti-mask.xml b/graphics/sprites/equipment/head/yeti-mask.xml
index f3e9b1de..401d4681 100644
--- a/graphics/sprites/equipment/head/yeti-mask.xml
+++ b/graphics/sprites/equipment/head/yeti-mask.xml
@@ -97,7 +97,7 @@
-
+
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable-female.xml b/graphics/sprites/equipment/shields/knighthelm-dyable-female.xml
deleted file mode 100644
index 57420a84..00000000
--- a/graphics/sprites/equipment/shields/knighthelm-dyable-female.xml
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable.png b/graphics/sprites/equipment/shields/knighthelm-dyable.png
deleted file mode 100644
index 0f7b39ea..00000000
Binary files a/graphics/sprites/equipment/shields/knighthelm-dyable.png and /dev/null differ
diff --git a/graphics/sprites/equipment/shields/knighthelm-dyable.xml b/graphics/sprites/equipment/shields/knighthelm-dyable.xml
deleted file mode 100644
index 1f6312ab..00000000
--- a/graphics/sprites/equipment/shields/knighthelm-dyable.xml
+++ /dev/null
@@ -1,230 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/equipment/weapons/flintlock.png b/graphics/sprites/equipment/weapons/gun.png
similarity index 100%
rename from graphics/sprites/equipment/weapons/flintlock.png
rename to graphics/sprites/equipment/weapons/gun.png
diff --git a/graphics/sprites/equipment/weapons/flintlock.xml b/graphics/sprites/equipment/weapons/gun.xml
similarity index 93%
rename from graphics/sprites/equipment/weapons/flintlock.xml
rename to graphics/sprites/equipment/weapons/gun.xml
index a1002741..e1417c18 100644
--- a/graphics/sprites/equipment/weapons/flintlock.xml
+++ b/graphics/sprites/equipment/weapons/gun.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/icons/cant-move.png b/graphics/sprites/icons/cant-move.png
deleted file mode 100644
index d749fc01..00000000
Binary files a/graphics/sprites/icons/cant-move.png and /dev/null differ
diff --git a/graphics/sprites/icons/cant-move.xml b/graphics/sprites/icons/cant-move.xml
deleted file mode 100644
index c74f82ed..00000000
--- a/graphics/sprites/icons/cant-move.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/slow-move.png b/graphics/sprites/icons/slow-move.png
deleted file mode 100644
index fac2d8e2..00000000
Binary files a/graphics/sprites/icons/slow-move.png and /dev/null differ
diff --git a/graphics/sprites/icons/slow-move.xml b/graphics/sprites/icons/slow-move.xml
deleted file mode 100644
index d205e572..00000000
--- a/graphics/sprites/icons/slow-move.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-cg.png b/graphics/sprites/icons/spell-cooldown-cg.png
deleted file mode 100644
index fe94dffa..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-cg.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-cg.xml b/graphics/sprites/icons/spell-cooldown-cg.xml
deleted file mode 100644
index 3d5a827b..00000000
--- a/graphics/sprites/icons/spell-cooldown-cg.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/icons/spell-cooldown-sg.png b/graphics/sprites/icons/spell-cooldown-sg.png
deleted file mode 100644
index 02f42d61..00000000
Binary files a/graphics/sprites/icons/spell-cooldown-sg.png and /dev/null differ
diff --git a/graphics/sprites/icons/spell-cooldown-sg.xml b/graphics/sprites/icons/spell-cooldown-sg.xml
deleted file mode 100644
index 8f1737c9..00000000
--- a/graphics/sprites/icons/spell-cooldown-sg.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/accessories/slime-super-crown.png b/graphics/sprites/monsters/accessories/slime-super-crown.png
deleted file mode 100644
index 4214ade0..00000000
Binary files a/graphics/sprites/monsters/accessories/slime-super-crown.png and /dev/null differ
diff --git a/graphics/sprites/monsters/accessories/slime-super-crown.xml b/graphics/sprites/monsters/accessories/slime-super-crown.xml
deleted file mode 100644
index 4fe93ed0..00000000
--- a/graphics/sprites/monsters/accessories/slime-super-crown.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/bigbif.png b/graphics/sprites/monsters/bigbif.png
deleted file mode 100644
index 8a7551b1..00000000
Binary files a/graphics/sprites/monsters/bigbif.png and /dev/null differ
diff --git a/graphics/sprites/monsters/bigbif.xml b/graphics/sprites/monsters/bigbif.xml
deleted file mode 100644
index 6bb7c548..00000000
--- a/graphics/sprites/monsters/bigbif.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/brainblow.png b/graphics/sprites/monsters/brainblow.png
deleted file mode 100644
index 6771f73f..00000000
Binary files a/graphics/sprites/monsters/brainblow.png and /dev/null differ
diff --git a/graphics/sprites/monsters/brainblow.xml b/graphics/sprites/monsters/brainblow.xml
deleted file mode 100644
index d11cdeb8..00000000
--- a/graphics/sprites/monsters/brainblow.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/wonderwoodling.png b/graphics/sprites/monsters/ent.png
similarity index 100%
rename from graphics/sprites/monsters/wonderwoodling.png
rename to graphics/sprites/monsters/ent.png
diff --git a/graphics/sprites/monsters/wonderwoodling.xml b/graphics/sprites/monsters/ent.xml
similarity index 94%
rename from graphics/sprites/monsters/wonderwoodling.xml
rename to graphics/sprites/monsters/ent.xml
index c6aba01a..8569c99c 100644
--- a/graphics/sprites/monsters/wonderwoodling.xml
+++ b/graphics/sprites/monsters/ent.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/monsters/golem-dyable.png b/graphics/sprites/monsters/golem-dyable.png
deleted file mode 100644
index 204ddef1..00000000
Binary files a/graphics/sprites/monsters/golem-dyable.png and /dev/null differ
diff --git a/graphics/sprites/monsters/golem-dyable.xml b/graphics/sprites/monsters/golem-dyable.xml
deleted file mode 100644
index f693d78e..00000000
--- a/graphics/sprites/monsters/golem-dyable.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/graphics/sprites/monsters/grass.png b/graphics/sprites/monsters/grass.png
deleted file mode 100644
index b26a6a3b..00000000
Binary files a/graphics/sprites/monsters/grass.png and /dev/null differ
diff --git a/graphics/sprites/monsters/grass.xml b/graphics/sprites/monsters/grass.xml
deleted file mode 100644
index d269f33a..00000000
--- a/graphics/sprites/monsters/grass.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/montblanc.png b/graphics/sprites/monsters/montblanc.png
index cb3d61bf..7a2ba0bb 100644
Binary files a/graphics/sprites/monsters/montblanc.png and b/graphics/sprites/monsters/montblanc.png differ
diff --git a/graphics/sprites/monsters/mushroom-moon.png b/graphics/sprites/monsters/moonshroom.png
similarity index 100%
rename from graphics/sprites/monsters/mushroom-moon.png
rename to graphics/sprites/monsters/moonshroom.png
diff --git a/graphics/sprites/monsters/mushroom-sun.xml b/graphics/sprites/monsters/moonshroom.xml
similarity index 95%
rename from graphics/sprites/monsters/mushroom-sun.xml
rename to graphics/sprites/monsters/moonshroom.xml
index ca7c0614..be815e17 100644
--- a/graphics/sprites/monsters/mushroom-sun.xml
+++ b/graphics/sprites/monsters/moonshroom.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/graphics/sprites/monsters/moubootaur.xml b/graphics/sprites/monsters/moubootaur.xml
index ba8c5b8f..48d720dd 100644
--- a/graphics/sprites/monsters/moubootaur.xml
+++ b/graphics/sprites/monsters/moubootaur.xml
@@ -56,30 +56,37 @@ Copyright (C) 2011-2021 Moubootaur Legends -->
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/mushroom-moon.xml b/graphics/sprites/monsters/mushroom-moon.xml
deleted file mode 100644
index 894e34e3..00000000
--- a/graphics/sprites/monsters/mushroom-moon.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-rain.png b/graphics/sprites/monsters/mushroom-rain.png
deleted file mode 100644
index d3f41eb5..00000000
Binary files a/graphics/sprites/monsters/mushroom-rain.png and /dev/null differ
diff --git a/graphics/sprites/monsters/mushroom-rain.xml b/graphics/sprites/monsters/mushroom-rain.xml
deleted file mode 100644
index edf23fa4..00000000
--- a/graphics/sprites/monsters/mushroom-rain.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-snow.png b/graphics/sprites/monsters/mushroom-snow.png
deleted file mode 100644
index 39d21a3c..00000000
Binary files a/graphics/sprites/monsters/mushroom-snow.png and /dev/null differ
diff --git a/graphics/sprites/monsters/mushroom-snow.xml b/graphics/sprites/monsters/mushroom-snow.xml
deleted file mode 100644
index adf54e21..00000000
--- a/graphics/sprites/monsters/mushroom-snow.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/mushroom-sun.png b/graphics/sprites/monsters/mushroom-sun.png
deleted file mode 100644
index b4c23785..00000000
Binary files a/graphics/sprites/monsters/mushroom-sun.png and /dev/null differ
diff --git a/graphics/sprites/monsters/piou-king.xml b/graphics/sprites/monsters/piou-king.xml
index 23750d05..5e3d8e09 100644
--- a/graphics/sprites/monsters/piou-king.xml
+++ b/graphics/sprites/monsters/piou-king.xml
@@ -95,34 +95,42 @@ Copyright (C) 2011-2021 Moubootaur Legends -->
+
+
+
+
+
+
+
+
diff --git a/graphics/sprites/monsters/ratto.xml b/graphics/sprites/monsters/ratto.xml
index 1ee5116c..9572a8ba 100644
--- a/graphics/sprites/monsters/ratto.xml
+++ b/graphics/sprites/monsters/ratto.xml
@@ -61,6 +61,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
@@ -68,6 +69,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
@@ -75,6 +77,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
@@ -82,6 +85,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
@@ -89,6 +93,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
@@ -96,6 +101,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
@@ -103,6 +109,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
@@ -110,6 +117,7 @@ Copyright (C) 2011-2013 Evol Online -->
+
diff --git a/graphics/sprites/monsters/skull-golden.png b/graphics/sprites/monsters/skull-golden.png
deleted file mode 100644
index 53a71314..00000000
Binary files a/graphics/sprites/monsters/skull-golden.png and /dev/null differ
diff --git a/graphics/sprites/monsters/skull-golden.xml b/graphics/sprites/monsters/skull-golden.xml
deleted file mode 100644
index b3976a01..00000000
--- a/graphics/sprites/monsters/skull-golden.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/skull-warlord.png b/graphics/sprites/monsters/skull-warlord.png
deleted file mode 100644
index c5f7c739..00000000
Binary files a/graphics/sprites/monsters/skull-warlord.png and /dev/null differ
diff --git a/graphics/sprites/monsters/skull-warlord.xml b/graphics/sprites/monsters/skull-warlord.xml
deleted file mode 100644
index 381d6211..00000000
--- a/graphics/sprites/monsters/skull-warlord.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/slime-super.png b/graphics/sprites/monsters/slime-super.png
deleted file mode 100644
index c88febbb..00000000
Binary files a/graphics/sprites/monsters/slime-super.png and /dev/null differ
diff --git a/graphics/sprites/monsters/slime-super.xml b/graphics/sprites/monsters/slime-super.xml
deleted file mode 100644
index 0cd70240..00000000
--- a/graphics/sprites/monsters/slime-super.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/smallbif.png b/graphics/sprites/monsters/smallbif.png
deleted file mode 100644
index 0840c66a..00000000
Binary files a/graphics/sprites/monsters/smallbif.png and /dev/null differ
diff --git a/graphics/sprites/monsters/smallbif.xml b/graphics/sprites/monsters/smallbif.xml
deleted file mode 100644
index 26225567..00000000
--- a/graphics/sprites/monsters/smallbif.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/spelt.png b/graphics/sprites/monsters/spelt.png
deleted file mode 100644
index 68ec2375..00000000
Binary files a/graphics/sprites/monsters/spelt.png and /dev/null differ
diff --git a/graphics/sprites/monsters/spelt.xml b/graphics/sprites/monsters/spelt.xml
deleted file mode 100644
index 9817f6ba..00000000
--- a/graphics/sprites/monsters/spelt.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/monsters/tengu.xml b/graphics/sprites/monsters/tengu.xml
index fb7afd4e..651c684a 100644
--- a/graphics/sprites/monsters/tengu.xml
+++ b/graphics/sprites/monsters/tengu.xml
@@ -39,24 +39,31 @@
+
+
+
+
+
+
+
diff --git a/graphics/sprites/npcs/blanc.png b/graphics/sprites/npcs/blanc.png
index 0b933f7a..1d294db4 100644
Binary files a/graphics/sprites/npcs/blanc.png and b/graphics/sprites/npcs/blanc.png differ
diff --git a/graphics/sprites/npcs/dig-01-flow.png b/graphics/sprites/npcs/dig-01-flow.png
deleted file mode 100644
index 86a98257..00000000
Binary files a/graphics/sprites/npcs/dig-01-flow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-01-flow.xml b/graphics/sprites/npcs/dig-01-flow.xml
deleted file mode 100644
index afad3d7c..00000000
--- a/graphics/sprites/npcs/dig-01-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-01-glow.png b/graphics/sprites/npcs/dig-01-glow.png
deleted file mode 100644
index 258ff235..00000000
Binary files a/graphics/sprites/npcs/dig-01-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-01-glow.xml b/graphics/sprites/npcs/dig-01-glow.xml
deleted file mode 100644
index 95ba2732..00000000
--- a/graphics/sprites/npcs/dig-01-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-01.png b/graphics/sprites/npcs/dig-01.png
deleted file mode 100644
index 4a02278a..00000000
Binary files a/graphics/sprites/npcs/dig-01.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-01.xml b/graphics/sprites/npcs/dig-01.xml
deleted file mode 100644
index a123317d..00000000
--- a/graphics/sprites/npcs/dig-01.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-02-flow.png b/graphics/sprites/npcs/dig-02-flow.png
deleted file mode 100644
index d191607a..00000000
Binary files a/graphics/sprites/npcs/dig-02-flow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-02-flow.xml b/graphics/sprites/npcs/dig-02-flow.xml
deleted file mode 100644
index 5a566bb8..00000000
--- a/graphics/sprites/npcs/dig-02-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-02-glow.png b/graphics/sprites/npcs/dig-02-glow.png
deleted file mode 100644
index 29bb45ab..00000000
Binary files a/graphics/sprites/npcs/dig-02-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-02-glow.xml b/graphics/sprites/npcs/dig-02-glow.xml
deleted file mode 100644
index b98e3854..00000000
--- a/graphics/sprites/npcs/dig-02-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-02.png b/graphics/sprites/npcs/dig-02.png
deleted file mode 100644
index 6d4523b2..00000000
Binary files a/graphics/sprites/npcs/dig-02.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-02.xml b/graphics/sprites/npcs/dig-02.xml
deleted file mode 100644
index 08a2187c..00000000
--- a/graphics/sprites/npcs/dig-02.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-03-flow.xml b/graphics/sprites/npcs/dig-03-flow.xml
deleted file mode 100644
index 4ad3945f..00000000
--- a/graphics/sprites/npcs/dig-03-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-03-glow.png b/graphics/sprites/npcs/dig-03-glow.png
deleted file mode 100644
index 9a33c372..00000000
Binary files a/graphics/sprites/npcs/dig-03-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-03-glow.xml b/graphics/sprites/npcs/dig-03-glow.xml
deleted file mode 100644
index 8e0c43ef..00000000
--- a/graphics/sprites/npcs/dig-03-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-03.png b/graphics/sprites/npcs/dig-03.png
deleted file mode 100644
index be73d1af..00000000
Binary files a/graphics/sprites/npcs/dig-03.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-03.xml b/graphics/sprites/npcs/dig-03.xml
deleted file mode 100644
index c5f631e2..00000000
--- a/graphics/sprites/npcs/dig-03.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-04-flow.png b/graphics/sprites/npcs/dig-04-flow.png
deleted file mode 100644
index fdcd9ef6..00000000
Binary files a/graphics/sprites/npcs/dig-04-flow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-04-flow.xml b/graphics/sprites/npcs/dig-04-flow.xml
deleted file mode 100644
index 3dbd7ce5..00000000
--- a/graphics/sprites/npcs/dig-04-flow.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-04-glow.png b/graphics/sprites/npcs/dig-04-glow.png
deleted file mode 100644
index 172274fe..00000000
Binary files a/graphics/sprites/npcs/dig-04-glow.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-04-glow.xml b/graphics/sprites/npcs/dig-04-glow.xml
deleted file mode 100644
index fb274ab5..00000000
--- a/graphics/sprites/npcs/dig-04-glow.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/dig-04.png b/graphics/sprites/npcs/dig-04.png
deleted file mode 100644
index 42d9ea10..00000000
Binary files a/graphics/sprites/npcs/dig-04.png and /dev/null differ
diff --git a/graphics/sprites/npcs/dig-04.xml b/graphics/sprites/npcs/dig-04.xml
deleted file mode 100644
index fe55de89..00000000
--- a/graphics/sprites/npcs/dig-04.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/portal_32x64-01.png b/graphics/sprites/npcs/portal_32x64-01.png
deleted file mode 100644
index e15b6dd9..00000000
Binary files a/graphics/sprites/npcs/portal_32x64-01.png and /dev/null differ
diff --git a/graphics/sprites/npcs/portal_32x64-01.xml b/graphics/sprites/npcs/portal_32x64-01.xml
deleted file mode 100644
index e56b3106..00000000
--- a/graphics/sprites/npcs/portal_32x64-01.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/sprites/npcs/teapot.png b/graphics/sprites/npcs/teapot.png
deleted file mode 100644
index a1d0f0a5..00000000
Binary files a/graphics/sprites/npcs/teapot.png and /dev/null differ
diff --git a/graphics/sprites/npcs/teapot.xml b/graphics/sprites/npcs/teapot.xml
deleted file mode 100644
index e640447f..00000000
--- a/graphics/sprites/npcs/teapot.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/graphics/tiles/aethyra/snow.png b/graphics/tiles/aethyra/snow.png
deleted file mode 100644
index a7545c94..00000000
Binary files a/graphics/tiles/aethyra/snow.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snow_building.png b/graphics/tiles/aethyra/snow_building.png
deleted file mode 100644
index 3e55b251..00000000
Binary files a/graphics/tiles/aethyra/snow_building.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snow_roof.png b/graphics/tiles/aethyra/snow_roof.png
deleted file mode 100644
index efc797fc..00000000
Binary files a/graphics/tiles/aethyra/snow_roof.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snow_water.png b/graphics/tiles/aethyra/snow_water.png
deleted file mode 100644
index 5a98f542..00000000
Binary files a/graphics/tiles/aethyra/snow_water.png and /dev/null differ
diff --git a/graphics/tiles/aethyra/snowset.png b/graphics/tiles/aethyra/snowset.png
deleted file mode 100644
index b866952c..00000000
Binary files a/graphics/tiles/aethyra/snowset.png and /dev/null differ
diff --git a/graphics/tiles/br/christmastree.png b/graphics/tiles/br/christmastree.png
deleted file mode 100644
index ec323633..00000000
Binary files a/graphics/tiles/br/christmastree.png and /dev/null differ
diff --git a/graphics/tiles/br/snow_x3.png b/graphics/tiles/br/snow_x3.png
deleted file mode 100644
index dc5cbfc8..00000000
Binary files a/graphics/tiles/br/snow_x3.png and /dev/null differ
diff --git a/graphics/tiles/castle2.png b/graphics/tiles/castle2.png
index 81c7800d..c71ba0ee 100644
Binary files a/graphics/tiles/castle2.png and b/graphics/tiles/castle2.png differ
diff --git a/graphics/tiles/christmas.png b/graphics/tiles/christmas.png
deleted file mode 100644
index 744ee26c..00000000
Binary files a/graphics/tiles/christmas.png and /dev/null differ
diff --git a/graphics/tiles/edges_black_rotated.png b/graphics/tiles/edges_black_rotated.png
deleted file mode 100644
index 31015305..00000000
Binary files a/graphics/tiles/edges_black_rotated.png and /dev/null differ
diff --git a/graphics/tiles/edges_ice_rotated.png b/graphics/tiles/edges_ice_rotated.png
deleted file mode 100644
index 191b4aa8..00000000
Binary files a/graphics/tiles/edges_ice_rotated.png and /dev/null differ
diff --git a/graphics/tiles/lof/warp_gates.png b/graphics/tiles/lof/warp_gates.png
deleted file mode 100644
index cceec189..00000000
Binary files a/graphics/tiles/lof/warp_gates.png and /dev/null differ
diff --git a/graphics/tiles/lof/woodland_indoor.png b/graphics/tiles/lof/woodland_indoor.png
deleted file mode 100644
index 0038de1a..00000000
Binary files a/graphics/tiles/lof/woodland_indoor.png and /dev/null differ
diff --git a/graphics/tiles/lof/woodland_indoor_extra.png b/graphics/tiles/lof/woodland_indoor_extra.png
deleted file mode 100644
index 3eca9142..00000000
Binary files a/graphics/tiles/lof/woodland_indoor_extra.png and /dev/null differ
diff --git a/graphics/tiles/ml/cabana_in_fada.png b/graphics/tiles/ml/cabana_in_fada.png
deleted file mode 100644
index 90509c45..00000000
Binary files a/graphics/tiles/ml/cabana_in_fada.png and /dev/null differ
diff --git a/graphics/tiles/set_cave.png b/graphics/tiles/set_cave.png
deleted file mode 100644
index aa6e1bfb..00000000
Binary files a/graphics/tiles/set_cave.png and /dev/null differ
diff --git a/graphics/tiles/set_desert.png b/graphics/tiles/set_desert.png
deleted file mode 100644
index 77a41eb9..00000000
Binary files a/graphics/tiles/set_desert.png and /dev/null differ
diff --git a/graphics/tiles/set_icecave.png b/graphics/tiles/set_icecave.png
deleted file mode 100644
index 8a1319b9..00000000
Binary files a/graphics/tiles/set_icecave.png and /dev/null differ
diff --git a/graphics/tiles/set_icemountain.png b/graphics/tiles/set_icemountain.png
deleted file mode 100644
index 3dab22e9..00000000
Binary files a/graphics/tiles/set_icemountain.png and /dev/null differ
diff --git a/graphics/tiles/set_rules.png b/graphics/tiles/set_rules.png
deleted file mode 100644
index bf7f93c7..00000000
Binary files a/graphics/tiles/set_rules.png and /dev/null differ
diff --git a/graphics/tiles/set_thermin_cave.png b/graphics/tiles/set_thermin_cave.png
deleted file mode 100644
index 05b23249..00000000
Binary files a/graphics/tiles/set_thermin_cave.png and /dev/null differ
diff --git a/graphics/tiles/set_woodland.png b/graphics/tiles/set_woodland.png
deleted file mode 100644
index 9661f074..00000000
Binary files a/graphics/tiles/set_woodland.png and /dev/null differ
diff --git a/graphics/tiles/snow_village2.png b/graphics/tiles/snow_village2.png
index bc93774b..118c8086 100644
Binary files a/graphics/tiles/snow_village2.png and b/graphics/tiles/snow_village2.png differ
diff --git a/graphics/tiles/snow_village_x3.png b/graphics/tiles/snow_village_x3.png
index 5403969e..8f2de99d 100644
Binary files a/graphics/tiles/snow_village_x3.png and b/graphics/tiles/snow_village_x3.png differ
diff --git a/items.xml b/items.xml
index e6be37cc..4d91ea9f 100644
--- a/items.xml
+++ b/items.xml
@@ -14,7 +14,6 @@
-
diff --git a/items/equip-1hand/_include.xml b/items/equip-1hand/_include.xml
index 105c7907..e334c70c 100644
--- a/items/equip-1hand/_include.xml
+++ b/items/equip-1hand/_include.xml
@@ -15,10 +15,9 @@
-
-
+
diff --git a/items/equip-1hand/item0571_Setzer.xml b/items/equip-1hand/item0571_Setzer.xml
index c7fd2169..2f09171e 100644
--- a/items/equip-1hand/item0571_Setzer.xml
+++ b/items/equip-1hand/item0571_Setzer.xml
@@ -1,6 +1,6 @@
- -
+
-
equipment/weapons/dagger-setzer.xml
weapons/knives/setzer/setzer-hit1.ogg
weapons/knives/setzer/setzer-hit2.ogg
diff --git a/items/equip-1hand/item0578_SandCutter.xml b/items/equip-1hand/item0578_SandCutter.xml
index 84d16c4e..b93f6ae2 100644
--- a/items/equip-1hand/item0578_SandCutter.xml
+++ b/items/equip-1hand/item0578_SandCutter.xml
@@ -1,6 +1,6 @@
-
-
+
-
equipment/weapons/sword-sandcutter.xml
weapons/knives/rock/rock-hit1.ogg
weapons/knives/rock/rock-hit2.ogg
diff --git a/items/equip-1hand/item0584_Jackal.xml b/items/equip-1hand/item0584_Jackal.xml
index e6c248d1..5ade59f2 100644
--- a/items/equip-1hand/item0584_Jackal.xml
+++ b/items/equip-1hand/item0584_Jackal.xml
@@ -4,7 +4,7 @@
image="equipment/weapon/sword-jackal.png"
name="Jackal"
description="Made to parry attacks from drakes, relic of a long forsaken war."
- effect="Attack Speed +1% / Accuracy +5 / HP +50 / HP Drain 5% / Weapon Level 1"
+ effect="Attack Speed +1% / Accuracy +5% / HP +50 / HP Drain 5% / Weapon Level 1"
attack="150"
attack-range="1"
defense="5"
diff --git a/items/equip-1hand/item0590_DragonSword.xml b/items/equip-1hand/item0590_DragonSword.xml
index f737ecf9..c47a37e3 100644
--- a/items/equip-1hand/item0590_DragonSword.xml
+++ b/items/equip-1hand/item0590_DragonSword.xml
@@ -4,7 +4,7 @@
image="equipment/weapon/sword-dragon.png"
name="Dragon Sword"
description="Empowered by demure's drakes, relic of a long forsaken war."
- effect="Attack Speed +2% / Accuracy +5 / Base Attack Delay -25 / Weapon Level 2"
+ effect="Attack Speed +2% / Accuracy +5% / Base Attack Delay -25 / Weapon Level 2"
req-str="50+"
req-agi="50+"
req-vit="50+"
diff --git a/items/equip-1hand/item0591_LongSword.xml b/items/equip-1hand/item0591_LongSword.xml
index 478042fc..f81d18ad 100644
--- a/items/equip-1hand/item0591_LongSword.xml
+++ b/items/equip-1hand/item0591_LongSword.xml
@@ -1,26 +1,7 @@
-
-
+
-
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/item0867_IceGladius.xml b/items/equip-1hand/item0867_IceGladius.xml
index 9b8ec863..bc4da922 100644
--- a/items/equip-1hand/item0867_IceGladius.xml
+++ b/items/equip-1hand/item0867_IceGladius.xml
@@ -1,18 +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/swords/ice_gladius/ice_gladius-hit1.ogg
diff --git a/items/equip-1hand/item0910_Rainerang.xml b/items/equip-1hand/item0910_Rainerang.xml
deleted file mode 100644
index 046ba3e6..00000000
--- a/items/equip-1hand/item0910_Rainerang.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
- weapons/projectiles/rainerang/rainerang-hit1.ogg
- weapons/projectiles/rainerang/rainerang-hit2.ogg
- weapons/projectiles/rainerang/rainerang-hit3.ogg
- weapons/projectiles/rainerang/rainerang-miss1.ogg
-
-
diff --git a/items/equip-1hand/item5284_Flintlock.xml b/items/equip-1hand/item5284_Revolver.xml
similarity index 63%
rename from items/equip-1hand/item5284_Flintlock.xml
rename to items/equip-1hand/item5284_Revolver.xml
index dfb341c9..3a72610d 100644
--- a/items/equip-1hand/item5284_Flintlock.xml
+++ b/items/equip-1hand/item5284_Revolver.xml
@@ -1,22 +1,22 @@
-
- equipment/weapons/flintlock.xml
+ equipment/weapons/gun.xml
weapons/gun/gun-hit1.ogg
weapons/gun/gun-miss1.ogg
weapons/gun/gun-miss2.ogg
diff --git a/items/equip-2hand/item0548_Halberd.xml b/items/equip-2hand/item0548_Halberd.xml
index 63459c0f..3e3ba60c 100644
--- a/items/equip-2hand/item0548_Halberd.xml
+++ b/items/equip-2hand/item0548_Halberd.xml
@@ -1,17 +1,6 @@
-
-
+
-
equipment/weapons/polearm-chop.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-chop-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/other/halberd/halberd-hit1.ogg
diff --git a/items/equip-2hand/item0588_BastardSword.xml b/items/equip-2hand/item0588_BastardSword.xml
index cd596241..4584560f 100644
--- a/items/equip-2hand/item0588_BastardSword.xml
+++ b/items/equip-2hand/item0588_BastardSword.xml
@@ -1,16 +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-2hand/item0594_Spear.xml b/items/equip-2hand/item0594_Spear.xml
index 2bca4833..2dbc4b80 100644
--- a/items/equip-2hand/item0594_Spear.xml
+++ b/items/equip-2hand/item0594_Spear.xml
@@ -1,16 +1,6 @@
- -
+
-
equipment/weapons/polearm-spear.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-spear-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
diff --git a/items/equip-2hand/item0596_Pike.xml b/items/equip-2hand/item0596_Pike.xml
index ac6027fd..c7414fda 100644
--- a/items/equip-2hand/item0596_Pike.xml
+++ b/items/equip-2hand/item0596_Pike.xml
@@ -1,17 +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/item0623_Scythe.xml b/items/equip-2hand/item0623_Scythe.xml
index 5f29134c..37b11e3c 100644
--- a/items/equip-2hand/item0623_Scythe.xml
+++ b/items/equip-2hand/item0623_Scythe.xml
@@ -1,17 +1,6 @@
- -
+
-
equipment/weapons/polearm-stab.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
equipment/weapons/polearm-stab-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d
weapons/other/staff/staff-miss1.ogg
diff --git a/items/equip-2hand/item0758_WoodenStaff.xml b/items/equip-2hand/item0758_WoodenStaff.xml
index 137e622b..a0ca7e78 100644
--- a/items/equip-2hand/item0758_WoodenStaff.xml
+++ b/items/equip-2hand/item0758_WoodenStaff.xml
@@ -1,19 +1,6 @@
-
-
+
-
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/item0906_KidBook.xml b/items/equip-2hand/item0906_KidBook.xml
index 68d5f7e7..a6f7cbe7 100644
--- a/items/equip-2hand/item0906_KidBook.xml
+++ b/items/equip-2hand/item0906_KidBook.xml
@@ -1,23 +1,9 @@
-
-
+
-
-
- 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
index 5c575984..21b0acb0 100644
--- a/items/equip-2hand/item0907_FloydBook.xml
+++ b/items/equip-2hand/item0907_FloydBook.xml
@@ -1,23 +1,9 @@
- -
+
-
- weapons/beam/beam-hit.ogg
- weapons/beam/beam-miss.ogg
diff --git a/items/equip-ammo/item5291_ThornArrow.xml b/items/equip-ammo/item5291_ThornArrow.xml
index 55a3d877..7b6aa1e5 100644
--- a/items/equip-ammo/item5291_ThornArrow.xml
+++ b/items/equip-ammo/item5291_ThornArrow.xml
@@ -7,6 +7,6 @@
effect="Critical +10 / Hit +25"
type="equip-ammo"
attack="65"
- weight="1"
+ weight="12"
/>
diff --git a/items/equip-amulet/_include.xml b/items/equip-amulet/_include.xml
deleted file mode 100644
index 006583e5..00000000
--- a/items/equip-amulet/_include.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml b/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml
deleted file mode 100644
index dbc8e72e..00000000
--- a/items/equip-amulet/item0829_CrozeniteFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml b/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml
deleted file mode 100644
index 53413745..00000000
--- a/items/equip-amulet/item0830_BromenalFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0831_SilverFourLeafAmulet.xml b/items/equip-amulet/item0831_SilverFourLeafAmulet.xml
deleted file mode 100644
index 97c0e6bf..00000000
--- a/items/equip-amulet/item0831_SilverFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml b/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml
deleted file mode 100644
index 14285fc7..00000000
--- a/items/equip-amulet/item0832_GoldenFourLeafAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item0908_GMAmulet.xml b/items/equip-amulet/item0908_GMAmulet.xml
deleted file mode 100644
index 23c57f42..00000000
--- a/items/equip-amulet/item0908_GMAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item1227_EnchantersAmulet.xml b/items/equip-amulet/item1227_EnchantersAmulet.xml
deleted file mode 100644
index c24506d5..00000000
--- a/items/equip-amulet/item1227_EnchantersAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item5252_GuardianWings.xml b/items/equip-amulet/item5252_GuardianWings.xml
deleted file mode 100644
index baa87550..00000000
--- a/items/equip-amulet/item5252_GuardianWings.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- equipment/amulets/angel-wings.xml
- graphics/particles/angel.particle.xml
-
-
diff --git a/items/equip-amulet/item5269_AssassinAmulet.xml b/items/equip-amulet/item5269_AssassinAmulet.xml
deleted file mode 100644
index dbd6c3e3..00000000
--- a/items/equip-amulet/item5269_AssassinAmulet.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/equip-amulet/item5270_ManaPearl.xml b/items/equip-amulet/item5270_ManaPearl.xml
deleted file mode 100644
index 39c232bf..00000000
--- a/items/equip-amulet/item5270_ManaPearl.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- -
- graphics/particles/manapearl.particle.xml
-
-
diff --git a/items/equip-arms/_include.xml b/items/equip-arms/_include.xml
index a5ee0467..38bbdf1b 100644
--- a/items/equip-arms/_include.xml
+++ b/items/equip-arms/_include.xml
@@ -3,6 +3,7 @@
+
diff --git a/items/equip-arms/item0585_ScarabArmlet.xml b/items/equip-arms/item0585_ScarabArmlet.xml
new file mode 100644
index 00000000..c867e8e4
--- /dev/null
+++ b/items/equip-arms/item0585_ScarabArmlet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-arms/item0794_BromenalGloves.xml b/items/equip-arms/item0794_BromenalGloves.xml
index 850c630a..fdddc2d6 100644
--- a/items/equip-arms/item0794_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-charm/_include.xml b/items/equip-charm/_include.xml
index ff7953a8..5c4d622a 100644
--- a/items/equip-charm/_include.xml
+++ b/items/equip-charm/_include.xml
@@ -3,7 +3,14 @@
+
+
+
+
+
+
+
diff --git a/items/equip-charm/item0829_CrozeniteFourLeafAmulet.xml b/items/equip-charm/item0829_CrozeniteFourLeafAmulet.xml
new file mode 100644
index 00000000..29d60d62
--- /dev/null
+++ b/items/equip-charm/item0829_CrozeniteFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item0830_BromenalFourLeafAmulet.xml b/items/equip-charm/item0830_BromenalFourLeafAmulet.xml
new file mode 100644
index 00000000..79394b97
--- /dev/null
+++ b/items/equip-charm/item0830_BromenalFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item0831_SilverFourLeafAmulet.xml b/items/equip-charm/item0831_SilverFourLeafAmulet.xml
new file mode 100644
index 00000000..379d3635
--- /dev/null
+++ b/items/equip-charm/item0831_SilverFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item0832_GoldenFourLeafAmulet.xml b/items/equip-charm/item0832_GoldenFourLeafAmulet.xml
new file mode 100644
index 00000000..a1a5a12b
--- /dev/null
+++ b/items/equip-charm/item0832_GoldenFourLeafAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item1227_EnchantersAmulet.xml b/items/equip-charm/item1227_EnchantersAmulet.xml
new file mode 100644
index 00000000..ba13cb75
--- /dev/null
+++ b/items/equip-charm/item1227_EnchantersAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item1244_DarkTalisman.xml b/items/equip-charm/item1244_DarkTalisman.xml
index 2a002698..647f7d80 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
new file mode 100644
index 00000000..ec66cbdc
--- /dev/null
+++ b/items/equip-charm/item5269_AssassinAmulet.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/equip-charm/item5270_ManaPearl.xml b/items/equip-charm/item5270_ManaPearl.xml
new file mode 100644
index 00000000..d4e0dab7
--- /dev/null
+++ b/items/equip-charm/item5270_ManaPearl.xml
@@ -0,0 +1,6 @@
+
+
+ -
+ graphics/particles/manapearl.particle.xml
+
+
diff --git a/items/equip-feet/_include.xml b/items/equip-feet/_include.xml
index ad7b2328..1c3b6977 100644
--- a/items/equip-feet/_include.xml
+++ b/items/equip-feet/_include.xml
@@ -3,7 +3,6 @@
-
diff --git a/items/equip-feet/item0757_AssassinBoots.xml b/items/equip-feet/item0757_AssassinBoots.xml
index 2952d91b..8a2bff95 100644
--- a/items/equip-feet/item0757_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/item0792_BromenalBoots.xml b/items/equip-feet/item0792_BromenalBoots.xml
index ada38699..ac1f349d 100644
--- a/items/equip-feet/item0792_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-head/_include.xml b/items/equip-head/_include.xml
index f36c30eb..709c3bb1 100644
--- a/items/equip-head/_include.xml
+++ b/items/equip-head/_include.xml
@@ -5,7 +5,6 @@
-
@@ -38,6 +37,7 @@
+
@@ -73,7 +73,6 @@
-
@@ -230,16 +229,4 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-head/item0604_PirateBandana.xml b/items/equip-head/item0604_PirateBandana.xml
deleted file mode 100644
index 1c8b5265..00000000
--- a/items/equip-head/item0604_PirateBandana.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- -
- equipment/head/bandana.xml|#212121,555555
- equipment/head/bandana-female.xml|#212121,555555
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/equip-head/item0622_Bandana.xml b/items/equip-head/item0622_Bandana.xml
index dde4bec1..a47926f9 100644
--- a/items/equip-head/item0622_Bandana.xml
+++ b/items/equip-head/item0622_Bandana.xml
@@ -1,23 +1,10 @@
- -
+
-
equipment/head/bandana.xml|#ffffff;#ff4645
equipment/head/bandana-female.xml|#ffffff;#ff4645
-
-
-
-
-
-
-
diff --git a/items/equip-feet/item0735_CottonBoots.xml b/items/equip-head/item0735_CottonBoots.xml
similarity index 84%
rename from items/equip-feet/item0735_CottonBoots.xml
rename to items/equip-head/item0735_CottonBoots.xml
index 14aed202..ed9f57d7 100644
--- a/items/equip-feet/item0735_CottonBoots.xml
+++ b/items/equip-head/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-head/item0795_BromenalHelmet.xml b/items/equip-head/item0795_BromenalHelmet.xml
index c3041c7b..5ca66fcb 100644
--- a/items/equip-head/item0795_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/item0801_PinkieHelmet.xml b/items/equip-head/item0801_PinkieHelmet.xml
index 1e3972d9..00c1d8f5 100644
--- a/items/equip-head/item0801_PinkieHelmet.xml
+++ b/items/equip-head/item0801_PinkieHelmet.xml
@@ -1,15 +1,6 @@
-
-
+
-
equipment/head/pinkie-helmet.xml
equipment/head/pinkie-helmet-female.xml
diff --git a/items/equip-head/item0909_LeprechaunHead.xml b/items/equip-head/item0909_LeprechaunHead.xml
deleted file mode 100644
index 9afc03cd..00000000
--- a/items/equip-head/item0909_LeprechaunHead.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- equipment/head/leprechaunhead.xml
-
-
-
-
-
diff --git a/items/equip-head/item1174_CashiersShade.xml b/items/equip-head/item1174_CashiersShade.xml
index 9cc11ce5..555662b9 100644
--- a/items/equip-head/item1174_CashiersShade.xml
+++ b/items/equip-head/item1174_CashiersShade.xml
@@ -1,14 +1,6 @@
- -
+
-
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 6aa6894f..646476cb 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 3f0f90ea..00aa75b0 100644
--- a/items/equip-head/item4027_YetiMask.xml
+++ b/items/equip-head/item4027_YetiMask.xml
@@ -3,8 +3,5 @@
-
equipment/head/yeti-mask.xml
equipment/head/yeti-mask-female.xml
-
-
-
diff --git a/items/equip-head/item5129_UnderworldMask.xml b/items/equip-head/item5129_UnderworldMask.xml
index b50fd80c..8cc029ab 100644
--- a/items/equip-head/item5129_UnderworldMask.xml
+++ b/items/equip-head/item5129_UnderworldMask.xml
@@ -3,7 +3,7 @@
-
equipment/head/underworld-mask.xml
equipment/head/underworld-mask-female.xml
-
+
diff --git a/items/equip-head/item5203_MoonshroomHat.xml b/items/equip-head/item5203_MoonshroomHat.xml
index 9cc6d048..02786a16 100644
--- a/items/equip-head/item5203_MoonshroomHat.xml
+++ b/items/equip-head/item5203_MoonshroomHat.xml
@@ -1,7 +1,6 @@
-
- graphics/particles/monster-mushroom-moon.particle.xml
equipment/head/moonshroomhat.xml
equipment/head/moonshroomhat-female.xml
diff --git a/items/equip-head/item5231_RedPresentHat.xml b/items/equip-head/item5231_RedPresentHat.xml
index 143813ae..c8a7291b 100644
--- a/items/equip-head/item5231_RedPresentHat.xml
+++ b/items/equip-head/item5231_RedPresentHat.xml
@@ -3,8 +3,5 @@
-
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 68b9d339..9bcac764 100644
--- a/items/equip-head/item5232_GreenPresentHat.xml
+++ b/items/equip-head/item5232_GreenPresentHat.xml
@@ -3,8 +3,5 @@
-
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 937898e2..b0e347e0 100644
--- a/items/equip-head/item5233_BluePresentHat.xml
+++ b/items/equip-head/item5233_BluePresentHat.xml
@@ -3,8 +3,5 @@
-
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 adece8f2..bf2149c9 100644
--- a/items/equip-head/item5266_CloverHat.xml
+++ b/items/equip-head/item5266_CloverHat.xml
@@ -1,14 +1,6 @@
- -
+
-
diff --git a/items/equip-head/item5280_LeprechaunHat.xml b/items/equip-head/item5280_LeprechaunHat.xml
index ac9a68a3..7965edce 100644
--- a/items/equip-head/item5280_LeprechaunHat.xml
+++ b/items/equip-head/item5280_LeprechaunHat.xml
@@ -6,7 +6,6 @@
description="Have you found the gold pot yet?"
type="equip-head"
defense="5"
- luk="1"
weight="20">
equipment/head/leprechaunhat.xml
diff --git a/items/equip-head/item5392_SunshroomHat.xml b/items/equip-head/item5392_SunshroomHat.xml
deleted file mode 100644
index 476e8151..00000000
--- a/items/equip-head/item5392_SunshroomHat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index 5d587cf3..00000000
--- a/items/equip-head/item5394_BlackKnightsHelmet.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index bddcc4c3..00000000
--- a/items/equip-head/item5395_BlackRoseHat.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index 8eb7819b..00000000
--- a/items/equip-head/item5396_SnowshroomHat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index c21b1c55..00000000
--- a/items/equip-head/item5397_WickedMushroomHat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index b846189a..00000000
--- a/items/equip-head/item5399_IceSkullMask.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index dfc5bd1f..00000000
--- a/items/equip-head/item5400_GoldenSkullMask.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index df601899..00000000
--- a/items/equip-head/item5401_YellowHeadSlime.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index 51fd9ee6..00000000
--- a/items/equip-head/item5402_RedHeadSlime.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index ee47e9c2..00000000
--- a/items/equip-head/item5403_GreenHeadSlime.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index 8fa3fc43..00000000
--- a/items/equip-head/item5404_BlueHeadSlime.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- -
- 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
deleted file mode 100644
index 658572ff..00000000
--- a/items/equip-head/item5407_RainshroomHat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- -
- graphics/particles/monster-mushroom-rain.particle.xml
- equipment/head/rainshroomhat.xml
- equipment/head/rainshroomhat-female.xml
-
-
-
-
-
diff --git a/items/equip-legs/item0731_AssassinPants.xml b/items/equip-legs/item0731_AssassinPants.xml
index 4df67df7..4161a867 100644
--- a/items/equip-legs/item0731_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/item0796_BromenalLegs.xml b/items/equip-legs/item0796_BromenalLegs.xml
index 4a2604f5..8fe6fb8a 100644
--- a/items/equip-legs/item0796_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-ring/_include.xml b/items/equip-ring/_include.xml
index 628269c4..20fc0c07 100644
--- a/items/equip-ring/_include.xml
+++ b/items/equip-ring/_include.xml
@@ -8,6 +8,7 @@
+
diff --git a/items/equip-ring/item5252_GuardianWings.xml b/items/equip-ring/item5252_GuardianWings.xml
new file mode 100644
index 00000000..dd9b9663
--- /dev/null
+++ b/items/equip-ring/item5252_GuardianWings.xml
@@ -0,0 +1,7 @@
+
+
+ -
+ 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 43316a8a..b16e193e 100644
--- a/items/equip-ring/item5253_MagicRing.xml
+++ b/items/equip-ring/item5253_MagicRing.xml
@@ -1,14 +1,5 @@
- -
+
-
diff --git a/items/equip-shield/_include.xml b/items/equip-shield/_include.xml
index 52c514bf..2c287fc5 100644
--- a/items/equip-shield/_include.xml
+++ b/items/equip-shield/_include.xml
@@ -1,10 +1,7 @@
-
-
-
diff --git a/items/equip-shield/item0585_ScarabArmlet.xml b/items/equip-shield/item0585_ScarabArmlet.xml
deleted file mode 100644
index e2f5ed6e..00000000
--- a/items/equip-shield/item0585_ScarabArmlet.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/equip-shield/item0797_BromenalShield.xml b/items/equip-shield/item0797_BromenalShield.xml
deleted file mode 100644
index 7bd4eb51..00000000
--- a/items/equip-shield/item0797_BromenalShield.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
- -
-
- equipment/shields/wooden.xml
-
-
diff --git a/items/equip-shield/item5285_DragonShield.xml b/items/equip-shield/item5285_DragonShield.xml
index 8f0a76ff..642ae392 100644
--- a/items/equip-shield/item5285_DragonShield.xml
+++ b/items/equip-shield/item5285_DragonShield.xml
@@ -4,6 +4,7 @@
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
deleted file mode 100644
index 685e6b98..00000000
--- a/items/equip-shield/item5393_BlackSteelShield.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- -
- equipment/shields/steel-dyable.xml|#000000,ffffff
-
-
diff --git a/items/equip-torso/_include.xml b/items/equip-torso/_include.xml
index 00f8ec37..aa44e3da 100644
--- a/items/equip-torso/_include.xml
+++ b/items/equip-torso/_include.xml
@@ -252,5 +252,4 @@
-
diff --git a/items/equip-torso/item0645_GoldenPlatemail.xml b/items/equip-torso/item0645_GoldenPlatemail.xml
index 30da7a0b..f754bcdb 100644
--- a/items/equip-torso/item0645_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/item0659_GoldenWarlordPlate.xml b/items/equip-torso/item0659_GoldenWarlordPlate.xml
index fd425941..e11fed4b 100644
--- a/items/equip-torso/item0659_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/item0793_BromenalChest.xml b/items/equip-torso/item0793_BromenalChest.xml
index 0bc9e4d6..efefec54 100644
--- a/items/equip-torso/item0793_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/item5398_RaggedShirt.xml b/items/equip-torso/item5398_RaggedShirt.xml
deleted file mode 100644
index d23bd12b..00000000
--- a/items/equip-torso/item5398_RaggedShirt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
- -
- 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 2c9418dc..2afedef7 100644
--- a/items/generic/_include.xml
+++ b/items/generic/_include.xml
@@ -2,12 +2,12 @@
-
+
-
+
@@ -159,6 +159,7 @@
+
@@ -222,7 +223,7 @@
-
+
@@ -249,7 +250,7 @@
-
+
@@ -265,44 +266,4 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/generic/item0505_InsectSlime.xml b/items/generic/item0505_InsectSlime.xml
deleted file mode 100644
index e7fa77d8..00000000
--- a/items/generic/item0505_InsectSlime.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item0505_MaggotSlime.xml b/items/generic/item0505_MaggotSlime.xml
new file mode 100644
index 00000000..e5c98a00
--- /dev/null
+++ b/items/generic/item0505_MaggotSlime.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item0518_BugLeg.xml b/items/generic/item0518_BugLeg.xml
new file mode 100644
index 00000000..419dd335
--- /dev/null
+++ b/items/generic/item0518_BugLeg.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item0518_InsectLeg.xml b/items/generic/item0518_InsectLeg.xml
deleted file mode 100644
index 7f1b3162..00000000
--- a/items/generic/item0518_InsectLeg.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item0540_EmptyBottle.xml b/items/generic/item0540_EmptyBottle.xml
index 31781bb7..7168acad 100644
--- a/items/generic/item0540_EmptyBottle.xml
+++ b/items/generic/item0540_EmptyBottle.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item1226_SilverBell.xml b/items/generic/item1226_SilverBell.xml
similarity index 53%
rename from items/usable/item1226_SilverBell.xml
rename to items/generic/item1226_SilverBell.xml
index 2d0b837e..21ff07d4 100644
--- a/items/usable/item1226_SilverBell.xml
+++ b/items/generic/item1226_SilverBell.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/generic/item5116_StalkerHorn.xml b/items/generic/item5116_StalkerHorn.xml
deleted file mode 100644
index 02bde735..00000000
--- a/items/generic/item5116_StalkerHorn.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5116_WraithHorn.xml b/items/generic/item5116_WraithHorn.xml
new file mode 100644
index 00000000..ed65df51
--- /dev/null
+++ b/items/generic/item5116_WraithHorn.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5279_Carrot.xml b/items/generic/item5279_Carrot.xml
new file mode 100644
index 00000000..0e2719f3
--- /dev/null
+++ b/items/generic/item5279_Carrot.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/generic/item5279_LegendaryCarrot.xml b/items/generic/item5279_LegendaryCarrot.xml
deleted file mode 100644
index 78abefa3..00000000
--- a/items/generic/item5279_LegendaryCarrot.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5288_Naphthalene.xml b/items/generic/item5288_Naphthalene.xml
index 47ad85dc..00c0c880 100644
--- a/items/generic/item5288_Naphthalene.xml
+++ b/items/generic/item5288_Naphthalene.xml
@@ -5,6 +5,6 @@
name="Naphthalene"
description="Used to produce powerful dyes and medicine, and usually produced from burning a special kind of Coal."
type="generic"
- weight="10"
+ weight="1"
/>
diff --git a/items/generic/item5327_CopperOre.xml b/items/generic/item5327_CopperOre.xml
deleted file mode 100644
index 5b9cd3d2..00000000
--- a/items/generic/item5327_CopperOre.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5328_CopperIngot.xml b/items/generic/item5328_CopperIngot.xml
deleted file mode 100644
index ff1bc62c..00000000
--- a/items/generic/item5328_CopperIngot.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5332_Charcoal.xml b/items/generic/item5332_Charcoal.xml
deleted file mode 100644
index a8f373e7..00000000
--- a/items/generic/item5332_Charcoal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5355_TortugaShellFragment.xml b/items/generic/item5355_TortugaShellFragment.xml
deleted file mode 100644
index 3caed153..00000000
--- a/items/generic/item5355_TortugaShellFragment.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5356_TortugaShell.xml b/items/generic/item5356_TortugaShell.xml
deleted file mode 100644
index 995904ea..00000000
--- a/items/generic/item5356_TortugaShell.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5357_RattoTail.xml b/items/generic/item5357_RattoTail.xml
deleted file mode 100644
index f1da9ab9..00000000
--- a/items/generic/item5357_RattoTail.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5358_RattoTeeth.xml b/items/generic/item5358_RattoTeeth.xml
deleted file mode 100644
index 379641de..00000000
--- a/items/generic/item5358_RattoTeeth.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5359_SilverKey.xml b/items/generic/item5359_SilverKey.xml
deleted file mode 100644
index 7d7d0f96..00000000
--- a/items/generic/item5359_SilverKey.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5360_MushroomSpores.xml b/items/generic/item5360_MushroomSpores.xml
deleted file mode 100644
index 149f91ab..00000000
--- a/items/generic/item5360_MushroomSpores.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5361_Snowflake.xml b/items/generic/item5361_Snowflake.xml
deleted file mode 100644
index d98d5837..00000000
--- a/items/generic/item5361_Snowflake.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5362_BeeStinger.xml b/items/generic/item5362_BeeStinger.xml
deleted file mode 100644
index 63879cc9..00000000
--- a/items/generic/item5362_BeeStinger.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5363_Flour.xml b/items/generic/item5363_Flour.xml
deleted file mode 100644
index 81b51d8a..00000000
--- a/items/generic/item5363_Flour.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5365_DuckFeather.xml b/items/generic/item5365_DuckFeather.xml
deleted file mode 100644
index a5ed3806..00000000
--- a/items/generic/item5365_DuckFeather.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5366_CrocClaw.xml b/items/generic/item5366_CrocClaw.xml
deleted file mode 100644
index 57d403db..00000000
--- a/items/generic/item5366_CrocClaw.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5367_ScorpionClaw.xml b/items/generic/item5367_ScorpionClaw.xml
deleted file mode 100644
index 79c3cb73..00000000
--- a/items/generic/item5367_ScorpionClaw.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5368_RedScorpionClaw.xml b/items/generic/item5368_RedScorpionClaw.xml
deleted file mode 100644
index 59d18273..00000000
--- a/items/generic/item5368_RedScorpionClaw.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5369_BlackScorpionClaw.xml b/items/generic/item5369_BlackScorpionClaw.xml
deleted file mode 100644
index 4395918d..00000000
--- a/items/generic/item5369_BlackScorpionClaw.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5370_GoldenScorpionClaw.xml b/items/generic/item5370_GoldenScorpionClaw.xml
deleted file mode 100644
index d4b900e8..00000000
--- a/items/generic/item5370_GoldenScorpionClaw.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5371_DragonScales.xml b/items/generic/item5371_DragonScales.xml
deleted file mode 100644
index 040c8fa0..00000000
--- a/items/generic/item5371_DragonScales.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5372_DragonHorn.xml b/items/generic/item5372_DragonHorn.xml
deleted file mode 100644
index 50e3e3d3..00000000
--- a/items/generic/item5372_DragonHorn.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5375_JunglefowlFeather.xml b/items/generic/item5375_JunglefowlFeather.xml
deleted file mode 100644
index 11d5093f..00000000
--- a/items/generic/item5375_JunglefowlFeather.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5376_KingChonkyBirbFeather.xml b/items/generic/item5376_KingChonkyBirbFeather.xml
deleted file mode 100644
index 88da7a16..00000000
--- a/items/generic/item5376_KingChonkyBirbFeather.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5377_Honeycomb.xml b/items/generic/item5377_Honeycomb.xml
deleted file mode 100644
index a6c1b611..00000000
--- a/items/generic/item5377_Honeycomb.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5378_Beeswax.xml b/items/generic/item5378_Beeswax.xml
deleted file mode 100644
index 09ae4120..00000000
--- a/items/generic/item5378_Beeswax.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5380_Stone.xml b/items/generic/item5380_Stone.xml
deleted file mode 100644
index e9d87f5d..00000000
--- a/items/generic/item5380_Stone.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5381_Brick.xml b/items/generic/item5381_Brick.xml
deleted file mode 100644
index deb6b9e6..00000000
--- a/items/generic/item5381_Brick.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5384_MountainCrystal.xml b/items/generic/item5384_MountainCrystal.xml
deleted file mode 100644
index 9fea62f0..00000000
--- a/items/generic/item5384_MountainCrystal.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5385_BlackQuartz.xml b/items/generic/item5385_BlackQuartz.xml
deleted file mode 100644
index c919c947..00000000
--- a/items/generic/item5385_BlackQuartz.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5386_GlassShards.xml b/items/generic/item5386_GlassShards.xml
deleted file mode 100644
index 7574de96..00000000
--- a/items/generic/item5386_GlassShards.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5387_Hay.xml b/items/generic/item5387_Hay.xml
deleted file mode 100644
index 41497f7a..00000000
--- a/items/generic/item5387_Hay.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5388_Straw.xml b/items/generic/item5388_Straw.xml
deleted file mode 100644
index 15c6f8be..00000000
--- a/items/generic/item5388_Straw.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5389_SpeltSeeds.xml b/items/generic/item5389_SpeltSeeds.xml
deleted file mode 100644
index cce7e8fa..00000000
--- a/items/generic/item5389_SpeltSeeds.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5390_MoonDust.xml b/items/generic/item5390_MoonDust.xml
deleted file mode 100644
index 4464262c..00000000
--- a/items/generic/item5390_MoonDust.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5391_SunDust.xml b/items/generic/item5391_SunDust.xml
deleted file mode 100644
index dab7cd40..00000000
--- a/items/generic/item5391_SunDust.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5410_WonderWood.xml b/items/generic/item5410_WonderWood.xml
deleted file mode 100644
index e851154a..00000000
--- a/items/generic/item5410_WonderWood.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5411_WonderWoodlingBlossom.xml b/items/generic/item5411_WonderWoodlingBlossom.xml
deleted file mode 100644
index affd5e30..00000000
--- a/items/generic/item5411_WonderWoodlingBlossom.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5412_WonderWoodlingSeed.xml b/items/generic/item5412_WonderWoodlingSeed.xml
deleted file mode 100644
index 9c7c585b..00000000
--- a/items/generic/item5412_WonderWoodlingSeed.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5413_Moonshiner.xml b/items/generic/item5413_Moonshiner.xml
deleted file mode 100644
index 1f326864..00000000
--- a/items/generic/item5413_Moonshiner.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5414_Raindrop.xml b/items/generic/item5414_Raindrop.xml
deleted file mode 100644
index 94838f47..00000000
--- a/items/generic/item5414_Raindrop.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/generic/item5415_PinkQuartz.xml b/items/generic/item5415_PinkQuartz.xml
deleted file mode 100644
index 41e8ac1b..00000000
--- a/items/generic/item5415_PinkQuartz.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/racesprite/_include.xml b/items/racesprite/_include.xml
index f0879182..3f31be1c 100644
--- a/items/racesprite/_include.xml
+++ b/items/racesprite/_include.xml
@@ -8,5 +8,4 @@
-
diff --git a/items/racesprite/item99054_Troll.xml b/items/racesprite/item99054_Troll.xml
index 5a1bcdf0..767539d7 100644
--- a/items/racesprite/item99054_Troll.xml
+++ b/items/racesprite/item99054_Troll.xml
@@ -3,4 +3,7 @@
-
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
deleted file mode 100644
index 30f09265..00000000
--- a/items/racesprite/item99168_Floyd.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- -
- monsters/floyd.xml
-
-
diff --git a/items/usable/_include.xml b/items/usable/_include.xml
index 2f79dc5a..adb13516 100644
--- a/items/usable/_include.xml
+++ b/items/usable/_include.xml
@@ -17,7 +17,7 @@
-
+
@@ -72,7 +72,6 @@
-
@@ -85,8 +84,6 @@
-
-
@@ -111,37 +108,4 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/items/usable/item0562_BirdLeg.xml b/items/usable/item0562_BirdLeg.xml
deleted file mode 100644
index f162341d..00000000
--- a/items/usable/item0562_BirdLeg.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/usable/item0562_ChickenLeg.xml b/items/usable/item0562_ChickenLeg.xml
new file mode 100644
index 00000000..710e4b24
--- /dev/null
+++ b/items/usable/item0562_ChickenLeg.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/items/usable/item0719_GreenApple.xml b/items/usable/item0719_GreenApple.xml
index 7efa7485..f59c2aff 100644
--- a/items/usable/item0719_GreenApple.xml
+++ b/items/usable/item0719_GreenApple.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0808_HitchhikersTowel.xml b/items/usable/item0808_HitchhikersTowel.xml
index 82ec32bd..abbf794e 100644
--- a/items/usable/item0808_HitchhikersTowel.xml
+++ b/items/usable/item0808_HitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0809_WhiteHitchhikersTowel.xml b/items/usable/item0809_WhiteHitchhikersTowel.xml
index 9af2e10e..d0f5889e 100644
--- a/items/usable/item0809_WhiteHitchhikersTowel.xml
+++ b/items/usable/item0809_WhiteHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0810_RedHitchhikersTowel.xml b/items/usable/item0810_RedHitchhikersTowel.xml
index 1c753a01..bbef7a84 100644
--- a/items/usable/item0810_RedHitchhikersTowel.xml
+++ b/items/usable/item0810_RedHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0811_GreenHitchhikersTowel.xml b/items/usable/item0811_GreenHitchhikersTowel.xml
index 60e18c69..c34193b0 100644
--- a/items/usable/item0811_GreenHitchhikersTowel.xml
+++ b/items/usable/item0811_GreenHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0812_BlueHitchhikersTowel.xml b/items/usable/item0812_BlueHitchhikersTowel.xml
index bc7cd983..f5f3f72b 100644
--- a/items/usable/item0812_BlueHitchhikersTowel.xml
+++ b/items/usable/item0812_BlueHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0813_YellowHitchhikersTowel.xml b/items/usable/item0813_YellowHitchhikersTowel.xml
index 98322ccb..7905f785 100644
--- a/items/usable/item0813_YellowHitchhikersTowel.xml
+++ b/items/usable/item0813_YellowHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0814_PurpleHitchhikersTowel.xml b/items/usable/item0814_PurpleHitchhikersTowel.xml
index aef4e613..a51b60d2 100644
--- a/items/usable/item0814_PurpleHitchhikersTowel.xml
+++ b/items/usable/item0814_PurpleHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0815_OrangeHitchhikersTowel.xml b/items/usable/item0815_OrangeHitchhikersTowel.xml
index b5d5171c..b9d409ab 100644
--- a/items/usable/item0815_OrangeHitchhikersTowel.xml
+++ b/items/usable/item0815_OrangeHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0816_PinkHitchhikersTowel.xml b/items/usable/item0816_PinkHitchhikersTowel.xml
index e5957e8f..6dfcbc88 100644
--- a/items/usable/item0816_PinkHitchhikersTowel.xml
+++ b/items/usable/item0816_PinkHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0817_TealHitchhikersTowel.xml b/items/usable/item0817_TealHitchhikersTowel.xml
index f8ef8b54..0ee888fd 100644
--- a/items/usable/item0817_TealHitchhikersTowel.xml
+++ b/items/usable/item0817_TealHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item0818_LimeHitchhikersTowel.xml b/items/usable/item0818_LimeHitchhikersTowel.xml
index 834e3213..f87cfe09 100644
--- a/items/usable/item0818_LimeHitchhikersTowel.xml
+++ b/items/usable/item0818_LimeHitchhikersTowel.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item1283_ArrowBundle.xml b/items/usable/item1283_ArrowBundle.xml
deleted file mode 100644
index 65e79c44..00000000
--- a/items/usable/item1283_ArrowBundle.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/usable/item1284_LightningOrb.xml b/items/usable/item1284_LightningOrb.xml
deleted file mode 100644
index 3dc5b895..00000000
--- a/items/usable/item1284_LightningOrb.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
diff --git a/items/usable/item3001_RubberBat.xml b/items/usable/item3001_RubberBat.xml
index 999c5064..d5ceb24a 100644
--- a/items/usable/item3001_RubberBat.xml
+++ b/items/usable/item3001_RubberBat.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item5251_Tomato.xml b/items/usable/item5251_Tomato.xml
index 21377e44..ec9fb156 100644
--- a/items/usable/item5251_Tomato.xml
+++ b/items/usable/item5251_Tomato.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/items/usable/item5329_IronShovel.xml b/items/usable/item5329_IronShovel.xml
deleted file mode 100644
index 21e24963..00000000
--- a/items/usable/item5329_IronShovel.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- -
-
-
-
-
-
-
diff --git a/items/usable/item5330_ShadowScroll.xml b/items/usable/item5330_ShadowScroll.xml
deleted file mode 100644
index 9760f785..00000000
--- a/items/usable/item5330_ShadowScroll.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5331_YellowApple.xml b/items/usable/item5331_YellowApple.xml
deleted file mode 100644
index c2eae7a9..00000000
--- a/items/usable/item5331_YellowApple.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5333_Bread.xml b/items/usable/item5333_Bread.xml
deleted file mode 100644
index ca963776..00000000
--- a/items/usable/item5333_Bread.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5334_Fungus.xml b/items/usable/item5334_Fungus.xml
deleted file mode 100644
index af23deb8..00000000
--- a/items/usable/item5334_Fungus.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5335_Cheese.xml b/items/usable/item5335_Cheese.xml
deleted file mode 100644
index 5904953d..00000000
--- a/items/usable/item5335_Cheese.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5336_LettuceLeaf.xml b/items/usable/item5336_LettuceLeaf.xml
deleted file mode 100644
index 3db3dd36..00000000
--- a/items/usable/item5336_LettuceLeaf.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5337_Piberries.xml b/items/usable/item5337_Piberries.xml
deleted file mode 100644
index b4e3ea63..00000000
--- a/items/usable/item5337_Piberries.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5338_Croconut.xml b/items/usable/item5338_Croconut.xml
deleted file mode 100644
index 417f7902..00000000
--- a/items/usable/item5338_Croconut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5339_HalfCroconut.xml b/items/usable/item5339_HalfCroconut.xml
deleted file mode 100644
index 04a4de74..00000000
--- a/items/usable/item5339_HalfCroconut.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5340_DeliciousCookie.xml b/items/usable/item5340_DeliciousCookie.xml
deleted file mode 100644
index 1eff11f2..00000000
--- a/items/usable/item5340_DeliciousCookie.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5341_Manana.xml b/items/usable/item5341_Manana.xml
deleted file mode 100644
index 43a34a7e..00000000
--- a/items/usable/item5341_Manana.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5342_Carrot.xml b/items/usable/item5342_Carrot.xml
deleted file mode 100644
index af979de4..00000000
--- a/items/usable/item5342_Carrot.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5343_PumpkinJuice.xml b/items/usable/item5343_PumpkinJuice.xml
deleted file mode 100644
index 17fea6b6..00000000
--- a/items/usable/item5343_PumpkinJuice.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5344_ChocolateBiscuit.xml b/items/usable/item5344_ChocolateBiscuit.xml
deleted file mode 100644
index c474f612..00000000
--- a/items/usable/item5344_ChocolateBiscuit.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5345_ChocolateBunny.xml b/items/usable/item5345_ChocolateBunny.xml
deleted file mode 100644
index 10b348e6..00000000
--- a/items/usable/item5345_ChocolateBunny.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5346_Potatoz.xml b/items/usable/item5346_Potatoz.xml
deleted file mode 100644
index 15b153f9..00000000
--- a/items/usable/item5346_Potatoz.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5347_RipePumpkin.xml b/items/usable/item5347_RipePumpkin.xml
deleted file mode 100644
index 82356933..00000000
--- a/items/usable/item5347_RipePumpkin.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5348_FruitSalad.xml b/items/usable/item5348_FruitSalad.xml
deleted file mode 100644
index 75ed6d04..00000000
--- a/items/usable/item5348_FruitSalad.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5349_DuckEgg.xml b/items/usable/item5349_DuckEgg.xml
deleted file mode 100644
index 0fc82cc6..00000000
--- a/items/usable/item5349_DuckEgg.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5350_Dragonfruit.xml b/items/usable/item5350_Dragonfruit.xml
deleted file mode 100644
index 5514efdd..00000000
--- a/items/usable/item5350_Dragonfruit.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5351_PirateTreasureMap.xml b/items/usable/item5351_PirateTreasureMap.xml
deleted file mode 100644
index ce50c1f8..00000000
--- a/items/usable/item5351_PirateTreasureMap.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5352_DungeonMap.xml b/items/usable/item5352_DungeonMap.xml
deleted file mode 100644
index 0ef07ce0..00000000
--- a/items/usable/item5352_DungeonMap.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5353_TreasureMap.xml b/items/usable/item5353_TreasureMap.xml
deleted file mode 100644
index 8ddcb6fc..00000000
--- a/items/usable/item5353_TreasureMap.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5354_RubberDucky.xml b/items/usable/item5354_RubberDucky.xml
deleted file mode 100644
index 86be9967..00000000
--- a/items/usable/item5354_RubberDucky.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5364_ButterButterfly.xml b/items/usable/item5364_ButterButterfly.xml
deleted file mode 100644
index 654a6361..00000000
--- a/items/usable/item5364_ButterButterfly.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5373_JunglefowlEgg.xml b/items/usable/item5373_JunglefowlEgg.xml
deleted file mode 100644
index 2b1c2179..00000000
--- a/items/usable/item5373_JunglefowlEgg.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5374_KingChonkyBirbEgg.xml b/items/usable/item5374_KingChonkyBirbEgg.xml
deleted file mode 100644
index 6bc8b5d5..00000000
--- a/items/usable/item5374_KingChonkyBirbEgg.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5379_Sauerkraut.xml b/items/usable/item5379_Sauerkraut.xml
deleted file mode 100644
index f4695072..00000000
--- a/items/usable/item5379_Sauerkraut.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5382_AnchorStone.xml b/items/usable/item5382_AnchorStone.xml
deleted file mode 100644
index c846eaa1..00000000
--- a/items/usable/item5382_AnchorStone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5383_AnchoredAnchorStone.xml b/items/usable/item5383_AnchoredAnchorStone.xml
deleted file mode 100644
index 8b55497e..00000000
--- a/items/usable/item5383_AnchoredAnchorStone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
diff --git a/items/usable/item5405_LegendaryShovel.xml b/items/usable/item5405_LegendaryShovel.xml
deleted file mode 100644
index 5861ee4d..00000000
--- a/items/usable/item5405_LegendaryShovel.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- -
-
-
-
-
-
-
diff --git a/items/usable/item5406_LegendaryTreasureMap.xml b/items/usable/item5406_LegendaryTreasureMap.xml
deleted file mode 100644
index d4c9a076..00000000
--- a/items/usable/item5406_LegendaryTreasureMap.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
diff --git a/license.md b/license.md
index 24704df4..177899bd 100644
--- a/license.md
+++ b/license.md
@@ -106,11 +106,7 @@ 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
@@ -119,7 +115,6 @@ 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
@@ -145,35 +140,20 @@ 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
---- |:-------:|:--------:
@@ -222,7 +202,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/items/equipment/head/underworld-mask.png` | wushin | GPLv2, CC BY-SA 3.0
+`graphics/sprites/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
@@ -257,24 +237,19 @@ 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
@@ -287,7 +262,6 @@ 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
@@ -295,17 +269,13 @@ 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/wickedmushroomhat.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
-`graphics/items/equipment/head/witch-doctor-mask.png` | Black Don, Hello=) | GPLv2
+`graphics/items/equipment/head/witch-doctor-mask.png` | Black Don | 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
@@ -326,6 +296,15 @@ 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
---- |:-------:|:--------:
@@ -335,9 +314,7 @@ 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
@@ -368,7 +345,6 @@ 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
@@ -391,7 +367,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/flintlock.png` | Skipy, Micksha | GPLv2
+`graphics/items/equipment/weapons/revolver.png` | Skipy, Micksha | GPLv2
#### Generic
File | Artists | Licenses
@@ -401,71 +377,51 @@ 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
@@ -473,7 +429,6 @@ 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
@@ -486,7 +441,6 @@ 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
@@ -497,14 +451,10 @@ File | Artists | Licenses
`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
@@ -515,12 +465,9 @@ 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
@@ -529,24 +476,17 @@ 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
@@ -555,7 +495,6 @@ 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
@@ -576,57 +515,37 @@ 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
@@ -644,17 +563,6 @@ 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
@@ -672,13 +580,14 @@ File | Artists | Licenses
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
---- |:-------:|:--------:
@@ -688,17 +597,12 @@ 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
@@ -719,11 +623,6 @@ 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
@@ -763,6 +662,8 @@ 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
@@ -773,11 +674,8 @@ 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
@@ -787,11 +685,10 @@ File | Artists | Licenses
`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/spell-attack-generic-outline.png` | ?, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/feather-outline.png` | ?, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/hidden-outline.png` | ?, HoraK-FDF | GPLv2, CC BY-SA 4.0
+`graphics/sprites/icons/invisible-outline.png` | ?, HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/sprites/icons/potion-g.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
#### Actor Models
@@ -802,11 +699,6 @@ 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
---- |:-------:|:--------:
@@ -814,7 +706,7 @@ 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/dagger-setzer.png` | ?, 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
@@ -827,7 +719,7 @@ File | Artists | Licenses
`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/flintlock.png` | Skipy, Jesusalva | GPLv2
+`graphics/sprites/equipment/weapons/gun.png` | Skipy, Jesusalva | GPLv2
#### Chest
File | Artists | Licenses
@@ -871,8 +763,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` | :grey_question:, TMW-Br Team, Saulc | GPLv2
-`graphics/sprites/equipment/chest/redknightarmor-male.png` | :grey_question:, TMW-Br Team, Saulc | 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
#### Feet
File | Artists | Licenses
@@ -938,23 +830,18 @@ 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
@@ -969,7 +856,6 @@ 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
@@ -978,18 +864,13 @@ 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
@@ -998,6 +879,7 @@ 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
---- |:-------:|:--------:
@@ -1016,15 +898,6 @@ 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
---- |:-------:|:--------:
@@ -1065,7 +938,6 @@ File | Artists | Licenses
`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
@@ -1077,18 +949,16 @@ File | Artists | Licenses
`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/ent.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-red.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
@@ -1103,15 +973,12 @@ File | Artists | Licenses
`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/montblanc.png` | KokoroReflections | CC BY 4.0
`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
@@ -1126,18 +993,14 @@ File | Artists | Licenses
`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
@@ -1170,7 +1033,6 @@ File | Artists | Licenses
`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
@@ -1184,23 +1046,11 @@ 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
@@ -1227,7 +1077,6 @@ 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
@@ -1238,8 +1087,6 @@ 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
@@ -1266,7 +1113,6 @@ 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
@@ -1302,8 +1148,6 @@ 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
@@ -1317,13 +1161,14 @@ File | Artists | Licenses
`graphics/tiles/inn2.png` | Alige, Irukard, Salmondine | GPLv2
`graphics/tiles/light-flickering-x1x4.png` | Micksha | GPLv2, CC BY-SA 3.0
`graphics/tiles/mushrooms.png` | Dave, Len | GPLv2
+`graphics/tiles/shipwreck_blanc.png` | KokoroReflections, Hocus | CC BY 4.0
`graphics/tiles/snow_docks.png` | Irukard, Arikel, Meway, Wombat | GPLv2
`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:, HoraK-FDF | GPLv2
+`graphics/tiles/snow_village_x3.png` | bagzie, gumi, :grey_question: | GPLv2
`graphics/tiles/snow_village_x4.png` | bagzie, gumi, :grey_question: | GPLv2
-`graphics/tiles/snow_village2.png` | bagzie, gumi, :grey_question:, HoraK-FDF | GPLv2
+`graphics/tiles/snow_village2.png` | bagzie, gumi, :grey_question: | 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
@@ -1355,25 +1200,6 @@ 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
---- |:-------:|:--------:
@@ -1388,9 +1214,7 @@ 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
@@ -1426,9 +1250,6 @@ 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
@@ -1461,15 +1282,6 @@ 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
@@ -1490,7 +1302,6 @@ 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
@@ -1562,18 +1373,6 @@ 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
@@ -1660,9 +1459,6 @@ 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
@@ -1702,10 +1498,9 @@ File | Artists | Licenses
`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/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/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/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
@@ -1722,8 +1517,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/longsword-hit1.ogg` | Krazyjakee | GPLv2
-`sfx/weapons/swords/longsword/longsword-hit2.ogg` | Krazyjakee | GPLv2
+`sfx/weapons/swords/longsword-hit1.ogg` | Krazyjakee | GPLv2
+`sfx/weapons/swords/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 d7e2a944..0d6b6e72 100644
--- a/maps/001-1.tmx
+++ b/maps/001-1.tmx
@@ -1,5 +1,5 @@
-