diff --git a/CMakeLists.txt b/CMakeLists.txt index 592feb99..2c8f2637 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ if(${CMAKE_VERSION} STREQUAL "2.8.2") endif() # This can be read from ${PROJECT_NAME} after project() is called -project(minetest) -set(PROJECT_NAME_CAPITALIZED "Minetest") +project(voxeladventures-client) +set(PROJECT_NAME_CAPITALIZED "Voxel Adventures Client") # Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing @@ -17,7 +17,7 @@ set(VERSION_PATCH 14) set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string") # Change to false for releases -set(DEVELOPMENT_BUILD TRUE) +set(DEVELOPMENT_BUILD FALSE) set(VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}") if(VERSION_EXTRA) @@ -195,8 +195,8 @@ set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "An InfiniMiner/Minecraft inspired game") set(CPACK_PACKAGE_VERSION_MAJOR ${VERSION_MAJOR}) set(CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR}) set(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH}) -set(CPACK_PACKAGE_VENDOR "celeron55") -set(CPACK_PACKAGE_CONTACT "Perttu Ahola ") +set(CPACK_PACKAGE_VENDOR "bremaweb") +set(CPACK_PACKAGE_CONTACT "Brandon ") if(WIN32) if(CMAKE_SIZEOF_VOID_P EQUAL 8) diff --git a/README.txt b/README.txt index bd2dadeb..cf21e1b1 100644 --- a/README.txt +++ b/README.txt @@ -1,5 +1,7 @@ -Minetest -======== +Voxel Adventures Client +======================= + +Based on Minetest An InfiniMiner/Minecraft inspired game. @@ -117,30 +119,20 @@ For Fedora users: $ sudo dnf install git-core Download source (this is the URL to the latest of source repository, which might not work at all times) using git: -$ git clone --depth 1 https://github.com/minetest/minetest.git -$ cd minetest - -Download minetest_game (otherwise only the "Minimal development test" game is available) using git: -$ git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game +$ git clone --depth 1 https://github.com/bremaweb/voxeladventures-client.git +$ cd voxeladventures-client Download source, without using git: -$ wget https://github.com/minetest/minetest/archive/master.tar.gz +$ wget https://github.com/bremaweb/voxeladventures-client/archive/master.tar.gz $ tar xf master.tar.gz $ cd minetest-master -Download minetest_game, without using git: -$ cd games/ -$ wget https://github.com/minetest/minetest_game/archive/master.tar.gz -$ tar xf master.tar.gz -$ mv minetest_game-master minetest_game -$ cd .. - -Build a version that runs directly from the source directory: -$ cmake . -DRUN_IN_PLACE=TRUE +Build a version that runs directly from the source directory (if you want to build the server change -DBUILD_SERVER=FALSE to -DBUILD_SERVER=TRUE): +$ cmake . -DRUN_IN_PLACE=TRUE -DBUILD_CLIENT=TRUE -DBUILD_SERVER=FALSE $ make -j Run it: -$ ./bin/minetest +$ ./bin/voxeladventures-client - Use cmake . -LH to see all CMake options and their current state - If you want to install it system-wide (or are making a distribution package), diff --git a/misc/minetest-icon-24x24.png b/misc/minetest-icon-24x24.png index 334e2f6d..83e5499f 100644 Binary files a/misc/minetest-icon-24x24.png and b/misc/minetest-icon-24x24.png differ diff --git a/misc/minetest-icon.ico b/misc/minetest-icon.ico index 82af67bf..7c0349a7 100644 Binary files a/misc/minetest-icon.ico and b/misc/minetest-icon.ico differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index afee9061..87516ec3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 2.6) -project(minetest) +project(voxeladventures-client) INCLUDE(CheckIncludeFiles) diff --git a/src/defaultsettings.cpp b/src/defaultsettings.cpp index 16b42e33..eeafe02f 100644 --- a/src/defaultsettings.cpp +++ b/src/defaultsettings.cpp @@ -195,13 +195,14 @@ void set_default_settings(Settings *settings) settings->setDefault("enable_remote_media_server", "true"); - settings->setDefault("serverlist_url", "servers.minetest.net"); + settings->setDefault("serverlist_url", "voxeladventures.com"); settings->setDefault("serverlist_file", "favoriteservers.txt"); settings->setDefault("server_announce", "false"); settings->setDefault("server_url", ""); settings->setDefault("server_address", ""); settings->setDefault("server_name", ""); settings->setDefault("server_description", ""); + settings->setDefault("public_serverlist","true"); #if USE_FREETYPE settings->setDefault("freetype", "true"); diff --git a/textures/base/pack/3d_armor_boots_bronze.png b/textures/base/pack/3d_armor_boots_bronze.png new file mode 100644 index 00000000..1b094212 Binary files /dev/null and b/textures/base/pack/3d_armor_boots_bronze.png differ diff --git a/textures/base/pack/3d_armor_boots_diamond.png b/textures/base/pack/3d_armor_boots_diamond.png new file mode 100644 index 00000000..ccd696c9 Binary files /dev/null and b/textures/base/pack/3d_armor_boots_diamond.png differ diff --git a/textures/base/pack/3d_armor_boots_mithril.png b/textures/base/pack/3d_armor_boots_mithril.png new file mode 100644 index 00000000..fa0b5044 Binary files /dev/null and b/textures/base/pack/3d_armor_boots_mithril.png differ diff --git a/textures/base/pack/3d_armor_boots_steel.png b/textures/base/pack/3d_armor_boots_steel.png new file mode 100644 index 00000000..51752c27 Binary files /dev/null and b/textures/base/pack/3d_armor_boots_steel.png differ diff --git a/textures/base/pack/3d_armor_boots_wood.png b/textures/base/pack/3d_armor_boots_wood.png new file mode 100644 index 00000000..1fbe6168 Binary files /dev/null and b/textures/base/pack/3d_armor_boots_wood.png differ diff --git a/textures/base/pack/3d_armor_chestplate_bronze.png b/textures/base/pack/3d_armor_chestplate_bronze.png new file mode 100644 index 00000000..b4fbf2d0 Binary files /dev/null and b/textures/base/pack/3d_armor_chestplate_bronze.png differ diff --git a/textures/base/pack/3d_armor_chestplate_diamond.png b/textures/base/pack/3d_armor_chestplate_diamond.png new file mode 100644 index 00000000..ce959c54 Binary files /dev/null and b/textures/base/pack/3d_armor_chestplate_diamond.png differ diff --git a/textures/base/pack/3d_armor_chestplate_mithril.png b/textures/base/pack/3d_armor_chestplate_mithril.png new file mode 100644 index 00000000..cedf0d95 Binary files /dev/null and b/textures/base/pack/3d_armor_chestplate_mithril.png differ diff --git a/textures/base/pack/3d_armor_chestplate_steel.png b/textures/base/pack/3d_armor_chestplate_steel.png new file mode 100644 index 00000000..8d7d5aa7 Binary files /dev/null and b/textures/base/pack/3d_armor_chestplate_steel.png differ diff --git a/textures/base/pack/3d_armor_chestplate_wood.png b/textures/base/pack/3d_armor_chestplate_wood.png new file mode 100644 index 00000000..2e383140 Binary files /dev/null and b/textures/base/pack/3d_armor_chestplate_wood.png differ diff --git a/textures/base/pack/3d_armor_helmet_bronze.png b/textures/base/pack/3d_armor_helmet_bronze.png new file mode 100644 index 00000000..04a32f74 Binary files /dev/null and b/textures/base/pack/3d_armor_helmet_bronze.png differ diff --git a/textures/base/pack/3d_armor_helmet_diamond.png b/textures/base/pack/3d_armor_helmet_diamond.png new file mode 100644 index 00000000..de9ae22b Binary files /dev/null and b/textures/base/pack/3d_armor_helmet_diamond.png differ diff --git a/textures/base/pack/3d_armor_helmet_mithril.png b/textures/base/pack/3d_armor_helmet_mithril.png new file mode 100644 index 00000000..f7c6cae6 Binary files /dev/null and b/textures/base/pack/3d_armor_helmet_mithril.png differ diff --git a/textures/base/pack/3d_armor_helmet_steel.png b/textures/base/pack/3d_armor_helmet_steel.png new file mode 100644 index 00000000..f092ead7 Binary files /dev/null and b/textures/base/pack/3d_armor_helmet_steel.png differ diff --git a/textures/base/pack/3d_armor_helmet_wood.png b/textures/base/pack/3d_armor_helmet_wood.png new file mode 100644 index 00000000..9faac93c Binary files /dev/null and b/textures/base/pack/3d_armor_helmet_wood.png differ diff --git a/textures/base/pack/3d_armor_inv_boots_bronze.png b/textures/base/pack/3d_armor_inv_boots_bronze.png new file mode 100644 index 00000000..795903ce Binary files /dev/null and b/textures/base/pack/3d_armor_inv_boots_bronze.png differ diff --git a/textures/base/pack/3d_armor_inv_boots_diamond.png b/textures/base/pack/3d_armor_inv_boots_diamond.png new file mode 100644 index 00000000..87e3443e Binary files /dev/null and b/textures/base/pack/3d_armor_inv_boots_diamond.png differ diff --git a/textures/base/pack/3d_armor_inv_boots_mithril.png b/textures/base/pack/3d_armor_inv_boots_mithril.png new file mode 100644 index 00000000..f15bbe65 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_boots_mithril.png differ diff --git a/textures/base/pack/3d_armor_inv_boots_steel.png b/textures/base/pack/3d_armor_inv_boots_steel.png new file mode 100644 index 00000000..2d13249c Binary files /dev/null and b/textures/base/pack/3d_armor_inv_boots_steel.png differ diff --git a/textures/base/pack/3d_armor_inv_boots_wood.png b/textures/base/pack/3d_armor_inv_boots_wood.png new file mode 100644 index 00000000..6e185013 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_boots_wood.png differ diff --git a/textures/base/pack/3d_armor_inv_chestplate_bronze.png b/textures/base/pack/3d_armor_inv_chestplate_bronze.png new file mode 100644 index 00000000..793f8755 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_chestplate_bronze.png differ diff --git a/textures/base/pack/3d_armor_inv_chestplate_diamond.png b/textures/base/pack/3d_armor_inv_chestplate_diamond.png new file mode 100644 index 00000000..cfb71e18 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_chestplate_diamond.png differ diff --git a/textures/base/pack/3d_armor_inv_chestplate_mithril.png b/textures/base/pack/3d_armor_inv_chestplate_mithril.png new file mode 100644 index 00000000..367e4424 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_chestplate_mithril.png differ diff --git a/textures/base/pack/3d_armor_inv_chestplate_steel.png b/textures/base/pack/3d_armor_inv_chestplate_steel.png new file mode 100644 index 00000000..e5d16ec3 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_chestplate_steel.png differ diff --git a/textures/base/pack/3d_armor_inv_chestplate_wood.png b/textures/base/pack/3d_armor_inv_chestplate_wood.png new file mode 100644 index 00000000..ae7defbd Binary files /dev/null and b/textures/base/pack/3d_armor_inv_chestplate_wood.png differ diff --git a/textures/base/pack/3d_armor_inv_helmet_bronze.png b/textures/base/pack/3d_armor_inv_helmet_bronze.png new file mode 100644 index 00000000..20e5b564 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_helmet_bronze.png differ diff --git a/textures/base/pack/3d_armor_inv_helmet_diamond.png b/textures/base/pack/3d_armor_inv_helmet_diamond.png new file mode 100644 index 00000000..d05d1de7 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_helmet_diamond.png differ diff --git a/textures/base/pack/3d_armor_inv_helmet_mithril.png b/textures/base/pack/3d_armor_inv_helmet_mithril.png new file mode 100644 index 00000000..edb8fef8 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_helmet_mithril.png differ diff --git a/textures/base/pack/3d_armor_inv_helmet_steel.png b/textures/base/pack/3d_armor_inv_helmet_steel.png new file mode 100644 index 00000000..a420b239 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_helmet_steel.png differ diff --git a/textures/base/pack/3d_armor_inv_helmet_wood.png b/textures/base/pack/3d_armor_inv_helmet_wood.png new file mode 100644 index 00000000..73ec833e Binary files /dev/null and b/textures/base/pack/3d_armor_inv_helmet_wood.png differ diff --git a/textures/base/pack/3d_armor_inv_leggings_bronze.png b/textures/base/pack/3d_armor_inv_leggings_bronze.png new file mode 100644 index 00000000..89305382 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_leggings_bronze.png differ diff --git a/textures/base/pack/3d_armor_inv_leggings_diamond.png b/textures/base/pack/3d_armor_inv_leggings_diamond.png new file mode 100644 index 00000000..88d7d332 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_leggings_diamond.png differ diff --git a/textures/base/pack/3d_armor_inv_leggings_mithril.png b/textures/base/pack/3d_armor_inv_leggings_mithril.png new file mode 100644 index 00000000..6635f8ac Binary files /dev/null and b/textures/base/pack/3d_armor_inv_leggings_mithril.png differ diff --git a/textures/base/pack/3d_armor_inv_leggings_steel.png b/textures/base/pack/3d_armor_inv_leggings_steel.png new file mode 100644 index 00000000..95eb1566 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_leggings_steel.png differ diff --git a/textures/base/pack/3d_armor_inv_leggings_wood.png b/textures/base/pack/3d_armor_inv_leggings_wood.png new file mode 100644 index 00000000..f0082bb1 Binary files /dev/null and b/textures/base/pack/3d_armor_inv_leggings_wood.png differ diff --git a/textures/base/pack/3d_armor_leggings_bronze.png b/textures/base/pack/3d_armor_leggings_bronze.png new file mode 100644 index 00000000..1adabde5 Binary files /dev/null and b/textures/base/pack/3d_armor_leggings_bronze.png differ diff --git a/textures/base/pack/3d_armor_leggings_diamond.png b/textures/base/pack/3d_armor_leggings_diamond.png new file mode 100644 index 00000000..e4069897 Binary files /dev/null and b/textures/base/pack/3d_armor_leggings_diamond.png differ diff --git a/textures/base/pack/3d_armor_leggings_mithril.png b/textures/base/pack/3d_armor_leggings_mithril.png new file mode 100644 index 00000000..96fbf358 Binary files /dev/null and b/textures/base/pack/3d_armor_leggings_mithril.png differ diff --git a/textures/base/pack/3d_armor_leggings_steel.png b/textures/base/pack/3d_armor_leggings_steel.png new file mode 100644 index 00000000..717d9c39 Binary files /dev/null and b/textures/base/pack/3d_armor_leggings_steel.png differ diff --git a/textures/base/pack/3d_armor_leggings_wood.png b/textures/base/pack/3d_armor_leggings_wood.png new file mode 100644 index 00000000..2c5b5a6b Binary files /dev/null and b/textures/base/pack/3d_armor_leggings_wood.png differ diff --git a/textures/base/pack/3d_armor_trans.png b/textures/base/pack/3d_armor_trans.png new file mode 100644 index 00000000..e215ca26 Binary files /dev/null and b/textures/base/pack/3d_armor_trans.png differ diff --git a/textures/base/pack/apple_iron.png b/textures/base/pack/apple_iron.png new file mode 100644 index 00000000..b1d18045 Binary files /dev/null and b/textures/base/pack/apple_iron.png differ diff --git a/textures/base/pack/bones_bottom.png b/textures/base/pack/bones_bottom.png new file mode 100644 index 00000000..899ae3b3 Binary files /dev/null and b/textures/base/pack/bones_bottom.png differ diff --git a/textures/base/pack/bones_front.png b/textures/base/pack/bones_front.png new file mode 100644 index 00000000..32612906 Binary files /dev/null and b/textures/base/pack/bones_front.png differ diff --git a/textures/base/pack/bones_rear.png b/textures/base/pack/bones_rear.png new file mode 100644 index 00000000..bf66d5f3 Binary files /dev/null and b/textures/base/pack/bones_rear.png differ diff --git a/textures/base/pack/bones_side.png b/textures/base/pack/bones_side.png new file mode 100644 index 00000000..88fdfddf Binary files /dev/null and b/textures/base/pack/bones_side.png differ diff --git a/textures/base/pack/bones_top.png b/textures/base/pack/bones_top.png new file mode 100644 index 00000000..08b156db Binary files /dev/null and b/textures/base/pack/bones_top.png differ diff --git a/textures/base/pack/booklocked.png b/textures/base/pack/booklocked.png new file mode 100644 index 00000000..4114ccd3 Binary files /dev/null and b/textures/base/pack/booklocked.png differ diff --git a/textures/base/pack/bubble.png b/textures/base/pack/bubble.png new file mode 100644 index 00000000..3bca7e11 Binary files /dev/null and b/textures/base/pack/bubble.png differ diff --git a/textures/base/pack/bucket.png b/textures/base/pack/bucket.png new file mode 100644 index 00000000..7c7441c7 Binary files /dev/null and b/textures/base/pack/bucket.png differ diff --git a/textures/base/pack/bucket_lava.png b/textures/base/pack/bucket_lava.png new file mode 100644 index 00000000..7dbf61a2 Binary files /dev/null and b/textures/base/pack/bucket_lava.png differ diff --git a/textures/base/pack/bucket_water.png b/textures/base/pack/bucket_water.png new file mode 100644 index 00000000..0039df43 Binary files /dev/null and b/textures/base/pack/bucket_water.png differ diff --git a/textures/base/pack/bushes_basket_bottom.png b/textures/base/pack/bushes_basket_bottom.png new file mode 100644 index 00000000..4c84f0f1 Binary files /dev/null and b/textures/base/pack/bushes_basket_bottom.png differ diff --git a/textures/base/pack/bushes_basket_empty_top.png b/textures/base/pack/bushes_basket_empty_top.png new file mode 100644 index 00000000..29ade354 Binary files /dev/null and b/textures/base/pack/bushes_basket_empty_top.png differ diff --git a/textures/base/pack/bushes_basket_full_top.png b/textures/base/pack/bushes_basket_full_top.png new file mode 100644 index 00000000..95bb54d9 Binary files /dev/null and b/textures/base/pack/bushes_basket_full_top.png differ diff --git a/textures/base/pack/bushes_basket_side.png b/textures/base/pack/bushes_basket_side.png new file mode 100644 index 00000000..83578935 Binary files /dev/null and b/textures/base/pack/bushes_basket_side.png differ diff --git a/textures/base/pack/bushes_berry_pie_cooked.png b/textures/base/pack/bushes_berry_pie_cooked.png new file mode 100644 index 00000000..6dca9831 Binary files /dev/null and b/textures/base/pack/bushes_berry_pie_cooked.png differ diff --git a/textures/base/pack/bushes_berry_pie_raw.png b/textures/base/pack/bushes_berry_pie_raw.png new file mode 100644 index 00000000..add8bdb6 Binary files /dev/null and b/textures/base/pack/bushes_berry_pie_raw.png differ diff --git a/textures/base/pack/bushes_strawberry.png b/textures/base/pack/bushes_strawberry.png new file mode 100644 index 00000000..58282b14 Binary files /dev/null and b/textures/base/pack/bushes_strawberry.png differ diff --git a/textures/base/pack/bushes_strawberry_bush.png b/textures/base/pack/bushes_strawberry_bush.png new file mode 100644 index 00000000..b0ed9637 Binary files /dev/null and b/textures/base/pack/bushes_strawberry_bush.png differ diff --git a/textures/base/pack/bushes_sugar.png b/textures/base/pack/bushes_sugar.png new file mode 100644 index 00000000..10ecf703 Binary files /dev/null and b/textures/base/pack/bushes_sugar.png differ diff --git a/textures/base/pack/candle.png b/textures/base/pack/candle.png new file mode 100644 index 00000000..067c1744 Binary files /dev/null and b/textures/base/pack/candle.png differ diff --git a/textures/base/pack/candle_inv.png b/textures/base/pack/candle_inv.png new file mode 100644 index 00000000..df46f19f Binary files /dev/null and b/textures/base/pack/candle_inv.png differ diff --git a/textures/base/pack/character.png b/textures/base/pack/character.png new file mode 100644 index 00000000..2d34c13f Binary files /dev/null and b/textures/base/pack/character.png differ diff --git a/textures/base/pack/character_1.png b/textures/base/pack/character_1.png new file mode 100644 index 00000000..8d0dd991 Binary files /dev/null and b/textures/base/pack/character_1.png differ diff --git a/textures/base/pack/character_10.png b/textures/base/pack/character_10.png new file mode 100644 index 00000000..97a7be73 Binary files /dev/null and b/textures/base/pack/character_10.png differ diff --git a/textures/base/pack/character_10_preview.png b/textures/base/pack/character_10_preview.png new file mode 100644 index 00000000..d9cede5f Binary files /dev/null and b/textures/base/pack/character_10_preview.png differ diff --git a/textures/base/pack/character_10_preview_back.png b/textures/base/pack/character_10_preview_back.png new file mode 100644 index 00000000..61144c66 Binary files /dev/null and b/textures/base/pack/character_10_preview_back.png differ diff --git a/textures/base/pack/character_11.png b/textures/base/pack/character_11.png new file mode 100644 index 00000000..637b85b3 Binary files /dev/null and b/textures/base/pack/character_11.png differ diff --git a/textures/base/pack/character_11_preview.png b/textures/base/pack/character_11_preview.png new file mode 100644 index 00000000..5781697a Binary files /dev/null and b/textures/base/pack/character_11_preview.png differ diff --git a/textures/base/pack/character_11_preview_back.png b/textures/base/pack/character_11_preview_back.png new file mode 100644 index 00000000..73ed51c9 Binary files /dev/null and b/textures/base/pack/character_11_preview_back.png differ diff --git a/textures/base/pack/character_12.png b/textures/base/pack/character_12.png new file mode 100644 index 00000000..569e8bbc Binary files /dev/null and b/textures/base/pack/character_12.png differ diff --git a/textures/base/pack/character_12_preview.png b/textures/base/pack/character_12_preview.png new file mode 100644 index 00000000..411b3d2e Binary files /dev/null and b/textures/base/pack/character_12_preview.png differ diff --git a/textures/base/pack/character_12_preview_back.png b/textures/base/pack/character_12_preview_back.png new file mode 100644 index 00000000..d59de804 Binary files /dev/null and b/textures/base/pack/character_12_preview_back.png differ diff --git a/textures/base/pack/character_13.png b/textures/base/pack/character_13.png new file mode 100644 index 00000000..5ef33e00 Binary files /dev/null and b/textures/base/pack/character_13.png differ diff --git a/textures/base/pack/character_13_preview.png b/textures/base/pack/character_13_preview.png new file mode 100644 index 00000000..21076379 Binary files /dev/null and b/textures/base/pack/character_13_preview.png differ diff --git a/textures/base/pack/character_13_preview_back.png b/textures/base/pack/character_13_preview_back.png new file mode 100644 index 00000000..75017908 Binary files /dev/null and b/textures/base/pack/character_13_preview_back.png differ diff --git a/textures/base/pack/character_14.png b/textures/base/pack/character_14.png new file mode 100644 index 00000000..65cc0328 Binary files /dev/null and b/textures/base/pack/character_14.png differ diff --git a/textures/base/pack/character_14_preview.png b/textures/base/pack/character_14_preview.png new file mode 100644 index 00000000..a059d81f Binary files /dev/null and b/textures/base/pack/character_14_preview.png differ diff --git a/textures/base/pack/character_14_preview_back.png b/textures/base/pack/character_14_preview_back.png new file mode 100644 index 00000000..08f26d4b Binary files /dev/null and b/textures/base/pack/character_14_preview_back.png differ diff --git a/textures/base/pack/character_15.png b/textures/base/pack/character_15.png new file mode 100644 index 00000000..dd74a163 Binary files /dev/null and b/textures/base/pack/character_15.png differ diff --git a/textures/base/pack/character_15_preview.png b/textures/base/pack/character_15_preview.png new file mode 100644 index 00000000..96fd7d32 Binary files /dev/null and b/textures/base/pack/character_15_preview.png differ diff --git a/textures/base/pack/character_15_preview_back.png b/textures/base/pack/character_15_preview_back.png new file mode 100644 index 00000000..4e8599f1 Binary files /dev/null and b/textures/base/pack/character_15_preview_back.png differ diff --git a/textures/base/pack/character_16.png b/textures/base/pack/character_16.png new file mode 100644 index 00000000..9368a6b5 Binary files /dev/null and b/textures/base/pack/character_16.png differ diff --git a/textures/base/pack/character_16_preview.png b/textures/base/pack/character_16_preview.png new file mode 100644 index 00000000..40a379bd Binary files /dev/null and b/textures/base/pack/character_16_preview.png differ diff --git a/textures/base/pack/character_16_preview_back.png b/textures/base/pack/character_16_preview_back.png new file mode 100644 index 00000000..93c5b7cd Binary files /dev/null and b/textures/base/pack/character_16_preview_back.png differ diff --git a/textures/base/pack/character_17.png b/textures/base/pack/character_17.png new file mode 100644 index 00000000..c792976b Binary files /dev/null and b/textures/base/pack/character_17.png differ diff --git a/textures/base/pack/character_17_preview.png b/textures/base/pack/character_17_preview.png new file mode 100644 index 00000000..e4eb6c39 Binary files /dev/null and b/textures/base/pack/character_17_preview.png differ diff --git a/textures/base/pack/character_17_preview_back.png b/textures/base/pack/character_17_preview_back.png new file mode 100644 index 00000000..d9015a19 Binary files /dev/null and b/textures/base/pack/character_17_preview_back.png differ diff --git a/textures/base/pack/character_18.png b/textures/base/pack/character_18.png new file mode 100644 index 00000000..344dd051 Binary files /dev/null and b/textures/base/pack/character_18.png differ diff --git a/textures/base/pack/character_18_preview.png b/textures/base/pack/character_18_preview.png new file mode 100644 index 00000000..a060ad5f Binary files /dev/null and b/textures/base/pack/character_18_preview.png differ diff --git a/textures/base/pack/character_18_preview_back.png b/textures/base/pack/character_18_preview_back.png new file mode 100644 index 00000000..ca9683f6 Binary files /dev/null and b/textures/base/pack/character_18_preview_back.png differ diff --git a/textures/base/pack/character_19.png b/textures/base/pack/character_19.png new file mode 100644 index 00000000..6a2d9c0e Binary files /dev/null and b/textures/base/pack/character_19.png differ diff --git a/textures/base/pack/character_19_preview.png b/textures/base/pack/character_19_preview.png new file mode 100644 index 00000000..fe91740c Binary files /dev/null and b/textures/base/pack/character_19_preview.png differ diff --git a/textures/base/pack/character_19_preview_back.png b/textures/base/pack/character_19_preview_back.png new file mode 100644 index 00000000..c2ee46ec Binary files /dev/null and b/textures/base/pack/character_19_preview_back.png differ diff --git a/textures/base/pack/character_1_preview.png b/textures/base/pack/character_1_preview.png new file mode 100644 index 00000000..6e961e94 Binary files /dev/null and b/textures/base/pack/character_1_preview.png differ diff --git a/textures/base/pack/character_1_preview_back.png b/textures/base/pack/character_1_preview_back.png new file mode 100644 index 00000000..821d5547 Binary files /dev/null and b/textures/base/pack/character_1_preview_back.png differ diff --git a/textures/base/pack/character_2.png b/textures/base/pack/character_2.png new file mode 100644 index 00000000..3e5b69ab Binary files /dev/null and b/textures/base/pack/character_2.png differ diff --git a/textures/base/pack/character_20.png b/textures/base/pack/character_20.png new file mode 100644 index 00000000..7747595c Binary files /dev/null and b/textures/base/pack/character_20.png differ diff --git a/textures/base/pack/character_20_preview.png b/textures/base/pack/character_20_preview.png new file mode 100644 index 00000000..153a41e9 Binary files /dev/null and b/textures/base/pack/character_20_preview.png differ diff --git a/textures/base/pack/character_20_preview_back.png b/textures/base/pack/character_20_preview_back.png new file mode 100644 index 00000000..c17a6cc8 Binary files /dev/null and b/textures/base/pack/character_20_preview_back.png differ diff --git a/textures/base/pack/character_21.png b/textures/base/pack/character_21.png new file mode 100644 index 00000000..492b0f63 Binary files /dev/null and b/textures/base/pack/character_21.png differ diff --git a/textures/base/pack/character_21_preview.png b/textures/base/pack/character_21_preview.png new file mode 100644 index 00000000..be294192 Binary files /dev/null and b/textures/base/pack/character_21_preview.png differ diff --git a/textures/base/pack/character_21_preview_back.png b/textures/base/pack/character_21_preview_back.png new file mode 100644 index 00000000..de4e2466 Binary files /dev/null and b/textures/base/pack/character_21_preview_back.png differ diff --git a/textures/base/pack/character_22.png b/textures/base/pack/character_22.png new file mode 100644 index 00000000..cc7ee89a Binary files /dev/null and b/textures/base/pack/character_22.png differ diff --git a/textures/base/pack/character_22_preview.png b/textures/base/pack/character_22_preview.png new file mode 100644 index 00000000..14ddcfa9 Binary files /dev/null and b/textures/base/pack/character_22_preview.png differ diff --git a/textures/base/pack/character_22_preview_back.png b/textures/base/pack/character_22_preview_back.png new file mode 100644 index 00000000..82a14908 Binary files /dev/null and b/textures/base/pack/character_22_preview_back.png differ diff --git a/textures/base/pack/character_23.png b/textures/base/pack/character_23.png new file mode 100644 index 00000000..f8650968 Binary files /dev/null and b/textures/base/pack/character_23.png differ diff --git a/textures/base/pack/character_23_preview.png b/textures/base/pack/character_23_preview.png new file mode 100644 index 00000000..1478b1a7 Binary files /dev/null and b/textures/base/pack/character_23_preview.png differ diff --git a/textures/base/pack/character_23_preview_back.png b/textures/base/pack/character_23_preview_back.png new file mode 100644 index 00000000..3f62dcd6 Binary files /dev/null and b/textures/base/pack/character_23_preview_back.png differ diff --git a/textures/base/pack/character_24.png b/textures/base/pack/character_24.png new file mode 100644 index 00000000..5b3ca02b Binary files /dev/null and b/textures/base/pack/character_24.png differ diff --git a/textures/base/pack/character_24_preview.png b/textures/base/pack/character_24_preview.png new file mode 100644 index 00000000..544d8768 Binary files /dev/null and b/textures/base/pack/character_24_preview.png differ diff --git a/textures/base/pack/character_24_preview_back.png b/textures/base/pack/character_24_preview_back.png new file mode 100644 index 00000000..2452646e Binary files /dev/null and b/textures/base/pack/character_24_preview_back.png differ diff --git a/textures/base/pack/character_25.png b/textures/base/pack/character_25.png new file mode 100644 index 00000000..b0813f7d Binary files /dev/null and b/textures/base/pack/character_25.png differ diff --git a/textures/base/pack/character_25_preview.png b/textures/base/pack/character_25_preview.png new file mode 100644 index 00000000..0a4b6772 Binary files /dev/null and b/textures/base/pack/character_25_preview.png differ diff --git a/textures/base/pack/character_25_preview_back.png b/textures/base/pack/character_25_preview_back.png new file mode 100644 index 00000000..69247730 Binary files /dev/null and b/textures/base/pack/character_25_preview_back.png differ diff --git a/textures/base/pack/character_26.png b/textures/base/pack/character_26.png new file mode 100644 index 00000000..edc8bb46 Binary files /dev/null and b/textures/base/pack/character_26.png differ diff --git a/textures/base/pack/character_26_preview.png b/textures/base/pack/character_26_preview.png new file mode 100644 index 00000000..01333ac5 Binary files /dev/null and b/textures/base/pack/character_26_preview.png differ diff --git a/textures/base/pack/character_26_preview_back.png b/textures/base/pack/character_26_preview_back.png new file mode 100644 index 00000000..ece9231e Binary files /dev/null and b/textures/base/pack/character_26_preview_back.png differ diff --git a/textures/base/pack/character_27.png b/textures/base/pack/character_27.png new file mode 100644 index 00000000..43ec37a7 Binary files /dev/null and b/textures/base/pack/character_27.png differ diff --git a/textures/base/pack/character_27_preview.png b/textures/base/pack/character_27_preview.png new file mode 100644 index 00000000..7b4fb038 Binary files /dev/null and b/textures/base/pack/character_27_preview.png differ diff --git a/textures/base/pack/character_27_preview_back.png b/textures/base/pack/character_27_preview_back.png new file mode 100644 index 00000000..23e99567 Binary files /dev/null and b/textures/base/pack/character_27_preview_back.png differ diff --git a/textures/base/pack/character_28.png b/textures/base/pack/character_28.png new file mode 100644 index 00000000..76a6d570 Binary files /dev/null and b/textures/base/pack/character_28.png differ diff --git a/textures/base/pack/character_28_preview.png b/textures/base/pack/character_28_preview.png new file mode 100644 index 00000000..a1619793 Binary files /dev/null and b/textures/base/pack/character_28_preview.png differ diff --git a/textures/base/pack/character_28_preview_back.png b/textures/base/pack/character_28_preview_back.png new file mode 100644 index 00000000..63dae878 Binary files /dev/null and b/textures/base/pack/character_28_preview_back.png differ diff --git a/textures/base/pack/character_29.png b/textures/base/pack/character_29.png new file mode 100644 index 00000000..21f9da67 Binary files /dev/null and b/textures/base/pack/character_29.png differ diff --git a/textures/base/pack/character_29_preview.png b/textures/base/pack/character_29_preview.png new file mode 100644 index 00000000..1737ed7e Binary files /dev/null and b/textures/base/pack/character_29_preview.png differ diff --git a/textures/base/pack/character_29_preview_back.png b/textures/base/pack/character_29_preview_back.png new file mode 100644 index 00000000..02153f21 Binary files /dev/null and b/textures/base/pack/character_29_preview_back.png differ diff --git a/textures/base/pack/character_2_preview.png b/textures/base/pack/character_2_preview.png new file mode 100644 index 00000000..53438d55 Binary files /dev/null and b/textures/base/pack/character_2_preview.png differ diff --git a/textures/base/pack/character_2_preview_back.png b/textures/base/pack/character_2_preview_back.png new file mode 100644 index 00000000..c35574f9 Binary files /dev/null and b/textures/base/pack/character_2_preview_back.png differ diff --git a/textures/base/pack/character_3.png b/textures/base/pack/character_3.png new file mode 100644 index 00000000..966b87cc Binary files /dev/null and b/textures/base/pack/character_3.png differ diff --git a/textures/base/pack/character_30.png b/textures/base/pack/character_30.png new file mode 100644 index 00000000..4d91b36b Binary files /dev/null and b/textures/base/pack/character_30.png differ diff --git a/textures/base/pack/character_30_preview.png b/textures/base/pack/character_30_preview.png new file mode 100644 index 00000000..a695c7fd Binary files /dev/null and b/textures/base/pack/character_30_preview.png differ diff --git a/textures/base/pack/character_30_preview_back.png b/textures/base/pack/character_30_preview_back.png new file mode 100644 index 00000000..c00dadb1 Binary files /dev/null and b/textures/base/pack/character_30_preview_back.png differ diff --git a/textures/base/pack/character_31.png b/textures/base/pack/character_31.png new file mode 100644 index 00000000..63bcd381 Binary files /dev/null and b/textures/base/pack/character_31.png differ diff --git a/textures/base/pack/character_31_preview.png b/textures/base/pack/character_31_preview.png new file mode 100644 index 00000000..8b933714 Binary files /dev/null and b/textures/base/pack/character_31_preview.png differ diff --git a/textures/base/pack/character_31_preview_back.png b/textures/base/pack/character_31_preview_back.png new file mode 100644 index 00000000..3b495475 Binary files /dev/null and b/textures/base/pack/character_31_preview_back.png differ diff --git a/textures/base/pack/character_32.png b/textures/base/pack/character_32.png new file mode 100644 index 00000000..26827983 Binary files /dev/null and b/textures/base/pack/character_32.png differ diff --git a/textures/base/pack/character_32_preview.png b/textures/base/pack/character_32_preview.png new file mode 100644 index 00000000..7016ecf8 Binary files /dev/null and b/textures/base/pack/character_32_preview.png differ diff --git a/textures/base/pack/character_32_preview_back.png b/textures/base/pack/character_32_preview_back.png new file mode 100644 index 00000000..eb9d96c2 Binary files /dev/null and b/textures/base/pack/character_32_preview_back.png differ diff --git a/textures/base/pack/character_33.png b/textures/base/pack/character_33.png new file mode 100644 index 00000000..4d78496f Binary files /dev/null and b/textures/base/pack/character_33.png differ diff --git a/textures/base/pack/character_33_preview.png b/textures/base/pack/character_33_preview.png new file mode 100644 index 00000000..95e81067 Binary files /dev/null and b/textures/base/pack/character_33_preview.png differ diff --git a/textures/base/pack/character_33_preview_back.png b/textures/base/pack/character_33_preview_back.png new file mode 100644 index 00000000..d28d677c Binary files /dev/null and b/textures/base/pack/character_33_preview_back.png differ diff --git a/textures/base/pack/character_34.png b/textures/base/pack/character_34.png new file mode 100644 index 00000000..70a35302 Binary files /dev/null and b/textures/base/pack/character_34.png differ diff --git a/textures/base/pack/character_34_preview.png b/textures/base/pack/character_34_preview.png new file mode 100644 index 00000000..32c55a9a Binary files /dev/null and b/textures/base/pack/character_34_preview.png differ diff --git a/textures/base/pack/character_34_preview_back.png b/textures/base/pack/character_34_preview_back.png new file mode 100644 index 00000000..73b848dc Binary files /dev/null and b/textures/base/pack/character_34_preview_back.png differ diff --git a/textures/base/pack/character_35.png b/textures/base/pack/character_35.png new file mode 100644 index 00000000..1fdaac9f Binary files /dev/null and b/textures/base/pack/character_35.png differ diff --git a/textures/base/pack/character_35_preview.png b/textures/base/pack/character_35_preview.png new file mode 100644 index 00000000..978d81f3 Binary files /dev/null and b/textures/base/pack/character_35_preview.png differ diff --git a/textures/base/pack/character_35_preview_back.png b/textures/base/pack/character_35_preview_back.png new file mode 100644 index 00000000..5a0cf890 Binary files /dev/null and b/textures/base/pack/character_35_preview_back.png differ diff --git a/textures/base/pack/character_36.png b/textures/base/pack/character_36.png new file mode 100644 index 00000000..0d98a910 Binary files /dev/null and b/textures/base/pack/character_36.png differ diff --git a/textures/base/pack/character_36_preview.png b/textures/base/pack/character_36_preview.png new file mode 100644 index 00000000..e141bd22 Binary files /dev/null and b/textures/base/pack/character_36_preview.png differ diff --git a/textures/base/pack/character_36_preview_back.png b/textures/base/pack/character_36_preview_back.png new file mode 100644 index 00000000..f210e5da Binary files /dev/null and b/textures/base/pack/character_36_preview_back.png differ diff --git a/textures/base/pack/character_37.png b/textures/base/pack/character_37.png new file mode 100644 index 00000000..87d3e18b Binary files /dev/null and b/textures/base/pack/character_37.png differ diff --git a/textures/base/pack/character_37_preview.png b/textures/base/pack/character_37_preview.png new file mode 100644 index 00000000..40d1cc0c Binary files /dev/null and b/textures/base/pack/character_37_preview.png differ diff --git a/textures/base/pack/character_37_preview_back.png b/textures/base/pack/character_37_preview_back.png new file mode 100644 index 00000000..85f5682b Binary files /dev/null and b/textures/base/pack/character_37_preview_back.png differ diff --git a/textures/base/pack/character_38.png b/textures/base/pack/character_38.png new file mode 100644 index 00000000..505276c6 Binary files /dev/null and b/textures/base/pack/character_38.png differ diff --git a/textures/base/pack/character_38_preview.png b/textures/base/pack/character_38_preview.png new file mode 100644 index 00000000..3700d732 Binary files /dev/null and b/textures/base/pack/character_38_preview.png differ diff --git a/textures/base/pack/character_38_preview_back.png b/textures/base/pack/character_38_preview_back.png new file mode 100644 index 00000000..9541bd67 Binary files /dev/null and b/textures/base/pack/character_38_preview_back.png differ diff --git a/textures/base/pack/character_39.png b/textures/base/pack/character_39.png new file mode 100644 index 00000000..dbf6d5d0 Binary files /dev/null and b/textures/base/pack/character_39.png differ diff --git a/textures/base/pack/character_39_preview.png b/textures/base/pack/character_39_preview.png new file mode 100644 index 00000000..ca49893e Binary files /dev/null and b/textures/base/pack/character_39_preview.png differ diff --git a/textures/base/pack/character_39_preview_back.png b/textures/base/pack/character_39_preview_back.png new file mode 100644 index 00000000..efcfef74 Binary files /dev/null and b/textures/base/pack/character_39_preview_back.png differ diff --git a/textures/base/pack/character_3_preview.png b/textures/base/pack/character_3_preview.png new file mode 100644 index 00000000..87fe93a1 Binary files /dev/null and b/textures/base/pack/character_3_preview.png differ diff --git a/textures/base/pack/character_3_preview_back.png b/textures/base/pack/character_3_preview_back.png new file mode 100644 index 00000000..4a100922 Binary files /dev/null and b/textures/base/pack/character_3_preview_back.png differ diff --git a/textures/base/pack/character_4.png b/textures/base/pack/character_4.png new file mode 100644 index 00000000..c6ceec00 Binary files /dev/null and b/textures/base/pack/character_4.png differ diff --git a/textures/base/pack/character_40.png b/textures/base/pack/character_40.png new file mode 100644 index 00000000..e52a9ee9 Binary files /dev/null and b/textures/base/pack/character_40.png differ diff --git a/textures/base/pack/character_40_preview.png b/textures/base/pack/character_40_preview.png new file mode 100644 index 00000000..ba877157 Binary files /dev/null and b/textures/base/pack/character_40_preview.png differ diff --git a/textures/base/pack/character_40_preview_back.png b/textures/base/pack/character_40_preview_back.png new file mode 100644 index 00000000..aeb0e75f Binary files /dev/null and b/textures/base/pack/character_40_preview_back.png differ diff --git a/textures/base/pack/character_41.png b/textures/base/pack/character_41.png new file mode 100644 index 00000000..8fd60860 Binary files /dev/null and b/textures/base/pack/character_41.png differ diff --git a/textures/base/pack/character_41_preview.png b/textures/base/pack/character_41_preview.png new file mode 100644 index 00000000..9f348ec7 Binary files /dev/null and b/textures/base/pack/character_41_preview.png differ diff --git a/textures/base/pack/character_41_preview_back.png b/textures/base/pack/character_41_preview_back.png new file mode 100644 index 00000000..46df215d Binary files /dev/null and b/textures/base/pack/character_41_preview_back.png differ diff --git a/textures/base/pack/character_42.png b/textures/base/pack/character_42.png new file mode 100644 index 00000000..d561570c Binary files /dev/null and b/textures/base/pack/character_42.png differ diff --git a/textures/base/pack/character_42_preview.png b/textures/base/pack/character_42_preview.png new file mode 100644 index 00000000..fd583214 Binary files /dev/null and b/textures/base/pack/character_42_preview.png differ diff --git a/textures/base/pack/character_42_preview_back.png b/textures/base/pack/character_42_preview_back.png new file mode 100644 index 00000000..b8f0e6b0 Binary files /dev/null and b/textures/base/pack/character_42_preview_back.png differ diff --git a/textures/base/pack/character_43.png b/textures/base/pack/character_43.png new file mode 100644 index 00000000..cebb2100 Binary files /dev/null and b/textures/base/pack/character_43.png differ diff --git a/textures/base/pack/character_43_preview.png b/textures/base/pack/character_43_preview.png new file mode 100644 index 00000000..80c15a6f Binary files /dev/null and b/textures/base/pack/character_43_preview.png differ diff --git a/textures/base/pack/character_43_preview_back.png b/textures/base/pack/character_43_preview_back.png new file mode 100644 index 00000000..660569cd Binary files /dev/null and b/textures/base/pack/character_43_preview_back.png differ diff --git a/textures/base/pack/character_44.png b/textures/base/pack/character_44.png new file mode 100644 index 00000000..6fe993fe Binary files /dev/null and b/textures/base/pack/character_44.png differ diff --git a/textures/base/pack/character_44_preview.png b/textures/base/pack/character_44_preview.png new file mode 100644 index 00000000..0012396b Binary files /dev/null and b/textures/base/pack/character_44_preview.png differ diff --git a/textures/base/pack/character_44_preview_back.png b/textures/base/pack/character_44_preview_back.png new file mode 100644 index 00000000..d47e51b5 Binary files /dev/null and b/textures/base/pack/character_44_preview_back.png differ diff --git a/textures/base/pack/character_45.png b/textures/base/pack/character_45.png new file mode 100644 index 00000000..1026bf02 Binary files /dev/null and b/textures/base/pack/character_45.png differ diff --git a/textures/base/pack/character_45_preview.png b/textures/base/pack/character_45_preview.png new file mode 100644 index 00000000..28a731ea Binary files /dev/null and b/textures/base/pack/character_45_preview.png differ diff --git a/textures/base/pack/character_45_preview_back.png b/textures/base/pack/character_45_preview_back.png new file mode 100644 index 00000000..31cd605f Binary files /dev/null and b/textures/base/pack/character_45_preview_back.png differ diff --git a/textures/base/pack/character_46.png b/textures/base/pack/character_46.png new file mode 100644 index 00000000..e6acf39e Binary files /dev/null and b/textures/base/pack/character_46.png differ diff --git a/textures/base/pack/character_46_preview.png b/textures/base/pack/character_46_preview.png new file mode 100644 index 00000000..72060b5f Binary files /dev/null and b/textures/base/pack/character_46_preview.png differ diff --git a/textures/base/pack/character_46_preview_back.png b/textures/base/pack/character_46_preview_back.png new file mode 100644 index 00000000..1a69569e Binary files /dev/null and b/textures/base/pack/character_46_preview_back.png differ diff --git a/textures/base/pack/character_47.png b/textures/base/pack/character_47.png new file mode 100644 index 00000000..c7057cd3 Binary files /dev/null and b/textures/base/pack/character_47.png differ diff --git a/textures/base/pack/character_47_preview.png b/textures/base/pack/character_47_preview.png new file mode 100644 index 00000000..a3dfc75b Binary files /dev/null and b/textures/base/pack/character_47_preview.png differ diff --git a/textures/base/pack/character_47_preview_back.png b/textures/base/pack/character_47_preview_back.png new file mode 100644 index 00000000..4dd2e93a Binary files /dev/null and b/textures/base/pack/character_47_preview_back.png differ diff --git a/textures/base/pack/character_48.png b/textures/base/pack/character_48.png new file mode 100644 index 00000000..7b2717b7 Binary files /dev/null and b/textures/base/pack/character_48.png differ diff --git a/textures/base/pack/character_48_preview.png b/textures/base/pack/character_48_preview.png new file mode 100644 index 00000000..1fd141f4 Binary files /dev/null and b/textures/base/pack/character_48_preview.png differ diff --git a/textures/base/pack/character_48_preview_back.png b/textures/base/pack/character_48_preview_back.png new file mode 100644 index 00000000..070baf65 Binary files /dev/null and b/textures/base/pack/character_48_preview_back.png differ diff --git a/textures/base/pack/character_49.png b/textures/base/pack/character_49.png new file mode 100644 index 00000000..21950eb5 Binary files /dev/null and b/textures/base/pack/character_49.png differ diff --git a/textures/base/pack/character_49_preview.png b/textures/base/pack/character_49_preview.png new file mode 100644 index 00000000..135c2502 Binary files /dev/null and b/textures/base/pack/character_49_preview.png differ diff --git a/textures/base/pack/character_49_preview_back.png b/textures/base/pack/character_49_preview_back.png new file mode 100644 index 00000000..55436dd1 Binary files /dev/null and b/textures/base/pack/character_49_preview_back.png differ diff --git a/textures/base/pack/character_4_preview.png b/textures/base/pack/character_4_preview.png new file mode 100644 index 00000000..3d1318b5 Binary files /dev/null and b/textures/base/pack/character_4_preview.png differ diff --git a/textures/base/pack/character_4_preview_back.png b/textures/base/pack/character_4_preview_back.png new file mode 100644 index 00000000..fcfa1b3c Binary files /dev/null and b/textures/base/pack/character_4_preview_back.png differ diff --git a/textures/base/pack/character_5.png b/textures/base/pack/character_5.png new file mode 100644 index 00000000..736a9c9b Binary files /dev/null and b/textures/base/pack/character_5.png differ diff --git a/textures/base/pack/character_50.png b/textures/base/pack/character_50.png new file mode 100644 index 00000000..c9bfa134 Binary files /dev/null and b/textures/base/pack/character_50.png differ diff --git a/textures/base/pack/character_50_preview.png b/textures/base/pack/character_50_preview.png new file mode 100644 index 00000000..65ff180e Binary files /dev/null and b/textures/base/pack/character_50_preview.png differ diff --git a/textures/base/pack/character_50_preview_back.png b/textures/base/pack/character_50_preview_back.png new file mode 100644 index 00000000..b40f3cd4 Binary files /dev/null and b/textures/base/pack/character_50_preview_back.png differ diff --git a/textures/base/pack/character_51.png b/textures/base/pack/character_51.png new file mode 100644 index 00000000..3d515a1f Binary files /dev/null and b/textures/base/pack/character_51.png differ diff --git a/textures/base/pack/character_51_preview.png b/textures/base/pack/character_51_preview.png new file mode 100644 index 00000000..583c80c1 Binary files /dev/null and b/textures/base/pack/character_51_preview.png differ diff --git a/textures/base/pack/character_51_preview_back.png b/textures/base/pack/character_51_preview_back.png new file mode 100644 index 00000000..76bde921 Binary files /dev/null and b/textures/base/pack/character_51_preview_back.png differ diff --git a/textures/base/pack/character_52.png b/textures/base/pack/character_52.png new file mode 100644 index 00000000..4b4cc30f Binary files /dev/null and b/textures/base/pack/character_52.png differ diff --git a/textures/base/pack/character_52_preview.png b/textures/base/pack/character_52_preview.png new file mode 100644 index 00000000..9bfb9ad1 Binary files /dev/null and b/textures/base/pack/character_52_preview.png differ diff --git a/textures/base/pack/character_52_preview_back.png b/textures/base/pack/character_52_preview_back.png new file mode 100644 index 00000000..84d3b1bf Binary files /dev/null and b/textures/base/pack/character_52_preview_back.png differ diff --git a/textures/base/pack/character_5_preview.png b/textures/base/pack/character_5_preview.png new file mode 100644 index 00000000..68a5ba4b Binary files /dev/null and b/textures/base/pack/character_5_preview.png differ diff --git a/textures/base/pack/character_5_preview_back.png b/textures/base/pack/character_5_preview_back.png new file mode 100644 index 00000000..6e627f0f Binary files /dev/null and b/textures/base/pack/character_5_preview_back.png differ diff --git a/textures/base/pack/character_6.png b/textures/base/pack/character_6.png new file mode 100644 index 00000000..f8896a5c Binary files /dev/null and b/textures/base/pack/character_6.png differ diff --git a/textures/base/pack/character_6_preview.png b/textures/base/pack/character_6_preview.png new file mode 100644 index 00000000..d5b441ad Binary files /dev/null and b/textures/base/pack/character_6_preview.png differ diff --git a/textures/base/pack/character_6_preview_back.png b/textures/base/pack/character_6_preview_back.png new file mode 100644 index 00000000..ee3b5459 Binary files /dev/null and b/textures/base/pack/character_6_preview_back.png differ diff --git a/textures/base/pack/character_7.png b/textures/base/pack/character_7.png new file mode 100644 index 00000000..275178d9 Binary files /dev/null and b/textures/base/pack/character_7.png differ diff --git a/textures/base/pack/character_7_preview.png b/textures/base/pack/character_7_preview.png new file mode 100644 index 00000000..2f18fd6e Binary files /dev/null and b/textures/base/pack/character_7_preview.png differ diff --git a/textures/base/pack/character_7_preview_back.png b/textures/base/pack/character_7_preview_back.png new file mode 100644 index 00000000..269abaf6 Binary files /dev/null and b/textures/base/pack/character_7_preview_back.png differ diff --git a/textures/base/pack/character_8.png b/textures/base/pack/character_8.png new file mode 100644 index 00000000..a9b0c420 Binary files /dev/null and b/textures/base/pack/character_8.png differ diff --git a/textures/base/pack/character_8_preview.png b/textures/base/pack/character_8_preview.png new file mode 100644 index 00000000..585cd7de Binary files /dev/null and b/textures/base/pack/character_8_preview.png differ diff --git a/textures/base/pack/character_8_preview_back.png b/textures/base/pack/character_8_preview_back.png new file mode 100644 index 00000000..dddc392e Binary files /dev/null and b/textures/base/pack/character_8_preview_back.png differ diff --git a/textures/base/pack/character_9.png b/textures/base/pack/character_9.png new file mode 100644 index 00000000..668bbbe2 Binary files /dev/null and b/textures/base/pack/character_9.png differ diff --git a/textures/base/pack/character_9_preview.png b/textures/base/pack/character_9_preview.png new file mode 100644 index 00000000..8e00654a Binary files /dev/null and b/textures/base/pack/character_9_preview.png differ diff --git a/textures/base/pack/character_9_preview_back.png b/textures/base/pack/character_9_preview_back.png new file mode 100644 index 00000000..b54f2274 Binary files /dev/null and b/textures/base/pack/character_9_preview_back.png differ diff --git a/textures/base/pack/cooked_rat.png b/textures/base/pack/cooked_rat.png new file mode 100644 index 00000000..db802985 Binary files /dev/null and b/textures/base/pack/cooked_rat.png differ diff --git a/textures/base/pack/cottages_barrel.png b/textures/base/pack/cottages_barrel.png new file mode 100644 index 00000000..174c5d77 Binary files /dev/null and b/textures/base/pack/cottages_barrel.png differ diff --git a/textures/base/pack/cottages_beds_bed_side.png b/textures/base/pack/cottages_beds_bed_side.png new file mode 100644 index 00000000..c9e79e2a Binary files /dev/null and b/textures/base/pack/cottages_beds_bed_side.png differ diff --git a/textures/base/pack/cottages_beds_bed_side_top_l.png b/textures/base/pack/cottages_beds_bed_side_top_l.png new file mode 100644 index 00000000..4b8dc66d Binary files /dev/null and b/textures/base/pack/cottages_beds_bed_side_top_l.png differ diff --git a/textures/base/pack/cottages_beds_bed_side_top_r.png b/textures/base/pack/cottages_beds_bed_side_top_r.png new file mode 100644 index 00000000..daae624e Binary files /dev/null and b/textures/base/pack/cottages_beds_bed_side_top_r.png differ diff --git a/textures/base/pack/cottages_beds_bed_top_bottom.png b/textures/base/pack/cottages_beds_bed_top_bottom.png new file mode 100644 index 00000000..2639dd2d Binary files /dev/null and b/textures/base/pack/cottages_beds_bed_top_bottom.png differ diff --git a/textures/base/pack/cottages_beds_bed_top_top.png b/textures/base/pack/cottages_beds_bed_top_top.png new file mode 100644 index 00000000..fc46ee19 Binary files /dev/null and b/textures/base/pack/cottages_beds_bed_top_top.png differ diff --git a/textures/base/pack/cottages_clay.png b/textures/base/pack/cottages_clay.png new file mode 100644 index 00000000..76e5a40a Binary files /dev/null and b/textures/base/pack/cottages_clay.png differ diff --git a/textures/base/pack/cottages_darkage_straw.png b/textures/base/pack/cottages_darkage_straw.png new file mode 100644 index 00000000..9817316a Binary files /dev/null and b/textures/base/pack/cottages_darkage_straw.png differ diff --git a/textures/base/pack/cottages_darkage_straw_bale.png b/textures/base/pack/cottages_darkage_straw_bale.png new file mode 100644 index 00000000..f607c2f0 Binary files /dev/null and b/textures/base/pack/cottages_darkage_straw_bale.png differ diff --git a/textures/base/pack/cottages_feldweg.png b/textures/base/pack/cottages_feldweg.png new file mode 100644 index 00000000..65456a82 Binary files /dev/null and b/textures/base/pack/cottages_feldweg.png differ diff --git a/textures/base/pack/cottages_glass_pane.png b/textures/base/pack/cottages_glass_pane.png new file mode 100644 index 00000000..f07912ee Binary files /dev/null and b/textures/base/pack/cottages_glass_pane.png differ diff --git a/textures/base/pack/cottages_homedecor_shingles_asphalt.png b/textures/base/pack/cottages_homedecor_shingles_asphalt.png new file mode 100644 index 00000000..057546ce Binary files /dev/null and b/textures/base/pack/cottages_homedecor_shingles_asphalt.png differ diff --git a/textures/base/pack/cottages_homedecor_shingles_terracotta.png b/textures/base/pack/cottages_homedecor_shingles_terracotta.png new file mode 100644 index 00000000..3f42cca5 Binary files /dev/null and b/textures/base/pack/cottages_homedecor_shingles_terracotta.png differ diff --git a/textures/base/pack/cottages_homedecor_shingles_wood.png b/textures/base/pack/cottages_homedecor_shingles_wood.png new file mode 100644 index 00000000..b982747a Binary files /dev/null and b/textures/base/pack/cottages_homedecor_shingles_wood.png differ diff --git a/textures/base/pack/cottages_junglewood.png b/textures/base/pack/cottages_junglewood.png new file mode 100644 index 00000000..2507706d Binary files /dev/null and b/textures/base/pack/cottages_junglewood.png differ diff --git a/textures/base/pack/cottages_loam.png b/textures/base/pack/cottages_loam.png new file mode 100644 index 00000000..bdf058fa Binary files /dev/null and b/textures/base/pack/cottages_loam.png differ diff --git a/textures/base/pack/cottages_minimal_wood.png b/textures/base/pack/cottages_minimal_wood.png new file mode 100644 index 00000000..57c1d7c1 Binary files /dev/null and b/textures/base/pack/cottages_minimal_wood.png differ diff --git a/textures/base/pack/cottages_reet.png b/textures/base/pack/cottages_reet.png new file mode 100644 index 00000000..67a4bddf Binary files /dev/null and b/textures/base/pack/cottages_reet.png differ diff --git a/textures/base/pack/cottages_slate.png b/textures/base/pack/cottages_slate.png new file mode 100644 index 00000000..f85f162e Binary files /dev/null and b/textures/base/pack/cottages_slate.png differ diff --git a/textures/base/pack/cottages_sleepingmat.png b/textures/base/pack/cottages_sleepingmat.png new file mode 100644 index 00000000..5721a5b6 Binary files /dev/null and b/textures/base/pack/cottages_sleepingmat.png differ diff --git a/textures/base/pack/cottages_steel_block.png b/textures/base/pack/cottages_steel_block.png new file mode 100644 index 00000000..7f49f61f Binary files /dev/null and b/textures/base/pack/cottages_steel_block.png differ diff --git a/textures/base/pack/cottages_stone.png b/textures/base/pack/cottages_stone.png new file mode 100644 index 00000000..63cb7c4e Binary files /dev/null and b/textures/base/pack/cottages_stone.png differ diff --git a/textures/base/pack/cottages_wagonwheel.png b/textures/base/pack/cottages_wagonwheel.png new file mode 100644 index 00000000..6175bba0 Binary files /dev/null and b/textures/base/pack/cottages_wagonwheel.png differ diff --git a/textures/base/pack/cottages_wool.png b/textures/base/pack/cottages_wool.png new file mode 100644 index 00000000..2bbb9cf6 Binary files /dev/null and b/textures/base/pack/cottages_wool.png differ diff --git a/textures/base/pack/crack_anylength.png b/textures/base/pack/crack_anylength.png new file mode 100644 index 00000000..a25e26f2 Binary files /dev/null and b/textures/base/pack/crack_anylength.png differ diff --git a/textures/base/pack/crosshair.png b/textures/base/pack/crosshair.png new file mode 100644 index 00000000..a832298b Binary files /dev/null and b/textures/base/pack/crosshair.png differ diff --git a/textures/base/pack/d0.png b/textures/base/pack/d0.png new file mode 100644 index 00000000..394368e6 Binary files /dev/null and b/textures/base/pack/d0.png differ diff --git a/textures/base/pack/d10.png b/textures/base/pack/d10.png new file mode 100644 index 00000000..4146522d Binary files /dev/null and b/textures/base/pack/d10.png differ diff --git a/textures/base/pack/d20.png b/textures/base/pack/d20.png new file mode 100644 index 00000000..4fcf6275 Binary files /dev/null and b/textures/base/pack/d20.png differ diff --git a/textures/base/pack/d30.png b/textures/base/pack/d30.png new file mode 100644 index 00000000..8ded1747 Binary files /dev/null and b/textures/base/pack/d30.png differ diff --git a/textures/base/pack/d40.png b/textures/base/pack/d40.png new file mode 100644 index 00000000..b2d450bb Binary files /dev/null and b/textures/base/pack/d40.png differ diff --git a/textures/base/pack/d45.png b/textures/base/pack/d45.png new file mode 100644 index 00000000..8057db88 Binary files /dev/null and b/textures/base/pack/d45.png differ diff --git a/textures/base/pack/d50.png b/textures/base/pack/d50.png new file mode 100644 index 00000000..fd3d9087 Binary files /dev/null and b/textures/base/pack/d50.png differ diff --git a/textures/base/pack/d60.png b/textures/base/pack/d60.png new file mode 100644 index 00000000..2ad33d59 Binary files /dev/null and b/textures/base/pack/d60.png differ diff --git a/textures/base/pack/d70.png b/textures/base/pack/d70.png new file mode 100644 index 00000000..08020471 Binary files /dev/null and b/textures/base/pack/d70.png differ diff --git a/textures/base/pack/d80.png b/textures/base/pack/d80.png new file mode 100644 index 00000000..e9425fd5 Binary files /dev/null and b/textures/base/pack/d80.png differ diff --git a/textures/base/pack/default_apple.png b/textures/base/pack/default_apple.png new file mode 100644 index 00000000..97792e1e Binary files /dev/null and b/textures/base/pack/default_apple.png differ diff --git a/textures/base/pack/default_book.png b/textures/base/pack/default_book.png new file mode 100644 index 00000000..6b3a0c23 Binary files /dev/null and b/textures/base/pack/default_book.png differ diff --git a/textures/base/pack/default_bookshelf.png b/textures/base/pack/default_bookshelf.png new file mode 100644 index 00000000..27d8fe08 Binary files /dev/null and b/textures/base/pack/default_bookshelf.png differ diff --git a/textures/base/pack/default_brick.png b/textures/base/pack/default_brick.png new file mode 100644 index 00000000..9c76033f Binary files /dev/null and b/textures/base/pack/default_brick.png differ diff --git a/textures/base/pack/default_bronze_block.png b/textures/base/pack/default_bronze_block.png new file mode 100644 index 00000000..8fe95b20 Binary files /dev/null and b/textures/base/pack/default_bronze_block.png differ diff --git a/textures/base/pack/default_bronze_ingot.png b/textures/base/pack/default_bronze_ingot.png new file mode 100644 index 00000000..2946b838 Binary files /dev/null and b/textures/base/pack/default_bronze_ingot.png differ diff --git a/textures/base/pack/default_cactus_side.png b/textures/base/pack/default_cactus_side.png new file mode 100644 index 00000000..6953cf24 Binary files /dev/null and b/textures/base/pack/default_cactus_side.png differ diff --git a/textures/base/pack/default_cactus_top.png b/textures/base/pack/default_cactus_top.png new file mode 100644 index 00000000..c617647b Binary files /dev/null and b/textures/base/pack/default_cactus_top.png differ diff --git a/textures/base/pack/default_chest_front.png b/textures/base/pack/default_chest_front.png new file mode 100644 index 00000000..c5a76c36 Binary files /dev/null and b/textures/base/pack/default_chest_front.png differ diff --git a/textures/base/pack/default_chest_lock.png b/textures/base/pack/default_chest_lock.png new file mode 100644 index 00000000..368a60bf Binary files /dev/null and b/textures/base/pack/default_chest_lock.png differ diff --git a/textures/base/pack/default_chest_side.png b/textures/base/pack/default_chest_side.png new file mode 100644 index 00000000..83f48610 Binary files /dev/null and b/textures/base/pack/default_chest_side.png differ diff --git a/textures/base/pack/default_chest_top.png b/textures/base/pack/default_chest_top.png new file mode 100644 index 00000000..ba5e2f48 Binary files /dev/null and b/textures/base/pack/default_chest_top.png differ diff --git a/textures/base/pack/default_clay.png b/textures/base/pack/default_clay.png new file mode 100644 index 00000000..6721079a Binary files /dev/null and b/textures/base/pack/default_clay.png differ diff --git a/textures/base/pack/default_clay_brick.png b/textures/base/pack/default_clay_brick.png new file mode 100644 index 00000000..f6663693 Binary files /dev/null and b/textures/base/pack/default_clay_brick.png differ diff --git a/textures/base/pack/default_clay_lump.png b/textures/base/pack/default_clay_lump.png new file mode 100644 index 00000000..4b70d7c9 Binary files /dev/null and b/textures/base/pack/default_clay_lump.png differ diff --git a/textures/base/pack/default_cloud.png b/textures/base/pack/default_cloud.png new file mode 100644 index 00000000..6a1537d1 Binary files /dev/null and b/textures/base/pack/default_cloud.png differ diff --git a/textures/base/pack/default_coal_block.png b/textures/base/pack/default_coal_block.png new file mode 100644 index 00000000..84e8b54f Binary files /dev/null and b/textures/base/pack/default_coal_block.png differ diff --git a/textures/base/pack/default_coal_lump.png b/textures/base/pack/default_coal_lump.png new file mode 100644 index 00000000..56e6ae74 Binary files /dev/null and b/textures/base/pack/default_coal_lump.png differ diff --git a/textures/base/pack/default_cobble.png b/textures/base/pack/default_cobble.png new file mode 100644 index 00000000..5b52cc65 Binary files /dev/null and b/textures/base/pack/default_cobble.png differ diff --git a/textures/base/pack/default_copper_block.png b/textures/base/pack/default_copper_block.png new file mode 100644 index 00000000..1224685e Binary files /dev/null and b/textures/base/pack/default_copper_block.png differ diff --git a/textures/base/pack/default_copper_ingot.png b/textures/base/pack/default_copper_ingot.png new file mode 100644 index 00000000..7979608f Binary files /dev/null and b/textures/base/pack/default_copper_ingot.png differ diff --git a/textures/base/pack/default_copper_lump.png b/textures/base/pack/default_copper_lump.png new file mode 100644 index 00000000..b65b77f4 Binary files /dev/null and b/textures/base/pack/default_copper_lump.png differ diff --git a/textures/base/pack/default_desert_sand.png b/textures/base/pack/default_desert_sand.png new file mode 100644 index 00000000..d73076d3 Binary files /dev/null and b/textures/base/pack/default_desert_sand.png differ diff --git a/textures/base/pack/default_desert_stone.png b/textures/base/pack/default_desert_stone.png new file mode 100644 index 00000000..f69ec943 Binary files /dev/null and b/textures/base/pack/default_desert_stone.png differ diff --git a/textures/base/pack/default_desert_stone_brick.png b/textures/base/pack/default_desert_stone_brick.png new file mode 100644 index 00000000..6af1936f Binary files /dev/null and b/textures/base/pack/default_desert_stone_brick.png differ diff --git a/textures/base/pack/default_diamond.png b/textures/base/pack/default_diamond.png new file mode 100644 index 00000000..2902d009 Binary files /dev/null and b/textures/base/pack/default_diamond.png differ diff --git a/textures/base/pack/default_diamond_block.png b/textures/base/pack/default_diamond_block.png new file mode 100644 index 00000000..84815787 Binary files /dev/null and b/textures/base/pack/default_diamond_block.png differ diff --git a/textures/base/pack/default_dirt.png b/textures/base/pack/default_dirt.png new file mode 100644 index 00000000..1e94b29a Binary files /dev/null and b/textures/base/pack/default_dirt.png differ diff --git a/textures/base/pack/default_dry_shrub.png b/textures/base/pack/default_dry_shrub.png new file mode 100644 index 00000000..00b94910 Binary files /dev/null and b/textures/base/pack/default_dry_shrub.png differ diff --git a/textures/base/pack/default_dry_shrub2.png b/textures/base/pack/default_dry_shrub2.png new file mode 100644 index 00000000..da0d8578 Binary files /dev/null and b/textures/base/pack/default_dry_shrub2.png differ diff --git a/textures/base/pack/default_fence.png b/textures/base/pack/default_fence.png new file mode 100644 index 00000000..51a4b146 Binary files /dev/null and b/textures/base/pack/default_fence.png differ diff --git a/textures/base/pack/default_fence_overlay.png b/textures/base/pack/default_fence_overlay.png new file mode 100644 index 00000000..780e7368 Binary files /dev/null and b/textures/base/pack/default_fence_overlay.png differ diff --git a/textures/base/pack/default_furnace_bottom.png b/textures/base/pack/default_furnace_bottom.png new file mode 100644 index 00000000..2d19b6b1 Binary files /dev/null and b/textures/base/pack/default_furnace_bottom.png differ diff --git a/textures/base/pack/default_furnace_fire_bg.png b/textures/base/pack/default_furnace_fire_bg.png new file mode 100644 index 00000000..e98a4f61 Binary files /dev/null and b/textures/base/pack/default_furnace_fire_bg.png differ diff --git a/textures/base/pack/default_furnace_fire_fg.png b/textures/base/pack/default_furnace_fire_fg.png new file mode 100644 index 00000000..66aab652 Binary files /dev/null and b/textures/base/pack/default_furnace_fire_fg.png differ diff --git a/textures/base/pack/default_furnace_front.png b/textures/base/pack/default_furnace_front.png new file mode 100644 index 00000000..88069c7e Binary files /dev/null and b/textures/base/pack/default_furnace_front.png differ diff --git a/textures/base/pack/default_furnace_front_active.png b/textures/base/pack/default_furnace_front_active.png new file mode 100644 index 00000000..1c460be0 Binary files /dev/null and b/textures/base/pack/default_furnace_front_active.png differ diff --git a/textures/base/pack/default_furnace_side.png b/textures/base/pack/default_furnace_side.png new file mode 100644 index 00000000..2d19b6b1 Binary files /dev/null and b/textures/base/pack/default_furnace_side.png differ diff --git a/textures/base/pack/default_furnace_top.png b/textures/base/pack/default_furnace_top.png new file mode 100644 index 00000000..2d19b6b1 Binary files /dev/null and b/textures/base/pack/default_furnace_top.png differ diff --git a/textures/base/pack/default_glass.png b/textures/base/pack/default_glass.png new file mode 100644 index 00000000..df39f3dc Binary files /dev/null and b/textures/base/pack/default_glass.png differ diff --git a/textures/base/pack/default_gold_block.png b/textures/base/pack/default_gold_block.png new file mode 100644 index 00000000..dee4cdbe Binary files /dev/null and b/textures/base/pack/default_gold_block.png differ diff --git a/textures/base/pack/default_gold_ingot.png b/textures/base/pack/default_gold_ingot.png new file mode 100644 index 00000000..48ca66d6 Binary files /dev/null and b/textures/base/pack/default_gold_ingot.png differ diff --git a/textures/base/pack/default_gold_lump.png b/textures/base/pack/default_gold_lump.png new file mode 100644 index 00000000..776ca808 Binary files /dev/null and b/textures/base/pack/default_gold_lump.png differ diff --git a/textures/base/pack/default_grass.png b/textures/base/pack/default_grass.png new file mode 100644 index 00000000..178ae60b Binary files /dev/null and b/textures/base/pack/default_grass.png differ diff --git a/textures/base/pack/default_grass_1.png b/textures/base/pack/default_grass_1.png new file mode 100644 index 00000000..8c003f3c Binary files /dev/null and b/textures/base/pack/default_grass_1.png differ diff --git a/textures/base/pack/default_grass_2.png b/textures/base/pack/default_grass_2.png new file mode 100644 index 00000000..e4d9de51 Binary files /dev/null and b/textures/base/pack/default_grass_2.png differ diff --git a/textures/base/pack/default_grass_3.png b/textures/base/pack/default_grass_3.png new file mode 100644 index 00000000..c9348258 Binary files /dev/null and b/textures/base/pack/default_grass_3.png differ diff --git a/textures/base/pack/default_grass_4.png b/textures/base/pack/default_grass_4.png new file mode 100644 index 00000000..575c0326 Binary files /dev/null and b/textures/base/pack/default_grass_4.png differ diff --git a/textures/base/pack/default_grass_5.png b/textures/base/pack/default_grass_5.png new file mode 100644 index 00000000..575c0326 Binary files /dev/null and b/textures/base/pack/default_grass_5.png differ diff --git a/textures/base/pack/default_grass_footsteps.png b/textures/base/pack/default_grass_footsteps.png new file mode 100644 index 00000000..8349033d Binary files /dev/null and b/textures/base/pack/default_grass_footsteps.png differ diff --git a/textures/base/pack/default_grass_side.png b/textures/base/pack/default_grass_side.png new file mode 100644 index 00000000..de117f9d Binary files /dev/null and b/textures/base/pack/default_grass_side.png differ diff --git a/textures/base/pack/default_gravel.png b/textures/base/pack/default_gravel.png new file mode 100644 index 00000000..911824a8 Binary files /dev/null and b/textures/base/pack/default_gravel.png differ diff --git a/textures/base/pack/default_ice.png b/textures/base/pack/default_ice.png new file mode 100644 index 00000000..587aa1ed Binary files /dev/null and b/textures/base/pack/default_ice.png differ diff --git a/textures/base/pack/default_iron_lump.png b/textures/base/pack/default_iron_lump.png new file mode 100644 index 00000000..2cbacc79 Binary files /dev/null and b/textures/base/pack/default_iron_lump.png differ diff --git a/textures/base/pack/default_junglegrass.png b/textures/base/pack/default_junglegrass.png new file mode 100644 index 00000000..d935e572 Binary files /dev/null and b/textures/base/pack/default_junglegrass.png differ diff --git a/textures/base/pack/default_jungleleaves.png b/textures/base/pack/default_jungleleaves.png new file mode 100644 index 00000000..c8323276 Binary files /dev/null and b/textures/base/pack/default_jungleleaves.png differ diff --git a/textures/base/pack/default_junglesapling.png b/textures/base/pack/default_junglesapling.png new file mode 100644 index 00000000..aa41099d Binary files /dev/null and b/textures/base/pack/default_junglesapling.png differ diff --git a/textures/base/pack/default_jungletree.png b/textures/base/pack/default_jungletree.png new file mode 100644 index 00000000..b7addc80 Binary files /dev/null and b/textures/base/pack/default_jungletree.png differ diff --git a/textures/base/pack/default_jungletree_top.png b/textures/base/pack/default_jungletree_top.png new file mode 100644 index 00000000..1c3f9612 Binary files /dev/null and b/textures/base/pack/default_jungletree_top.png differ diff --git a/textures/base/pack/default_junglewood.png b/textures/base/pack/default_junglewood.png new file mode 100644 index 00000000..2507706d Binary files /dev/null and b/textures/base/pack/default_junglewood.png differ diff --git a/textures/base/pack/default_ladder.png b/textures/base/pack/default_ladder.png new file mode 100644 index 00000000..0d887a9e Binary files /dev/null and b/textures/base/pack/default_ladder.png differ diff --git a/textures/base/pack/default_lava.png b/textures/base/pack/default_lava.png new file mode 100644 index 00000000..559a6425 Binary files /dev/null and b/textures/base/pack/default_lava.png differ diff --git a/textures/base/pack/default_lava_flowing_animated.png b/textures/base/pack/default_lava_flowing_animated.png new file mode 100644 index 00000000..2782b4ee Binary files /dev/null and b/textures/base/pack/default_lava_flowing_animated.png differ diff --git a/textures/base/pack/default_lava_source_animated.png b/textures/base/pack/default_lava_source_animated.png new file mode 100644 index 00000000..bee60a5c Binary files /dev/null and b/textures/base/pack/default_lava_source_animated.png differ diff --git a/textures/base/pack/default_leaves.png b/textures/base/pack/default_leaves.png new file mode 100644 index 00000000..771c7318 Binary files /dev/null and b/textures/base/pack/default_leaves.png differ diff --git a/textures/base/pack/default_mese_block.png b/textures/base/pack/default_mese_block.png new file mode 100644 index 00000000..013993bc Binary files /dev/null and b/textures/base/pack/default_mese_block.png differ diff --git a/textures/base/pack/default_mese_crystal.png b/textures/base/pack/default_mese_crystal.png new file mode 100644 index 00000000..afc68b7d Binary files /dev/null and b/textures/base/pack/default_mese_crystal.png differ diff --git a/textures/base/pack/default_mese_crystal_fragment.png b/textures/base/pack/default_mese_crystal_fragment.png new file mode 100644 index 00000000..eaf77c48 Binary files /dev/null and b/textures/base/pack/default_mese_crystal_fragment.png differ diff --git a/textures/base/pack/default_mineral_coal.png b/textures/base/pack/default_mineral_coal.png new file mode 100644 index 00000000..7b59a8c0 Binary files /dev/null and b/textures/base/pack/default_mineral_coal.png differ diff --git a/textures/base/pack/default_mineral_copper.png b/textures/base/pack/default_mineral_copper.png new file mode 100644 index 00000000..68344fad Binary files /dev/null and b/textures/base/pack/default_mineral_copper.png differ diff --git a/textures/base/pack/default_mineral_diamond.png b/textures/base/pack/default_mineral_diamond.png new file mode 100644 index 00000000..24bea715 Binary files /dev/null and b/textures/base/pack/default_mineral_diamond.png differ diff --git a/textures/base/pack/default_mineral_gold.png b/textures/base/pack/default_mineral_gold.png new file mode 100644 index 00000000..e350b200 Binary files /dev/null and b/textures/base/pack/default_mineral_gold.png differ diff --git a/textures/base/pack/default_mineral_iron.png b/textures/base/pack/default_mineral_iron.png new file mode 100644 index 00000000..2100ac37 Binary files /dev/null and b/textures/base/pack/default_mineral_iron.png differ diff --git a/textures/base/pack/default_mineral_mese.png b/textures/base/pack/default_mineral_mese.png new file mode 100644 index 00000000..3b389d46 Binary files /dev/null and b/textures/base/pack/default_mineral_mese.png differ diff --git a/textures/base/pack/default_mossycobble.png b/textures/base/pack/default_mossycobble.png new file mode 100644 index 00000000..693f7ede Binary files /dev/null and b/textures/base/pack/default_mossycobble.png differ diff --git a/textures/base/pack/default_nc_back.png b/textures/base/pack/default_nc_back.png new file mode 100644 index 00000000..0c387e1a Binary files /dev/null and b/textures/base/pack/default_nc_back.png differ diff --git a/textures/base/pack/default_nc_front.png b/textures/base/pack/default_nc_front.png new file mode 100644 index 00000000..167f9760 Binary files /dev/null and b/textures/base/pack/default_nc_front.png differ diff --git a/textures/base/pack/default_nc_rb.png b/textures/base/pack/default_nc_rb.png new file mode 100644 index 00000000..0fef7d6f Binary files /dev/null and b/textures/base/pack/default_nc_rb.png differ diff --git a/textures/base/pack/default_nc_side.png b/textures/base/pack/default_nc_side.png new file mode 100644 index 00000000..fc8b7bf2 Binary files /dev/null and b/textures/base/pack/default_nc_side.png differ diff --git a/textures/base/pack/default_obsidian.png b/textures/base/pack/default_obsidian.png new file mode 100644 index 00000000..66b4bb75 Binary files /dev/null and b/textures/base/pack/default_obsidian.png differ diff --git a/textures/base/pack/default_obsidian_glass.png b/textures/base/pack/default_obsidian_glass.png new file mode 100644 index 00000000..42311be8 Binary files /dev/null and b/textures/base/pack/default_obsidian_glass.png differ diff --git a/textures/base/pack/default_obsidian_shard.png b/textures/base/pack/default_obsidian_shard.png new file mode 100644 index 00000000..b6ef7fac Binary files /dev/null and b/textures/base/pack/default_obsidian_shard.png differ diff --git a/textures/base/pack/default_paper.png b/textures/base/pack/default_paper.png new file mode 100644 index 00000000..d127a93f Binary files /dev/null and b/textures/base/pack/default_paper.png differ diff --git a/textures/base/pack/default_papyrus.png b/textures/base/pack/default_papyrus.png new file mode 100644 index 00000000..8a5361d0 Binary files /dev/null and b/textures/base/pack/default_papyrus.png differ diff --git a/textures/base/pack/default_rail.png b/textures/base/pack/default_rail.png new file mode 100644 index 00000000..8f1d4765 Binary files /dev/null and b/textures/base/pack/default_rail.png differ diff --git a/textures/base/pack/default_rail_crossing.png b/textures/base/pack/default_rail_crossing.png new file mode 100644 index 00000000..cd8b5ad2 Binary files /dev/null and b/textures/base/pack/default_rail_crossing.png differ diff --git a/textures/base/pack/default_rail_curved.png b/textures/base/pack/default_rail_curved.png new file mode 100644 index 00000000..82e3e7f3 Binary files /dev/null and b/textures/base/pack/default_rail_curved.png differ diff --git a/textures/base/pack/default_rail_t_junction.png b/textures/base/pack/default_rail_t_junction.png new file mode 100644 index 00000000..1737fb73 Binary files /dev/null and b/textures/base/pack/default_rail_t_junction.png differ diff --git a/textures/base/pack/default_river_gravel.png b/textures/base/pack/default_river_gravel.png new file mode 100644 index 00000000..8441d266 Binary files /dev/null and b/textures/base/pack/default_river_gravel.png differ diff --git a/textures/base/pack/default_sand.png b/textures/base/pack/default_sand.png new file mode 100644 index 00000000..53c28e1a Binary files /dev/null and b/textures/base/pack/default_sand.png differ diff --git a/textures/base/pack/default_sandstone.png b/textures/base/pack/default_sandstone.png new file mode 100644 index 00000000..bd9cb869 Binary files /dev/null and b/textures/base/pack/default_sandstone.png differ diff --git a/textures/base/pack/default_sandstone_brick.png b/textures/base/pack/default_sandstone_brick.png new file mode 100644 index 00000000..eaf07874 Binary files /dev/null and b/textures/base/pack/default_sandstone_brick.png differ diff --git a/textures/base/pack/default_sapling.png b/textures/base/pack/default_sapling.png new file mode 100644 index 00000000..47dabe1c Binary files /dev/null and b/textures/base/pack/default_sapling.png differ diff --git a/textures/base/pack/default_scorched_stuff.png b/textures/base/pack/default_scorched_stuff.png new file mode 100644 index 00000000..f64d177e Binary files /dev/null and b/textures/base/pack/default_scorched_stuff.png differ diff --git a/textures/base/pack/default_sign_wall.png b/textures/base/pack/default_sign_wall.png new file mode 100644 index 00000000..d96985ba Binary files /dev/null and b/textures/base/pack/default_sign_wall.png differ diff --git a/textures/base/pack/default_snow.png b/textures/base/pack/default_snow.png new file mode 100644 index 00000000..9a44541b Binary files /dev/null and b/textures/base/pack/default_snow.png differ diff --git a/textures/base/pack/default_snow_side.png b/textures/base/pack/default_snow_side.png new file mode 100644 index 00000000..af94b82e Binary files /dev/null and b/textures/base/pack/default_snow_side.png differ diff --git a/textures/base/pack/default_snowball.png b/textures/base/pack/default_snowball.png new file mode 100644 index 00000000..8a4a14a2 Binary files /dev/null and b/textures/base/pack/default_snowball.png differ diff --git a/textures/base/pack/default_steel_block.png b/textures/base/pack/default_steel_block.png new file mode 100644 index 00000000..fe737301 Binary files /dev/null and b/textures/base/pack/default_steel_block.png differ diff --git a/textures/base/pack/default_steel_ingot.png b/textures/base/pack/default_steel_ingot.png new file mode 100644 index 00000000..fcb4c340 Binary files /dev/null and b/textures/base/pack/default_steel_ingot.png differ diff --git a/textures/base/pack/default_stick.png b/textures/base/pack/default_stick.png new file mode 100644 index 00000000..eac71add Binary files /dev/null and b/textures/base/pack/default_stick.png differ diff --git a/textures/base/pack/default_stone.png b/textures/base/pack/default_stone.png new file mode 100644 index 00000000..4db9a2d9 Binary files /dev/null and b/textures/base/pack/default_stone.png differ diff --git a/textures/base/pack/default_stone_brick.png b/textures/base/pack/default_stone_brick.png new file mode 100644 index 00000000..8032f7d9 Binary files /dev/null and b/textures/base/pack/default_stone_brick.png differ diff --git a/textures/base/pack/default_tnt_bottom.png b/textures/base/pack/default_tnt_bottom.png new file mode 100644 index 00000000..dd2ae86b Binary files /dev/null and b/textures/base/pack/default_tnt_bottom.png differ diff --git a/textures/base/pack/default_tnt_side.png b/textures/base/pack/default_tnt_side.png new file mode 100644 index 00000000..16fc4b2a Binary files /dev/null and b/textures/base/pack/default_tnt_side.png differ diff --git a/textures/base/pack/default_tnt_top.png b/textures/base/pack/default_tnt_top.png new file mode 100644 index 00000000..7448f13a Binary files /dev/null and b/textures/base/pack/default_tnt_top.png differ diff --git a/textures/base/pack/default_tool_bronzeaxe.png b/textures/base/pack/default_tool_bronzeaxe.png new file mode 100644 index 00000000..9f8e016c Binary files /dev/null and b/textures/base/pack/default_tool_bronzeaxe.png differ diff --git a/textures/base/pack/default_tool_bronzepick.png b/textures/base/pack/default_tool_bronzepick.png new file mode 100644 index 00000000..86e2a753 Binary files /dev/null and b/textures/base/pack/default_tool_bronzepick.png differ diff --git a/textures/base/pack/default_tool_bronzeshovel.png b/textures/base/pack/default_tool_bronzeshovel.png new file mode 100644 index 00000000..44ab7ab4 Binary files /dev/null and b/textures/base/pack/default_tool_bronzeshovel.png differ diff --git a/textures/base/pack/default_tool_bronzesword.png b/textures/base/pack/default_tool_bronzesword.png new file mode 100644 index 00000000..4d85e9ea Binary files /dev/null and b/textures/base/pack/default_tool_bronzesword.png differ diff --git a/textures/base/pack/default_tool_diamondaxe.png b/textures/base/pack/default_tool_diamondaxe.png new file mode 100644 index 00000000..3f1e5427 Binary files /dev/null and b/textures/base/pack/default_tool_diamondaxe.png differ diff --git a/textures/base/pack/default_tool_diamondpick.png b/textures/base/pack/default_tool_diamondpick.png new file mode 100644 index 00000000..91859a6e Binary files /dev/null and b/textures/base/pack/default_tool_diamondpick.png differ diff --git a/textures/base/pack/default_tool_diamondshovel.png b/textures/base/pack/default_tool_diamondshovel.png new file mode 100644 index 00000000..19b94fc1 Binary files /dev/null and b/textures/base/pack/default_tool_diamondshovel.png differ diff --git a/textures/base/pack/default_tool_diamondsword.png b/textures/base/pack/default_tool_diamondsword.png new file mode 100644 index 00000000..ef7d077d Binary files /dev/null and b/textures/base/pack/default_tool_diamondsword.png differ diff --git a/textures/base/pack/default_tool_meseaxe.png b/textures/base/pack/default_tool_meseaxe.png new file mode 100644 index 00000000..630a72dd Binary files /dev/null and b/textures/base/pack/default_tool_meseaxe.png differ diff --git a/textures/base/pack/default_tool_mesepick.png b/textures/base/pack/default_tool_mesepick.png new file mode 100644 index 00000000..8d13c0ce Binary files /dev/null and b/textures/base/pack/default_tool_mesepick.png differ diff --git a/textures/base/pack/default_tool_meseshovel.png b/textures/base/pack/default_tool_meseshovel.png new file mode 100644 index 00000000..2dbf2687 Binary files /dev/null and b/textures/base/pack/default_tool_meseshovel.png differ diff --git a/textures/base/pack/default_tool_mesesword.png b/textures/base/pack/default_tool_mesesword.png new file mode 100644 index 00000000..7ec144f8 Binary files /dev/null and b/textures/base/pack/default_tool_mesesword.png differ diff --git a/textures/base/pack/default_tool_steelaxe.png b/textures/base/pack/default_tool_steelaxe.png new file mode 100644 index 00000000..1ddf0001 Binary files /dev/null and b/textures/base/pack/default_tool_steelaxe.png differ diff --git a/textures/base/pack/default_tool_steelpick.png b/textures/base/pack/default_tool_steelpick.png new file mode 100644 index 00000000..ed62f2ee Binary files /dev/null and b/textures/base/pack/default_tool_steelpick.png differ diff --git a/textures/base/pack/default_tool_steelshovel.png b/textures/base/pack/default_tool_steelshovel.png new file mode 100644 index 00000000..32e3facd Binary files /dev/null and b/textures/base/pack/default_tool_steelshovel.png differ diff --git a/textures/base/pack/default_tool_steelsword.png b/textures/base/pack/default_tool_steelsword.png new file mode 100644 index 00000000..ca995ea8 Binary files /dev/null and b/textures/base/pack/default_tool_steelsword.png differ diff --git a/textures/base/pack/default_tool_stoneaxe.png b/textures/base/pack/default_tool_stoneaxe.png new file mode 100644 index 00000000..1061e10f Binary files /dev/null and b/textures/base/pack/default_tool_stoneaxe.png differ diff --git a/textures/base/pack/default_tool_stoneclub.png b/textures/base/pack/default_tool_stoneclub.png new file mode 100644 index 00000000..a9c29a2c Binary files /dev/null and b/textures/base/pack/default_tool_stoneclub.png differ diff --git a/textures/base/pack/default_tool_stonepick.png b/textures/base/pack/default_tool_stonepick.png new file mode 100644 index 00000000..89d9efb5 Binary files /dev/null and b/textures/base/pack/default_tool_stonepick.png differ diff --git a/textures/base/pack/default_tool_stoneshovel.png b/textures/base/pack/default_tool_stoneshovel.png new file mode 100644 index 00000000..d6f2f932 Binary files /dev/null and b/textures/base/pack/default_tool_stoneshovel.png differ diff --git a/textures/base/pack/default_tool_stonesword.png b/textures/base/pack/default_tool_stonesword.png new file mode 100644 index 00000000..cf02a017 Binary files /dev/null and b/textures/base/pack/default_tool_stonesword.png differ diff --git a/textures/base/pack/default_tool_woodaxe.png b/textures/base/pack/default_tool_woodaxe.png new file mode 100644 index 00000000..4ea505f7 Binary files /dev/null and b/textures/base/pack/default_tool_woodaxe.png differ diff --git a/textures/base/pack/default_tool_woodclub.png b/textures/base/pack/default_tool_woodclub.png new file mode 100644 index 00000000..e07d6bea Binary files /dev/null and b/textures/base/pack/default_tool_woodclub.png differ diff --git a/textures/base/pack/default_tool_woodpick.png b/textures/base/pack/default_tool_woodpick.png new file mode 100644 index 00000000..2ab00a88 Binary files /dev/null and b/textures/base/pack/default_tool_woodpick.png differ diff --git a/textures/base/pack/default_tool_woodshovel.png b/textures/base/pack/default_tool_woodshovel.png new file mode 100644 index 00000000..18c19a9f Binary files /dev/null and b/textures/base/pack/default_tool_woodshovel.png differ diff --git a/textures/base/pack/default_tool_woodsword.png b/textures/base/pack/default_tool_woodsword.png new file mode 100644 index 00000000..0ca2cf63 Binary files /dev/null and b/textures/base/pack/default_tool_woodsword.png differ diff --git a/textures/base/pack/default_torch.png b/textures/base/pack/default_torch.png new file mode 100644 index 00000000..245022b9 Binary files /dev/null and b/textures/base/pack/default_torch.png differ diff --git a/textures/base/pack/default_torch_animated.png b/textures/base/pack/default_torch_animated.png new file mode 100644 index 00000000..1622eec0 Binary files /dev/null and b/textures/base/pack/default_torch_animated.png differ diff --git a/textures/base/pack/default_torch_on_ceiling.png b/textures/base/pack/default_torch_on_ceiling.png new file mode 100644 index 00000000..fc8876ee Binary files /dev/null and b/textures/base/pack/default_torch_on_ceiling.png differ diff --git a/textures/base/pack/default_torch_on_ceiling_animated.png b/textures/base/pack/default_torch_on_ceiling_animated.png new file mode 100644 index 00000000..76b25f4b Binary files /dev/null and b/textures/base/pack/default_torch_on_ceiling_animated.png differ diff --git a/textures/base/pack/default_torch_on_floor.png b/textures/base/pack/default_torch_on_floor.png new file mode 100644 index 00000000..5bd5038a Binary files /dev/null and b/textures/base/pack/default_torch_on_floor.png differ diff --git a/textures/base/pack/default_torch_on_floor_animated.png b/textures/base/pack/default_torch_on_floor_animated.png new file mode 100644 index 00000000..1a66bcd1 Binary files /dev/null and b/textures/base/pack/default_torch_on_floor_animated.png differ diff --git a/textures/base/pack/default_tree.png b/textures/base/pack/default_tree.png new file mode 100644 index 00000000..6a595de5 Binary files /dev/null and b/textures/base/pack/default_tree.png differ diff --git a/textures/base/pack/default_tree_top.png b/textures/base/pack/default_tree_top.png new file mode 100644 index 00000000..286bbc70 Binary files /dev/null and b/textures/base/pack/default_tree_top.png differ diff --git a/textures/base/pack/default_water.png b/textures/base/pack/default_water.png new file mode 100644 index 00000000..b887d729 Binary files /dev/null and b/textures/base/pack/default_water.png differ diff --git a/textures/base/pack/default_water_flowing_animated.png b/textures/base/pack/default_water_flowing_animated.png new file mode 100644 index 00000000..00c96db4 Binary files /dev/null and b/textures/base/pack/default_water_flowing_animated.png differ diff --git a/textures/base/pack/default_water_source_animated.png b/textures/base/pack/default_water_source_animated.png new file mode 100644 index 00000000..4173c98a Binary files /dev/null and b/textures/base/pack/default_water_source_animated.png differ diff --git a/textures/base/pack/default_wood.png b/textures/base/pack/default_wood.png new file mode 100644 index 00000000..9708ac90 Binary files /dev/null and b/textures/base/pack/default_wood.png differ diff --git a/textures/base/pack/door_brown.png b/textures/base/pack/door_brown.png new file mode 100644 index 00000000..5e6f2118 Binary files /dev/null and b/textures/base/pack/door_brown.png differ diff --git a/textures/base/pack/door_grey.png b/textures/base/pack/door_grey.png new file mode 100644 index 00000000..7d95c226 Binary files /dev/null and b/textures/base/pack/door_grey.png differ diff --git a/textures/base/pack/door_steel.png b/textures/base/pack/door_steel.png new file mode 100644 index 00000000..fed1794c Binary files /dev/null and b/textures/base/pack/door_steel.png differ diff --git a/textures/base/pack/door_steel_a.png b/textures/base/pack/door_steel_a.png new file mode 100644 index 00000000..77e3bc70 Binary files /dev/null and b/textures/base/pack/door_steel_a.png differ diff --git a/textures/base/pack/door_steel_b.png b/textures/base/pack/door_steel_b.png new file mode 100644 index 00000000..450f35fb Binary files /dev/null and b/textures/base/pack/door_steel_b.png differ diff --git a/textures/base/pack/door_wood.png b/textures/base/pack/door_wood.png new file mode 100644 index 00000000..2b2136cb Binary files /dev/null and b/textures/base/pack/door_wood.png differ diff --git a/textures/base/pack/door_wood_a.png b/textures/base/pack/door_wood_a.png new file mode 100644 index 00000000..adb4a1ec Binary files /dev/null and b/textures/base/pack/door_wood_a.png differ diff --git a/textures/base/pack/door_wood_b.png b/textures/base/pack/door_wood_b.png new file mode 100644 index 00000000..c2716efa Binary files /dev/null and b/textures/base/pack/door_wood_b.png differ diff --git a/textures/base/pack/doors_brown.png b/textures/base/pack/doors_brown.png new file mode 100644 index 00000000..8c8e3d89 Binary files /dev/null and b/textures/base/pack/doors_brown.png differ diff --git a/textures/base/pack/doors_glass.png b/textures/base/pack/doors_glass.png new file mode 100644 index 00000000..49ec245c Binary files /dev/null and b/textures/base/pack/doors_glass.png differ diff --git a/textures/base/pack/doors_glass_a.png b/textures/base/pack/doors_glass_a.png new file mode 100644 index 00000000..da254028 Binary files /dev/null and b/textures/base/pack/doors_glass_a.png differ diff --git a/textures/base/pack/doors_glass_b.png b/textures/base/pack/doors_glass_b.png new file mode 100644 index 00000000..da254028 Binary files /dev/null and b/textures/base/pack/doors_glass_b.png differ diff --git a/textures/base/pack/doors_glass_side.png b/textures/base/pack/doors_glass_side.png new file mode 100644 index 00000000..755672bd Binary files /dev/null and b/textures/base/pack/doors_glass_side.png differ diff --git a/textures/base/pack/doors_grey.png b/textures/base/pack/doors_grey.png new file mode 100644 index 00000000..ad110c7d Binary files /dev/null and b/textures/base/pack/doors_grey.png differ diff --git a/textures/base/pack/doors_obsidian_glass.png b/textures/base/pack/doors_obsidian_glass.png new file mode 100644 index 00000000..c3277204 Binary files /dev/null and b/textures/base/pack/doors_obsidian_glass.png differ diff --git a/textures/base/pack/doors_obsidian_glass_a.png b/textures/base/pack/doors_obsidian_glass_a.png new file mode 100644 index 00000000..d5ac83d0 Binary files /dev/null and b/textures/base/pack/doors_obsidian_glass_a.png differ diff --git a/textures/base/pack/doors_obsidian_glass_b.png b/textures/base/pack/doors_obsidian_glass_b.png new file mode 100644 index 00000000..d5ac83d0 Binary files /dev/null and b/textures/base/pack/doors_obsidian_glass_b.png differ diff --git a/textures/base/pack/doors_obsidian_glass_side.png b/textures/base/pack/doors_obsidian_glass_side.png new file mode 100644 index 00000000..aa4c63aa Binary files /dev/null and b/textures/base/pack/doors_obsidian_glass_side.png differ diff --git a/textures/base/pack/doors_steel.png b/textures/base/pack/doors_steel.png new file mode 100644 index 00000000..042a1bc0 Binary files /dev/null and b/textures/base/pack/doors_steel.png differ diff --git a/textures/base/pack/doors_steel_a.png b/textures/base/pack/doors_steel_a.png new file mode 100644 index 00000000..84ff11d8 Binary files /dev/null and b/textures/base/pack/doors_steel_a.png differ diff --git a/textures/base/pack/doors_steel_b.png b/textures/base/pack/doors_steel_b.png new file mode 100644 index 00000000..77ffbe3a Binary files /dev/null and b/textures/base/pack/doors_steel_b.png differ diff --git a/textures/base/pack/doors_trapdoor.png b/textures/base/pack/doors_trapdoor.png new file mode 100644 index 00000000..e92c8b2e Binary files /dev/null and b/textures/base/pack/doors_trapdoor.png differ diff --git a/textures/base/pack/doors_trapdoor_side.png b/textures/base/pack/doors_trapdoor_side.png new file mode 100644 index 00000000..c8605230 Binary files /dev/null and b/textures/base/pack/doors_trapdoor_side.png differ diff --git a/textures/base/pack/doors_wood.png b/textures/base/pack/doors_wood.png new file mode 100644 index 00000000..d3a62ab1 Binary files /dev/null and b/textures/base/pack/doors_wood.png differ diff --git a/textures/base/pack/doors_wood_a.png b/textures/base/pack/doors_wood_a.png new file mode 100644 index 00000000..86a747aa Binary files /dev/null and b/textures/base/pack/doors_wood_a.png differ diff --git a/textures/base/pack/doors_wood_b.png b/textures/base/pack/doors_wood_b.png new file mode 100644 index 00000000..96650982 Binary files /dev/null and b/textures/base/pack/doors_wood_b.png differ diff --git a/textures/base/pack/dungeon_master.png b/textures/base/pack/dungeon_master.png new file mode 100644 index 00000000..56caa50e Binary files /dev/null and b/textures/base/pack/dungeon_master.png differ diff --git a/textures/base/pack/dye_black.png b/textures/base/pack/dye_black.png new file mode 100644 index 00000000..45e1a74e Binary files /dev/null and b/textures/base/pack/dye_black.png differ diff --git a/textures/base/pack/dye_blue.png b/textures/base/pack/dye_blue.png new file mode 100644 index 00000000..858b70da Binary files /dev/null and b/textures/base/pack/dye_blue.png differ diff --git a/textures/base/pack/dye_brown.png b/textures/base/pack/dye_brown.png new file mode 100644 index 00000000..1ea5f129 Binary files /dev/null and b/textures/base/pack/dye_brown.png differ diff --git a/textures/base/pack/dye_cyan.png b/textures/base/pack/dye_cyan.png new file mode 100644 index 00000000..86ec6ccf Binary files /dev/null and b/textures/base/pack/dye_cyan.png differ diff --git a/textures/base/pack/dye_dark_green.png b/textures/base/pack/dye_dark_green.png new file mode 100644 index 00000000..2ab3aa76 Binary files /dev/null and b/textures/base/pack/dye_dark_green.png differ diff --git a/textures/base/pack/dye_dark_grey.png b/textures/base/pack/dye_dark_grey.png new file mode 100644 index 00000000..30b25ab9 Binary files /dev/null and b/textures/base/pack/dye_dark_grey.png differ diff --git a/textures/base/pack/dye_green.png b/textures/base/pack/dye_green.png new file mode 100644 index 00000000..dd325d62 Binary files /dev/null and b/textures/base/pack/dye_green.png differ diff --git a/textures/base/pack/dye_grey.png b/textures/base/pack/dye_grey.png new file mode 100644 index 00000000..ba45570c Binary files /dev/null and b/textures/base/pack/dye_grey.png differ diff --git a/textures/base/pack/dye_magenta.png b/textures/base/pack/dye_magenta.png new file mode 100644 index 00000000..9e6d91c8 Binary files /dev/null and b/textures/base/pack/dye_magenta.png differ diff --git a/textures/base/pack/dye_orange.png b/textures/base/pack/dye_orange.png new file mode 100644 index 00000000..568b236f Binary files /dev/null and b/textures/base/pack/dye_orange.png differ diff --git a/textures/base/pack/dye_pink.png b/textures/base/pack/dye_pink.png new file mode 100644 index 00000000..bdbf98bf Binary files /dev/null and b/textures/base/pack/dye_pink.png differ diff --git a/textures/base/pack/dye_red.png b/textures/base/pack/dye_red.png new file mode 100644 index 00000000..da502cc9 Binary files /dev/null and b/textures/base/pack/dye_red.png differ diff --git a/textures/base/pack/dye_violet.png b/textures/base/pack/dye_violet.png new file mode 100644 index 00000000..f73d96f2 Binary files /dev/null and b/textures/base/pack/dye_violet.png differ diff --git a/textures/base/pack/dye_white.png b/textures/base/pack/dye_white.png new file mode 100644 index 00000000..ffc3d07f Binary files /dev/null and b/textures/base/pack/dye_white.png differ diff --git a/textures/base/pack/dye_yellow.png b/textures/base/pack/dye_yellow.png new file mode 100644 index 00000000..54d0db2e Binary files /dev/null and b/textures/base/pack/dye_yellow.png differ diff --git a/textures/base/pack/energy_blackout.png b/textures/base/pack/energy_blackout.png new file mode 100644 index 00000000..d5790466 Binary files /dev/null and b/textures/base/pack/energy_blackout.png differ diff --git a/textures/base/pack/experience_1.png b/textures/base/pack/experience_1.png new file mode 100644 index 00000000..54a1703a Binary files /dev/null and b/textures/base/pack/experience_1.png differ diff --git a/textures/base/pack/experience_12.png b/textures/base/pack/experience_12.png new file mode 100644 index 00000000..c53eccdd Binary files /dev/null and b/textures/base/pack/experience_12.png differ diff --git a/textures/base/pack/experience_3.png b/textures/base/pack/experience_3.png new file mode 100644 index 00000000..8292eef3 Binary files /dev/null and b/textures/base/pack/experience_3.png differ diff --git a/textures/base/pack/experience_6.png b/textures/base/pack/experience_6.png new file mode 100644 index 00000000..fc6870c7 Binary files /dev/null and b/textures/base/pack/experience_6.png differ diff --git a/textures/base/pack/experience_9.png b/textures/base/pack/experience_9.png new file mode 100644 index 00000000..a4fbe363 Binary files /dev/null and b/textures/base/pack/experience_9.png differ diff --git a/textures/base/pack/farming_banana.png b/textures/base/pack/farming_banana.png new file mode 100644 index 00000000..f775e14c Binary files /dev/null and b/textures/base/pack/farming_banana.png differ diff --git a/textures/base/pack/farming_banana_leaves.png b/textures/base/pack/farming_banana_leaves.png new file mode 100644 index 00000000..cf8eecbf Binary files /dev/null and b/textures/base/pack/farming_banana_leaves.png differ diff --git a/textures/base/pack/farming_banana_sapling.png b/textures/base/pack/farming_banana_sapling.png new file mode 100644 index 00000000..821c64ff Binary files /dev/null and b/textures/base/pack/farming_banana_sapling.png differ diff --git a/textures/base/pack/farming_bread.png b/textures/base/pack/farming_bread.png new file mode 100644 index 00000000..bd00e3e1 Binary files /dev/null and b/textures/base/pack/farming_bread.png differ diff --git a/textures/base/pack/farming_bread_pumpkin.png b/textures/base/pack/farming_bread_pumpkin.png new file mode 100644 index 00000000..44db02e2 Binary files /dev/null and b/textures/base/pack/farming_bread_pumpkin.png differ diff --git a/textures/base/pack/farming_cake_mix_pumpkin.png b/textures/base/pack/farming_cake_mix_pumpkin.png new file mode 100644 index 00000000..171e4867 Binary files /dev/null and b/textures/base/pack/farming_cake_mix_pumpkin.png differ diff --git a/textures/base/pack/farming_carrot.png b/textures/base/pack/farming_carrot.png new file mode 100644 index 00000000..ae2addbc Binary files /dev/null and b/textures/base/pack/farming_carrot.png differ diff --git a/textures/base/pack/farming_carrot_1.png b/textures/base/pack/farming_carrot_1.png new file mode 100644 index 00000000..f1596f53 Binary files /dev/null and b/textures/base/pack/farming_carrot_1.png differ diff --git a/textures/base/pack/farming_carrot_2.png b/textures/base/pack/farming_carrot_2.png new file mode 100644 index 00000000..e0a7116c Binary files /dev/null and b/textures/base/pack/farming_carrot_2.png differ diff --git a/textures/base/pack/farming_carrot_3.png b/textures/base/pack/farming_carrot_3.png new file mode 100644 index 00000000..7eb2070b Binary files /dev/null and b/textures/base/pack/farming_carrot_3.png differ diff --git a/textures/base/pack/farming_carrot_4.png b/textures/base/pack/farming_carrot_4.png new file mode 100644 index 00000000..6eca7271 Binary files /dev/null and b/textures/base/pack/farming_carrot_4.png differ diff --git a/textures/base/pack/farming_carrot_seed.png b/textures/base/pack/farming_carrot_seed.png new file mode 100644 index 00000000..69bc4504 Binary files /dev/null and b/textures/base/pack/farming_carrot_seed.png differ diff --git a/textures/base/pack/farming_cocoa.png b/textures/base/pack/farming_cocoa.png new file mode 100644 index 00000000..bce3db68 Binary files /dev/null and b/textures/base/pack/farming_cocoa.png differ diff --git a/textures/base/pack/farming_cocoa_bean.png b/textures/base/pack/farming_cocoa_bean.png new file mode 100644 index 00000000..4ad6b35a Binary files /dev/null and b/textures/base/pack/farming_cocoa_bean.png differ diff --git a/textures/base/pack/farming_cocoa_sapling.png b/textures/base/pack/farming_cocoa_sapling.png new file mode 100644 index 00000000..73c588f2 Binary files /dev/null and b/textures/base/pack/farming_cocoa_sapling.png differ diff --git a/textures/base/pack/farming_cotton_1.png b/textures/base/pack/farming_cotton_1.png new file mode 100644 index 00000000..8750adfa Binary files /dev/null and b/textures/base/pack/farming_cotton_1.png differ diff --git a/textures/base/pack/farming_cotton_2.png b/textures/base/pack/farming_cotton_2.png new file mode 100644 index 00000000..dc1025ba Binary files /dev/null and b/textures/base/pack/farming_cotton_2.png differ diff --git a/textures/base/pack/farming_cotton_3.png b/textures/base/pack/farming_cotton_3.png new file mode 100644 index 00000000..a1fe3b64 Binary files /dev/null and b/textures/base/pack/farming_cotton_3.png differ diff --git a/textures/base/pack/farming_cotton_4.png b/textures/base/pack/farming_cotton_4.png new file mode 100644 index 00000000..d0096da3 Binary files /dev/null and b/textures/base/pack/farming_cotton_4.png differ diff --git a/textures/base/pack/farming_cotton_5.png b/textures/base/pack/farming_cotton_5.png new file mode 100644 index 00000000..11f67fc6 Binary files /dev/null and b/textures/base/pack/farming_cotton_5.png differ diff --git a/textures/base/pack/farming_cotton_6.png b/textures/base/pack/farming_cotton_6.png new file mode 100644 index 00000000..13343046 Binary files /dev/null and b/textures/base/pack/farming_cotton_6.png differ diff --git a/textures/base/pack/farming_cotton_7.png b/textures/base/pack/farming_cotton_7.png new file mode 100644 index 00000000..fb98f1e7 Binary files /dev/null and b/textures/base/pack/farming_cotton_7.png differ diff --git a/textures/base/pack/farming_cotton_8.png b/textures/base/pack/farming_cotton_8.png new file mode 100644 index 00000000..ae9ed374 Binary files /dev/null and b/textures/base/pack/farming_cotton_8.png differ diff --git a/textures/base/pack/farming_cotton_seed.png b/textures/base/pack/farming_cotton_seed.png new file mode 100644 index 00000000..70d2ac28 Binary files /dev/null and b/textures/base/pack/farming_cotton_seed.png differ diff --git a/textures/base/pack/farming_flour.png b/textures/base/pack/farming_flour.png new file mode 100644 index 00000000..a526b202 Binary files /dev/null and b/textures/base/pack/farming_flour.png differ diff --git a/textures/base/pack/farming_orange.png b/textures/base/pack/farming_orange.png new file mode 100644 index 00000000..4c5e0459 Binary files /dev/null and b/textures/base/pack/farming_orange.png differ diff --git a/textures/base/pack/farming_orange_1.png b/textures/base/pack/farming_orange_1.png new file mode 100644 index 00000000..5a2aaa27 Binary files /dev/null and b/textures/base/pack/farming_orange_1.png differ diff --git a/textures/base/pack/farming_orange_2.png b/textures/base/pack/farming_orange_2.png new file mode 100644 index 00000000..3de46238 Binary files /dev/null and b/textures/base/pack/farming_orange_2.png differ diff --git a/textures/base/pack/farming_orange_3.png b/textures/base/pack/farming_orange_3.png new file mode 100644 index 00000000..851cd67b Binary files /dev/null and b/textures/base/pack/farming_orange_3.png differ diff --git a/textures/base/pack/farming_orange_4.png b/textures/base/pack/farming_orange_4.png new file mode 100644 index 00000000..accb7b7f Binary files /dev/null and b/textures/base/pack/farming_orange_4.png differ diff --git a/textures/base/pack/farming_orange_seed.png b/textures/base/pack/farming_orange_seed.png new file mode 100644 index 00000000..3873bade Binary files /dev/null and b/textures/base/pack/farming_orange_seed.png differ diff --git a/textures/base/pack/farming_potato.png b/textures/base/pack/farming_potato.png new file mode 100644 index 00000000..8fa9442b Binary files /dev/null and b/textures/base/pack/farming_potato.png differ diff --git a/textures/base/pack/farming_potato_1.png b/textures/base/pack/farming_potato_1.png new file mode 100644 index 00000000..75a3cdfb Binary files /dev/null and b/textures/base/pack/farming_potato_1.png differ diff --git a/textures/base/pack/farming_potato_2.png b/textures/base/pack/farming_potato_2.png new file mode 100644 index 00000000..8b7ccd42 Binary files /dev/null and b/textures/base/pack/farming_potato_2.png differ diff --git a/textures/base/pack/farming_potato_3.png b/textures/base/pack/farming_potato_3.png new file mode 100644 index 00000000..cc29ef3c Binary files /dev/null and b/textures/base/pack/farming_potato_3.png differ diff --git a/textures/base/pack/farming_potato_seed.png b/textures/base/pack/farming_potato_seed.png new file mode 100644 index 00000000..74e440df Binary files /dev/null and b/textures/base/pack/farming_potato_seed.png differ diff --git a/textures/base/pack/farming_pumpkin_big_side.png b/textures/base/pack/farming_pumpkin_big_side.png new file mode 100644 index 00000000..2651380b Binary files /dev/null and b/textures/base/pack/farming_pumpkin_big_side.png differ diff --git a/textures/base/pack/farming_pumpkin_big_top.png b/textures/base/pack/farming_pumpkin_big_top.png new file mode 100644 index 00000000..581acccd Binary files /dev/null and b/textures/base/pack/farming_pumpkin_big_top.png differ diff --git a/textures/base/pack/farming_pumpkin_big_top_corner.png b/textures/base/pack/farming_pumpkin_big_top_corner.png new file mode 100644 index 00000000..ab1de284 Binary files /dev/null and b/textures/base/pack/farming_pumpkin_big_top_corner.png differ diff --git a/textures/base/pack/farming_pumpkin_big_top_side.png b/textures/base/pack/farming_pumpkin_big_top_side.png new file mode 100644 index 00000000..e2eb1a75 Binary files /dev/null and b/textures/base/pack/farming_pumpkin_big_top_side.png differ diff --git a/textures/base/pack/farming_pumpkin_face.png b/textures/base/pack/farming_pumpkin_face.png new file mode 100644 index 00000000..90c0f8a9 Binary files /dev/null and b/textures/base/pack/farming_pumpkin_face.png differ diff --git a/textures/base/pack/farming_pumpkin_face_light.png b/textures/base/pack/farming_pumpkin_face_light.png new file mode 100644 index 00000000..cef48664 Binary files /dev/null and b/textures/base/pack/farming_pumpkin_face_light.png differ diff --git a/textures/base/pack/farming_pumpkin_seed.png b/textures/base/pack/farming_pumpkin_seed.png new file mode 100644 index 00000000..6933bc38 Binary files /dev/null and b/textures/base/pack/farming_pumpkin_seed.png differ diff --git a/textures/base/pack/farming_pumpkin_side.png b/textures/base/pack/farming_pumpkin_side.png new file mode 100644 index 00000000..3a3f9dae Binary files /dev/null and b/textures/base/pack/farming_pumpkin_side.png differ diff --git a/textures/base/pack/farming_pumpkin_top.png b/textures/base/pack/farming_pumpkin_top.png new file mode 100644 index 00000000..edef2d94 Binary files /dev/null and b/textures/base/pack/farming_pumpkin_top.png differ diff --git a/textures/base/pack/farming_rhubarb.png b/textures/base/pack/farming_rhubarb.png new file mode 100644 index 00000000..849f61bf Binary files /dev/null and b/textures/base/pack/farming_rhubarb.png differ diff --git a/textures/base/pack/farming_rhubarb_1.png b/textures/base/pack/farming_rhubarb_1.png new file mode 100644 index 00000000..706d8cf6 Binary files /dev/null and b/textures/base/pack/farming_rhubarb_1.png differ diff --git a/textures/base/pack/farming_rhubarb_2.png b/textures/base/pack/farming_rhubarb_2.png new file mode 100644 index 00000000..2aadf5fd Binary files /dev/null and b/textures/base/pack/farming_rhubarb_2.png differ diff --git a/textures/base/pack/farming_rhubarb_3.png b/textures/base/pack/farming_rhubarb_3.png new file mode 100644 index 00000000..833f65b4 Binary files /dev/null and b/textures/base/pack/farming_rhubarb_3.png differ diff --git a/textures/base/pack/farming_rhubarb_seed.png b/textures/base/pack/farming_rhubarb_seed.png new file mode 100644 index 00000000..c16527d9 Binary files /dev/null and b/textures/base/pack/farming_rhubarb_seed.png differ diff --git a/textures/base/pack/farming_scarecrow_front.png b/textures/base/pack/farming_scarecrow_front.png new file mode 100644 index 00000000..364738fd Binary files /dev/null and b/textures/base/pack/farming_scarecrow_front.png differ diff --git a/textures/base/pack/farming_scarecrow_front_light.png b/textures/base/pack/farming_scarecrow_front_light.png new file mode 100644 index 00000000..b4b3cf28 Binary files /dev/null and b/textures/base/pack/farming_scarecrow_front_light.png differ diff --git a/textures/base/pack/farming_scarecrow_side.png b/textures/base/pack/farming_scarecrow_side.png new file mode 100644 index 00000000..e22e84ba Binary files /dev/null and b/textures/base/pack/farming_scarecrow_side.png differ diff --git a/textures/base/pack/farming_scarecrow_top.png b/textures/base/pack/farming_scarecrow_top.png new file mode 100644 index 00000000..3a4addcd Binary files /dev/null and b/textures/base/pack/farming_scarecrow_top.png differ diff --git a/textures/base/pack/farming_soil.png b/textures/base/pack/farming_soil.png new file mode 100644 index 00000000..06009de9 Binary files /dev/null and b/textures/base/pack/farming_soil.png differ diff --git a/textures/base/pack/farming_soil_wet.png b/textures/base/pack/farming_soil_wet.png new file mode 100644 index 00000000..cbbb05c7 Binary files /dev/null and b/textures/base/pack/farming_soil_wet.png differ diff --git a/textures/base/pack/farming_soil_wet_side.png b/textures/base/pack/farming_soil_wet_side.png new file mode 100644 index 00000000..406b4599 Binary files /dev/null and b/textures/base/pack/farming_soil_wet_side.png differ diff --git a/textures/base/pack/farming_strawberry.png b/textures/base/pack/farming_strawberry.png new file mode 100644 index 00000000..0a80f45d Binary files /dev/null and b/textures/base/pack/farming_strawberry.png differ diff --git a/textures/base/pack/farming_strawberry_1.png b/textures/base/pack/farming_strawberry_1.png new file mode 100644 index 00000000..ff238f67 Binary files /dev/null and b/textures/base/pack/farming_strawberry_1.png differ diff --git a/textures/base/pack/farming_strawberry_2.png b/textures/base/pack/farming_strawberry_2.png new file mode 100644 index 00000000..2912eb52 Binary files /dev/null and b/textures/base/pack/farming_strawberry_2.png differ diff --git a/textures/base/pack/farming_strawberry_3.png b/textures/base/pack/farming_strawberry_3.png new file mode 100644 index 00000000..ca77389e Binary files /dev/null and b/textures/base/pack/farming_strawberry_3.png differ diff --git a/textures/base/pack/farming_strawberry_4.png b/textures/base/pack/farming_strawberry_4.png new file mode 100644 index 00000000..12c6a49c Binary files /dev/null and b/textures/base/pack/farming_strawberry_4.png differ diff --git a/textures/base/pack/farming_strawberry_seed.png b/textures/base/pack/farming_strawberry_seed.png new file mode 100644 index 00000000..08c958d9 Binary files /dev/null and b/textures/base/pack/farming_strawberry_seed.png differ diff --git a/textures/base/pack/farming_string.png b/textures/base/pack/farming_string.png new file mode 100644 index 00000000..ee0c2909 Binary files /dev/null and b/textures/base/pack/farming_string.png differ diff --git a/textures/base/pack/farming_tomato.png b/textures/base/pack/farming_tomato.png new file mode 100644 index 00000000..b112d485 Binary files /dev/null and b/textures/base/pack/farming_tomato.png differ diff --git a/textures/base/pack/farming_tomato_1.png b/textures/base/pack/farming_tomato_1.png new file mode 100644 index 00000000..2e7c425e Binary files /dev/null and b/textures/base/pack/farming_tomato_1.png differ diff --git a/textures/base/pack/farming_tomato_2.png b/textures/base/pack/farming_tomato_2.png new file mode 100644 index 00000000..6f6a4518 Binary files /dev/null and b/textures/base/pack/farming_tomato_2.png differ diff --git a/textures/base/pack/farming_tomato_3.png b/textures/base/pack/farming_tomato_3.png new file mode 100644 index 00000000..e01b60b9 Binary files /dev/null and b/textures/base/pack/farming_tomato_3.png differ diff --git a/textures/base/pack/farming_tomato_4.png b/textures/base/pack/farming_tomato_4.png new file mode 100644 index 00000000..e2f5db4e Binary files /dev/null and b/textures/base/pack/farming_tomato_4.png differ diff --git a/textures/base/pack/farming_tomato_seed.png b/textures/base/pack/farming_tomato_seed.png new file mode 100644 index 00000000..dbef76e7 Binary files /dev/null and b/textures/base/pack/farming_tomato_seed.png differ diff --git a/textures/base/pack/farming_tool_bronzehoe.png b/textures/base/pack/farming_tool_bronzehoe.png new file mode 100644 index 00000000..140fb64d Binary files /dev/null and b/textures/base/pack/farming_tool_bronzehoe.png differ diff --git a/textures/base/pack/farming_tool_steelhoe.png b/textures/base/pack/farming_tool_steelhoe.png new file mode 100644 index 00000000..c19afb85 Binary files /dev/null and b/textures/base/pack/farming_tool_steelhoe.png differ diff --git a/textures/base/pack/farming_tool_stonehoe.png b/textures/base/pack/farming_tool_stonehoe.png new file mode 100644 index 00000000..741f190d Binary files /dev/null and b/textures/base/pack/farming_tool_stonehoe.png differ diff --git a/textures/base/pack/farming_tool_woodhoe.png b/textures/base/pack/farming_tool_woodhoe.png new file mode 100644 index 00000000..2448c181 Binary files /dev/null and b/textures/base/pack/farming_tool_woodhoe.png differ diff --git a/textures/base/pack/farming_weed.png b/textures/base/pack/farming_weed.png new file mode 100644 index 00000000..46672870 Binary files /dev/null and b/textures/base/pack/farming_weed.png differ diff --git a/textures/base/pack/farming_wheat.png b/textures/base/pack/farming_wheat.png new file mode 100644 index 00000000..8ecd7350 Binary files /dev/null and b/textures/base/pack/farming_wheat.png differ diff --git a/textures/base/pack/farming_wheat_1.png b/textures/base/pack/farming_wheat_1.png new file mode 100644 index 00000000..49430003 Binary files /dev/null and b/textures/base/pack/farming_wheat_1.png differ diff --git a/textures/base/pack/farming_wheat_2.png b/textures/base/pack/farming_wheat_2.png new file mode 100644 index 00000000..63550d12 Binary files /dev/null and b/textures/base/pack/farming_wheat_2.png differ diff --git a/textures/base/pack/farming_wheat_3.png b/textures/base/pack/farming_wheat_3.png new file mode 100644 index 00000000..00a8c661 Binary files /dev/null and b/textures/base/pack/farming_wheat_3.png differ diff --git a/textures/base/pack/farming_wheat_4.png b/textures/base/pack/farming_wheat_4.png new file mode 100644 index 00000000..80b98aa2 Binary files /dev/null and b/textures/base/pack/farming_wheat_4.png differ diff --git a/textures/base/pack/farming_wheat_5.png b/textures/base/pack/farming_wheat_5.png new file mode 100644 index 00000000..1023f0cc Binary files /dev/null and b/textures/base/pack/farming_wheat_5.png differ diff --git a/textures/base/pack/farming_wheat_6.png b/textures/base/pack/farming_wheat_6.png new file mode 100644 index 00000000..591c1383 Binary files /dev/null and b/textures/base/pack/farming_wheat_6.png differ diff --git a/textures/base/pack/farming_wheat_7.png b/textures/base/pack/farming_wheat_7.png new file mode 100644 index 00000000..98bc60aa Binary files /dev/null and b/textures/base/pack/farming_wheat_7.png differ diff --git a/textures/base/pack/farming_wheat_8.png b/textures/base/pack/farming_wheat_8.png new file mode 100644 index 00000000..44bc5321 Binary files /dev/null and b/textures/base/pack/farming_wheat_8.png differ diff --git a/textures/base/pack/farming_wheat_seed.png b/textures/base/pack/farming_wheat_seed.png new file mode 100644 index 00000000..9afcd4dd Binary files /dev/null and b/textures/base/pack/farming_wheat_seed.png differ diff --git a/textures/base/pack/fire_basic_flame.png b/textures/base/pack/fire_basic_flame.png new file mode 100644 index 00000000..91ae8af7 Binary files /dev/null and b/textures/base/pack/fire_basic_flame.png differ diff --git a/textures/base/pack/fire_basic_flame_animated.png b/textures/base/pack/fire_basic_flame_animated.png new file mode 100644 index 00000000..151a74a0 Binary files /dev/null and b/textures/base/pack/fire_basic_flame_animated.png differ diff --git a/textures/base/pack/fireball.png b/textures/base/pack/fireball.png new file mode 100644 index 00000000..ed21a5b4 Binary files /dev/null and b/textures/base/pack/fireball.png differ diff --git a/textures/base/pack/firefly.png b/textures/base/pack/firefly.png new file mode 100644 index 00000000..41bb25da Binary files /dev/null and b/textures/base/pack/firefly.png differ diff --git a/textures/base/pack/flowers_dandelion_white.png b/textures/base/pack/flowers_dandelion_white.png new file mode 100644 index 00000000..f9d998f3 Binary files /dev/null and b/textures/base/pack/flowers_dandelion_white.png differ diff --git a/textures/base/pack/flowers_dandelion_yellow.png b/textures/base/pack/flowers_dandelion_yellow.png new file mode 100644 index 00000000..d1646fee Binary files /dev/null and b/textures/base/pack/flowers_dandelion_yellow.png differ diff --git a/textures/base/pack/flowers_geranium.png b/textures/base/pack/flowers_geranium.png new file mode 100644 index 00000000..0c05faf1 Binary files /dev/null and b/textures/base/pack/flowers_geranium.png differ diff --git a/textures/base/pack/flowers_magic.png b/textures/base/pack/flowers_magic.png new file mode 100644 index 00000000..4f40b0a4 Binary files /dev/null and b/textures/base/pack/flowers_magic.png differ diff --git a/textures/base/pack/flowers_rose.png b/textures/base/pack/flowers_rose.png new file mode 100644 index 00000000..450bb312 Binary files /dev/null and b/textures/base/pack/flowers_rose.png differ diff --git a/textures/base/pack/flowers_tulip.png b/textures/base/pack/flowers_tulip.png new file mode 100644 index 00000000..d7a63d33 Binary files /dev/null and b/textures/base/pack/flowers_tulip.png differ diff --git a/textures/base/pack/flowers_viola.png b/textures/base/pack/flowers_viola.png new file mode 100644 index 00000000..37525cfa Binary files /dev/null and b/textures/base/pack/flowers_viola.png differ diff --git a/textures/base/pack/food_apple_juice.png b/textures/base/pack/food_apple_juice.png new file mode 100644 index 00000000..fc2b8efc Binary files /dev/null and b/textures/base/pack/food_apple_juice.png differ diff --git a/textures/base/pack/food_baked_potato.png b/textures/base/pack/food_baked_potato.png new file mode 100644 index 00000000..425c4ae3 Binary files /dev/null and b/textures/base/pack/food_baked_potato.png differ diff --git a/textures/base/pack/food_baking_bread_slice.png b/textures/base/pack/food_baking_bread_slice.png new file mode 100644 index 00000000..174c900a Binary files /dev/null and b/textures/base/pack/food_baking_bread_slice.png differ diff --git a/textures/base/pack/food_baking_bun_mix.png b/textures/base/pack/food_baking_bun_mix.png new file mode 100644 index 00000000..ac2e7f46 Binary files /dev/null and b/textures/base/pack/food_baking_bun_mix.png differ diff --git a/textures/base/pack/food_baking_dough.png b/textures/base/pack/food_baking_dough.png new file mode 100644 index 00000000..5c4b1975 Binary files /dev/null and b/textures/base/pack/food_baking_dough.png differ diff --git a/textures/base/pack/food_bowl.png b/textures/base/pack/food_bowl.png new file mode 100644 index 00000000..b1d2b092 Binary files /dev/null and b/textures/base/pack/food_bowl.png differ diff --git a/textures/base/pack/food_butter.png b/textures/base/pack/food_butter.png new file mode 100644 index 00000000..cb6f0541 Binary files /dev/null and b/textures/base/pack/food_butter.png differ diff --git a/textures/base/pack/food_cactus_juice.png b/textures/base/pack/food_cactus_juice.png new file mode 100644 index 00000000..6180eed6 Binary files /dev/null and b/textures/base/pack/food_cactus_juice.png differ diff --git a/textures/base/pack/food_cake_carrot_texture.png b/textures/base/pack/food_cake_carrot_texture.png new file mode 100644 index 00000000..1acfccd4 Binary files /dev/null and b/textures/base/pack/food_cake_carrot_texture.png differ diff --git a/textures/base/pack/food_cake_carrot_texture_side.png b/textures/base/pack/food_cake_carrot_texture_side.png new file mode 100644 index 00000000..ef961d09 Binary files /dev/null and b/textures/base/pack/food_cake_carrot_texture_side.png differ diff --git a/textures/base/pack/food_cake_choco_texture.png b/textures/base/pack/food_cake_choco_texture.png new file mode 100644 index 00000000..20ae8b58 Binary files /dev/null and b/textures/base/pack/food_cake_choco_texture.png differ diff --git a/textures/base/pack/food_cake_choco_texture_side.png b/textures/base/pack/food_cake_choco_texture_side.png new file mode 100644 index 00000000..4f7a8b4d Binary files /dev/null and b/textures/base/pack/food_cake_choco_texture_side.png differ diff --git a/textures/base/pack/food_cake_texture.png b/textures/base/pack/food_cake_texture.png new file mode 100644 index 00000000..f4e9b272 Binary files /dev/null and b/textures/base/pack/food_cake_texture.png differ diff --git a/textures/base/pack/food_cake_texture_side.png b/textures/base/pack/food_cake_texture_side.png new file mode 100644 index 00000000..314ed393 Binary files /dev/null and b/textures/base/pack/food_cake_texture_side.png differ diff --git a/textures/base/pack/food_cakemix_carrot.png b/textures/base/pack/food_cakemix_carrot.png new file mode 100644 index 00000000..30dd0020 Binary files /dev/null and b/textures/base/pack/food_cakemix_carrot.png differ diff --git a/textures/base/pack/food_cakemix_choco.png b/textures/base/pack/food_cakemix_choco.png new file mode 100644 index 00000000..cd881691 Binary files /dev/null and b/textures/base/pack/food_cakemix_choco.png differ diff --git a/textures/base/pack/food_cakemix_plain.png b/textures/base/pack/food_cakemix_plain.png new file mode 100644 index 00000000..7b9f392e Binary files /dev/null and b/textures/base/pack/food_cakemix_plain.png differ diff --git a/textures/base/pack/food_carrot.png b/textures/base/pack/food_carrot.png new file mode 100644 index 00000000..5ed61ac9 Binary files /dev/null and b/textures/base/pack/food_carrot.png differ diff --git a/textures/base/pack/food_cheese.png b/textures/base/pack/food_cheese.png new file mode 100644 index 00000000..eec185c9 Binary files /dev/null and b/textures/base/pack/food_cheese.png differ diff --git a/textures/base/pack/food_chocolate_powder.png b/textures/base/pack/food_chocolate_powder.png new file mode 100644 index 00000000..49840ed1 Binary files /dev/null and b/textures/base/pack/food_chocolate_powder.png differ diff --git a/textures/base/pack/food_cocoa.png b/textures/base/pack/food_cocoa.png new file mode 100644 index 00000000..4ad6b35a Binary files /dev/null and b/textures/base/pack/food_cocoa.png differ diff --git a/textures/base/pack/food_dark_chocolate.png b/textures/base/pack/food_dark_chocolate.png new file mode 100644 index 00000000..3e1df7b1 Binary files /dev/null and b/textures/base/pack/food_dark_chocolate.png differ diff --git a/textures/base/pack/food_egg.png b/textures/base/pack/food_egg.png new file mode 100644 index 00000000..50010de8 Binary files /dev/null and b/textures/base/pack/food_egg.png differ diff --git a/textures/base/pack/food_flour.png b/textures/base/pack/food_flour.png new file mode 100644 index 00000000..a526b202 Binary files /dev/null and b/textures/base/pack/food_flour.png differ diff --git a/textures/base/pack/food_meat.png b/textures/base/pack/food_meat.png new file mode 100644 index 00000000..d4e4abb2 Binary files /dev/null and b/textures/base/pack/food_meat.png differ diff --git a/textures/base/pack/food_meat_raw.png b/textures/base/pack/food_meat_raw.png new file mode 100644 index 00000000..0dea4ec5 Binary files /dev/null and b/textures/base/pack/food_meat_raw.png differ diff --git a/textures/base/pack/food_milk.png b/textures/base/pack/food_milk.png new file mode 100644 index 00000000..e5352645 Binary files /dev/null and b/textures/base/pack/food_milk.png differ diff --git a/textures/base/pack/food_milk_chocolate.png b/textures/base/pack/food_milk_chocolate.png new file mode 100644 index 00000000..bbfa37ea Binary files /dev/null and b/textures/base/pack/food_milk_chocolate.png differ diff --git a/textures/base/pack/food_pasta.png b/textures/base/pack/food_pasta.png new file mode 100644 index 00000000..9fa194b9 Binary files /dev/null and b/textures/base/pack/food_pasta.png differ diff --git a/textures/base/pack/food_pasta_bake.png b/textures/base/pack/food_pasta_bake.png new file mode 100644 index 00000000..81221a62 Binary files /dev/null and b/textures/base/pack/food_pasta_bake.png differ diff --git a/textures/base/pack/food_pasta_bake_raw.png b/textures/base/pack/food_pasta_bake_raw.png new file mode 100644 index 00000000..2a6294a0 Binary files /dev/null and b/textures/base/pack/food_pasta_bake_raw.png differ diff --git a/textures/base/pack/food_potato.png b/textures/base/pack/food_potato.png new file mode 100644 index 00000000..6e91d6ae Binary files /dev/null and b/textures/base/pack/food_potato.png differ diff --git a/textures/base/pack/food_rainbow_juice.png b/textures/base/pack/food_rainbow_juice.png new file mode 100644 index 00000000..7eb97cf0 Binary files /dev/null and b/textures/base/pack/food_rainbow_juice.png differ diff --git a/textures/base/pack/food_soup_chicken.png b/textures/base/pack/food_soup_chicken.png new file mode 100644 index 00000000..db9f10df Binary files /dev/null and b/textures/base/pack/food_soup_chicken.png differ diff --git a/textures/base/pack/food_soup_chicken_raw.png b/textures/base/pack/food_soup_chicken_raw.png new file mode 100644 index 00000000..0cf6b211 Binary files /dev/null and b/textures/base/pack/food_soup_chicken_raw.png differ diff --git a/textures/base/pack/food_soup_tomato.png b/textures/base/pack/food_soup_tomato.png new file mode 100644 index 00000000..5cc23be7 Binary files /dev/null and b/textures/base/pack/food_soup_tomato.png differ diff --git a/textures/base/pack/food_soup_tomato_raw.png b/textures/base/pack/food_soup_tomato_raw.png new file mode 100644 index 00000000..1eac22c8 Binary files /dev/null and b/textures/base/pack/food_soup_tomato_raw.png differ diff --git a/textures/base/pack/food_strawberry.png b/textures/base/pack/food_strawberry.png new file mode 100644 index 00000000..0a80f45d Binary files /dev/null and b/textures/base/pack/food_strawberry.png differ diff --git a/textures/base/pack/food_sugar.png b/textures/base/pack/food_sugar.png new file mode 100644 index 00000000..10ecf703 Binary files /dev/null and b/textures/base/pack/food_sugar.png differ diff --git a/textures/base/pack/food_tomato.png b/textures/base/pack/food_tomato.png new file mode 100644 index 00000000..c998b602 Binary files /dev/null and b/textures/base/pack/food_tomato.png differ diff --git a/textures/base/pack/food_wheat.png b/textures/base/pack/food_wheat.png new file mode 100644 index 00000000..8ecd7350 Binary files /dev/null and b/textures/base/pack/food_wheat.png differ diff --git a/textures/base/pack/glooptest_tool_steelhammer.png b/textures/base/pack/glooptest_tool_steelhammer.png new file mode 100644 index 00000000..b662a71c Binary files /dev/null and b/textures/base/pack/glooptest_tool_steelhammer.png differ diff --git a/textures/base/pack/glowcrystals_block_glowcrystal.png b/textures/base/pack/glowcrystals_block_glowcrystal.png new file mode 100644 index 00000000..751bfec5 Binary files /dev/null and b/textures/base/pack/glowcrystals_block_glowcrystal.png differ diff --git a/textures/base/pack/glowcrystals_glowtorch.png b/textures/base/pack/glowcrystals_glowtorch.png new file mode 100644 index 00000000..3114e3c9 Binary files /dev/null and b/textures/base/pack/glowcrystals_glowtorch.png differ diff --git a/textures/base/pack/glowcrystals_glowtorch_on_ceiling.png b/textures/base/pack/glowcrystals_glowtorch_on_ceiling.png new file mode 100644 index 00000000..edbd5ab7 Binary files /dev/null and b/textures/base/pack/glowcrystals_glowtorch_on_ceiling.png differ diff --git a/textures/base/pack/glowcrystals_glowtorch_on_floor.png b/textures/base/pack/glowcrystals_glowtorch_on_floor.png new file mode 100644 index 00000000..23af8b81 Binary files /dev/null and b/textures/base/pack/glowcrystals_glowtorch_on_floor.png differ diff --git a/textures/base/pack/glowcrystals_item_glowcrystal.png b/textures/base/pack/glowcrystals_item_glowcrystal.png new file mode 100644 index 00000000..6470997c Binary files /dev/null and b/textures/base/pack/glowcrystals_item_glowcrystal.png differ diff --git a/textures/base/pack/glowcrystals_ore_glowcrystal.png b/textures/base/pack/glowcrystals_ore_glowcrystal.png new file mode 100644 index 00000000..0aa05c40 Binary files /dev/null and b/textures/base/pack/glowcrystals_ore_glowcrystal.png differ diff --git a/textures/base/pack/goblins_blood.png b/textures/base/pack/goblins_blood.png new file mode 100644 index 00000000..38f5092e Binary files /dev/null and b/textures/base/pack/goblins_blood.png differ diff --git a/textures/base/pack/goblins_goblin_coal1.png b/textures/base/pack/goblins_goblin_coal1.png new file mode 100644 index 00000000..171e5339 Binary files /dev/null and b/textures/base/pack/goblins_goblin_coal1.png differ diff --git a/textures/base/pack/goblins_goblin_coal2.png b/textures/base/pack/goblins_goblin_coal2.png new file mode 100644 index 00000000..17260a72 Binary files /dev/null and b/textures/base/pack/goblins_goblin_coal2.png differ diff --git a/textures/base/pack/goblins_goblin_diamond1.png b/textures/base/pack/goblins_goblin_diamond1.png new file mode 100644 index 00000000..b7da4cd6 Binary files /dev/null and b/textures/base/pack/goblins_goblin_diamond1.png differ diff --git a/textures/base/pack/goblins_goblin_diamond2.png b/textures/base/pack/goblins_goblin_diamond2.png new file mode 100644 index 00000000..25860395 Binary files /dev/null and b/textures/base/pack/goblins_goblin_diamond2.png differ diff --git a/textures/base/pack/goblins_goblin_gold1.png b/textures/base/pack/goblins_goblin_gold1.png new file mode 100644 index 00000000..0e23a51a Binary files /dev/null and b/textures/base/pack/goblins_goblin_gold1.png differ diff --git a/textures/base/pack/goblins_goblin_gold2.png b/textures/base/pack/goblins_goblin_gold2.png new file mode 100644 index 00000000..89d93a6e Binary files /dev/null and b/textures/base/pack/goblins_goblin_gold2.png differ diff --git a/textures/base/pack/goblins_goblin_iron1.png b/textures/base/pack/goblins_goblin_iron1.png new file mode 100644 index 00000000..550e529d Binary files /dev/null and b/textures/base/pack/goblins_goblin_iron1.png differ diff --git a/textures/base/pack/goblins_goblin_iron2.png b/textures/base/pack/goblins_goblin_iron2.png new file mode 100644 index 00000000..836c2fdd Binary files /dev/null and b/textures/base/pack/goblins_goblin_iron2.png differ diff --git a/textures/base/pack/goblins_goblin_king.png b/textures/base/pack/goblins_goblin_king.png new file mode 100644 index 00000000..6c51a42a Binary files /dev/null and b/textures/base/pack/goblins_goblin_king.png differ diff --git a/textures/base/pack/gui_formbg.png b/textures/base/pack/gui_formbg.png new file mode 100644 index 00000000..c543466c Binary files /dev/null and b/textures/base/pack/gui_formbg.png differ diff --git a/textures/base/pack/gui_furnace_arrow_bg.png b/textures/base/pack/gui_furnace_arrow_bg.png new file mode 100644 index 00000000..046d8cda Binary files /dev/null and b/textures/base/pack/gui_furnace_arrow_bg.png differ diff --git a/textures/base/pack/gui_furnace_arrow_fg.png b/textures/base/pack/gui_furnace_arrow_fg.png new file mode 100644 index 00000000..8d3c396e Binary files /dev/null and b/textures/base/pack/gui_furnace_arrow_fg.png differ diff --git a/textures/base/pack/gui_hb_bg.png b/textures/base/pack/gui_hb_bg.png new file mode 100644 index 00000000..99248e17 Binary files /dev/null and b/textures/base/pack/gui_hb_bg.png differ diff --git a/textures/base/pack/gui_hotbar_selected.png b/textures/base/pack/gui_hotbar_selected.png new file mode 100644 index 00000000..40bafe6b Binary files /dev/null and b/textures/base/pack/gui_hotbar_selected.png differ diff --git a/textures/base/pack/heart.png b/textures/base/pack/heart.png new file mode 100644 index 00000000..552d0d87 Binary files /dev/null and b/textures/base/pack/heart.png differ diff --git a/textures/base/pack/hud_air_fg.png b/textures/base/pack/hud_air_fg.png new file mode 100644 index 00000000..b62c9b02 Binary files /dev/null and b/textures/base/pack/hud_air_fg.png differ diff --git a/textures/base/pack/hud_armor_bg.png b/textures/base/pack/hud_armor_bg.png new file mode 100644 index 00000000..32401003 Binary files /dev/null and b/textures/base/pack/hud_armor_bg.png differ diff --git a/textures/base/pack/hud_armor_fg.png b/textures/base/pack/hud_armor_fg.png new file mode 100644 index 00000000..374f1a9a Binary files /dev/null and b/textures/base/pack/hud_armor_fg.png differ diff --git a/textures/base/pack/hud_energy_bg.png b/textures/base/pack/hud_energy_bg.png new file mode 100644 index 00000000..c3562b45 Binary files /dev/null and b/textures/base/pack/hud_energy_bg.png differ diff --git a/textures/base/pack/hud_energy_fg.png b/textures/base/pack/hud_energy_fg.png new file mode 100644 index 00000000..c161eef7 Binary files /dev/null and b/textures/base/pack/hud_energy_fg.png differ diff --git a/textures/base/pack/hud_heart_bg.png b/textures/base/pack/hud_heart_bg.png new file mode 100644 index 00000000..e2be2768 Binary files /dev/null and b/textures/base/pack/hud_heart_bg.png differ diff --git a/textures/base/pack/hud_heart_fg.png b/textures/base/pack/hud_heart_fg.png new file mode 100644 index 00000000..dc213d84 Binary files /dev/null and b/textures/base/pack/hud_heart_fg.png differ diff --git a/textures/base/pack/hud_hotbar.png b/textures/base/pack/hud_hotbar.png new file mode 100644 index 00000000..8c3df7c6 Binary files /dev/null and b/textures/base/pack/hud_hotbar.png differ diff --git a/textures/base/pack/hud_hotbar_selected.png b/textures/base/pack/hud_hotbar_selected.png new file mode 100644 index 00000000..5334d6b1 Binary files /dev/null and b/textures/base/pack/hud_hotbar_selected.png differ diff --git a/textures/base/pack/hud_hunger_bg.png b/textures/base/pack/hud_hunger_bg.png new file mode 100644 index 00000000..07e21e7b Binary files /dev/null and b/textures/base/pack/hud_hunger_bg.png differ diff --git a/textures/base/pack/hud_hunger_fg.png b/textures/base/pack/hud_hunger_fg.png new file mode 100644 index 00000000..a5cc2a12 Binary files /dev/null and b/textures/base/pack/hud_hunger_fg.png differ diff --git a/textures/base/pack/hud_magic_bg.png b/textures/base/pack/hud_magic_bg.png new file mode 100644 index 00000000..61cd94be Binary files /dev/null and b/textures/base/pack/hud_magic_bg.png differ diff --git a/textures/base/pack/hud_magic_fg.png b/textures/base/pack/hud_magic_fg.png new file mode 100644 index 00000000..9e7771a0 Binary files /dev/null and b/textures/base/pack/hud_magic_fg.png differ diff --git a/textures/base/pack/hud_new.png b/textures/base/pack/hud_new.png new file mode 100644 index 00000000..1882ae39 Binary files /dev/null and b/textures/base/pack/hud_new.png differ diff --git a/textures/base/pack/hud_wielded.png b/textures/base/pack/hud_wielded.png new file mode 100644 index 00000000..2dc0e3dc Binary files /dev/null and b/textures/base/pack/hud_wielded.png differ diff --git a/textures/base/pack/hunger_statbar_poisen.png b/textures/base/pack/hunger_statbar_poisen.png new file mode 100644 index 00000000..0f80ad26 Binary files /dev/null and b/textures/base/pack/hunger_statbar_poisen.png differ diff --git a/textures/base/pack/inventory_plus_armor.png b/textures/base/pack/inventory_plus_armor.png new file mode 100644 index 00000000..11fb5087 Binary files /dev/null and b/textures/base/pack/inventory_plus_armor.png differ diff --git a/textures/base/pack/inventory_plus_skins.png b/textures/base/pack/inventory_plus_skins.png new file mode 100644 index 00000000..781b42ff Binary files /dev/null and b/textures/base/pack/inventory_plus_skins.png differ diff --git a/textures/base/pack/inventory_plus_zcg.png b/textures/base/pack/inventory_plus_zcg.png new file mode 100644 index 00000000..28284079 Binary files /dev/null and b/textures/base/pack/inventory_plus_zcg.png differ diff --git a/textures/base/pack/invisible.png b/textures/base/pack/invisible.png new file mode 100644 index 00000000..4b5b3029 Binary files /dev/null and b/textures/base/pack/invisible.png differ diff --git a/textures/base/pack/lamppost1.png b/textures/base/pack/lamppost1.png new file mode 100644 index 00000000..f337c0ef Binary files /dev/null and b/textures/base/pack/lamppost1.png differ diff --git a/textures/base/pack/lamppost2.png b/textures/base/pack/lamppost2.png new file mode 100644 index 00000000..beacb959 Binary files /dev/null and b/textures/base/pack/lamppost2.png differ diff --git a/textures/base/pack/lamppost3.png b/textures/base/pack/lamppost3.png new file mode 100644 index 00000000..e30f37a8 Binary files /dev/null and b/textures/base/pack/lamppost3.png differ diff --git a/textures/base/pack/lamppost4.png b/textures/base/pack/lamppost4.png new file mode 100644 index 00000000..64b75602 Binary files /dev/null and b/textures/base/pack/lamppost4.png differ diff --git a/textures/base/pack/lamppost_inv.png b/textures/base/pack/lamppost_inv.png new file mode 100644 index 00000000..9c53d4cc Binary files /dev/null and b/textures/base/pack/lamppost_inv.png differ diff --git a/textures/base/pack/lantern.png b/textures/base/pack/lantern.png new file mode 100644 index 00000000..63c3aef0 Binary files /dev/null and b/textures/base/pack/lantern.png differ diff --git a/textures/base/pack/lantern_lamp.png b/textures/base/pack/lantern_lamp.png new file mode 100644 index 00000000..98ebc494 Binary files /dev/null and b/textures/base/pack/lantern_lamp.png differ diff --git a/textures/base/pack/lantern_tb.png b/textures/base/pack/lantern_tb.png new file mode 100644 index 00000000..4bc155d1 Binary files /dev/null and b/textures/base/pack/lantern_tb.png differ diff --git a/textures/base/pack/magic_magicmissle.png b/textures/base/pack/magic_magicmissle.png new file mode 100644 index 00000000..0fcf5dc2 Binary files /dev/null and b/textures/base/pack/magic_magicmissle.png differ diff --git a/textures/base/pack/magic_magicmissle_particle1.png b/textures/base/pack/magic_magicmissle_particle1.png new file mode 100644 index 00000000..47bf4b25 Binary files /dev/null and b/textures/base/pack/magic_magicmissle_particle1.png differ diff --git a/textures/base/pack/magic_magicmissle_particle2.png b/textures/base/pack/magic_magicmissle_particle2.png new file mode 100644 index 00000000..460fe571 Binary files /dev/null and b/textures/base/pack/magic_magicmissle_particle2.png differ diff --git a/textures/base/pack/magic_missle_wand.png b/textures/base/pack/magic_missle_wand.png new file mode 100644 index 00000000..9aba01b5 Binary files /dev/null and b/textures/base/pack/magic_missle_wand.png differ diff --git a/textures/base/pack/mg_dirt_with_dry_grass.png b/textures/base/pack/mg_dirt_with_dry_grass.png new file mode 100644 index 00000000..fca9dcb6 Binary files /dev/null and b/textures/base/pack/mg_dirt_with_dry_grass.png differ diff --git a/textures/base/pack/mg_dry_grass.png b/textures/base/pack/mg_dry_grass.png new file mode 100644 index 00000000..fca9dcb6 Binary files /dev/null and b/textures/base/pack/mg_dry_grass.png differ diff --git a/textures/base/pack/mg_dry_grass_side.png b/textures/base/pack/mg_dry_grass_side.png new file mode 100644 index 00000000..0e435442 Binary files /dev/null and b/textures/base/pack/mg_dry_grass_side.png differ diff --git a/textures/base/pack/mg_dry_leaves.png b/textures/base/pack/mg_dry_leaves.png new file mode 100644 index 00000000..dd8a3b1e Binary files /dev/null and b/textures/base/pack/mg_dry_leaves.png differ diff --git a/textures/base/pack/mg_dry_sapling.png b/textures/base/pack/mg_dry_sapling.png new file mode 100644 index 00000000..3ee36682 Binary files /dev/null and b/textures/base/pack/mg_dry_sapling.png differ diff --git a/textures/base/pack/mg_dry_tree.png b/textures/base/pack/mg_dry_tree.png new file mode 100644 index 00000000..864fa1c9 Binary files /dev/null and b/textures/base/pack/mg_dry_tree.png differ diff --git a/textures/base/pack/mg_dry_tree_top.png b/textures/base/pack/mg_dry_tree_top.png new file mode 100644 index 00000000..43b9a6ec Binary files /dev/null and b/textures/base/pack/mg_dry_tree_top.png differ diff --git a/textures/base/pack/mg_dry_wood.png b/textures/base/pack/mg_dry_wood.png new file mode 100644 index 00000000..f5d649b4 Binary files /dev/null and b/textures/base/pack/mg_dry_wood.png differ diff --git a/textures/base/pack/mg_pine_leaves.png b/textures/base/pack/mg_pine_leaves.png new file mode 100644 index 00000000..29a470c5 Binary files /dev/null and b/textures/base/pack/mg_pine_leaves.png differ diff --git a/textures/base/pack/mg_pine_sapling.png b/textures/base/pack/mg_pine_sapling.png new file mode 100644 index 00000000..1ca90026 Binary files /dev/null and b/textures/base/pack/mg_pine_sapling.png differ diff --git a/textures/base/pack/mg_pine_tree.png b/textures/base/pack/mg_pine_tree.png new file mode 100644 index 00000000..12ab7e29 Binary files /dev/null and b/textures/base/pack/mg_pine_tree.png differ diff --git a/textures/base/pack/mg_pine_tree_top.png b/textures/base/pack/mg_pine_tree_top.png new file mode 100644 index 00000000..d4f8c32e Binary files /dev/null and b/textures/base/pack/mg_pine_tree_top.png differ diff --git a/textures/base/pack/mg_pine_wood.png b/textures/base/pack/mg_pine_wood.png new file mode 100644 index 00000000..0e323218 Binary files /dev/null and b/textures/base/pack/mg_pine_wood.png differ diff --git a/textures/base/pack/mobs_barbarian1.png b/textures/base/pack/mobs_barbarian1.png new file mode 100644 index 00000000..639862c5 Binary files /dev/null and b/textures/base/pack/mobs_barbarian1.png differ diff --git a/textures/base/pack/mobs_barbarian2.png b/textures/base/pack/mobs_barbarian2.png new file mode 100644 index 00000000..46ecae2f Binary files /dev/null and b/textures/base/pack/mobs_barbarian2.png differ diff --git a/textures/base/pack/mobs_barbarian_archer.png b/textures/base/pack/mobs_barbarian_archer.png new file mode 100644 index 00000000..fc4a91c0 Binary files /dev/null and b/textures/base/pack/mobs_barbarian_archer.png differ diff --git a/textures/base/pack/mobs_blacksmith.png b/textures/base/pack/mobs_blacksmith.png new file mode 100644 index 00000000..81364805 Binary files /dev/null and b/textures/base/pack/mobs_blacksmith.png differ diff --git a/textures/base/pack/mobs_blood.png b/textures/base/pack/mobs_blood.png new file mode 100644 index 00000000..77cfbdaa Binary files /dev/null and b/textures/base/pack/mobs_blood.png differ diff --git a/textures/base/pack/mobs_cooked_rat.png b/textures/base/pack/mobs_cooked_rat.png new file mode 100644 index 00000000..daad3be0 Binary files /dev/null and b/textures/base/pack/mobs_cooked_rat.png differ diff --git a/textures/base/pack/mobs_dirt_monster.png b/textures/base/pack/mobs_dirt_monster.png new file mode 100644 index 00000000..4bb386be Binary files /dev/null and b/textures/base/pack/mobs_dirt_monster.png differ diff --git a/textures/base/pack/mobs_dungeon_master.png b/textures/base/pack/mobs_dungeon_master.png new file mode 100644 index 00000000..dbc9584f Binary files /dev/null and b/textures/base/pack/mobs_dungeon_master.png differ diff --git a/textures/base/pack/mobs_dungeon_master_fireball.png b/textures/base/pack/mobs_dungeon_master_fireball.png new file mode 100644 index 00000000..652d0bf9 Binary files /dev/null and b/textures/base/pack/mobs_dungeon_master_fireball.png differ diff --git a/textures/base/pack/mobs_dungeon_master_fireball_back.png b/textures/base/pack/mobs_dungeon_master_fireball_back.png new file mode 100644 index 00000000..a46e22fa Binary files /dev/null and b/textures/base/pack/mobs_dungeon_master_fireball_back.png differ diff --git a/textures/base/pack/mobs_ent.png b/textures/base/pack/mobs_ent.png new file mode 100644 index 00000000..7337fb08 Binary files /dev/null and b/textures/base/pack/mobs_ent.png differ diff --git a/textures/base/pack/mobs_explorer.png b/textures/base/pack/mobs_explorer.png new file mode 100644 index 00000000..54bcd1f9 Binary files /dev/null and b/textures/base/pack/mobs_explorer.png differ diff --git a/textures/base/pack/mobs_female1.png b/textures/base/pack/mobs_female1.png new file mode 100644 index 00000000..daa50798 Binary files /dev/null and b/textures/base/pack/mobs_female1.png differ diff --git a/textures/base/pack/mobs_female2.png b/textures/base/pack/mobs_female2.png new file mode 100644 index 00000000..a86cd0df Binary files /dev/null and b/textures/base/pack/mobs_female2.png differ diff --git a/textures/base/pack/mobs_female3.png b/textures/base/pack/mobs_female3.png new file mode 100644 index 00000000..e542aa0b Binary files /dev/null and b/textures/base/pack/mobs_female3.png differ diff --git a/textures/base/pack/mobs_fireball.png b/textures/base/pack/mobs_fireball.png new file mode 100644 index 00000000..1ca4522f Binary files /dev/null and b/textures/base/pack/mobs_fireball.png differ diff --git a/textures/base/pack/mobs_fireball_animated.png b/textures/base/pack/mobs_fireball_animated.png new file mode 100644 index 00000000..cc556d16 Binary files /dev/null and b/textures/base/pack/mobs_fireball_animated.png differ diff --git a/textures/base/pack/mobs_goblin.png b/textures/base/pack/mobs_goblin.png new file mode 100644 index 00000000..6c51a42a Binary files /dev/null and b/textures/base/pack/mobs_goblin.png differ diff --git a/textures/base/pack/mobs_goblin_king_crown.png b/textures/base/pack/mobs_goblin_king_crown.png new file mode 100644 index 00000000..9cd70600 Binary files /dev/null and b/textures/base/pack/mobs_goblin_king_crown.png differ diff --git a/textures/base/pack/mobs_inv_goblin_king_crown.png b/textures/base/pack/mobs_inv_goblin_king_crown.png new file mode 100644 index 00000000..b5d832ca Binary files /dev/null and b/textures/base/pack/mobs_inv_goblin_king_crown.png differ diff --git a/textures/base/pack/mobs_jungle_spider.png b/textures/base/pack/mobs_jungle_spider.png new file mode 100644 index 00000000..d41b49e9 Binary files /dev/null and b/textures/base/pack/mobs_jungle_spider.png differ diff --git a/textures/base/pack/mobs_jungle_spider_fang.png b/textures/base/pack/mobs_jungle_spider_fang.png new file mode 100644 index 00000000..d13faffa Binary files /dev/null and b/textures/base/pack/mobs_jungle_spider_fang.png differ diff --git a/textures/base/pack/mobs_male1.png b/textures/base/pack/mobs_male1.png new file mode 100644 index 00000000..2ebe6605 Binary files /dev/null and b/textures/base/pack/mobs_male1.png differ diff --git a/textures/base/pack/mobs_male2.png b/textures/base/pack/mobs_male2.png new file mode 100644 index 00000000..fefa06df Binary files /dev/null and b/textures/base/pack/mobs_male2.png differ diff --git a/textures/base/pack/mobs_male3.png b/textures/base/pack/mobs_male3.png new file mode 100644 index 00000000..9b62d467 Binary files /dev/null and b/textures/base/pack/mobs_male3.png differ diff --git a/textures/base/pack/mobs_meat.png b/textures/base/pack/mobs_meat.png new file mode 100644 index 00000000..4c63fdd1 Binary files /dev/null and b/textures/base/pack/mobs_meat.png differ diff --git a/textures/base/pack/mobs_meat_raw.png b/textures/base/pack/mobs_meat_raw.png new file mode 100644 index 00000000..0dea4ec5 Binary files /dev/null and b/textures/base/pack/mobs_meat_raw.png differ diff --git a/textures/base/pack/mobs_oerkki.png b/textures/base/pack/mobs_oerkki.png new file mode 100644 index 00000000..c48df15b Binary files /dev/null and b/textures/base/pack/mobs_oerkki.png differ diff --git a/textures/base/pack/mobs_rabbit.png b/textures/base/pack/mobs_rabbit.png new file mode 100644 index 00000000..ad8a6126 Binary files /dev/null and b/textures/base/pack/mobs_rabbit.png differ diff --git a/textures/base/pack/mobs_rabbit_brown.png b/textures/base/pack/mobs_rabbit_brown.png new file mode 100644 index 00000000..e1210835 Binary files /dev/null and b/textures/base/pack/mobs_rabbit_brown.png differ diff --git a/textures/base/pack/mobs_rabbit_grey.png b/textures/base/pack/mobs_rabbit_grey.png new file mode 100644 index 00000000..695ed89e Binary files /dev/null and b/textures/base/pack/mobs_rabbit_grey.png differ diff --git a/textures/base/pack/mobs_rat.png b/textures/base/pack/mobs_rat.png new file mode 100644 index 00000000..f83da087 Binary files /dev/null and b/textures/base/pack/mobs_rat.png differ diff --git a/textures/base/pack/mobs_rat_inventory.png b/textures/base/pack/mobs_rat_inventory.png new file mode 100644 index 00000000..a8d61513 Binary files /dev/null and b/textures/base/pack/mobs_rat_inventory.png differ diff --git a/textures/base/pack/mobs_sand_monster.png b/textures/base/pack/mobs_sand_monster.png new file mode 100644 index 00000000..4accc2d6 Binary files /dev/null and b/textures/base/pack/mobs_sand_monster.png differ diff --git a/textures/base/pack/mobs_sheep.png b/textures/base/pack/mobs_sheep.png new file mode 100644 index 00000000..b980e589 Binary files /dev/null and b/textures/base/pack/mobs_sheep.png differ diff --git a/textures/base/pack/mobs_sheep_old.png b/textures/base/pack/mobs_sheep_old.png new file mode 100644 index 00000000..4eef9e38 Binary files /dev/null and b/textures/base/pack/mobs_sheep_old.png differ diff --git a/textures/base/pack/mobs_sheep_shaved.png b/textures/base/pack/mobs_sheep_shaved.png new file mode 100644 index 00000000..79aaa56c Binary files /dev/null and b/textures/base/pack/mobs_sheep_shaved.png differ diff --git a/textures/base/pack/mobs_snow_monster.png b/textures/base/pack/mobs_snow_monster.png new file mode 100644 index 00000000..aa685612 Binary files /dev/null and b/textures/base/pack/mobs_snow_monster.png differ diff --git a/textures/base/pack/mobs_spawner.png b/textures/base/pack/mobs_spawner.png new file mode 100644 index 00000000..e1ed7523 Binary files /dev/null and b/textures/base/pack/mobs_spawner.png differ diff --git a/textures/base/pack/mobs_spider.png b/textures/base/pack/mobs_spider.png new file mode 100644 index 00000000..9f249e4b Binary files /dev/null and b/textures/base/pack/mobs_spider.png differ diff --git a/textures/base/pack/mobs_stone_monster.png b/textures/base/pack/mobs_stone_monster.png new file mode 100644 index 00000000..d4c3130c Binary files /dev/null and b/textures/base/pack/mobs_stone_monster.png differ diff --git a/textures/base/pack/mobs_tree_monster.png b/textures/base/pack/mobs_tree_monster.png new file mode 100644 index 00000000..f383a39d Binary files /dev/null and b/textures/base/pack/mobs_tree_monster.png differ diff --git a/textures/base/pack/moreblocks_cactus_brick.png b/textures/base/pack/moreblocks_cactus_brick.png new file mode 100644 index 00000000..0e8c2c9e Binary files /dev/null and b/textures/base/pack/moreblocks_cactus_brick.png differ diff --git a/textures/base/pack/moreblocks_cactus_checker.png b/textures/base/pack/moreblocks_cactus_checker.png new file mode 100644 index 00000000..99c26773 Binary files /dev/null and b/textures/base/pack/moreblocks_cactus_checker.png differ diff --git a/textures/base/pack/moreblocks_circle_stone_bricks.png b/textures/base/pack/moreblocks_circle_stone_bricks.png new file mode 100644 index 00000000..4ca0134d Binary files /dev/null and b/textures/base/pack/moreblocks_circle_stone_bricks.png differ diff --git a/textures/base/pack/moreblocks_circular_saw_bottom.png b/textures/base/pack/moreblocks_circular_saw_bottom.png new file mode 100644 index 00000000..15228297 Binary files /dev/null and b/textures/base/pack/moreblocks_circular_saw_bottom.png differ diff --git a/textures/base/pack/moreblocks_circular_saw_side.png b/textures/base/pack/moreblocks_circular_saw_side.png new file mode 100644 index 00000000..ce9e16f7 Binary files /dev/null and b/textures/base/pack/moreblocks_circular_saw_side.png differ diff --git a/textures/base/pack/moreblocks_circular_saw_top.png b/textures/base/pack/moreblocks_circular_saw_top.png new file mode 100644 index 00000000..96f3350c Binary files /dev/null and b/textures/base/pack/moreblocks_circular_saw_top.png differ diff --git a/textures/base/pack/moreblocks_clean_glass.png b/textures/base/pack/moreblocks_clean_glass.png new file mode 100644 index 00000000..140ee2b9 Binary files /dev/null and b/textures/base/pack/moreblocks_clean_glass.png differ diff --git a/textures/base/pack/moreblocks_clean_glass_detail.png b/textures/base/pack/moreblocks_clean_glass_detail.png new file mode 100644 index 00000000..71414e89 Binary files /dev/null and b/textures/base/pack/moreblocks_clean_glass_detail.png differ diff --git a/textures/base/pack/moreblocks_coal_checker.png b/textures/base/pack/moreblocks_coal_checker.png new file mode 100644 index 00000000..3df90c30 Binary files /dev/null and b/textures/base/pack/moreblocks_coal_checker.png differ diff --git a/textures/base/pack/moreblocks_coal_glass.png b/textures/base/pack/moreblocks_coal_glass.png new file mode 100644 index 00000000..5cb72277 Binary files /dev/null and b/textures/base/pack/moreblocks_coal_glass.png differ diff --git a/textures/base/pack/moreblocks_coal_glass_detail.png b/textures/base/pack/moreblocks_coal_glass_detail.png new file mode 100644 index 00000000..5ea081f8 Binary files /dev/null and b/textures/base/pack/moreblocks_coal_glass_detail.png differ diff --git a/textures/base/pack/moreblocks_coal_glass_stairsplus.png b/textures/base/pack/moreblocks_coal_glass_stairsplus.png new file mode 100644 index 00000000..8086a28f Binary files /dev/null and b/textures/base/pack/moreblocks_coal_glass_stairsplus.png differ diff --git a/textures/base/pack/moreblocks_coal_stone.png b/textures/base/pack/moreblocks_coal_stone.png new file mode 100644 index 00000000..1e514edd Binary files /dev/null and b/textures/base/pack/moreblocks_coal_stone.png differ diff --git a/textures/base/pack/moreblocks_coal_stone_bricks.png b/textures/base/pack/moreblocks_coal_stone_bricks.png new file mode 100644 index 00000000..366e4453 Binary files /dev/null and b/textures/base/pack/moreblocks_coal_stone_bricks.png differ diff --git a/textures/base/pack/moreblocks_cobble_compressed.png b/textures/base/pack/moreblocks_cobble_compressed.png new file mode 100644 index 00000000..94d02b5f Binary files /dev/null and b/textures/base/pack/moreblocks_cobble_compressed.png differ diff --git a/textures/base/pack/moreblocks_empty_bookshelf.png b/textures/base/pack/moreblocks_empty_bookshelf.png new file mode 100644 index 00000000..af874d74 Binary files /dev/null and b/textures/base/pack/moreblocks_empty_bookshelf.png differ diff --git a/textures/base/pack/moreblocks_fence_jungle_wood.png b/textures/base/pack/moreblocks_fence_jungle_wood.png new file mode 100644 index 00000000..b59db104 Binary files /dev/null and b/textures/base/pack/moreblocks_fence_jungle_wood.png differ diff --git a/textures/base/pack/moreblocks_fence_wood.png b/textures/base/pack/moreblocks_fence_wood.png new file mode 100644 index 00000000..e3510c52 Binary files /dev/null and b/textures/base/pack/moreblocks_fence_wood.png differ diff --git a/textures/base/pack/moreblocks_glass.png b/textures/base/pack/moreblocks_glass.png new file mode 100644 index 00000000..912b029e Binary files /dev/null and b/textures/base/pack/moreblocks_glass.png differ diff --git a/textures/base/pack/moreblocks_glass_stairsplus.png b/textures/base/pack/moreblocks_glass_stairsplus.png new file mode 100644 index 00000000..b879ec32 Binary files /dev/null and b/textures/base/pack/moreblocks_glass_stairsplus.png differ diff --git a/textures/base/pack/moreblocks_glow_glass.png b/textures/base/pack/moreblocks_glow_glass.png new file mode 100644 index 00000000..843bebf1 Binary files /dev/null and b/textures/base/pack/moreblocks_glow_glass.png differ diff --git a/textures/base/pack/moreblocks_glow_glass_detail.png b/textures/base/pack/moreblocks_glow_glass_detail.png new file mode 100644 index 00000000..ea67bc35 Binary files /dev/null and b/textures/base/pack/moreblocks_glow_glass_detail.png differ diff --git a/textures/base/pack/moreblocks_glow_glass_stairsplus.png b/textures/base/pack/moreblocks_glow_glass_stairsplus.png new file mode 100644 index 00000000..cdb80443 Binary files /dev/null and b/textures/base/pack/moreblocks_glow_glass_stairsplus.png differ diff --git a/textures/base/pack/moreblocks_grey_bricks.png b/textures/base/pack/moreblocks_grey_bricks.png new file mode 100644 index 00000000..9839ca25 Binary files /dev/null and b/textures/base/pack/moreblocks_grey_bricks.png differ diff --git a/textures/base/pack/moreblocks_iron_checker.png b/textures/base/pack/moreblocks_iron_checker.png new file mode 100644 index 00000000..d27f4df7 Binary files /dev/null and b/textures/base/pack/moreblocks_iron_checker.png differ diff --git a/textures/base/pack/moreblocks_iron_glass.png b/textures/base/pack/moreblocks_iron_glass.png new file mode 100644 index 00000000..51be0d63 Binary files /dev/null and b/textures/base/pack/moreblocks_iron_glass.png differ diff --git a/textures/base/pack/moreblocks_iron_glass_detail.png b/textures/base/pack/moreblocks_iron_glass_detail.png new file mode 100644 index 00000000..2b8fc120 Binary files /dev/null and b/textures/base/pack/moreblocks_iron_glass_detail.png differ diff --git a/textures/base/pack/moreblocks_iron_glass_stairsplus.png b/textures/base/pack/moreblocks_iron_glass_stairsplus.png new file mode 100644 index 00000000..52e3bf37 Binary files /dev/null and b/textures/base/pack/moreblocks_iron_glass_stairsplus.png differ diff --git a/textures/base/pack/moreblocks_iron_stone.png b/textures/base/pack/moreblocks_iron_stone.png new file mode 100644 index 00000000..20c42f33 Binary files /dev/null and b/textures/base/pack/moreblocks_iron_stone.png differ diff --git a/textures/base/pack/moreblocks_iron_stone_bricks.png b/textures/base/pack/moreblocks_iron_stone_bricks.png new file mode 100644 index 00000000..1f817f87 Binary files /dev/null and b/textures/base/pack/moreblocks_iron_stone_bricks.png differ diff --git a/textures/base/pack/moreblocks_junglestick.png b/textures/base/pack/moreblocks_junglestick.png new file mode 100644 index 00000000..7c6c462c Binary files /dev/null and b/textures/base/pack/moreblocks_junglestick.png differ diff --git a/textures/base/pack/moreblocks_obsidian_glass_stairsplus.png b/textures/base/pack/moreblocks_obsidian_glass_stairsplus.png new file mode 100644 index 00000000..3eb22d0a Binary files /dev/null and b/textures/base/pack/moreblocks_obsidian_glass_stairsplus.png differ diff --git a/textures/base/pack/moreblocks_plankstone.png b/textures/base/pack/moreblocks_plankstone.png new file mode 100644 index 00000000..b1a65c54 Binary files /dev/null and b/textures/base/pack/moreblocks_plankstone.png differ diff --git a/textures/base/pack/moreblocks_plankstone_2.png b/textures/base/pack/moreblocks_plankstone_2.png new file mode 100644 index 00000000..953c2f55 Binary files /dev/null and b/textures/base/pack/moreblocks_plankstone_2.png differ diff --git a/textures/base/pack/moreblocks_rope.png b/textures/base/pack/moreblocks_rope.png new file mode 100644 index 00000000..19787fe5 Binary files /dev/null and b/textures/base/pack/moreblocks_rope.png differ diff --git a/textures/base/pack/moreblocks_split_stone_tile.png b/textures/base/pack/moreblocks_split_stone_tile.png new file mode 100644 index 00000000..d7d69af4 Binary files /dev/null and b/textures/base/pack/moreblocks_split_stone_tile.png differ diff --git a/textures/base/pack/moreblocks_split_stone_tile_alt.png b/textures/base/pack/moreblocks_split_stone_tile_alt.png new file mode 100644 index 00000000..9d11b4f3 Binary files /dev/null and b/textures/base/pack/moreblocks_split_stone_tile_alt.png differ diff --git a/textures/base/pack/moreblocks_split_stone_tile_top.png b/textures/base/pack/moreblocks_split_stone_tile_top.png new file mode 100644 index 00000000..3c8eb6d1 Binary files /dev/null and b/textures/base/pack/moreblocks_split_stone_tile_top.png differ diff --git a/textures/base/pack/moreblocks_stone_tile.png b/textures/base/pack/moreblocks_stone_tile.png new file mode 100644 index 00000000..c2083eaa Binary files /dev/null and b/textures/base/pack/moreblocks_stone_tile.png differ diff --git a/textures/base/pack/moreblocks_super_glow_glass.png b/textures/base/pack/moreblocks_super_glow_glass.png new file mode 100644 index 00000000..a9d4c5f2 Binary files /dev/null and b/textures/base/pack/moreblocks_super_glow_glass.png differ diff --git a/textures/base/pack/moreblocks_super_glow_glass_detail.png b/textures/base/pack/moreblocks_super_glow_glass_detail.png new file mode 100644 index 00000000..e321a5c2 Binary files /dev/null and b/textures/base/pack/moreblocks_super_glow_glass_detail.png differ diff --git a/textures/base/pack/moreblocks_super_glow_glass_stairsplus.png b/textures/base/pack/moreblocks_super_glow_glass_stairsplus.png new file mode 100644 index 00000000..9118c781 Binary files /dev/null and b/textures/base/pack/moreblocks_super_glow_glass_stairsplus.png differ diff --git a/textures/base/pack/moreblocks_sweeper.png b/textures/base/pack/moreblocks_sweeper.png new file mode 100644 index 00000000..34f1cdec Binary files /dev/null and b/textures/base/pack/moreblocks_sweeper.png differ diff --git a/textures/base/pack/moreblocks_tar.png b/textures/base/pack/moreblocks_tar.png new file mode 100644 index 00000000..e1eb427d Binary files /dev/null and b/textures/base/pack/moreblocks_tar.png differ diff --git a/textures/base/pack/moreblocks_trap_glass.png b/textures/base/pack/moreblocks_trap_glass.png new file mode 100644 index 00000000..25c33878 Binary files /dev/null and b/textures/base/pack/moreblocks_trap_glass.png differ diff --git a/textures/base/pack/moreblocks_trap_glow_glass.png b/textures/base/pack/moreblocks_trap_glow_glass.png new file mode 100644 index 00000000..1096dd7e Binary files /dev/null and b/textures/base/pack/moreblocks_trap_glow_glass.png differ diff --git a/textures/base/pack/moreblocks_trap_stone.png b/textures/base/pack/moreblocks_trap_stone.png new file mode 100644 index 00000000..764aa818 Binary files /dev/null and b/textures/base/pack/moreblocks_trap_stone.png differ diff --git a/textures/base/pack/moreblocks_trap_super_glow_glass.png b/textures/base/pack/moreblocks_trap_super_glow_glass.png new file mode 100644 index 00000000..fef974bc Binary files /dev/null and b/textures/base/pack/moreblocks_trap_super_glow_glass.png differ diff --git a/textures/base/pack/moreblocks_tree_stairsplus.png b/textures/base/pack/moreblocks_tree_stairsplus.png new file mode 100644 index 00000000..60100c9b Binary files /dev/null and b/textures/base/pack/moreblocks_tree_stairsplus.png differ diff --git a/textures/base/pack/moreblocks_wood_tile.png b/textures/base/pack/moreblocks_wood_tile.png new file mode 100644 index 00000000..d0faa3dc Binary files /dev/null and b/textures/base/pack/moreblocks_wood_tile.png differ diff --git a/textures/base/pack/moreblocks_wood_tile_center.png b/textures/base/pack/moreblocks_wood_tile_center.png new file mode 100644 index 00000000..02b0f84e Binary files /dev/null and b/textures/base/pack/moreblocks_wood_tile_center.png differ diff --git a/textures/base/pack/moreblocks_wood_tile_full.png b/textures/base/pack/moreblocks_wood_tile_full.png new file mode 100644 index 00000000..7ec7f056 Binary files /dev/null and b/textures/base/pack/moreblocks_wood_tile_full.png differ diff --git a/textures/base/pack/moreblocks_wood_tile_up.png b/textures/base/pack/moreblocks_wood_tile_up.png new file mode 100644 index 00000000..3f6a2f24 Binary files /dev/null and b/textures/base/pack/moreblocks_wood_tile_up.png differ diff --git a/textures/base/pack/oerkki1.png b/textures/base/pack/oerkki1.png new file mode 100644 index 00000000..7321d3d3 Binary files /dev/null and b/textures/base/pack/oerkki1.png differ diff --git a/textures/base/pack/oerkki1_damaged.png b/textures/base/pack/oerkki1_damaged.png new file mode 100644 index 00000000..0ab50c8a Binary files /dev/null and b/textures/base/pack/oerkki1_damaged.png differ diff --git a/textures/base/pack/player.png b/textures/base/pack/player.png new file mode 100644 index 00000000..f2728e4a Binary files /dev/null and b/textures/base/pack/player.png differ diff --git a/textures/base/pack/player_back.png b/textures/base/pack/player_back.png new file mode 100644 index 00000000..5157d990 Binary files /dev/null and b/textures/base/pack/player_back.png differ diff --git a/textures/base/pack/potion_bones.png b/textures/base/pack/potion_bones.png new file mode 100644 index 00000000..dcda5e41 Binary files /dev/null and b/textures/base/pack/potion_bones.png differ diff --git a/textures/base/pack/potions_antidote.png b/textures/base/pack/potions_antidote.png new file mode 100644 index 00000000..fdad169e Binary files /dev/null and b/textures/base/pack/potions_antidote.png differ diff --git a/textures/base/pack/potions_fly1.png b/textures/base/pack/potions_fly1.png new file mode 100644 index 00000000..cc575de8 Binary files /dev/null and b/textures/base/pack/potions_fly1.png differ diff --git a/textures/base/pack/potions_fly1_raw.png b/textures/base/pack/potions_fly1_raw.png new file mode 100644 index 00000000..a999c5dc Binary files /dev/null and b/textures/base/pack/potions_fly1_raw.png differ diff --git a/textures/base/pack/potions_fly2.png b/textures/base/pack/potions_fly2.png new file mode 100644 index 00000000..072553fe Binary files /dev/null and b/textures/base/pack/potions_fly2.png differ diff --git a/textures/base/pack/potions_fly2_raw.png b/textures/base/pack/potions_fly2_raw.png new file mode 100644 index 00000000..a9d685cd Binary files /dev/null and b/textures/base/pack/potions_fly2_raw.png differ diff --git a/textures/base/pack/potions_fly3.png b/textures/base/pack/potions_fly3.png new file mode 100644 index 00000000..45def2c3 Binary files /dev/null and b/textures/base/pack/potions_fly3.png differ diff --git a/textures/base/pack/potions_fly3_raw.png b/textures/base/pack/potions_fly3_raw.png new file mode 100644 index 00000000..a0ee6554 Binary files /dev/null and b/textures/base/pack/potions_fly3_raw.png differ diff --git a/textures/base/pack/potions_gravity1.png b/textures/base/pack/potions_gravity1.png new file mode 100644 index 00000000..50182500 Binary files /dev/null and b/textures/base/pack/potions_gravity1.png differ diff --git a/textures/base/pack/potions_gravity1_raw.png b/textures/base/pack/potions_gravity1_raw.png new file mode 100644 index 00000000..13e771c9 Binary files /dev/null and b/textures/base/pack/potions_gravity1_raw.png differ diff --git a/textures/base/pack/potions_ground_bones.png b/textures/base/pack/potions_ground_bones.png new file mode 100644 index 00000000..6007ced3 Binary files /dev/null and b/textures/base/pack/potions_ground_bones.png differ diff --git a/textures/base/pack/potions_ground_dandelion_white.png b/textures/base/pack/potions_ground_dandelion_white.png new file mode 100644 index 00000000..98d61776 Binary files /dev/null and b/textures/base/pack/potions_ground_dandelion_white.png differ diff --git a/textures/base/pack/potions_ground_dandelion_yellow.png b/textures/base/pack/potions_ground_dandelion_yellow.png new file mode 100644 index 00000000..4574bd86 Binary files /dev/null and b/textures/base/pack/potions_ground_dandelion_yellow.png differ diff --git a/textures/base/pack/potions_ground_geranium.png b/textures/base/pack/potions_ground_geranium.png new file mode 100644 index 00000000..655df8a3 Binary files /dev/null and b/textures/base/pack/potions_ground_geranium.png differ diff --git a/textures/base/pack/potions_ground_magic.png b/textures/base/pack/potions_ground_magic.png new file mode 100644 index 00000000..9ff75685 Binary files /dev/null and b/textures/base/pack/potions_ground_magic.png differ diff --git a/textures/base/pack/potions_ground_rose.png b/textures/base/pack/potions_ground_rose.png new file mode 100644 index 00000000..feac2444 Binary files /dev/null and b/textures/base/pack/potions_ground_rose.png differ diff --git a/textures/base/pack/potions_ground_seaweed.png b/textures/base/pack/potions_ground_seaweed.png new file mode 100644 index 00000000..999f3fd0 Binary files /dev/null and b/textures/base/pack/potions_ground_seaweed.png differ diff --git a/textures/base/pack/potions_ground_tulip.png b/textures/base/pack/potions_ground_tulip.png new file mode 100644 index 00000000..aa519380 Binary files /dev/null and b/textures/base/pack/potions_ground_tulip.png differ diff --git a/textures/base/pack/potions_ground_viola.png b/textures/base/pack/potions_ground_viola.png new file mode 100644 index 00000000..95061772 Binary files /dev/null and b/textures/base/pack/potions_ground_viola.png differ diff --git a/textures/base/pack/potions_ground_waterlily.png b/textures/base/pack/potions_ground_waterlily.png new file mode 100644 index 00000000..c3c1e509 Binary files /dev/null and b/textures/base/pack/potions_ground_waterlily.png differ diff --git a/textures/base/pack/potions_magic.png b/textures/base/pack/potions_magic.png new file mode 100644 index 00000000..7bded8a6 Binary files /dev/null and b/textures/base/pack/potions_magic.png differ diff --git a/textures/base/pack/potions_magic2.png b/textures/base/pack/potions_magic2.png new file mode 100644 index 00000000..fd52b1d3 Binary files /dev/null and b/textures/base/pack/potions_magic2.png differ diff --git a/textures/base/pack/potions_magic3.png b/textures/base/pack/potions_magic3.png new file mode 100644 index 00000000..39a89b13 Binary files /dev/null and b/textures/base/pack/potions_magic3.png differ diff --git a/textures/base/pack/quests_dungeon_token.png b/textures/base/pack/quests_dungeon_token.png new file mode 100644 index 00000000..b9836ee1 Binary files /dev/null and b/textures/base/pack/quests_dungeon_token.png differ diff --git a/textures/base/pack/quests_marker.png b/textures/base/pack/quests_marker.png new file mode 100644 index 00000000..767fbae1 Binary files /dev/null and b/textures/base/pack/quests_marker.png differ diff --git a/textures/base/pack/rat.png b/textures/base/pack/rat.png new file mode 100644 index 00000000..e62e6032 Binary files /dev/null and b/textures/base/pack/rat.png differ diff --git a/textures/base/pack/screwdriver.png b/textures/base/pack/screwdriver.png new file mode 100644 index 00000000..1f2cb87b Binary files /dev/null and b/textures/base/pack/screwdriver.png differ diff --git a/textures/base/pack/shields_inv_shield_bronze.png b/textures/base/pack/shields_inv_shield_bronze.png new file mode 100644 index 00000000..25f67698 Binary files /dev/null and b/textures/base/pack/shields_inv_shield_bronze.png differ diff --git a/textures/base/pack/shields_inv_shield_diamond.png b/textures/base/pack/shields_inv_shield_diamond.png new file mode 100644 index 00000000..b1145871 Binary files /dev/null and b/textures/base/pack/shields_inv_shield_diamond.png differ diff --git a/textures/base/pack/shields_inv_shield_mithril.png b/textures/base/pack/shields_inv_shield_mithril.png new file mode 100644 index 00000000..7c1d7d32 Binary files /dev/null and b/textures/base/pack/shields_inv_shield_mithril.png differ diff --git a/textures/base/pack/shields_inv_shield_steel.png b/textures/base/pack/shields_inv_shield_steel.png new file mode 100644 index 00000000..8eaee8f1 Binary files /dev/null and b/textures/base/pack/shields_inv_shield_steel.png differ diff --git a/textures/base/pack/shields_inv_shield_wood.png b/textures/base/pack/shields_inv_shield_wood.png new file mode 100644 index 00000000..3e3c14a2 Binary files /dev/null and b/textures/base/pack/shields_inv_shield_wood.png differ diff --git a/textures/base/pack/shields_shield_bronze.png b/textures/base/pack/shields_shield_bronze.png new file mode 100644 index 00000000..62297a0d Binary files /dev/null and b/textures/base/pack/shields_shield_bronze.png differ diff --git a/textures/base/pack/shields_shield_diamond.png b/textures/base/pack/shields_shield_diamond.png new file mode 100644 index 00000000..3f373002 Binary files /dev/null and b/textures/base/pack/shields_shield_diamond.png differ diff --git a/textures/base/pack/shields_shield_mithril.png b/textures/base/pack/shields_shield_mithril.png new file mode 100644 index 00000000..13666d19 Binary files /dev/null and b/textures/base/pack/shields_shield_mithril.png differ diff --git a/textures/base/pack/shields_shield_steel.png b/textures/base/pack/shields_shield_steel.png new file mode 100644 index 00000000..5d3ef063 Binary files /dev/null and b/textures/base/pack/shields_shield_steel.png differ diff --git a/textures/base/pack/shields_shield_wood.png b/textures/base/pack/shields_shield_wood.png new file mode 100644 index 00000000..69c9e3ab Binary files /dev/null and b/textures/base/pack/shields_shield_wood.png differ diff --git a/textures/base/pack/stone_gold.png b/textures/base/pack/stone_gold.png new file mode 100644 index 00000000..79233cf9 Binary files /dev/null and b/textures/base/pack/stone_gold.png differ diff --git a/textures/base/pack/throwing_arrow.png b/textures/base/pack/throwing_arrow.png new file mode 100644 index 00000000..9b72ee98 Binary files /dev/null and b/textures/base/pack/throwing_arrow.png differ diff --git a/textures/base/pack/throwing_arrow_2.png b/textures/base/pack/throwing_arrow_2.png new file mode 100644 index 00000000..b5980d02 Binary files /dev/null and b/textures/base/pack/throwing_arrow_2.png differ diff --git a/textures/base/pack/throwing_arrow_back.png b/textures/base/pack/throwing_arrow_back.png new file mode 100644 index 00000000..d680d88f Binary files /dev/null and b/textures/base/pack/throwing_arrow_back.png differ diff --git a/textures/base/pack/throwing_arrow_build.png b/textures/base/pack/throwing_arrow_build.png new file mode 100644 index 00000000..02653e13 Binary files /dev/null and b/textures/base/pack/throwing_arrow_build.png differ diff --git a/textures/base/pack/throwing_arrow_build_2.png b/textures/base/pack/throwing_arrow_build_2.png new file mode 100644 index 00000000..fd576d40 Binary files /dev/null and b/textures/base/pack/throwing_arrow_build_2.png differ diff --git a/textures/base/pack/throwing_arrow_build_back.png b/textures/base/pack/throwing_arrow_build_back.png new file mode 100644 index 00000000..18c2f02c Binary files /dev/null and b/textures/base/pack/throwing_arrow_build_back.png differ diff --git a/textures/base/pack/throwing_arrow_build_front.png b/textures/base/pack/throwing_arrow_build_front.png new file mode 100644 index 00000000..b6b69672 Binary files /dev/null and b/textures/base/pack/throwing_arrow_build_front.png differ diff --git a/textures/base/pack/throwing_arrow_dig.png b/textures/base/pack/throwing_arrow_dig.png new file mode 100644 index 00000000..02f6a000 Binary files /dev/null and b/textures/base/pack/throwing_arrow_dig.png differ diff --git a/textures/base/pack/throwing_arrow_dig_2.png b/textures/base/pack/throwing_arrow_dig_2.png new file mode 100644 index 00000000..b514b5d2 Binary files /dev/null and b/textures/base/pack/throwing_arrow_dig_2.png differ diff --git a/textures/base/pack/throwing_arrow_dig_back.png b/textures/base/pack/throwing_arrow_dig_back.png new file mode 100644 index 00000000..97422572 Binary files /dev/null and b/textures/base/pack/throwing_arrow_dig_back.png differ diff --git a/textures/base/pack/throwing_arrow_dig_front.png b/textures/base/pack/throwing_arrow_dig_front.png new file mode 100644 index 00000000..6681c998 Binary files /dev/null and b/textures/base/pack/throwing_arrow_dig_front.png differ diff --git a/textures/base/pack/throwing_arrow_fire.png b/textures/base/pack/throwing_arrow_fire.png new file mode 100644 index 00000000..8f5075a3 Binary files /dev/null and b/textures/base/pack/throwing_arrow_fire.png differ diff --git a/textures/base/pack/throwing_arrow_fire_2.png b/textures/base/pack/throwing_arrow_fire_2.png new file mode 100644 index 00000000..ed0aa5fb Binary files /dev/null and b/textures/base/pack/throwing_arrow_fire_2.png differ diff --git a/textures/base/pack/throwing_arrow_fire_back.png b/textures/base/pack/throwing_arrow_fire_back.png new file mode 100644 index 00000000..8a7d9930 Binary files /dev/null and b/textures/base/pack/throwing_arrow_fire_back.png differ diff --git a/textures/base/pack/throwing_arrow_fire_front.png b/textures/base/pack/throwing_arrow_fire_front.png new file mode 100644 index 00000000..3994257d Binary files /dev/null and b/textures/base/pack/throwing_arrow_fire_front.png differ diff --git a/textures/base/pack/throwing_arrow_front.png b/textures/base/pack/throwing_arrow_front.png new file mode 100644 index 00000000..828a486f Binary files /dev/null and b/textures/base/pack/throwing_arrow_front.png differ diff --git a/textures/base/pack/throwing_arrow_teleport.png b/textures/base/pack/throwing_arrow_teleport.png new file mode 100644 index 00000000..f95d3e8b Binary files /dev/null and b/textures/base/pack/throwing_arrow_teleport.png differ diff --git a/textures/base/pack/throwing_arrow_teleport_2.png b/textures/base/pack/throwing_arrow_teleport_2.png new file mode 100644 index 00000000..6e8eaa9b Binary files /dev/null and b/textures/base/pack/throwing_arrow_teleport_2.png differ diff --git a/textures/base/pack/throwing_arrow_teleport_back.png b/textures/base/pack/throwing_arrow_teleport_back.png new file mode 100644 index 00000000..e0bba027 Binary files /dev/null and b/textures/base/pack/throwing_arrow_teleport_back.png differ diff --git a/textures/base/pack/throwing_arrow_teleport_front.png b/textures/base/pack/throwing_arrow_teleport_front.png new file mode 100644 index 00000000..80138c4c Binary files /dev/null and b/textures/base/pack/throwing_arrow_teleport_front.png differ diff --git a/textures/base/pack/throwing_bow_steel.png b/textures/base/pack/throwing_bow_steel.png new file mode 100644 index 00000000..e14c45c4 Binary files /dev/null and b/textures/base/pack/throwing_bow_steel.png differ diff --git a/textures/base/pack/throwing_bow_stone.png b/textures/base/pack/throwing_bow_stone.png new file mode 100644 index 00000000..93b86dd2 Binary files /dev/null and b/textures/base/pack/throwing_bow_stone.png differ diff --git a/textures/base/pack/throwing_bow_wood.png b/textures/base/pack/throwing_bow_wood.png new file mode 100644 index 00000000..07f303a5 Binary files /dev/null and b/textures/base/pack/throwing_bow_wood.png differ diff --git a/textures/base/pack/throwing_empty.png b/textures/base/pack/throwing_empty.png new file mode 100644 index 00000000..6bbd5547 Binary files /dev/null and b/textures/base/pack/throwing_empty.png differ diff --git a/textures/base/pack/tool_mode1.png b/textures/base/pack/tool_mode1.png new file mode 100644 index 00000000..bef86373 Binary files /dev/null and b/textures/base/pack/tool_mode1.png differ diff --git a/textures/base/pack/tool_mode2.png b/textures/base/pack/tool_mode2.png new file mode 100644 index 00000000..4429a5d8 Binary files /dev/null and b/textures/base/pack/tool_mode2.png differ diff --git a/textures/base/pack/tool_mode3.png b/textures/base/pack/tool_mode3.png new file mode 100644 index 00000000..5635e415 Binary files /dev/null and b/textures/base/pack/tool_mode3.png differ diff --git a/textures/base/pack/tool_mode4.png b/textures/base/pack/tool_mode4.png new file mode 100644 index 00000000..da21e05f Binary files /dev/null and b/textures/base/pack/tool_mode4.png differ diff --git a/textures/base/pack/treeprop.png b/textures/base/pack/treeprop.png new file mode 100644 index 00000000..5e9f3330 Binary files /dev/null and b/textures/base/pack/treeprop.png differ diff --git a/textures/base/pack/vendor_depositor_front.png b/textures/base/pack/vendor_depositor_front.png new file mode 100644 index 00000000..f6fe6069 Binary files /dev/null and b/textures/base/pack/vendor_depositor_front.png differ diff --git a/textures/base/pack/vendor_side.png b/textures/base/pack/vendor_side.png new file mode 100644 index 00000000..6f283614 Binary files /dev/null and b/textures/base/pack/vendor_side.png differ diff --git a/textures/base/pack/vendor_vendor_front.png b/textures/base/pack/vendor_vendor_front.png new file mode 100644 index 00000000..b8d49b8b Binary files /dev/null and b/textures/base/pack/vendor_vendor_front.png differ diff --git a/textures/base/pack/vessels_drinking_glass.png b/textures/base/pack/vessels_drinking_glass.png new file mode 100644 index 00000000..0e298663 Binary files /dev/null and b/textures/base/pack/vessels_drinking_glass.png differ diff --git a/textures/base/pack/vessels_drinking_glass_inv.png b/textures/base/pack/vessels_drinking_glass_inv.png new file mode 100644 index 00000000..3ad90271 Binary files /dev/null and b/textures/base/pack/vessels_drinking_glass_inv.png differ diff --git a/textures/base/pack/vessels_glass_bottle.png b/textures/base/pack/vessels_glass_bottle.png new file mode 100644 index 00000000..f5e183ba Binary files /dev/null and b/textures/base/pack/vessels_glass_bottle.png differ diff --git a/textures/base/pack/vessels_glass_bottle_inv.png b/textures/base/pack/vessels_glass_bottle_inv.png new file mode 100644 index 00000000..5cf31997 Binary files /dev/null and b/textures/base/pack/vessels_glass_bottle_inv.png differ diff --git a/textures/base/pack/vessels_glass_fragments.png b/textures/base/pack/vessels_glass_fragments.png new file mode 100644 index 00000000..f60e8b5e Binary files /dev/null and b/textures/base/pack/vessels_glass_fragments.png differ diff --git a/textures/base/pack/vessels_steel_bottle.png b/textures/base/pack/vessels_steel_bottle.png new file mode 100644 index 00000000..d27a7cde Binary files /dev/null and b/textures/base/pack/vessels_steel_bottle.png differ diff --git a/textures/base/pack/vessels_steel_bottle_inv.png b/textures/base/pack/vessels_steel_bottle_inv.png new file mode 100644 index 00000000..37e34fbb Binary files /dev/null and b/textures/base/pack/vessels_steel_bottle_inv.png differ diff --git a/textures/base/pack/wieldhand.png b/textures/base/pack/wieldhand.png new file mode 100644 index 00000000..2307ba4e Binary files /dev/null and b/textures/base/pack/wieldhand.png differ diff --git a/textures/base/pack/wool_black.png b/textures/base/pack/wool_black.png new file mode 100644 index 00000000..698684b4 Binary files /dev/null and b/textures/base/pack/wool_black.png differ diff --git a/textures/base/pack/wool_blue.png b/textures/base/pack/wool_blue.png new file mode 100644 index 00000000..e1a95d25 Binary files /dev/null and b/textures/base/pack/wool_blue.png differ diff --git a/textures/base/pack/wool_brown.png b/textures/base/pack/wool_brown.png new file mode 100644 index 00000000..52e9fe1c Binary files /dev/null and b/textures/base/pack/wool_brown.png differ diff --git a/textures/base/pack/wool_cyan.png b/textures/base/pack/wool_cyan.png new file mode 100644 index 00000000..019c6945 Binary files /dev/null and b/textures/base/pack/wool_cyan.png differ diff --git a/textures/base/pack/wool_dark_green.png b/textures/base/pack/wool_dark_green.png new file mode 100644 index 00000000..bdfdded4 Binary files /dev/null and b/textures/base/pack/wool_dark_green.png differ diff --git a/textures/base/pack/wool_dark_grey.png b/textures/base/pack/wool_dark_grey.png new file mode 100644 index 00000000..f3abd34a Binary files /dev/null and b/textures/base/pack/wool_dark_grey.png differ diff --git a/textures/base/pack/wool_green.png b/textures/base/pack/wool_green.png new file mode 100644 index 00000000..acf7e4ff Binary files /dev/null and b/textures/base/pack/wool_green.png differ diff --git a/textures/base/pack/wool_grey.png b/textures/base/pack/wool_grey.png new file mode 100644 index 00000000..77a988c6 Binary files /dev/null and b/textures/base/pack/wool_grey.png differ diff --git a/textures/base/pack/wool_magenta.png b/textures/base/pack/wool_magenta.png new file mode 100644 index 00000000..0f3104ee Binary files /dev/null and b/textures/base/pack/wool_magenta.png differ diff --git a/textures/base/pack/wool_orange.png b/textures/base/pack/wool_orange.png new file mode 100644 index 00000000..531bb4f2 Binary files /dev/null and b/textures/base/pack/wool_orange.png differ diff --git a/textures/base/pack/wool_pink.png b/textures/base/pack/wool_pink.png new file mode 100644 index 00000000..f87d47ce Binary files /dev/null and b/textures/base/pack/wool_pink.png differ diff --git a/textures/base/pack/wool_red.png b/textures/base/pack/wool_red.png new file mode 100644 index 00000000..a5ae98aa Binary files /dev/null and b/textures/base/pack/wool_red.png differ diff --git a/textures/base/pack/wool_violet.png b/textures/base/pack/wool_violet.png new file mode 100644 index 00000000..5ba79b33 Binary files /dev/null and b/textures/base/pack/wool_violet.png differ diff --git a/textures/base/pack/wool_white.png b/textures/base/pack/wool_white.png new file mode 100644 index 00000000..175baf38 Binary files /dev/null and b/textures/base/pack/wool_white.png differ diff --git a/textures/base/pack/wool_yellow.png b/textures/base/pack/wool_yellow.png new file mode 100644 index 00000000..7c2b765c Binary files /dev/null and b/textures/base/pack/wool_yellow.png differ diff --git a/textures/base/pack/workbench_3x3_bottom.png b/textures/base/pack/workbench_3x3_bottom.png new file mode 100644 index 00000000..da449cf7 Binary files /dev/null and b/textures/base/pack/workbench_3x3_bottom.png differ diff --git a/textures/base/pack/workbench_3x3_front.png b/textures/base/pack/workbench_3x3_front.png new file mode 100644 index 00000000..0b843f7b Binary files /dev/null and b/textures/base/pack/workbench_3x3_front.png differ diff --git a/textures/base/pack/workbench_3x3_side.png b/textures/base/pack/workbench_3x3_side.png new file mode 100644 index 00000000..1f5c728f Binary files /dev/null and b/textures/base/pack/workbench_3x3_side.png differ diff --git a/textures/base/pack/workbench_3x3_top.png b/textures/base/pack/workbench_3x3_top.png new file mode 100644 index 00000000..75dfa4ed Binary files /dev/null and b/textures/base/pack/workbench_3x3_top.png differ diff --git a/textures/base/pack/zcg_craft_arrow.png b/textures/base/pack/zcg_craft_arrow.png new file mode 100644 index 00000000..cc0648b7 Binary files /dev/null and b/textures/base/pack/zcg_craft_arrow.png differ diff --git a/textures/base/pack/zcg_method_cooking.png b/textures/base/pack/zcg_method_cooking.png new file mode 100644 index 00000000..8779cf62 Binary files /dev/null and b/textures/base/pack/zcg_method_cooking.png differ diff --git a/textures/base/pack/zcg_method_normal.png b/textures/base/pack/zcg_method_normal.png new file mode 100644 index 00000000..f0fa64d8 Binary files /dev/null and b/textures/base/pack/zcg_method_normal.png differ diff --git a/textures/base/pack/zcg_next.png b/textures/base/pack/zcg_next.png new file mode 100644 index 00000000..e6e496c4 Binary files /dev/null and b/textures/base/pack/zcg_next.png differ diff --git a/textures/base/pack/zcg_next_inactive.png b/textures/base/pack/zcg_next_inactive.png new file mode 100644 index 00000000..5ce9cd32 Binary files /dev/null and b/textures/base/pack/zcg_next_inactive.png differ diff --git a/textures/base/pack/zcg_next_press.png b/textures/base/pack/zcg_next_press.png new file mode 100644 index 00000000..2bdaf86f Binary files /dev/null and b/textures/base/pack/zcg_next_press.png differ diff --git a/textures/base/pack/zcg_previous.png b/textures/base/pack/zcg_previous.png new file mode 100644 index 00000000..232e8e71 Binary files /dev/null and b/textures/base/pack/zcg_previous.png differ diff --git a/textures/base/pack/zcg_previous_inactive.png b/textures/base/pack/zcg_previous_inactive.png new file mode 100644 index 00000000..1c16fb23 Binary files /dev/null and b/textures/base/pack/zcg_previous_inactive.png differ diff --git a/textures/base/pack/zcg_previous_press.png b/textures/base/pack/zcg_previous_press.png new file mode 100644 index 00000000..81f3af1e Binary files /dev/null and b/textures/base/pack/zcg_previous_press.png differ