From 906d0ad0b017df611ac3c225ecbe5ffe53bd5eb8 Mon Sep 17 00:00:00 2001 From: Infinatum Date: Mon, 7 Nov 2016 23:49:54 +0000 Subject: [PATCH] Updateing Mod * Removed 4seasons Support * Removed Nodes which are now in the game (like snow node) * Removed old textures * Added more coloured items * Added candy cane nodes * Added Christmas food * Added new snow nodes * Updated mod so it supports the new version of minetest * Updated old parts of the mod with better code * Fixed some bugs --- 4seasons.lua | 87 --- License.txt | 47 +- crafts.lua | 296 ---------- init.lua | 576 +------------------ snow.lua | 70 ++- textures/Cactus_bit.png | Bin 211 -> 0 bytes textures/Wreath.png | Bin 808 -> 0 bytes textures/c_lights.png | Bin 208 -> 0 bytes textures/christmas_craft_baubles_side_bl.png | Bin 300 -> 0 bytes textures/christmas_craft_baubles_side_gr.png | Bin 303 -> 0 bytes textures/christmas_craft_baubles_side_or.png | Bin 304 -> 0 bytes textures/christmas_craft_baubles_side_pi.png | Bin 253 -> 0 bytes textures/christmas_craft_baubles_side_re.png | Bin 304 -> 0 bytes textures/christmas_craft_baubles_side_si.png | Bin 243 -> 0 bytes textures/christmas_craft_baubles_side_vi.png | Bin 304 -> 0 bytes textures/christmas_craft_baubles_side_ye.png | Bin 304 -> 0 bytes textures/christmas_craft_baubles_top.png | Bin 203 -> 0 bytes textures/christmas_craft_baubles_top_bl.png | Bin 265 -> 0 bytes textures/christmas_craft_baubles_top_gr.png | Bin 265 -> 0 bytes textures/christmas_craft_baubles_top_or.png | Bin 258 -> 0 bytes textures/christmas_craft_baubles_top_pi.png | Bin 250 -> 0 bytes textures/christmas_craft_baubles_top_re.png | Bin 264 -> 0 bytes textures/christmas_craft_baubles_top_si.png | Bin 214 -> 0 bytes textures/christmas_craft_baubles_top_vi.png | Bin 257 -> 0 bytes textures/christmas_craft_baubles_top_ye.png | Bin 266 -> 0 bytes textures/christmas_craft_bow_bottom.png | Bin 127 -> 0 bytes textures/christmas_craft_bow_side.png | Bin 124 -> 0 bytes textures/christmas_craft_bow_top.png | Bin 138 -> 0 bytes textures/christmas_craft_leaves_side.png | Bin 602 -> 0 bytes textures/christmas_craft_leaves_top.png | Bin 434 -> 0 bytes textures/christmas_craft_present_bl.png | Bin 114 -> 0 bytes textures/christmas_craft_present_box.png | Bin 151 -> 0 bytes textures/christmas_craft_present_gr.png | Bin 114 -> 0 bytes textures/christmas_craft_present_or.png | Bin 136 -> 0 bytes textures/christmas_craft_present_pi.png | Bin 126 -> 0 bytes textures/christmas_craft_present_re.png | Bin 124 -> 0 bytes textures/christmas_craft_present_vi.png | Bin 125 -> 0 bytes textures/christmas_craft_present_wh.png | Bin 184 -> 0 bytes textures/christmas_craft_present_ye.png | Bin 136 -> 0 bytes textures/gold_nugget.png | Bin 211 -> 0 bytes textures/green_baubles.png | Bin 304 -> 0 bytes textures/iron_nugget.png | Bin 208 -> 0 bytes textures/leaves_w_snow.png | Bin 602 -> 0 bytes textures/lights_animated.png | Bin 226 -> 0 bytes textures/mithril_nugget.png | Bin 211 -> 0 bytes textures/present_bottom.png | Bin 138 -> 0 bytes textures/present_bottom_bl.png | Bin 128 -> 0 bytes textures/present_bottom_gr.png | Bin 128 -> 0 bytes textures/present_bottom_re.png | Bin 139 -> 0 bytes textures/present_bottom_ye.png | Bin 139 -> 0 bytes textures/present_side.png | Bin 122 -> 0 bytes textures/present_side_bl.png | Bin 119 -> 0 bytes textures/present_side_gr.png | Bin 119 -> 0 bytes textures/present_side_re.png | Bin 133 -> 0 bytes textures/present_side_ye.png | Bin 133 -> 0 bytes textures/present_top.png | Bin 176 -> 0 bytes textures/present_top_bl.png | Bin 150 -> 0 bytes textures/present_top_gr.png | Bin 150 -> 0 bytes textures/present_top_re.png | Bin 175 -> 0 bytes textures/present_top_ye.png | Bin 175 -> 0 bytes textures/red_baubles.png | Bin 317 -> 0 bytes textures/silver_baubles.png | Bin 263 -> 0 bytes textures/snow.png | Bin 342 -> 0 bytes textures/snow_ball.png | Bin 258 -> 0 bytes textures/snowball.png | Bin 258 -> 0 bytes textures/star.png | Bin 387 -> 0 bytes textures/tin_nugget.png | Bin 211 -> 0 bytes textures/yellow_baubles.png | Bin 304 -> 0 bytes 68 files changed, 125 insertions(+), 951 deletions(-) delete mode 100644 4seasons.lua delete mode 100644 crafts.lua delete mode 100644 textures/Cactus_bit.png delete mode 100644 textures/Wreath.png delete mode 100644 textures/c_lights.png delete mode 100644 textures/christmas_craft_baubles_side_bl.png delete mode 100644 textures/christmas_craft_baubles_side_gr.png delete mode 100644 textures/christmas_craft_baubles_side_or.png delete mode 100644 textures/christmas_craft_baubles_side_pi.png delete mode 100644 textures/christmas_craft_baubles_side_re.png delete mode 100644 textures/christmas_craft_baubles_side_si.png delete mode 100644 textures/christmas_craft_baubles_side_vi.png delete mode 100644 textures/christmas_craft_baubles_side_ye.png delete mode 100644 textures/christmas_craft_baubles_top.png delete mode 100644 textures/christmas_craft_baubles_top_bl.png delete mode 100644 textures/christmas_craft_baubles_top_gr.png delete mode 100644 textures/christmas_craft_baubles_top_or.png delete mode 100644 textures/christmas_craft_baubles_top_pi.png delete mode 100644 textures/christmas_craft_baubles_top_re.png delete mode 100644 textures/christmas_craft_baubles_top_si.png delete mode 100644 textures/christmas_craft_baubles_top_vi.png delete mode 100644 textures/christmas_craft_baubles_top_ye.png delete mode 100644 textures/christmas_craft_bow_bottom.png delete mode 100644 textures/christmas_craft_bow_side.png delete mode 100644 textures/christmas_craft_bow_top.png delete mode 100644 textures/christmas_craft_leaves_side.png delete mode 100644 textures/christmas_craft_leaves_top.png delete mode 100644 textures/christmas_craft_present_bl.png delete mode 100644 textures/christmas_craft_present_box.png delete mode 100644 textures/christmas_craft_present_gr.png delete mode 100644 textures/christmas_craft_present_or.png delete mode 100644 textures/christmas_craft_present_pi.png delete mode 100644 textures/christmas_craft_present_re.png delete mode 100644 textures/christmas_craft_present_vi.png delete mode 100644 textures/christmas_craft_present_wh.png delete mode 100644 textures/christmas_craft_present_ye.png delete mode 100644 textures/gold_nugget.png delete mode 100644 textures/green_baubles.png delete mode 100644 textures/iron_nugget.png delete mode 100644 textures/leaves_w_snow.png delete mode 100644 textures/lights_animated.png delete mode 100644 textures/mithril_nugget.png delete mode 100644 textures/present_bottom.png delete mode 100644 textures/present_bottom_bl.png delete mode 100644 textures/present_bottom_gr.png delete mode 100644 textures/present_bottom_re.png delete mode 100644 textures/present_bottom_ye.png delete mode 100644 textures/present_side.png delete mode 100644 textures/present_side_bl.png delete mode 100644 textures/present_side_gr.png delete mode 100644 textures/present_side_re.png delete mode 100644 textures/present_side_ye.png delete mode 100644 textures/present_top.png delete mode 100644 textures/present_top_bl.png delete mode 100644 textures/present_top_gr.png delete mode 100644 textures/present_top_re.png delete mode 100644 textures/present_top_ye.png delete mode 100644 textures/red_baubles.png delete mode 100644 textures/silver_baubles.png delete mode 100644 textures/snow.png delete mode 100644 textures/snow_ball.png delete mode 100644 textures/snowball.png delete mode 100644 textures/star.png delete mode 100644 textures/tin_nugget.png delete mode 100644 textures/yellow_baubles.png diff --git a/4seasons.lua b/4seasons.lua deleted file mode 100644 index 4fc81c9..0000000 --- a/4seasons.lua +++ /dev/null @@ -1,87 +0,0 @@ - -print (" ---- mods override is Loading! ---- ") - --- leaves -- - - ---minetest.register_node(":4seasons:leaves_winter", { --- description = "Leaves", --- drawtype = "allfaces_optional", --- visual_scale = 1.3, --- tile_images = {"4seasons_leaves_with_snow.png"}, --- paramtype = "light", --- groups = {snappy=3, leafdecay=3, flammable=2}, --- drop = { --- max_items = 1, items = { --- {items = {'default:sapling'}, rarity = 20,}, --- {items = {'4seasons:leaves_winter'},} --- }}, --- sounds = default.node_sound_leaves_defaults(), ---}) - - -- why are u overwriting that? its just the normal 4 season leaves. - - - -- grass -- - -minetest.register_node(":4seasons:grass_winter", { - description = "Dirt with snow", - tiles = {"4seasons_snow.png", "default_dirt.png", "default_dirt.png^4seasons_grass_w_snow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = { - max_items = 2, items = { - {items = {'default:dirt'}, rarity = 0,}, - {items = {'christmas_craft:snowball'}, rarity = 0,}, - }}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) - ---normal sand -minetest.register_node(":4seasons:sand_winter", { - description = "Sand with snow", - tiles = {"4seasons_snow.png", "default_sand.png", "default_sand.png^4seasons_sand_w_snow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = {'default:sand', - max_items = 2, items = { - {items = {'default:sand'}, rarity = 0,}, - {items = {'christmas_craft:snowball'}, rarity = 0,}, - }}, - - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) ---desert sand -minetest.register_node(":4seasons:desertsand_winter", { - description = "Desert Sand with snow", - tiles = {"4seasons_snow.png", "default_desert_sand.png", "default_desert_sand.png^4seasons_desertsand_w_snow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = {'default:desert_sand', - max_items = 2, items = { - {items = {'default:desert_sand'}, rarity = 0,}, - {items = {'christmas_craft:snowball'}, rarity = 0,}, - }}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) - ---cactus winter - -minetest.register_node(":4seasons:cactus_winter", { - description = "Cactus", - tiles = {"4seasons_cactus_wsnow_top.png", "4seasons_cactus_wsnow_top.png", "4seasons_cactus_wsnow_side.png"}, - is_ground_content = true, - groups = {snappy=2,choppy=3,flammable=2}, - drop = {'default:cactus', - max_items = 2, items = { - {items = {'default:cactus'}, rarity = 0,}, - {items = {'christmas_craft:snowball'}, rarity = 0,}, - }}, - sounds = default.node_sound_wood_defaults(), -}) \ No newline at end of file diff --git a/License.txt b/License.txt index d42f8b4..38e3e0f 100644 --- a/License.txt +++ b/License.txt @@ -1,14 +1,41 @@ - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2013 +CHRISTMAS CRAFT MOD FOR MINETEST +================================== - Copyright (C) 2013 Infinatum AKA Sean Emmett +License +------------------------------------------ - Everyone is permitted to copy and distribute verbatim or modified - copies of this license document, and changing it is allowed as long - as the name is changed. +This work is licensed under a +Creative Commons Attribution-ShareAlike 4.0 International License. +Version 2, December 2013 - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION +------------------------------------------ - 0. You just DO WHAT THE FUCK YOU WANT TO. - \ No newline at end of file + +YOU ARE FREE TO: +------------------------------------------ + +1. Share — copy and redistribute the material in any medium or format + +2. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + +The licensor cannot revoke these freedoms as long as you follow the license terms. + +UNDER THE FOLLOWING TERMS: +------------------------------------------ + +ATTRIBUTION +You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. + +SHARE ALIKE + If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original. + +No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. + +OTHER INFOMATION: +------------------------------------------ + +More infomation can be found here; +https://creativecommons.org/licenses/by-sa/4.0/ + +This is a human-readable summary of (and not a substitute for) the license. +https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/crafts.lua b/crafts.lua deleted file mode 100644 index b1e4eb1..0000000 --- a/crafts.lua +++ /dev/null @@ -1,296 +0,0 @@ - -minetest.register_craft({ - output = "christmas_craft:christmas_lights 4", - recipe = { - {"farming:string","default:mese_crystal", "farming:string"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:christmas_leaves 4", - recipe = { - {"default:leaves","default:leaves"}, - {"default:leaves","default:leaves"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:christmas_wreath ", - recipe = { - {"christmas_craft:christmas_leaves","christmas_craft:christmas_leaves","christmas_craft:christmas_leaves"}, - {"christmas_craft:christmas_leaves","","christmas_craft:christmas_leaves"}, - {"christmas_craft:christmas_leaves","christmas_craft:red_ribbon","christmas_craft:christmas_leaves"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:snow_block", - recipe = { - {"christmas_craft:snowball","christmas_craft:snowball"}, - {"christmas_craft:snowball","christmas_craft:snowball"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:snowman", - recipe = { - {"default:coal_lump","christmas_craft:snowball","default:coal_lump"}, - {"christmas_craft:snowball","christmas_craft:snowball","christmas_craft:snowball"}, - {"default:coal_lump","default:coal_lump","default:coal_lump"}, - } -}) - - -minetest.register_craft({ - output = "christmas_craft:christmas_star ", - recipe = { - {"","default:gold_ingot",""}, - {"default:gold_ingot","default:gold_ingot","default:gold_ingot"}, - {"default:gold_ingot","","default:gold_ingot"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:snowball 4", - recipe = { - {"christmas_craft:snow_block"}, - } -}) - - --------------------------- --- baubles - --------------------------- - -minetest.register_craft({ - output = "christmas_craft:red_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","dye:red", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:yellow_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","dye:yellow", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:green_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","dye:green", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:blue_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","dye:blue", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:orange_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","dye:orange", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:pink_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","dye:pink", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:violet_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","dye:violet", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:silver_baubles 8", - recipe = { - {"default:glass","default:gold_ingot", "default:glass"}, - {"default:glass","", "default:glass"}, - {"default:glass","default:glass", "default:glass"}, - } -}) - --------------------------- --- presents - --------------------------- - --- paper colour craft -- - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_red', - recipe = {'dye:red','default:paper'}, -}) - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_blue', - recipe = {'dye:blue','default:paper'}, -}) - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_green', - recipe = {'dye:green','default:paper'}, -}) - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_yellow', - recipe = {'dye:yellow','default:paper'}, -}) - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_yellow', - recipe = {'dye:yellow','default:paper'}, -}) - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_violet', - recipe = {'dye:violet','default:paper'}, -}) - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_orange', - recipe = {'dye:orange','default:paper'}, -}) - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:paper_pink', - recipe = {'dye:pink','default:paper'}, -}) - --- ribbon craft -- - -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:red_ribbon', - recipe = {'dye:red','farming:string'}, -}) - --- wish list craft -- -minetest.register_craft({ - type = "shapeless", - output = 'christmas_craft:wish_list', - recipe = {'default:stick','default:mese_crystal','default:paper','dye:black'}, -}) - --- present box -- - -minetest.register_craft({ - output = "christmas_craft:present_box", - recipe = { - {"default:paper","default:paper", "default:paper"}, - {"default:paper","christmas_craft:wish_list", "default:paper"}, - {"default:paper","default:paper", "default:paper"}, - } -}) - --- present craft -- - -minetest.register_craft({ - output = "christmas_craft:Christmas_present", - recipe = { - {"default:paper","christmas_craft:red_ribbon", "default:paper"}, - {"default:paper","christmas_craft:present_box", "default:paper"}, - {"default:paper","christmas_craft:red_ribbon", "default:paper"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:Christmas_present_red", - recipe = { - {"christmas_craft:paper_red","christmas_craft:red_ribbon", "christmas_craft:paper_red"}, - {"christmas_craft:paper_red","christmas_craft:present_box", "christmas_craft:paper_red"}, - {"christmas_craft:paper_red","christmas_craft:red_ribbon", "christmas_craft:paper_red"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:Christmas_present_blue", - recipe = { - {"christmas_craft:paper_blue","christmas_craft:red_ribbon", "christmas_craft:paper_blue"}, - {"christmas_craft:paper_blue","christmas_craft:present_box", "christmas_craft:paper_blue"}, - {"christmas_craft:paper_blue","christmas_craft:red_ribbon", "christmas_craft:paper_blue"}, - } -}) - - -minetest.register_craft({ - output = "christmas_craft:Christmas_present_green", - recipe = { - {"christmas_craft:paper_green","christmas_craft:red_ribbon", "christmas_craft:paper_green"}, - {"christmas_craft:paper_green","christmas_craft:present_box", "christmas_craft:paper_green"}, - {"christmas_craft:paper_green","christmas_craft:red_ribbon", "christmas_craft:paper_green"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:Christmas_present_yellow", - recipe = { - {"christmas_craft:paper_yellow","christmas_craft:red_ribbon", "christmas_craft:paper_yellow"}, - {"christmas_craft:paper_yellow","christmas_craft:present_box", "christmas_craft:paper_yellow"}, - {"christmas_craft:paper_yellow","christmas_craft:red_ribbon", "christmas_craft:paper_yellow"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:Christmas_present_orange", - recipe = { - {"christmas_craft:paper_orange","christmas_craft:red_ribbon", "christmas_craft:paper_orange"}, - {"christmas_craft:paper_orange","christmas_craft:present_box", "christmas_craft:paper_orange"}, - {"christmas_craft:paper_orange","christmas_craft:red_ribbon", "christmas_craft:paper_orange"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:Christmas_present_pink", - recipe = { - {"christmas_craft:paper_pink","christmas_craft:red_ribbon", "christmas_craft:paper_pink"}, - {"christmas_craft:paper_pink","christmas_craft:present_box", "christmas_craft:paper_pink"}, - {"christmas_craft:paper_pink","christmas_craft:red_ribbon", "christmas_craft:paper_pink"}, - } -}) - -minetest.register_craft({ - output = "christmas_craft:Christmas_present_violet", - recipe = { - {"christmas_craft:paper_violet","christmas_craft:red_ribbon", "christmas_craft:paper_violet"}, - {"christmas_craft:paper_violet","christmas_craft:present_box", "christmas_craft:paper_violet"}, - {"christmas_craft:paper_violet","christmas_craft:red_ribbon", "christmas_craft:paper_violet"}, - } -}) - - - - - diff --git a/init.lua b/init.lua index 2fbeaea..7104040 100644 --- a/init.lua +++ b/init.lua @@ -1,4 +1,11 @@ +dofile(minetest.get_modpath("christmas_craft").."/mod_files/multi-node.lua") + +dofile(minetest.get_modpath("christmas_craft").."/mod_files/node.lua") + +dofile(minetest.get_modpath("christmas_craft").."/mod_files/items.lua") + + --load configuration file from world folder local MODPATH = minetest.get_modpath("christmas_craft") local worldpath = minetest.get_worldpath() @@ -6,6 +13,9 @@ local config = Settings(worldpath.."/christmas_craft.conf") local conf_table = config:to_table() + + + --look into readme.md how to change settings local defaults = { enable_snowing = "true", @@ -20,11 +30,13 @@ config:write(); end end -if minetest.get_modpath("4seasons") ~=nil then - minetest.log("info", "found 4seasons mod. execute 4seasons.lua") - dofile(MODPATH .."/4seasons.lua")--if the 4seasons mod is installed execute this file +-- if mtfood is installed +if minetest.get_modpath("mtfoods") ~=nil then + minetest.log("info", "found mtfoods mod. execute mtfoods.lua") + dofile(MODPATH .."/mod_support/mtfoods.lua")--if the 4seasons mod is installed execute this file end + --if snow enabled, let it snow if config:get("enable_snowing") == "true" then minetest.log("info","let it snow, let it snow, let it snow.") @@ -34,548 +46,11 @@ end --if crafts enabled, register the craft recieps if config:get("enable_crafts") == "true" then minetest.log("info","registering craft rezieps for snow mod") - dofile(MODPATH .."/crafts.lua")--if snow enabled, execute this file + dofile(MODPATH .."/mod_files/crafts.lua")--if snow enabled, execute this file end - --- blocks -- - -minetest.register_node("christmas_craft:snowman", { - description = "Snowman", - tiles = {"snow.png", "snow.png", "snow.png", - "snow.png", "snow.png", "Snowman_F.png"}, - is_ground_content = true, - paramtype2 = "facedir", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), -}) - - - -minetest.register_node("christmas_craft:christmas_lights", { - description = "christmas lights", - drawtype = "signlike", - light_source = 10, - walkable = false, - tiles = { - {name="lights_animated.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=3.0}}, - }, - inventory_image = "c_lights.png", - wield_image = "c_lights.png", - paramtype = "light", - paramtype2 = "wallmounted", - selection_box = { - type = "wallmounted", - }, - groups = {oddly_breakable_by_hand = 3}, -}) - -minetest.register_node("christmas_craft:christmas_wreath", { - description = "Christmas Wreath", - drawtype = "signlike", - walkable = false, - tiles = { - {name="Wreath.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=3.0}}, - }, - inventory_image = "Wreath.png", - paramtype = "light", - paramtype2 = "wallmounted", - selection_box = { - type = "wallmounted", - }, - groups = {oddly_breakable_by_hand = 3}, -}) - -minetest.register_node("christmas_craft:christmas_star", { - description = "christmas Star", - drawtype = "plantlike", - light_source = 10, - tiles = {"star.png"}, - is_ground_content = true, - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), -}) - -minetest.register_node("christmas_craft:snow_block", { - description = "snow block", - tiles = {"snow.png"}, - is_ground_content = true, - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), -}) - -minetest.register_node("christmas_craft:christmas_leaves", { - description = "Christmas leaves", - drawtype = "allfaces_optional", - tiles = {"christmas_leaves.png"}, - is_ground_content = false, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), -}) - - - -minetest.register_node("christmas_craft:red_baubles", { - description = "Red Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_re.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_re.png","christmas_craft_baubles_side_re.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - -minetest.register_node("christmas_craft:yellow_baubles", { - description = "Yellow Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_ye.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_ye.png","christmas_craft_baubles_side_ye.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - -minetest.register_node("christmas_craft:green_baubles", { - description = "Green Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_gr.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_gr.png","christmas_craft_baubles_side_gr.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - - -minetest.register_node("christmas_craft:blue_baubles", { - description = "Blue Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_bl.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_bl.png","christmas_craft_baubles_side_bl.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - -minetest.register_node("christmas_craft:orange_baubles", { - description = "Orange Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_or.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_or.png","christmas_craft_baubles_side_or.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - -minetest.register_node("christmas_craft:violet_baubles", { - description = "Violet Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_vi.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_vi.png","christmas_craft_baubles_side_vi.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - -minetest.register_node("christmas_craft:pink_baubles", { - description = "Pink Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_pi.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_pi.png","christmas_craft_baubles_side_pi.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - -minetest.register_node("christmas_craft:silver_baubles", { - description = "Silver Baubles", - drawtype = "nodebox", - tiles = {"christmas_craft_baubles_top_si.png^christmas_craft_baubles_top.png","christmas_craft_baubles_top_si.png","christmas_craft_baubles_side_si.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - - -- side , top , side , side , bottom, side, - - }, - }, - selection_box = { - type = "fixed", - fixed = { - {-0.25, 0.438, -0.25, 0.25, -0.05, 0.25}, - {-0.08, 0.5, -0.08, 0.08, -0.0, 0.08}, - }, - }, -}) - ------------- ---nodes-- - - -- presents -- - - --store the drop in a variable - local presents_drop = { - max_items = 2, items = { - {items = {'default:bookshelf'}, rarity = 15,}, - {items = {'default:pick_mese'}, rarity = 20,}, - {items = {'default:shovel_steel'}, rarity = 15,}, - {items = {'default:axe_steel'}, rarity = 15,}, - {items = {'default:pick_steel'}, rarity = 15,}, - {items = {'default:sign_wall'}, rarity = 20,}, - {items = {'default:chest'}, rarity = 20,}, - {items = {'default:furnace'}, rarity = 20,}, - {items = {'default:steelblock'}, rarity = 25,}, - {items = {'default:coal_lump'}, rarity = 25,}, - {items = {'diamonds:pick'}, rarity = 30,}, - {items = {'diamonds:shovel'}, rarity = 30,}, - {items = {'diamonds:axe'}, rarity = 30,}, - {items = {'diamonds:block'}, rarity = 30,}, - {items = {'fake_fire:flint_and_steel'}, rarity = 15,}, - {items = {'default:chest_locked'}, rarity = 20,}, - {items = {'default:brick'}, rarity = 25,}, - {items = {'default:dirt_with_grass'}, rarity = 30,}, - }} - - minetest.register_node("christmas_craft:present_box", { - description = "Present Box", - tiles = {"christmas_craft_present_box.png"}, - is_ground_content = true, - paramtype = "light", - groups = {crumbly=3}, - sounds = default.node_sound_sand_defaults(), - }) - - minetest.register_node("christmas_craft:Christmas_present", { - description = "Christmas Present", - tiles = {"christmas_craft_present_wh.png^christmas_craft_bow_top.png", "christmas_craft_present_wh.png^christmas_craft_bow_bottom.png", "christmas_craft_present_wh.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = { - max_items = 1, min_items = 1, items = { - {items = {'default:bookshelf'}, rarity = 90,}, - {items = {'default:pick_mese'}, rarity = 80,}, - {items = {'default:shovel_steel'}, rarity = 90,}, - {items = {'default:axe_steel'}, rarity = 90,}, - {items = {'default:pick_steel'}, rarity = 90,}, - {items = {'default:sign_wall'}, rarity = 80,}, - {items = {'default:chest'}, rarity = 80,}, - {items = {'default:furnace'}, rarity = 80,}, - {items = {'default:steelblock'}, rarity = 80,}, - {items = {'default:coal_lump'}, rarity = 80,}, - {items = {'default:pick_diamond'}, rarity = 75,}, - {items = {'default:shovel_diamond'}, rarity = 75,}, - {items = {'default:axe_diamond'}, rarity = 75,}, - {items = {'default:diamondblock'}, rarity = 75}, - {items = {'fake_fire:flint_and_steel'}, rarity = 90,}, - {items = {'default:chest_locked'}, rarity = 80,}, - {items = {'default:brick'}, rarity = 80,}, - {items = {'default:dirt_with_grass'}, rarity = 80,}, - }}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_green", { - description = "Christmas Present Green ", - tiles = {"christmas_craft_present_gr.png^christmas_craft_bow_top.png", "christmas_craft_present_gr.png^christmas_craft_bow_bottom.png", "christmas_craft_present_gr.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_red", { - description = "Christmas Present Red ", - tiles = {"christmas_craft_present_re.png^christmas_craft_bow_top.png", "christmas_craft_present_re.png^christmas_craft_bow_bottom.png", "christmas_craft_present_re.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_blue", { - description = "Christmas Present Blue ", - tiles = {"christmas_craft_present_bl.png^christmas_craft_bow_top.png", "christmas_craft_present_bl.png^christmas_craft_bow_bottom.png", "christmas_craft_present_bl.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_yellow", { - description = "Christmas Present Yellow ", - tiles = {"christmas_craft_present_ye.png^christmas_craft_bow_top.png", "christmas_craft_present_ye.png^christmas_craft_bow_bottom.png", "christmas_craft_present_ye.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_red", { - description = "Christmas Present Red ", - tiles = {"christmas_craft_present_re.png^christmas_craft_bow_top.png", "christmas_craft_present_re.png^christmas_craft_bow_bottom.png", "christmas_craft_present_re.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_violet", { - description = "Christmas Present Violet ", - tiles = {"christmas_craft_present_vi.png^christmas_craft_bow_top.png", "christmas_craft_present_vi.png^christmas_craft_bow_bottom.png", "christmas_craft_present_vi.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_orange", { - description = "Christmas Present Orange ", - tiles = {"christmas_craft_present_or.png^christmas_craft_bow_top.png", "christmas_craft_present_or.png^christmas_craft_bow_bottom.png", "christmas_craft_present_or.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) - - minetest.register_node("christmas_craft:Christmas_present_pink", { - description = "Christmas Present Pink ", - tiles = {"christmas_craft_present_pi.png^christmas_craft_bow_top.png", "christmas_craft_present_pi.png^christmas_craft_bow_bottom.png", "christmas_craft_present_pi.png^christmas_craft_bow_side.png"}, - is_ground_content = true, - groups = {crumbly=3}, - drop = presents_drop, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - }) ------------- - ------------- ---Items-- - - -- paper -- - - minetest.register_craftitem("christmas_craft:paper_blue", { - description = "Blue paper", - inventory_image = "default_paper.png^[colorize:#0000FF99", - stack_max = 99, - liquids_pointable = false, - }) - - minetest.register_craftitem("christmas_craft:paper_yellow", { - description = "Yellow paper", - inventory_image = "default_paper.png^[colorize:#ffff0099", - stack_max = 99, - liquids_pointable = false, - }) - - minetest.register_craftitem("christmas_craft:paper_green", { - description = "Green paper", - inventory_image = "default_paper.png^[colorize:#00ff0099", - stack_max = 99, - liquids_pointable = false, - }) - - minetest.register_craftitem("christmas_craft:paper_red", { - description = "Red paper", - inventory_image = "default_paper.png^[colorize:#FF000099", - stack_max = 99, - liquids_pointable = false, - }) - - minetest.register_craftitem("christmas_craft:paper_violet", { - description = "Violet paper", - inventory_image = "default_paper.png^[colorize:#9400d399", - stack_max = 99, - liquids_pointable = false, - }) - - minetest.register_craftitem("christmas_craft:paper_orange", { - description = "Orange paper", - inventory_image = "default_paper.png^[colorize:#ffa50099", - stack_max = 99, - liquids_pointable = false, - }) - - minetest.register_craftitem("christmas_craft:paper_pink", { - description = "Pink paper", - inventory_image = "default_paper.png^[colorize:#ffc0cb99", - stack_max = 99, - liquids_pointable = false, - }) - - -- string -- - - minetest.register_craftitem("christmas_craft:red_ribbon", { - description = "Red Ribbon", - inventory_image = "christmas_craft_red_ribbon.png", - stack_max = 99, - liquids_pointable = false, - }) - - -- wish list -- - - minetest.register_craftitem("christmas_craft:wish_list", { - description = "Wish list", - inventory_image = "christmas_craft_which_list.png", - stack_max = 99, - liquids_pointable = false, - }) - ------------- - --- minetest.register_craftitem("christmas_craft:snow_ball", { --- description = "Snow ball", --- inventory_image = "snow_ball.png", --- stack_max = 16, --- liquids_pointable = false, ---}) - - --- crafts -- - --overwrite the default stick - + minetest.register_node(":default:stick", { description = "stick", drawtype = "torchlike", @@ -595,8 +70,8 @@ minetest.register_node(":default:stick", { legacy_wallmounted = true, sounds = default.node_sound_defaults(), }) --- complex node -- - +-- complex node -- +--[[ snowball_DAMAGE=0.5 snowball_GRAVITY=9 snowball_VELOCITY=19 @@ -624,16 +99,17 @@ snow_snowball_ENTITY={ textures = {"snowball.png"}, lastpos={}, collisionbox = {-0.25,-0.25,-0.25, 0.25,0.25,0.25}, - + } --Snowball_entity.on_step()--> called when snowball is moving. + snow_snowball_ENTITY.on_step = function(self, dtime) self.timer=self.timer+dtime local pos = self.object:getpos() local node = minetest.env:get_node(pos) - + --Become item when hitting a node. if self.lastpos.x~=nil then --If there is no lastpos for some reason. if node.name ~= "air" then @@ -644,10 +120,10 @@ snow_snowball_ENTITY.on_step = function(self, dtime) {pos = pos, gain = 1.0, max_hear_distance = 32,}) self.object:remove() end - + end self.lastpos={x=pos.x, y=pos.y, z=pos.z} -- Set lastpos-->Node will be added at last pos outside the node - + end minetest.register_entity("christmas_craft:snowball_entity", snow_snowball_ENTITY) @@ -688,6 +164,4 @@ minetest.register_node("christmas_craft:snow", { footstep = {name="default_gravel_footstep", gain=0.45}, }), }) - - - +]]-- diff --git a/snow.lua b/snow.lua index 75a3e61..1d54904 100644 --- a/snow.lua +++ b/snow.lua @@ -3,24 +3,81 @@ print (" ---- Overrider christmas_craft = true! ---- ") minetest.register_node(":default:dirt_with_grass", { description = "Dirt with Grass", - tiles = {"snow.png", "default_dirt.png", "grass_w_snow_side.png"}, + tiles = {"default_snow.png", "default_dirt.png", "default_dirt.png^default_snow_side.png"}, is_ground_content = true, groups = {crumbly=3,soil=1}, drop = { max_items = 2, items = { {items = {'default:dirt'}, rarity = 0,}, - {items = {'christmas_craft:snowball'}, rarity = 0,}, + {items = {'christmas_craft:snowball'}, rarity = 0,}, }}, sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.4}, }), }) + +minetest.register_node(":default:leaves", { + description = "Leaves", + drawtype = "allfaces_optional", + waving = 1, + visual_scale = 1.3, + tiles = {"christmas_leaves_side.png"}, + special_tiles = {"default_leaves_simple.png"}, + paramtype = "light", + is_ground_content = false, + groups = {snappy = 3, leafdecay = 3, flammable = 2, leaves = 1}, + drop = { + max_items = 1, + items = { + { + -- player will get sapling with 1/20 chance + items = {'default:sapling'}, + rarity = 20, + }, + { + -- player will get leaves only if he get no saplings, + -- this is because max_items is 1 + items = {'default:leaves'}, + } + } + }, + sounds = default.node_sound_leaves_defaults(), + + after_place_node = default.after_place_leaves, +}) + + +minetest.register_node(":default:aspen_leaves", { + description = "Aspen Leaves", + drawtype = "allfaces_optional", + visual_scale = 1.3, + tiles = {"christmas_aspen_leaves.png"}, + waving = 1, + paramtype = "light", + is_ground_content = false, + groups = {snappy = 3, leafdecay = 3, flammable = 2, leaves = 1}, + drop = { + max_items = 1, + items = { + {items = {"default:aspen_sapling"}, rarity = 20}, + {items = {"default:aspen_leaves"}} + } + }, + sounds = default.node_sound_leaves_defaults(), + + after_place_node = default.after_place_leaves, +}) + + + +-- old code +--[[ minetest.register_node(":default:leaves", { description = "Leaves", drawtype = "nodebox", visual_scale = 1.3, - tiles = {"snow.png", "christmas_craft_leaves_top.png", "christmas_craft_leaves_side.png"}, + tiles = {"default_snow.png", "christmas_leaves_bot.png", "christmas_leaves_side.png"}, paramtype = "light", groups = {snappy=3, leafdecay=3, flammable=2, leaves=1}, drop = { @@ -48,15 +105,14 @@ minetest.register_node(":default:leaves", { selection_box = { type = "fixed", fixed = { - {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, }, }, - + }) - +]] print (" ---- Overrider christmas_craft [OK] ---- ") - diff --git a/textures/Cactus_bit.png b/textures/Cactus_bit.png deleted file mode 100644 index 6a59011815036967752b110aa144e84f7478a4a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=0&wOt;Nt`2YWZ*)f4V zM>d^2e_;RRrOj7lfKr%Xm&x-fKv98`AirRs7G%KiKsiuFyH~>7n0Oc* WvWvb{Ph1ajEQ6=3pUXO@geCy;BuNec diff --git a/textures/Wreath.png b/textures/Wreath.png deleted file mode 100644 index 6103e91c361a24a9a0ba84aa251604477c7e624a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 808 zcmV+@1K0eCP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02*{fSaefwW^{L9 za%BKeVQFr3E>1;MAa*k@H7+qQF!XYv0007)Nkl($dX-y}| zWKWt^t45=VB}AkYT(Fp?vDHK)SUeQG2p+s?4=P@?RU|=b-9RbDi%JhYDISzo!JGnZ zvu_6VqE*4~1r!n*JMfr!?|=Wd{XV!3{&Y6alS>up0Z9bvO8ICEE*3+7T<)k{UAC&j63!*#1gwUMq z8Bt}>R3OWGN>i~#w0UDdnKh59@}!14%TVO60Wl4;cE_0RGm5yxX24dgeh1kYR7?RV zZ3(OM04w5MaGcdu0A{a(@MZ07koL?JWV5z2+A^4k^qKCx680|(gwzP>;e|9_orvSwc=@6b^4;Q^6(;udf)7 zRM04C`93MX=Q#TUA(u$FAfKWzs)s-Lgf6#{@Di#Yg%pJu2L zi1r{e0QR?-L;(QV-f_bZT`J8eaSUy&qsF|ix}NW=!Z z1>VlVMmef*W){W!e`Ecc6}a+G1-nGAyZga!1C%PQo8QQrt$=^B;>8Z!`uFNd$ mdh=4~j!$T|1vqr=U-}2u^z3T56^^O^0000Exmi+oLxEv_XR1)MD%)rPvXy?{$?y8ep(1&K{}Bsa{y t&Ds5nk?{@VG~L(CFCMZkt7NWXeZVi3$8M_L{CyJ0eot3Fmvv4FO#tO(M8N<6 diff --git a/textures/christmas_craft_baubles_side_bl.png b/textures/christmas_craft_baubles_side_bl.png deleted file mode 100644 index 171edec57bb2a43e7418b6adc4e3a20e937595b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPike|9nlsQ1 nv?VXfG5o{haxG#@eI@ggxk9e~=S!P_#xr=j`njxgN@xNA%pqhW diff --git a/textures/christmas_craft_baubles_side_gr.png b/textures/christmas_craft_baubles_side_gr.png deleted file mode 100644 index a8c5ad3640b5ec0195bd4548b38eac5ebd82da86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 303 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPike|9nlsD3ez~JfX=d#Wzp$PybscOss diff --git a/textures/christmas_craft_baubles_side_or.png b/textures/christmas_craft_baubles_side_or.png deleted file mode 100644 index 4f70aa14080c7c22acc5e50361a069c0fbff1aba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPike|9nlsZ{ah{^JEyqm_olqcBMh#~e(=v?5^vVXbu#Gi rO>MMEVUT>Ir9CIozQcpXzLZ%zpJn6c;LOcHD;PXo{an^LB{Ts5FD_*B diff --git a/textures/christmas_craft_baubles_side_pi.png b/textures/christmas_craft_baubles_side_pi.png deleted file mode 100644 index b184e4237eb5b0a68ce4c118f90c44d738173b9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDUJ=P`o|NsAk4T~NwJ$AQs z)BjDPcPH+8)w%ofWZ`?=Ti!>}BeIx*f$tCqGm2_>H2?*}JzX3_IIbuE`2YWPY}>#8|0Vy`uP?dz*H8Y) zjL3J7{>q*BVYzqD5!NF=;^X4pZIV9|5f{glRI{4N=#OL1noxmb^Gy_z?K%o|xDWlP kQG5H}Ux1mbBawk&-Ndvt4mS)7fL1Vgy85}Sb4q9e0MhkxoB#j- diff --git a/textures/christmas_craft_baubles_side_re.png b/textures/christmas_craft_baubles_side_re.png deleted file mode 100644 index 028ff190d4841aee8efb8436d9d3be73c1f931e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPike|9nlsx! zUikao^o+&M#(Veg7&9!6>-ugTaYiJW<6JJAIA^%&_olqcBMh#~TKH!%g*U6@I+=L* qrZ(E7Fi6U1Y0rtY@9 zBmXyvu359@elSM_s2l=PSLE*mvII(k{DOfRkpaU4rwtxTsOa7}boHuium;4cfvW;`L z$({I-^XQR{@R@?b!i{IzjpjV;`6*y3aI8F8;jrA10<%Vgy6Mu=(#;Y94m`{Z?zPdo UXI-l_02<8T>FVdQ&MBb@0D5U=MF0Q* diff --git a/textures/christmas_craft_baubles_side_vi.png b/textures/christmas_craft_baubles_side_vi.png deleted file mode 100644 index b2b74164bfc5b18d239c57ebedb4e6adc1c1bfe2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPike|9nlsDgR&BG_um-UYI?xzmME}xI`DXe{Lo}XG0 tCTu#zlzM`}=tgMR3Rn9M4;K4U=6yGr|LwSO;0(|T22WQ%mvv4FO#r4`ZL9zQ diff --git a/textures/christmas_craft_baubles_side_ye.png b/textures/christmas_craft_baubles_side_ye.png deleted file mode 100644 index 2cf65e2de96f5c74acb78b8bd6718d7976ee6079..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPike|9nlsHQ8|F1H%m?jDV&0#DF@(X5gcy=QV$O-p!aSV~Ty!BL|Sc3wGOJI<< ziRYBR?@iBG>}C7W-1>##&a}s+ibZpcM?Bu6{1-oD!MlBSEK+1RXtrCLp07O z|LA9vXq$h4Jvq5fr189-*EbfHDKQ)z2@+N|%>oRuZ{G)1#V|F2+~Dcz=d#Wzp$PyD CUOS)w diff --git a/textures/christmas_craft_baubles_top_bl.png b/textures/christmas_craft_baubles_top_bl.png deleted file mode 100644 index a937ba5c82938e61f0a386fc95afc0f3e828463a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvg8-ipS1FqX|NsBjhO>_%)r2R7=#&*=dVZs3MPBHIEHA5ZoTNpdq9DwHF3)oC*3QDbP^c3BWAGb zBrFu$(9rsJ>2BT1y&v=bPyce|)1NXPmpf~=ZslVAswlfnVu3pcdx?kl0;VOwGZxn+ uh@`cqY*1wMd)Tz3AYW$Xs$h%%JH?e(%-ALAZl?pZj=|H_&t;ucLK6UK^=PsH diff --git a/textures/christmas_craft_baubles_top_gr.png b/textures/christmas_craft_baubles_top_gr.png deleted file mode 100644 index 42534811a6c507455108909fdf9a48fc5f2e70e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvg8-ip*Vv_e|NsAQ|0vdQSGN3` zaQ|h??w?|L$Avm>XixniTKhm`_RYYwodPX4l_%Y_2Wnz^YrGXm36uo+1p_rA1BM66 zv64VJ&H|6fVg?4j!ywFfJby(BP%zok#W6%fbn8V&-UA9et%+N%IO$$Fq?5qN9dUq3 zEN!7!79;m<@ABwRJ3i+9pZ?{_r$1#pE?3r=es@yba;n9Wxy1KjgI}h!1j9^`Dp`4n uRyzgjhzTr93mmr<=*zga1X=vwDPBKoV$K@r508M>F?hQAxvXaOz*>{ zN^3J7Eqg4)@agnHB@5O|r%o#>Eo5QonOeX#r;)Sdfry2(#{<0x7L5&D%Nw{oSmqx% mv)jQpGc$8_0oMh)XAIp5Q$(WbVpjm|VeoYIb6Mw<&;$SwykU3% diff --git a/textures/christmas_craft_baubles_top_pi.png b/textures/christmas_craft_baubles_top_pi.png deleted file mode 100644 index 760a98ad6a98e3cb66021de23bc0a18e308b9bfc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvg8-ip*F8;(|NsAgvuEeSo_*J6 z9k|lD_4?#J$6HoE={b03`H8b_>u*llb93%NpmGRklvm?4(IgH&5tWyfOb~Lzr;5=i)e1(N&2Wy6W ZF@xLg){3_)FN%Pi=IQF^vd$@?2>^q_UZ(&6 diff --git a/textures/christmas_craft_baubles_top_re.png b/textures/christmas_craft_baubles_top_re.png deleted file mode 100644 index ac7bbe4b6e48db6c514a292f05d62e8ab2a1fd31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvg8-ip*HsJx|NsC0&LDDEQ0+E@ z&>elJ{|rixxMj~U2;6lExhtjjpF#8~gYZ5Efk#5hKuuj6EiHkRKuM5aFi;~hV0fS$ zD+!e2EbxddW?*ZVwnwa8z_wp{0dJ~I1J-<#3V3rZ zPC@&BsqNwYt2a8xe!btgX?+;u(Qp6n^NVn=O+WCOi6JmP_hf~M1MG8*8r&LfW?D}KuVw_$S)YE5g9N% zP>z)Z%5fHWL>4nJ@ErzW#^d=bQhYqEAyF)gkvrl5 zlUNp*b=$i<`qPe&dH<(>x$@~x8IOz8)~%M@tsQ#IW|9l4xmcZ-Z{f9YU~9egmw9P` s?51W`PYy2e6z=bbCeCDS{XD;#QJr~emycS!C(u3yPgg&ebxsLQ0H1AVyZ`_I diff --git a/textures/christmas_craft_bow_bottom.png b/textures/christmas_craft_bow_bottom.png deleted file mode 100644 index 4d8247c632bb2d3d39ac77deb4cc618fbf87002c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!D3?x-;bCrM;TYyi9>lblbgTe~DWM4fxLqG% diff --git a/textures/christmas_craft_bow_top.png b/textures/christmas_craft_bow_top.png deleted file mode 100644 index 79db8660e49dae4f30c529c9f9e59a5cf16ccba6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!D3?x-;bCrM;TYyi9>pMC1|NsAIFN*dCiZGP~ z`33)Hc)H!d3&`Uv@Q5sCVBk9l!i+m6X1@gr%6PgshHzX@{t6zI3E$pgcR2&7j=|H_&t;ucLK6TTOeb9c diff --git a/textures/christmas_craft_leaves_side.png b/textures/christmas_craft_leaves_side.png deleted file mode 100644 index 821ca93aa56113614e4e0d6d8cfe0efb9d55acbc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 602 zcmV-g0;TPx#1ZP1_K>z@;j|==^1poj532;bRa{vGf5&!@T5&_cPe*6Fc00(qQO+^RX1rZM; zCN2bPDNB8b~7$DE-^4L^m3s9007lcOjJbx z002ozN&o-<9vT-P8yF!Q7bYGSCLb0lAs#9r7%e0jE+-@~C?+!<95W{zH!v+cDI!8J zDnv6ZMI{qOG%ZIL7fmV^P$nf%F&0-bF<~+wZZ!~fU|@PED1<{Sl5A|UWMsR#xxc=? z!@|PE!okVJ#L&>s(b3S;($dq@($vJh)z#G1)z#M4*4WtC+1S_G+S=UQ+}_#O-_*|E z-{0Wi-{9cj;nvUL*wo^~x#Qf|rvYPVopap&P#w*WPccx} zi!+i5d6icc0H!n~6Cke$O%q585(dBQ;^i#sG%C zXG~}Uv9uC~n|DU+9qxnLRSQf{fY@5_-nRf#fL$QUvPhDInh*e@487b*+%LbDd|!SN o@%nM~ENpCJW?M60yC@3&0ZnHW=COK5I{*Lx07*qoM6N<$f{Pvm+5i9m diff --git a/textures/christmas_craft_leaves_top.png b/textures/christmas_craft_leaves_top.png deleted file mode 100644 index 47a75447bc6112b76177dcda2ce4b2323eacbacb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 434 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|U1p2s75F#7_hYvX^-Jy0YJ4735de;M5Jg0Thxdag8Vm&QB{TPb^Ah2uRG#E79|F z4N)jF)-%;JG<5&$WDZo75a1Ky3Zy+fJ>{gt<)tMQrN!0c#MI=)G!^Bv6eV<3B=yu) z3^de?Wo3-jWy}q9Z8Vjf476N~bzD`2T}^b|#l?NKL<7`R0}RE&4Gj~G6!J_3N)r;Q zG&EYAbtdKHY)VOaq^h9`w1cT6$PehFvdL#HfV_pCE{-7*lB@?AotPDQTn~Ov)>So65CWj5C|opJ|G$4t!cS`FOM#!{WF*A33_79NIDO&W|7e zSSl?FY#S$W$_X-vAFzHPsORZ4kMTic*3=Itmh?3SUyoAq7Q6PE>6Jutz40uLN6AV- RGk}g|@O1TaS?83{1OOs?iBJFl diff --git a/textures/christmas_craft_present_bl.png b/textures/christmas_craft_present_bl.png deleted file mode 100644 index 94a7c33b4a01492c2e156aca096dde14c6dafb72..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!D3?x-;bCrM;TYyi9t4PUYk-gW*O(qy z7VFWJ8C;(l5O@9eXP_F+0*}aI1_r)^Ak4U9V)k30psJ^fV+hCfWC0No5d#(>9tAhW qo`)UB0)l*l7O^p3PEql8JO@-?!dLj5y*wYNfx*+&&t;ucLK6V$F)H8y diff --git a/textures/christmas_craft_present_gr.png b/textures/christmas_craft_present_gr.png deleted file mode 100644 index 81ee1e178f124c636b4e5a7290b3e878ce54c14c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!D3?x-;bCrM;TYyi9YwBc?)Hx!y8yEEfMK}vQ zB8wRq_zr*4QAL9!ywZC zXgW}wv%n*=n1O-sAP6(=n3(+*D5&J=;uyklJvo7aac$`8FoP9sZEglD{{OFUHep)B do5R4tz_7eirPg6QO#lD@ diff --git a/textures/christmas_craft_present_vi.png b/textures/christmas_craft_present_vi.png deleted file mode 100644 index b0bf21a40d36809327f5c28f87759cec4cc3415b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9oB=)|u00}?=ZMUmA~IuttoL(} zV1Y+uF#`kNK@eu#F){lsP*BR##W95AdU65-GVFoMO+T131H}EnrGF*rgQhd_# RJ|3uw!PC{xWt~$(696LzA)){P diff --git a/textures/christmas_craft_present_wh.png b/textures/christmas_craft_present_wh.png deleted file mode 100644 index d3be99863b4e60dd3889910f9dfdd07bb0444db0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Ea{HEjtmSN`?>!lvI6;>1s;*b z3=Dh+L6~vJ#O${~L8%hgh?3y^w370~qEv=}#LT=BJwMkFg)(D3Q$0gN_s>q|KvgE5 zE{-7<{>eA|l^8NDyi6Q2EIe5pt`|t@A6WO$hRzopr0KB0xg8%>k diff --git a/textures/christmas_craft_present_ye.png b/textures/christmas_craft_present_ye.png deleted file mode 100644 index b5c56879dce3b567f17c4dfb95f942614c2b2812..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-t_vryET7H1ZW;5c`OF)t zGW~(#oCO|{#S9F52SJ!|$HeTnKtUx>7sn8e>&XcWj2ACl5McZH|Nnl26KkWkwwf@l e;mu*-U|^W7CVTXzt+yXgHG`+CpUXO@geCwF!6zI5 diff --git a/textures/gold_nugget.png b/textures/gold_nugget.png deleted file mode 100644 index 042e068ba0dfe1780005efedfe1fc06ee6cd62e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=9EKG5r7E?dd6Ur%d?& z|NoVhKrTobR&c8}E(RzeP!i-93{;E^7#=9cN&@9L3p^r=85sBugD~Uq{1qucL0wN5 z#}JO|$v^m6d45P{{uDU2Jt$Q}dBp{}QyPs1|CVz*i>g~KHr{trcpDQBL-X6>$8p76 Q=Ri*IboFyt=akR{0454W{r~^~ diff --git a/textures/green_baubles.png b/textures/green_baubles.png deleted file mode 100644 index fcc6dc651872d94356c549c6a32235eecca72799..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPgsd?{K8RAm<6 z6XN>+|9|#&2F_y)oM#xgZ!>T|W#IYF!26#;>=C!*e+HRHLI#i2oF7>q>k_;?S@^*m zk^iei|8EjqcF)ZWXaZwNkY6x^!?PP{Ku)Zui(`ny<#sdeGltr7GjH{G4m`s>z s|3LN9rm6Sbr~OtoF*$H!>YvNv+=FVdQ&MBb@0CMzZ{r~^~ diff --git a/textures/iron_nugget.png b/textures/iron_nugget.png deleted file mode 100644 index 50b3216945315b4413a83539ebfa52eafc169d03..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1(iw{C|CBW^?lY zhnxQY{|^+z1rqab+y}}Dlmz(&163jeh6l>Al0Z4m0*}aI1_r*vAk26?e?Px#1ZP1_K>z@;j|==^1poj532;bRa{vGf5&!@T5&_cPe*6Fc00(qQO+^RX1rZM; zCN2bPDNB8b~7$DE-^4L^m3s9007lcOjJbx z002ozN&o-<9vT-P8yF!Q7bYGSCLb0lAs#9r7%e0jE+-@~C?+!<95W{zH!v+cDI!8J zDnv6ZMI{qOG%ZIL7fmV^P$nf%F&0-bF<~+wZZ!~fU|@PED1<{Sl5A|UWMsR#xxc=? z!@|PE!okVJ#L&>s(b3S;($dq@($vJh)z#G1)z#M4*4WtC+1S_G+S=UQ+}_#O-_*|E z-{0Wi-{9cj;nvUL*wo^~x#Qf|rvYPVopap&P#w*WPccx} zi!+i5d6icc0H!n~6Cke$O%q585(dBQ;^i#sG%C zXG~}Uv9uC~n|DU+9qxnLRSQf{fY@5_-nRf#fL$QUvPhDInh*e@487b*+%LbDd|!SN o@%nM~ENpCJW?M60yC@3&0ZnHW=COK5I{*Lx07*qoM6N<$f{Pvm+5i9m diff --git a/textures/lights_animated.png b/textures/lights_animated.png deleted file mode 100644 index 072748ecf8c51fad9ef71272ef3876d78e4de350..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^0zmA*!VDxI2ESSgqznRlLR^8g2gCpWKFVdQ&MBb@0Oco4PXGV_ diff --git a/textures/mithril_nugget.png b/textures/mithril_nugget.png deleted file mode 100644 index d7cea276de9e059a647b7a6dd429bc9e4a1b5ea3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=1zcUvX(y{r~@8L~p&4 z_j&=-K9jh^Kyj?#Wd0{-poBn4kY6xR3o>AMpd2d+l;bS$h%9Dc-~*b$cbM^b{)!Z! zpsuHjV+hCfNcmMzZ diff --git a/textures/present_bottom.png b/textures/present_bottom.png deleted file mode 100644 index 44cbac5cc0ac31970a2ab8968ec44a2293ca0818..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-uKV}z|01t`=FFL+M~_CB zUONgD=PdAuEM{QfI|Ravq8eTeKtUBx7sn8e>&X#YFXoFfn?3sP{{KG@PY)jt&q48eR=RL0L~1#}JO|$q`#GWQ#KUH8oyrY*ZBCP+*zS9nQ|Mon1~| Tt}<2xsF1VK!A%y hfa#2Da8niogY;g7sTLmVp8z#5c)I$ztaD0e0stoHCjkHe diff --git a/textures/present_side.png b/textures/present_side.png deleted file mode 100644 index b2d15b5f11d84d31252891c1456a1dcdc2989939..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-uKV}z|01t`_UzfCM~{ka z_1+2;=PdAuEM{QfI|Ravq8eTeKtT~t7sn8e>&X#YFXoFfmvXSVv9mFp-Ks2q=ghq& PKzRmFS3j3^P68eR=RK@m?E#}JO|$q`#GWQ#JFaRs5{Xzvu!`p25@A K&t;ucLK6VBGaL2* diff --git a/textures/present_side_gr.png b/textures/present_side_gr.png deleted file mode 100644 index 652ce59936dbe9c94e69325406d23d0ee3b97abb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9oB=)|uBnqnzR0Vm&J{^3JA4l$ zSl|&^%)r2R7=#&*=dVZs3W|8TIEHXsPmb7nAzPHWl!MKUosD63ui|HA{zVsn@(iA? KelF{r5}E)ho*onc diff --git a/textures/present_side_re.png b/textures/present_side_re.png deleted file mode 100644 index dcb05dd0dbe787ef7f9ff12ca46c25cf3cee1502..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u9GE1zR0W3mKB+=AY%Dr zJr7Wvv%n*=n1O-s5C}7hYIrpO1?4?m978y+C;!-fA={qW^N79$9FSc?y85md@ aFfh!yrS7owWxOs>DTAl0pUXO@geCy2zap~$ diff --git a/textures/present_side_ye.png b/textures/present_side_ye.png deleted file mode 100644 index 06c9f35d78c630a2ce303a478eb43d319a0c947a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-u9G`NzR0W3o+2`Twn((b z?-M|A&H|6fVg?4jLma)(=}8~V?jW;-@Rc)}D-PS0vjrVh3ZvbnSCk9M=)ix=!% T(z5k6&`1VPS3j3^P6O>_%)r2R2!t6$HM|;tf(D*0jv*Y^lYjhQ`QM(|O3+NyW6H6A=?MZQi3t%~ sO|nD}ubLXUT0&xml!U~FR}F#;8ism~E22$PfO;7`UHx3vIVCg!0N__DJ^%m! diff --git a/textures/present_top_gr.png b/textures/present_top_gr.png deleted file mode 100644 index f943d980c3e24428c7b0f82db8534f3093754ff9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!93?!50ihlx9JOMr-uBnqn9>}VFkylThBjTj_ zycHO>_%)r2R7=#&*=dVZs3L1F2IEHXsPyX?L<$rr-D?u|+k15Cgr6&lKBql^` rHOUe^ylQIXY6*!MQW6pyUNs0ZXc+1_u81}T>1FVA^>bP0l+XkK8)qvc diff --git a/textures/present_top_re.png b/textures/present_top_re.png deleted file mode 100644 index 58dc398a20f219277c1c16b1cf3fcd3f25bce68b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?boh%{pKvwOGy!tE|k@*TD z2eS{~0!ncfctjR6Fz_7$VMb96uLhu?o2QFo2*>s0fhoud z?0p*e4=BZ1;1OBOz`%D1gc(IOyc&RlZk{fVAsp9}3krjh%mRW66Az?lXf{fCc{#K# z*sxGxhN6nb3XT*50|O&24hGHSzopr0JSNS%G}c0*}aI1_r*vAk26?e?VeSRDdd#Ng@b=d#Wz Gp$Pyb6>@6; diff --git a/textures/silver_baubles.png b/textures/silver_baubles.png deleted file mode 100644 index a868f9c606043ec74077329779932370e8279a8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDUJ=P_7_wL=Yva;{rzpq`p zcK`nUuU@_SzgG0bi4*_-|GzU+WYeZiK(%ndvQFbWkRwnMZ6FE|AoD;XS{V@LH&&+ATxRtpz%K3|9 jm`W4Nfok44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h7I;J!Gca%qfiUBxyLEqng6t)pzOL+dSOs|al!`U1MS((6C9V-A!TD(= z<%vb93;~Imc_n&&t|1C##(JiDh6V;-iWUM@ZSr(+43UszJ;)t)*no%Sz}547x&{A} zgMLX#oz^x~whz<&v+C++)xHmVt_vqi>+RhhRQt-c#Z%^M-sdYZx6@R!MV+@P21mHIc&D8UYn;zB&+4tUu9cXpYFaP8*AEhR>;)! g%<83FKgB-Cb0t+jY)j182XsAyr>mdKI;Vst0C2s1AOHXW diff --git a/textures/snow_ball.png b/textures/snow_ball.png deleted file mode 100644 index a4f9140991b81ff4530d8959a89d9b46ab794e4d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=6#YEXl~rd;IzH;fojl z|NmcHQ*-vtop=BLFI>C!&Ye4J*RBPsfdkGcT}>cIpd`pI7^oN-Fg#F>l?2Lh7I;J! zGcfQS24TkI`72U@f-#;hjv*Y^lYj8D@|@_|V#1-En;9b1@i8|uqkX$whoDr}L#Ct@ z*BMgLzD!0z*0Y>_5AY;Ez967DAtb}aozvqKDIBX;b#zqi5cTqU cF|CP_VS8Ydg2nkXIgl$oUHx3vIVCg!0O}E8RsaA1 diff --git a/textures/snowball.png b/textures/snowball.png deleted file mode 100644 index a4f9140991b81ff4530d8959a89d9b46ab794e4d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFP2=EDU1=6#YEXl~rd;IzH;fojl z|NmcHQ*-vtop=BLFI>C!&Ye4J*RBPsfdkGcT}>cIpd`pI7^oN-Fg#F>l?2Lh7I;J! zGcfQS24TkI`72U@f-#;hjv*Y^lYj8D@|@_|V#1-En;9b1@i8|uqkX$whoDr}L#Ct@ z*BMgLzD!0z*0Y>_5AY;Ez967DAtb}aozvqKDIBX;b#zqi5cTqU cF|CP_VS8Ydg2nkXIgl$oUHx3vIVCg!0O}E8RsaA1 diff --git a/textures/star.png b/textures/star.png deleted file mode 100644 index 1eb52910b6a789349d56b0f0dd95f2cba2101f58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmV-}0et?6P)%xKL7v$HAzH4R5%fxl21!&Q5400zNbObBrC{jAQerbVMgO3e5f&jU=-`QnQp=9Yr3Q-BbFzEI90S_de`(FE$h>WHgM0KiKFe zLXar!qB~;Bu+v_1oPeGvD^JCods<(in>o7h8F>jX-}-<)B6#ZOUiTb4a#$e5Dt`Vp zIDSUxqyvB#$`rY7@Sl0(mNfu$$c%DiB=jrgxYrT0jiEUVDvhIeOJmhbv#&jd+>-a{ zl6958X|5Puu~B^o8~R6B6_)`AO#l2928iONiCQg4#D06sC`(d8wKZUz33 zhHzX@{=v`6^FvbapTIHk%?cXIS3~4a8MGMuvvywkZ#UOM<9#oLw=wZB$SW2#mYu(l Q57fxu>FVdQ&MBb@0EDYVA^-pY diff --git a/textures/yellow_baubles.png b/textures/yellow_baubles.png deleted file mode 100644 index e24a1f8b3074a665eeef43278a7cbaae9fbbe129..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstUx|zfk$L9 z0|Vb75M~tB@M-`GN|m@qlmzFem6RtIr7{F0X6BXX`MHKDlo{)p>KPgsd?{K8RAm<6 z6XN>+|Nr(HhGSiV$F?z?*~4&ovheMb3=igrJi5UB=%Uc0OKOjgVVDy>_whq-D16>xPn$pw2s2ym?%-mhp&C6Q`~HVYlgy{K18c$JR}mw~vAGBU>3?Ig=L9A_h-aKbLh*2~7YAg>i5I