diff --git a/mods/default/blocks.lua b/mods/default/blocks.lua index 383775cba..9e0435e4c 100644 --- a/mods/default/blocks.lua +++ b/mods/default/blocks.lua @@ -185,9 +185,9 @@ mod:block { } mod:block { - id = "stone_bricks", + id = "stonebrick", name = "Stone Bricks", - tiles = "stone_bricks.png", + tiles = "stonebrick.png", hardness = 2, harvest_requirements = 1, } @@ -387,6 +387,47 @@ mod:block { bounding_box = {0, 0, 0, 1, 1, 15 / 16}, } +mod:block { + id = "nether_wart", + name = "Nether Wart", + tiles = "nether_wart_stage_0.png", + draw_type = "xshape", + inventory_image = "nether_wart.png", + hardness = 0, + + bounding_box = {0, 0, 0, 1, 1, 4.0 / 16.0}, + draw_offset = {0, 0, -1.0 / 16.0}, + + states = { + { tiles = "nether_wart_stage_1.png", bounding_box = {0, 0, 0, 1, 1, 8.0 / 16.0}, }, -- 1 + { tiles = "nether_wart_stage_2.png", bounding_box = {0, 0, 0, 1, 1, 12.0 / 16.0}, }, -- 2 + }, + + tick_randomly = true, + tick_probability = 0.01, + + on_tick = function(pos, block, chunk, world) + local block_param = world:get_data(pos.x, pos.y, pos.z) + local current_state = block:param():get_param(BlockParamType.State, block_param) + if current_state < 2 then + world:set_data(pos.x, pos.y, pos.z, current_state + 1) + end + end, + + on_block_activated = function(pos, block, player, world, client, server) + local block_param = world:get_data(pos.x, pos.y, pos.z) + local current_state = block:param():get_param(BlockParamType.State, block_param) + if current_state >= 2 then + world:set_data(pos.x, pos.y, pos.z, + block:param():set_param(BlockParamType.State, block_param, 0)) + + -- FIXME: It should drop the item if 'default:use_item_drops' is enabled + local item_stack = ItemStack.new("default:nether_wart", 1) + mods["default"]:give_item_stack(player, item_stack) + end + end +} + mod:block { id = "seeds", name = "Seeds (WIP)", @@ -444,7 +485,277 @@ mod:block { bounding_box = {7 / 16, 7 / 16, 0, 2 / 16, 2 / 16, 10 / 16}, } +mod:block { + id = "stone_andesite", + name = "Andesite", + tiles = "stone_andesite.png", + hardness = 1.5, + harvest_requirements = 1, +} + +mod:block { + id = "stone_granite", + name = "Granite", + tiles = "stone_granite.png", + hardness = 1.5, + harvest_requirements = 1, +} + +mod:block { + id = "stone_diorite", + name = "Diorite", + tiles = "stone_diorite.png", + hardness = 1.5, + harvest_requirements = 1, +} + +mod:block { + id = "ice", + name = "Ice", + tiles = "ice.png", +} + +mod:block { + id = "snow", + name = "Snow", + tiles = "snow.png", +} + +mod:block { + id = "bookshelf", + name = "Bookshelf", + tiles = {"oak_planks.png", "oak_planks.png", "bookshelf.png"}, +} + +mod:block { + id = "stonebrick_mossy", + name = "Mossy Stone Bricks", + tiles = "stonebrick_mossy.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "stonebrick_cracked", + name = "Cracked Stone Bricks", + tiles = "stonebrick_cracked.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "stonebrick_carved", + name = "Carved Stone Bricks", + tiles = "stonebrick_carved.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "cobblestone_mossy", + name = "Mossy Cobblestone", + tiles = "cobblestone_mossy.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "coal_block", + name = "Coal Block", + tiles = "coal_block.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "diamond_block", + name = "Diamond Block", + tiles = "diamond_block.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "gold_block", + name = "Gold Block", + tiles = "gold_block.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "lapis_block", + name = "Lapis Lazuli Block", + tiles = "lapis_block.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "iron_block", + name = "Iron Block", + tiles = "iron_block.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "redstone_block", + name = "Redstone Block", + tiles = "redstone_block.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "emerald_block", + name = "Emerald Block", + tiles = "emerald_block.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "emerald_ore", + name = "Emerald Ore", + tiles = "emerald_ore.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "gold_ore", + name = "Gold Ore", + tiles = "gold_ore.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "diamond_ore", + name = "Diamond Ore", + tiles = "diamond_ore.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "redstone_ore", + name = "Redstone Ore", + tiles = "redstone_ore.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "lapis_ore", + name = "Lapis Lazuli Ore", + tiles = "lapis_ore.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "red_sandstone_smooth", + name = "Smooth Red Sandstone", + tiles = "red_sandstone_smooth.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "sandstone_smooth", + name = "Smooth Sandstone", + tiles = "sandstone_smooth.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "red_sandstone_carved", + name = "Carved Red Sandstone", + tiles = "red_sandstone_carved.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "sandstone_carved", + name = "Carved Sandstone", + tiles = "sandstone_carved.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "red_sandstone", + name = "Red Sandstone", + tiles = {"red_sandstone_top.png", "red_sandstone_bottom.png", "red_sandstone_normal.png"}, + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "sandstone", + name = "Sandstone", + tiles = {"sandstone_top.png", "sandstone_bottom.png", "sandstone_normal.png"}, + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "red_sand", + name = "Red Sand", + tiles = "red_sand.png", +} + +mod:block { + id = "slime", + name = "Slime Block", + tiles = "slime.png", + draw_type = "glass", +} + +mod:block { + id = "nether_bricks", + name = "Nether Bricks", + tiles = "nether_bricks.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "red_nether_brick", + name = "Red Nether Bricks", + tiles = "red_nether_brick.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "end_stone", + name = "End Stone", + tiles = "end_stone.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "end_bricks", + name = "End Stone Bricks", + tiles = "end_bricks.png", + hardness = 2, + harvest_requirements = 1, +} + +mod:block { + id = "hay_block", + name = "Hay Bale", + tiles = {"hay_block_top.png", "hay_block_top.png", "hay_block_side.png"}, + hardness = 2, + harvest_requirements = 1, +} + dofile("blocks/workbench.lua") dofile("blocks/furnace.lua") dofile("blocks/door.lua") - diff --git a/mods/default/items.lua b/mods/default/items.lua index 07366e3ac..6870a79c2 100644 --- a/mods/default/items.lua +++ b/mods/default/items.lua @@ -93,3 +93,404 @@ mod:item { tiles = "bread.png", } +mod:item { + id = "netherbrick", + name = "Nether Brick", + tiles = "netherbrick.png", +} + +mod:item { + id = "snowball", + name = "Snowball", + tiles = "snowball.png", +} + +mod:item { + id = "slimeball", + name = "Slimeball", + tiles = "slimeball.png", +} + +mod:item { + id = "apple", + name = "Apple", + tiles = "apple.png", +} + +mod:item { + id = "apple_golden", + name = "Golden Apple", + tiles = "apple_golden.png", +} + +mod:item { + id = "glowstone_dust", + name = "Glowstone Dust", + tiles = "glowstone_dust.png", +} + +mod:item { + id = "melon", + name = "Melon Slice", + tiles = "melon.png", +} + +mod:item { + id = "melon_speckled", + name = "Glistering Melon Slice", + tiles = "melon_speckled.png", +} + +mod:item { + id = "magma_cream", + name = "Magma Cream", + tiles = "magma_cream.png", +} + +mod:item { + id = "iron_nugget", + name = "Iron Nugget", + tiles = "iron_nugget.png", +} + +mod:item { + id = "gold_nugget", + name = "Gold Nugget", + tiles = "gold_nugget.png", +} + +mod:item { + id = "paper", + name = "Paper", + tiles = "paper.png", +} + +mod:item { + id = "egg", + name = "Egg", + tiles = "egg.png", +} + +mod:item { + id = "spider_eye", + name = "Spider Eye", + tiles = "spider_eye.png", +} + +mod:item { + id = "redstone_dust", + name = "Redstone Dust", + tiles = "redstone_dust.png", +} + +mod:item { + id = "fish_pufferfish_raw", + name = "Pufferfish", + tiles = "fish_pufferfish_raw.png", +} + +mod:item { + id = "emerald", + name = "Emerald", + tiles = "emerald.png", +} + +mod:item { + id = "book_normal", + name = "Book", + tiles = "book_normal.png", +} + +mod:item { + id = "bone", + name = "Bone", + tiles = "bone.png", +} + +mod:item { + id = "bone_meal", + name = "Bone Meal", + tiles = "bone_meal.png", +} + +mod:item { + id = "cookie", + name = "Cookie", + tiles = "cookie.png", +} + +mod:item { + id = "carrot", + name = "Carrot", + tiles = "carrot.png", +} + +mod:item { + id = "sugar", + name = "Sugar", + tiles = "sugar.png", +} + +mod:item { + id = "string", + name = "String", + tiles = "string.png", +} + +mod:item { + id = "blaze_rod", + name = "Blaze Rod", + tiles = "blaze_rod.png", +} + +mod:item { + id = "blaze_powder", + name = "Blaze Powder", + tiles = "blaze_powder.png", +} + +mod:item { + id = "bowl", + name = "Bowl", + tiles = "bowl.png", +} + +mod:item { + id = "beetroot_seeds", + name = "Beetroot Seeds", + tiles = "beetroot_seeds.png", +} + +mod:item { + id = "beetroot", + name = "Beetroot", + tiles = "beetroot.png", +} + +mod:item { + id = "beetroot_soup", + name = "Beetroot Soup", + tiles = "beetroot_soup.png", +} + +mod:item { + id = "arrow", + name = "Arrow", + tiles = "arrow.png", +} + +mod:item { + id = "rotten_flesh", + name = "Rotten Flesh", + tiles = "rotten_flesh.png", +} + +mod:item { + id = "seeds_pumpkin", + name = "Pumpkin Seeds", + tiles = "seeds_pumpkin.png", +} + +mod:item { + id = "seeds_melon", + name = "Melon Seeds", + tiles = "seeds_melon.png", +} + +mod:item { + id = "pumpkin_pie", + name = "Pumpkin Pie", + tiles = "pumpkin_pie.png", +} + +mod:item { + id = "mutton_raw", + name = "Mutton", + tiles = "mutton_raw.png", +} + +mod:item { + id = "mutton_cooked", + name = "Cooked Mutton", + tiles = "mutton_cooked.png", +} + +mod:item { + id = "porkchop_raw", + name = "Porkchop", + tiles = "porkchop_raw.png", +} + +mod:item { + id = "porkchop_cooked", + name = "Cooked Porkchop", + tiles = "porkchop_cooked.png", +} + +mod:item { + id = "rabbit_raw", + name = "Rabbit", + tiles = "rabbit_raw.png", +} + +mod:item { + id = "rabbit_cooked", + name = "Cooked Rabbit", + tiles = "rabbit_cooked.png", +} + +mod:item { + id = "chicken_raw", + name = "Chicken", + tiles = "chicken_raw.png", +} + +mod:item { + id = "chicken_cooked", + name = "Cooked Chicken", + tiles = "chicken_cooked.png", +} + +mod:item { + id = "fish_clownfish_raw", + name = "Salmon", + tiles = "fish_clownfish_raw.png", +} + +mod:item { + id = "fish_salmon_raw", + name = "Salmon", + tiles = "fish_salmon_raw.png", +} + +mod:item { + id = "fish_salmon_cooked", + name = "Cooked Salmon", + tiles = "fish_salmon_cooked.png", +} + +mod:item { + id = "beef_raw", + name = "Beef", + tiles = "beef_raw.png", +} + +mod:item { + id = "beef_cooked", + name = "Cooked Beef", + tiles = "beef_cooked.png", +} + +mod:item { + id = "fish_cod_raw", + name = "Cod", + tiles = "fish_cod_raw.png", +} + +mod:item { + id = "fish_cod_cooked", + name = "Cooked Cod", + tiles = "fish_cod_cooked.png", +} + +mod:item { + id = "bucket_empty", + name = "Bucket", + tiles = "bucket_empty.png", +} + +mod:item { + id = "flint", + name = "Flint", + tiles = "flint.png", +} + +mod:item { + id = "potato_poisonous", + name = "Poisonous Potato", + tiles = "potato_poisonous.png", +} + +mod:item { + id = "potato_baked", + name = "Baked Potato", + tiles = "potato_baked.png", +} + +mod:item { + id = "potato", + name = "Potato", + tiles = "potato.png", +} + +mod:item { + id = "feather", + name = "Feather", + tiles = "feather.png", +} + +mod:item { + id = "spider_eye_fermented", + name = "Fermented Spider Eye", + tiles = "spider_eye_fermented.png", +} + +mod:item { + id = "golden_carrot", + name = "Golden Carrot", + tiles = "golden_carrot.png", +} + +mod:item { + id = "lapis_lazuli", + name = "Lapis Lazuli", + tiles = "lapis_lazuli.png", +} + +mod:item { + id = "bucket_lava", + name = "Lava Bucket", + tiles = "bucket_lava.png", +} + +mod:item { + id = "bucket_water", + name = "Water Bucket", + tiles = "bucket_water.png", +} + +mod:item { + id = "bucket_milk", + name = "Milk Bucket", + tiles = "bucket_milk.png", +} + +mod:item { + id = "rabbit_foot", + name = "Rabbit Foot", + tiles = "rabbit_foot.png", +} + +mod:item { + id = "rabbit_hide", + name = "Rabbit Hide", + tiles = "rabbit_hide.png", +} + +mod:item { + id = "rabbit_stew", + name = "Rabbit Stew", + tiles = "rabbit_stew.png", +} + +mod:item { + id = "mushroom_stew", + name = "Mushroom Stew", + tiles = "mushroom_stew.png", +} + +mod:item { + id = "leather", + name = "Leather", + tiles = "leather.png", +} diff --git a/mods/default/recipes.lua b/mods/default/recipes.lua index ec2081024..1f9c9a521 100644 --- a/mods/default/recipes.lua +++ b/mods/default/recipes.lua @@ -555,22 +555,40 @@ mod:crafting_recipe { keys = {["#"] = "default:cobblestone"} } --- Glowstone -mod:crafting_recipe { - result = { - id = "default:glowstone", - amount = 1 - }, +-- Iron Ingot +mod:smelting_recipe { + input = {id = "default:iron_ore", amount = 1}, + output = {id = "default:iron_ingot", amount = 1} +} - pattern = {"#"}, +-- Iron Ingot +mod:smelting_recipe { + input = {id = "default:coal_ore", amount = 1}, + output = {id = "default:coal", amount = 1} +} - keys = {['#'] = "default:cobblestone"}, +-- Iron Ingot +mod:smelting_recipe { + input = {id = "default:emerald_ore", amount = 1}, + output = {id = "default:emerald", amount = 1} } -- Iron Ingot mod:smelting_recipe { - input = {id = "default:iron_ore", amount = 1}, - output = {id = "default:iron_ingot", amount = 1} + input = {id = "default:gold_ore", amount = 1}, + output = {id = "default:gold_ingot", amount = 1} +} + +-- Iron Ingot +mod:smelting_recipe { + input = {id = "default:redstone_ore", amount = 1}, + output = {id = "default:redstone_dust", amount = 1} +} + +-- Iron Ingot +mod:smelting_recipe { + input = {id = "default:lapis_ore", amount = 1}, + output = {id = "default:lapis_lazuli", amount = 1} } -- Stone @@ -585,6 +603,12 @@ mod:smelting_recipe { output = {id = "default:glass", amount = 1} } +-- Glass +mod:smelting_recipe { + input = {id = "default:red_sand", amount = 1}, + output = {id = "default:glass", amount = 1} +} + -- Charcoal mod:smelting_recipe { input = {id = "default:oak_wood", amount = 1}, @@ -597,6 +621,60 @@ mod:smelting_recipe { output = {id = "default:brick", amount = 1} } +-- Nether Brick +mod:smelting_recipe { + input = {id = "default:netherrack", amount = 1}, + output = {id = "default:netherbrick", amount = 1} +} + +-- Baked Brick +mod:smelting_recipe { + input = {id = "default:potato", amount = 1}, + output = {id = "default:potato_baked", amount = 1} +} + +-- Cooked Beef +mod:smelting_recipe { + input = {id = "default:beef_raw", amount = 1}, + output = {id = "default:beef_cooked", amount = 1} +} + +-- Cooked Porkchop +mod:smelting_recipe { + input = {id = "default:porkchop_raw", amount = 1}, + output = {id = "default:porkchop_cooked", amount = 1} +} + +-- Cooked Mutton +mod:smelting_recipe { + input = {id = "default:mutton_raw", amount = 1}, + output = {id = "default:mutton_cooked", amount = 1} +} + +-- Cooked Chicken +mod:smelting_recipe { + input = {id = "default:chicken_raw", amount = 1}, + output = {id = "default:chicken_cooked", amount = 1} +} + +-- Cooked Rabbit +mod:smelting_recipe { + input = {id = "default:rabbit_raw", amount = 1}, + output = {id = "default:rabbit_cooked", amount = 1} +} + +-- Cooked Cod +mod:smelting_recipe { + input = {id = "default:fish_cod_raw", amount = 1}, + output = {id = "default:fish_cod_cooked", amount = 1} +} + +-- Cooked Salmon +mod:smelting_recipe { + input = {id = "default:fish_salmon_raw", amount = 1}, + output = {id = "default:fish_salmon_cooked", amount = 1} +} + -- Bricks mod:crafting_recipe { result = { @@ -613,7 +691,7 @@ mod:crafting_recipe { -- Stone Bricks mod:crafting_recipe { result = { - id = "default:stone_bricks", + id = "default:stonebrick", amount = 1 }, pattern = { @@ -646,3 +724,568 @@ mod:crafting_recipe { }, keys = {["#"] = "default:wheat"} } + +-- Bookshelf +mod:crafting_recipe { + result = { + id = "default:bookshelf", + amount = 1 + }, + pattern = { + "###", + "BBB", + "###" + }, + keys = {["#"] = "default:oak_planks", ["B"] = "default:book_normal"} +} + +-- Sandstone +mod:crafting_recipe { + result = { + id = "default:sandstone", + amount = 1 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:sand"} +} + +-- Red Sandstone +mod:crafting_recipe { + result = { + id = "default:red_sandstone", + amount = 1 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:red_sand"} +} + +-- Cut Sandstone +mod:crafting_recipe { + result = { + id = "default:sandstone_smooth", + amount = 4 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:sandstone"} +} + +-- Cut Red Sandstone +mod:crafting_recipe { + result = { + id = "default:red_sandstone_smooth", + amount = 4 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:red_sandstone"} +} + +-- Coal Block +mod:crafting_recipe { + result = { + id = "default:coal_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:coal"} +} + +-- Iron Block +mod:crafting_recipe { + result = { + id = "default:iron_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:iron_ingot"} +} + +-- Gold Block +mod:crafting_recipe { + result = { + id = "default:gold_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:gold_ingot"} +} + +-- Lapis Block +mod:crafting_recipe { + result = { + id = "default:lapis_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:lapis_lazuli"} +} + +-- Redstone Block +mod:crafting_recipe { + result = { + id = "default:redstone_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:redstone_dust"} +} + +-- Diamond Block +mod:crafting_recipe { + result = { + id = "default:diamond_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:diamond"} +} + +-- Emerald Block +mod:crafting_recipe { + result = { + id = "default:emerald_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:emerald"} +} + +-- Coal +mod:crafting_recipe { + result = { + id = "default:coal", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:coal_block"} +} + +-- Iron Ingots +mod:crafting_recipe { + result = { + id = "default:iron_ingot", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:iron_block"} +} + +-- Gold Ingots +mod:crafting_recipe { + result = { + id = "default:gold_ingot", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:gold_block"} +} + +-- Lapis Lazuli +mod:crafting_recipe { + result = { + id = "default:lapis_lazuli", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:lapis_block"} +} + +-- Redstone +mod:crafting_recipe { + result = { + id = "default:redstone_dust", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:redstone_block"} +} + +-- Diamonds +mod:crafting_recipe { + result = { + id = "default:diamond", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:diamond_block"} +} + +-- Emerald +mod:crafting_recipe { + result = { + id = "default:emerald", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:emerald_block"} +} + + +-- End Stone Bricks +mod:crafting_recipe { + result = { + id = "default:end_bricks", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:end_stone"} +} + +-- Glowstone +mod:crafting_recipe { + result = { + id = "default:glowstone", + amount = 1 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:glowstone_dust"} +} + +-- Nether Bricks +mod:crafting_recipe { + result = { + id = "default:nether_bricks", + amount = 1 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:netherbrick"} +} + +-- Nether Bricks +mod:crafting_recipe { + result = { + id = "default:red_nether_brick", + amount = 1 + }, + pattern = { + "N#", + "#N" + }, + keys = {["#"] = "default:netherbrick", ["N"] = "default:nether_wart"} +} + +-- Redstone Lamp +mod:crafting_recipe { + result = { + id = "default:redstone_lamp", + amount = 1 + }, + pattern = { + " # ", + "#G#", + " # " + }, + keys = {["#"] = "default:redstone_dust", ["G"] = "default:glowstone"} +} + +-- Slime Block +mod:crafting_recipe { + result = { + id = "default:slime", + amount = 1 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:slime_ball"} +} + +-- Snow Block +mod:crafting_recipe { + result = { + id = "default:snow", + amount = 1 + }, + pattern = { + "##", + "##" + }, + keys = {["#"] = "default:snowball"} +} + +-- Arrow +mod:crafting_recipe { + result = { + id = "default:arrow", + amount = 4 + }, + pattern = { + "^", + "|", + "X" + }, + keys = {["^"] = "default:flint", ["|"] = "default:stick", ["X"] = "default:feather"} +} + +-- Beetroot Soup +mod:crafting_recipe { + result = { + id = "default:beetroot_soup", + amount = 4 + }, + pattern = { + "###", + "###", + " B " + }, + keys = {["#"] = "default:beetroot", ["B"] = "default:bowl"} +} + +-- Blaze Powder +mod:crafting_recipe { + result = { + id = "default:blaze_powder", + amount = 2 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:blaze_rod"} +} + +-- Bone Meal +mod:crafting_recipe { + result = { + id = "default:bone_meal", + amount = 3 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:bone"} +} + +-- Book +mod:crafting_recipe { + result = { + id = "default:book_normal", + amount = 1 + }, + pattern = { + "##", + "#L" + }, + keys = {["#"] = "default:paper", ["L"] = "default:leather"} +} + +-- Bowl +mod:crafting_recipe { + result = { + id = "default:bowl", + amount = 1 + }, + pattern = { + "# #", + " # " + }, + keys = {["#"] = "default:oak_planks"} +} + +-- Bucket +mod:crafting_recipe { + result = { + id = "default:bucket_empty", + amount = 1 + }, + pattern = { + "# #", + " # " + }, + keys = {["#"] = "default:iron_ingot"} +} + +-- Glistering Melon Slice +mod:crafting_recipe { + result = { + id = "default:melon_speckled", + amount = 1 + }, + pattern = { + "###", + "#M#", + "###" + }, + keys = {["#"] = "default:gold_nugget", ["M"] = "default:melon"} +} + +-- Golden Apple +mod:crafting_recipe { + result = { + id = "default:apple_golden", + amount = 1 + }, + pattern = { + "###", + "#A#", + "###" + }, + keys = {["#"] = "default:gold_ingot", ["A"] = "default:apple"} +} + +-- Golden Carrot +mod:crafting_recipe { + result = { + id = "default:golden_carrot", + amount = 1 + }, + pattern = { + "###", + "#C#", + "###" + }, + keys = {["#"] = "default:gold_nugget", ["C"] = "default:carrot"} +} + +-- Iron Ingot +mod:crafting_recipe { + result = { + id = "default:iron_ingot", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:iron_nugget"} +} + +-- Gold Ingot +mod:crafting_recipe { + result = { + id = "default:gold_ingot", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:gold_nugget"} +} + +-- Iron Nuggets +mod:crafting_recipe { + result = { + id = "default:iron_nugget", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:iron_ingot"} +} + +-- Gold Nugget +mod:crafting_recipe { + result = { + id = "default:gold_nugget", + amount = 9 + }, + pattern = { + "#" + }, + keys = {["#"] = "default:gold_ingot"} +} + +-- Magma Cream +mod:crafting_recipe { + result = { + id = "default:magma_cream", + amount = 1 + }, + pattern = { + "#@" + }, + keys = {["#"] = "default:blaze_powder", ["@"] = "default:slime_ball"} +} + +-- Magma Cream +mod:crafting_recipe { + result = { + id = "default:paper", + amount = 1 + }, + pattern = { + "###" + }, + keys = {["#"] = "default:sugar_cane"} +} + +-- Magma Cream +mod:crafting_recipe { + result = { + id = "default:hay_block", + amount = 1 + }, + pattern = { + "###", + "###", + "###" + }, + keys = {["#"] = "default:wheat"} +} diff --git a/mods/default/textures/blocks/bookshelf.png b/mods/default/textures/blocks/bookshelf.png new file mode 100644 index 000000000..b19e28e98 Binary files /dev/null and b/mods/default/textures/blocks/bookshelf.png differ diff --git a/mods/default/textures/blocks/cactus_bottom.png b/mods/default/textures/blocks/cactus_bottom.png index e7623ebf3..f20d027c1 100644 Binary files a/mods/default/textures/blocks/cactus_bottom.png and b/mods/default/textures/blocks/cactus_bottom.png differ diff --git a/mods/default/textures/blocks/cactus_side.png b/mods/default/textures/blocks/cactus_side.png index 792317ed3..5738ef9f2 100644 Binary files a/mods/default/textures/blocks/cactus_side.png and b/mods/default/textures/blocks/cactus_side.png differ diff --git a/mods/default/textures/blocks/clay.png b/mods/default/textures/blocks/clay.png index 558bea6aa..c2d0a6aa9 100644 Binary files a/mods/default/textures/blocks/clay.png and b/mods/default/textures/blocks/clay.png differ diff --git a/mods/default/textures/blocks/coal_block.png b/mods/default/textures/blocks/coal_block.png new file mode 100644 index 000000000..779acdef0 Binary files /dev/null and b/mods/default/textures/blocks/coal_block.png differ diff --git a/mods/default/textures/blocks/cobblestone_mossy.png b/mods/default/textures/blocks/cobblestone_mossy.png new file mode 100644 index 000000000..652f77ffb Binary files /dev/null and b/mods/default/textures/blocks/cobblestone_mossy.png differ diff --git a/mods/default/textures/blocks/cracked_stone_bricks.png b/mods/default/textures/blocks/cracked_stone_bricks.png new file mode 100644 index 000000000..063ed5f57 Binary files /dev/null and b/mods/default/textures/blocks/cracked_stone_bricks.png differ diff --git a/mods/default/textures/blocks/debug/f.png b/mods/default/textures/blocks/debug/f.png index 256c4f920..6277ab6b1 100644 Binary files a/mods/default/textures/blocks/debug/f.png and b/mods/default/textures/blocks/debug/f.png differ diff --git a/mods/default/textures/blocks/debug/g.png b/mods/default/textures/blocks/debug/g.png index f9e2b643a..e16250aae 100644 Binary files a/mods/default/textures/blocks/debug/g.png and b/mods/default/textures/blocks/debug/g.png differ diff --git a/mods/default/textures/blocks/debug/j.png b/mods/default/textures/blocks/debug/j.png index fc5d598ef..8e59dc930 100644 Binary files a/mods/default/textures/blocks/debug/j.png and b/mods/default/textures/blocks/debug/j.png differ diff --git a/mods/default/textures/blocks/debug/l.png b/mods/default/textures/blocks/debug/l.png index 6d03eabb9..84ff5670b 100644 Binary files a/mods/default/textures/blocks/debug/l.png and b/mods/default/textures/blocks/debug/l.png differ diff --git a/mods/default/textures/blocks/debug/p.png b/mods/default/textures/blocks/debug/p.png index 1aea83de4..4da222d2f 100644 Binary files a/mods/default/textures/blocks/debug/p.png and b/mods/default/textures/blocks/debug/p.png differ diff --git a/mods/default/textures/blocks/debug/r.png b/mods/default/textures/blocks/debug/r.png index c27a730e7..cba37a4f4 100644 Binary files a/mods/default/textures/blocks/debug/r.png and b/mods/default/textures/blocks/debug/r.png differ diff --git a/mods/default/textures/blocks/diamond_block.png b/mods/default/textures/blocks/diamond_block.png new file mode 100644 index 000000000..df8162596 Binary files /dev/null and b/mods/default/textures/blocks/diamond_block.png differ diff --git a/mods/default/textures/blocks/diamond_ore.png b/mods/default/textures/blocks/diamond_ore.png new file mode 100644 index 000000000..c1178700a Binary files /dev/null and b/mods/default/textures/blocks/diamond_ore.png differ diff --git a/mods/default/textures/blocks/emerald_block.png b/mods/default/textures/blocks/emerald_block.png new file mode 100644 index 000000000..482b0dd3f Binary files /dev/null and b/mods/default/textures/blocks/emerald_block.png differ diff --git a/mods/default/textures/blocks/emerald_ore.png b/mods/default/textures/blocks/emerald_ore.png new file mode 100644 index 000000000..ad7dce29e Binary files /dev/null and b/mods/default/textures/blocks/emerald_ore.png differ diff --git a/mods/default/textures/blocks/end_bricks.png b/mods/default/textures/blocks/end_bricks.png new file mode 100644 index 000000000..cc02d4738 Binary files /dev/null and b/mods/default/textures/blocks/end_bricks.png differ diff --git a/mods/default/textures/blocks/end_stone.png b/mods/default/textures/blocks/end_stone.png new file mode 100644 index 000000000..ee2a86739 Binary files /dev/null and b/mods/default/textures/blocks/end_stone.png differ diff --git a/mods/default/textures/blocks/end_stone_bricks.png b/mods/default/textures/blocks/end_stone_bricks.png new file mode 100644 index 000000000..ea2150a63 Binary files /dev/null and b/mods/default/textures/blocks/end_stone_bricks.png differ diff --git a/mods/default/textures/blocks/gold_block.png b/mods/default/textures/blocks/gold_block.png new file mode 100644 index 000000000..78b0841b4 Binary files /dev/null and b/mods/default/textures/blocks/gold_block.png differ diff --git a/mods/default/textures/blocks/gold_ore.png b/mods/default/textures/blocks/gold_ore.png new file mode 100644 index 000000000..cc9daaf9f Binary files /dev/null and b/mods/default/textures/blocks/gold_ore.png differ diff --git a/mods/default/textures/blocks/grass_block_side.png b/mods/default/textures/blocks/grass_block_side.png index 28c6d8a23..f06262979 100644 Binary files a/mods/default/textures/blocks/grass_block_side.png and b/mods/default/textures/blocks/grass_block_side.png differ diff --git a/mods/default/textures/blocks/grass_path_side.png b/mods/default/textures/blocks/grass_path_side.png index 2b46910b8..1b91d099a 100644 Binary files a/mods/default/textures/blocks/grass_path_side.png and b/mods/default/textures/blocks/grass_path_side.png differ diff --git a/mods/default/textures/blocks/grass_path_top.png b/mods/default/textures/blocks/grass_path_top.png index 950faa5a0..7f8f9f56f 100644 Binary files a/mods/default/textures/blocks/grass_path_top.png and b/mods/default/textures/blocks/grass_path_top.png differ diff --git a/mods/default/textures/blocks/hay_block_side.png b/mods/default/textures/blocks/hay_block_side.png new file mode 100644 index 000000000..979dd3f98 Binary files /dev/null and b/mods/default/textures/blocks/hay_block_side.png differ diff --git a/mods/default/textures/blocks/hay_block_top.png b/mods/default/textures/blocks/hay_block_top.png new file mode 100644 index 000000000..f187cf86c Binary files /dev/null and b/mods/default/textures/blocks/hay_block_top.png differ diff --git a/mods/default/textures/blocks/ice.png b/mods/default/textures/blocks/ice.png new file mode 100644 index 000000000..97581e8b8 Binary files /dev/null and b/mods/default/textures/blocks/ice.png differ diff --git a/mods/default/textures/blocks/iron_block.png b/mods/default/textures/blocks/iron_block.png new file mode 100644 index 000000000..6ee3bfabe Binary files /dev/null and b/mods/default/textures/blocks/iron_block.png differ diff --git a/mods/default/textures/blocks/lapis_block.png b/mods/default/textures/blocks/lapis_block.png new file mode 100644 index 000000000..1e0391ac6 Binary files /dev/null and b/mods/default/textures/blocks/lapis_block.png differ diff --git a/mods/default/textures/blocks/lapis_ore.png b/mods/default/textures/blocks/lapis_ore.png new file mode 100644 index 000000000..e14acc012 Binary files /dev/null and b/mods/default/textures/blocks/lapis_ore.png differ diff --git a/mods/default/textures/blocks/lava.png b/mods/default/textures/blocks/lava.png index 58d05384d..e735cdf80 100644 Binary files a/mods/default/textures/blocks/lava.png and b/mods/default/textures/blocks/lava.png differ diff --git a/mods/default/textures/blocks/nether_bricks.png b/mods/default/textures/blocks/nether_bricks.png new file mode 100644 index 000000000..9ed08e5b3 Binary files /dev/null and b/mods/default/textures/blocks/nether_bricks.png differ diff --git a/mods/default/textures/blocks/nether_wart_stage_0.png b/mods/default/textures/blocks/nether_wart_stage_0.png new file mode 100644 index 000000000..130f2b6d9 Binary files /dev/null and b/mods/default/textures/blocks/nether_wart_stage_0.png differ diff --git a/mods/default/textures/blocks/nether_wart_stage_1.png b/mods/default/textures/blocks/nether_wart_stage_1.png new file mode 100644 index 000000000..130d6ae67 Binary files /dev/null and b/mods/default/textures/blocks/nether_wart_stage_1.png differ diff --git a/mods/default/textures/blocks/nether_wart_stage_2.png b/mods/default/textures/blocks/nether_wart_stage_2.png new file mode 100644 index 000000000..5a267481d Binary files /dev/null and b/mods/default/textures/blocks/nether_wart_stage_2.png differ diff --git a/mods/default/textures/blocks/portal.png b/mods/default/textures/blocks/portal.png index 61fa14f25..6fb9f74a3 100644 Binary files a/mods/default/textures/blocks/portal.png and b/mods/default/textures/blocks/portal.png differ diff --git a/mods/default/textures/blocks/red_nether_brick.png b/mods/default/textures/blocks/red_nether_brick.png new file mode 100644 index 000000000..3ff49b1ee Binary files /dev/null and b/mods/default/textures/blocks/red_nether_brick.png differ diff --git a/mods/default/textures/blocks/red_sand.png b/mods/default/textures/blocks/red_sand.png new file mode 100644 index 000000000..6881f1361 Binary files /dev/null and b/mods/default/textures/blocks/red_sand.png differ diff --git a/mods/default/textures/blocks/red_sandstone_bottom.png b/mods/default/textures/blocks/red_sandstone_bottom.png new file mode 100644 index 000000000..aa8e05e4d Binary files /dev/null and b/mods/default/textures/blocks/red_sandstone_bottom.png differ diff --git a/mods/default/textures/blocks/red_sandstone_carved.png b/mods/default/textures/blocks/red_sandstone_carved.png new file mode 100644 index 000000000..bdd29f38f Binary files /dev/null and b/mods/default/textures/blocks/red_sandstone_carved.png differ diff --git a/mods/default/textures/blocks/red_sandstone_normal.png b/mods/default/textures/blocks/red_sandstone_normal.png new file mode 100644 index 000000000..01b4bad49 Binary files /dev/null and b/mods/default/textures/blocks/red_sandstone_normal.png differ diff --git a/mods/default/textures/blocks/red_sandstone_smooth.png b/mods/default/textures/blocks/red_sandstone_smooth.png new file mode 100644 index 000000000..a247d0c9d Binary files /dev/null and b/mods/default/textures/blocks/red_sandstone_smooth.png differ diff --git a/mods/default/textures/blocks/red_sandstone_top.png b/mods/default/textures/blocks/red_sandstone_top.png new file mode 100644 index 000000000..329ef0530 Binary files /dev/null and b/mods/default/textures/blocks/red_sandstone_top.png differ diff --git a/mods/default/textures/blocks/redstone_block.png b/mods/default/textures/blocks/redstone_block.png new file mode 100644 index 000000000..2d4b885d3 Binary files /dev/null and b/mods/default/textures/blocks/redstone_block.png differ diff --git a/mods/default/textures/blocks/redstone_ore.png b/mods/default/textures/blocks/redstone_ore.png new file mode 100644 index 000000000..7b513e6ed Binary files /dev/null and b/mods/default/textures/blocks/redstone_ore.png differ diff --git a/mods/default/textures/blocks/sand.png b/mods/default/textures/blocks/sand.png index cd78caa33..e89ce6ec8 100644 Binary files a/mods/default/textures/blocks/sand.png and b/mods/default/textures/blocks/sand.png differ diff --git a/mods/default/textures/blocks/sandstone_bottom.png b/mods/default/textures/blocks/sandstone_bottom.png new file mode 100644 index 000000000..6c8bdbf5e Binary files /dev/null and b/mods/default/textures/blocks/sandstone_bottom.png differ diff --git a/mods/default/textures/blocks/sandstone_carved.png b/mods/default/textures/blocks/sandstone_carved.png new file mode 100644 index 000000000..c3bcb10d6 Binary files /dev/null and b/mods/default/textures/blocks/sandstone_carved.png differ diff --git a/mods/default/textures/blocks/sandstone_normal.png b/mods/default/textures/blocks/sandstone_normal.png new file mode 100644 index 000000000..bb367fdef Binary files /dev/null and b/mods/default/textures/blocks/sandstone_normal.png differ diff --git a/mods/default/textures/blocks/sandstone_smooth.png b/mods/default/textures/blocks/sandstone_smooth.png new file mode 100644 index 000000000..83109116c Binary files /dev/null and b/mods/default/textures/blocks/sandstone_smooth.png differ diff --git a/mods/default/textures/blocks/sandstone_top.png b/mods/default/textures/blocks/sandstone_top.png new file mode 100644 index 000000000..5bbc3d165 Binary files /dev/null and b/mods/default/textures/blocks/sandstone_top.png differ diff --git a/mods/default/textures/blocks/slime.png b/mods/default/textures/blocks/slime.png new file mode 100644 index 000000000..d59a4cce2 Binary files /dev/null and b/mods/default/textures/blocks/slime.png differ diff --git a/mods/default/textures/blocks/snow.png b/mods/default/textures/blocks/snow.png new file mode 100644 index 000000000..825e8d083 Binary files /dev/null and b/mods/default/textures/blocks/snow.png differ diff --git a/mods/default/textures/blocks/stone.png b/mods/default/textures/blocks/stone.png index d432bb2a0..db1ef2dc4 100644 Binary files a/mods/default/textures/blocks/stone.png and b/mods/default/textures/blocks/stone.png differ diff --git a/mods/default/textures/blocks/stone_andesite.png b/mods/default/textures/blocks/stone_andesite.png new file mode 100644 index 000000000..c8a72782d Binary files /dev/null and b/mods/default/textures/blocks/stone_andesite.png differ diff --git a/mods/default/textures/blocks/stone_diorite.png b/mods/default/textures/blocks/stone_diorite.png new file mode 100644 index 000000000..e235649fe Binary files /dev/null and b/mods/default/textures/blocks/stone_diorite.png differ diff --git a/mods/default/textures/blocks/stone_granite.png b/mods/default/textures/blocks/stone_granite.png new file mode 100644 index 000000000..abe234ed3 Binary files /dev/null and b/mods/default/textures/blocks/stone_granite.png differ diff --git a/mods/default/textures/blocks/stone_bricks.png b/mods/default/textures/blocks/stonebrick.png similarity index 100% rename from mods/default/textures/blocks/stone_bricks.png rename to mods/default/textures/blocks/stonebrick.png diff --git a/mods/default/textures/blocks/stonebrick_carved.png b/mods/default/textures/blocks/stonebrick_carved.png new file mode 100644 index 000000000..4abdb38fe Binary files /dev/null and b/mods/default/textures/blocks/stonebrick_carved.png differ diff --git a/mods/default/textures/blocks/stonebrick_cracked.png b/mods/default/textures/blocks/stonebrick_cracked.png new file mode 100644 index 000000000..e1b8ec2a2 Binary files /dev/null and b/mods/default/textures/blocks/stonebrick_cracked.png differ diff --git a/mods/default/textures/blocks/stonebrick_mossy.png b/mods/default/textures/blocks/stonebrick_mossy.png new file mode 100644 index 000000000..3632df07a Binary files /dev/null and b/mods/default/textures/blocks/stonebrick_mossy.png differ diff --git a/mods/default/textures/blocks/undefined.png b/mods/default/textures/blocks/undefined.png index d8561e90e..f2034fc94 100644 Binary files a/mods/default/textures/blocks/undefined.png and b/mods/default/textures/blocks/undefined.png differ diff --git a/mods/default/textures/gui/furnace.png b/mods/default/textures/gui/furnace.png index f40de39d6..9418bcba4 100644 Binary files a/mods/default/textures/gui/furnace.png and b/mods/default/textures/gui/furnace.png differ diff --git a/mods/default/textures/gui/inventory.png b/mods/default/textures/gui/inventory.png index 19b6fd8fe..ad68cbcb5 100644 Binary files a/mods/default/textures/gui/inventory.png and b/mods/default/textures/gui/inventory.png differ diff --git a/mods/default/textures/gui/workbench.png b/mods/default/textures/gui/workbench.png index 38c05c031..4a873f63a 100644 Binary files a/mods/default/textures/gui/workbench.png and b/mods/default/textures/gui/workbench.png differ diff --git a/mods/default/textures/items/apple.png b/mods/default/textures/items/apple.png new file mode 100644 index 000000000..2791e6389 Binary files /dev/null and b/mods/default/textures/items/apple.png differ diff --git a/mods/default/textures/items/apple_golden.png b/mods/default/textures/items/apple_golden.png new file mode 100644 index 000000000..c49128e3b Binary files /dev/null and b/mods/default/textures/items/apple_golden.png differ diff --git a/mods/default/textures/items/arrow.png b/mods/default/textures/items/arrow.png new file mode 100644 index 000000000..5781e1ac1 Binary files /dev/null and b/mods/default/textures/items/arrow.png differ diff --git a/mods/default/textures/items/beef_cooked.png b/mods/default/textures/items/beef_cooked.png new file mode 100644 index 000000000..785ccfcc9 Binary files /dev/null and b/mods/default/textures/items/beef_cooked.png differ diff --git a/mods/default/textures/items/beef_raw.png b/mods/default/textures/items/beef_raw.png new file mode 100644 index 000000000..a5eed0478 Binary files /dev/null and b/mods/default/textures/items/beef_raw.png differ diff --git a/mods/default/textures/items/beetroot.png b/mods/default/textures/items/beetroot.png new file mode 100644 index 000000000..8c089ffd6 Binary files /dev/null and b/mods/default/textures/items/beetroot.png differ diff --git a/mods/default/textures/items/beetroot_seeds.png b/mods/default/textures/items/beetroot_seeds.png new file mode 100644 index 000000000..2bf502ff5 Binary files /dev/null and b/mods/default/textures/items/beetroot_seeds.png differ diff --git a/mods/default/textures/items/beetroot_soup.png b/mods/default/textures/items/beetroot_soup.png new file mode 100644 index 000000000..833a53f78 Binary files /dev/null and b/mods/default/textures/items/beetroot_soup.png differ diff --git a/mods/default/textures/items/blaze_powder.png b/mods/default/textures/items/blaze_powder.png new file mode 100644 index 000000000..515047242 Binary files /dev/null and b/mods/default/textures/items/blaze_powder.png differ diff --git a/mods/default/textures/items/blaze_rod.png b/mods/default/textures/items/blaze_rod.png new file mode 100644 index 000000000..b3d7ac4c9 Binary files /dev/null and b/mods/default/textures/items/blaze_rod.png differ diff --git a/mods/default/textures/items/bone.png b/mods/default/textures/items/bone.png new file mode 100644 index 000000000..62748566f Binary files /dev/null and b/mods/default/textures/items/bone.png differ diff --git a/mods/default/textures/items/bone_meal.png b/mods/default/textures/items/bone_meal.png new file mode 100644 index 000000000..91f3cb8d6 Binary files /dev/null and b/mods/default/textures/items/bone_meal.png differ diff --git a/mods/default/textures/items/book_normal.png b/mods/default/textures/items/book_normal.png new file mode 100644 index 000000000..b35ec48af Binary files /dev/null and b/mods/default/textures/items/book_normal.png differ diff --git a/mods/default/textures/items/bowl.png b/mods/default/textures/items/bowl.png new file mode 100644 index 000000000..287df04c1 Binary files /dev/null and b/mods/default/textures/items/bowl.png differ diff --git a/mods/default/textures/items/bread.png b/mods/default/textures/items/bread.png index e7cafc535..fdf2eda2c 100644 Binary files a/mods/default/textures/items/bread.png and b/mods/default/textures/items/bread.png differ diff --git a/mods/default/textures/items/brick.png b/mods/default/textures/items/brick.png index 32fb11442..a33120732 100644 Binary files a/mods/default/textures/items/brick.png and b/mods/default/textures/items/brick.png differ diff --git a/mods/default/textures/items/bucket_empty.png b/mods/default/textures/items/bucket_empty.png new file mode 100644 index 000000000..b2a9a4d27 Binary files /dev/null and b/mods/default/textures/items/bucket_empty.png differ diff --git a/mods/default/textures/items/bucket_lava.png b/mods/default/textures/items/bucket_lava.png new file mode 100644 index 000000000..9f36983b9 Binary files /dev/null and b/mods/default/textures/items/bucket_lava.png differ diff --git a/mods/default/textures/items/bucket_milk.png b/mods/default/textures/items/bucket_milk.png new file mode 100644 index 000000000..c7542f937 Binary files /dev/null and b/mods/default/textures/items/bucket_milk.png differ diff --git a/mods/default/textures/items/bucket_water.png b/mods/default/textures/items/bucket_water.png new file mode 100644 index 000000000..d101dc2c0 Binary files /dev/null and b/mods/default/textures/items/bucket_water.png differ diff --git a/mods/default/textures/items/carrot.png b/mods/default/textures/items/carrot.png new file mode 100644 index 000000000..5d815413e Binary files /dev/null and b/mods/default/textures/items/carrot.png differ diff --git a/mods/default/textures/items/charcoal.png b/mods/default/textures/items/charcoal.png index e6790e8df..76a05fae6 100644 Binary files a/mods/default/textures/items/charcoal.png and b/mods/default/textures/items/charcoal.png differ diff --git a/mods/default/textures/items/chicken_cooked.png b/mods/default/textures/items/chicken_cooked.png new file mode 100644 index 000000000..455d7a35d Binary files /dev/null and b/mods/default/textures/items/chicken_cooked.png differ diff --git a/mods/default/textures/items/chicken_raw.png b/mods/default/textures/items/chicken_raw.png new file mode 100644 index 000000000..7c5b309aa Binary files /dev/null and b/mods/default/textures/items/chicken_raw.png differ diff --git a/mods/default/textures/items/clay_ball.png b/mods/default/textures/items/clay_ball.png index a35539f9d..d30bd612b 100644 Binary files a/mods/default/textures/items/clay_ball.png and b/mods/default/textures/items/clay_ball.png differ diff --git a/mods/default/textures/items/coal.png b/mods/default/textures/items/coal.png index 1bcdd3789..da7b2ec46 100644 Binary files a/mods/default/textures/items/coal.png and b/mods/default/textures/items/coal.png differ diff --git a/mods/default/textures/items/cookie.png b/mods/default/textures/items/cookie.png new file mode 100644 index 000000000..33a9b8500 Binary files /dev/null and b/mods/default/textures/items/cookie.png differ diff --git a/mods/default/textures/items/diamond.png b/mods/default/textures/items/diamond.png index 4adb5f489..159c984b5 100644 Binary files a/mods/default/textures/items/diamond.png and b/mods/default/textures/items/diamond.png differ diff --git a/mods/default/textures/items/diamond_axe.png b/mods/default/textures/items/diamond_axe.png index 752b67fc9..c3f3954be 100644 Binary files a/mods/default/textures/items/diamond_axe.png and b/mods/default/textures/items/diamond_axe.png differ diff --git a/mods/default/textures/items/diamond_hoe.png b/mods/default/textures/items/diamond_hoe.png index 8145b170a..dad91811f 100644 Binary files a/mods/default/textures/items/diamond_hoe.png and b/mods/default/textures/items/diamond_hoe.png differ diff --git a/mods/default/textures/items/diamond_pickaxe.png b/mods/default/textures/items/diamond_pickaxe.png index b580d5512..4e6a0dab4 100644 Binary files a/mods/default/textures/items/diamond_pickaxe.png and b/mods/default/textures/items/diamond_pickaxe.png differ diff --git a/mods/default/textures/items/diamond_shovel.png b/mods/default/textures/items/diamond_shovel.png index 5c9d07189..3930a92e1 100644 Binary files a/mods/default/textures/items/diamond_shovel.png and b/mods/default/textures/items/diamond_shovel.png differ diff --git a/mods/default/textures/items/diamond_sword.png b/mods/default/textures/items/diamond_sword.png index d701a4fa6..80e4c3204 100644 Binary files a/mods/default/textures/items/diamond_sword.png and b/mods/default/textures/items/diamond_sword.png differ diff --git a/mods/default/textures/items/door_wood.png b/mods/default/textures/items/door_wood.png index b929d7c50..6e825da90 100644 Binary files a/mods/default/textures/items/door_wood.png and b/mods/default/textures/items/door_wood.png differ diff --git a/mods/default/textures/items/egg.png b/mods/default/textures/items/egg.png new file mode 100644 index 000000000..eb8db8bfa Binary files /dev/null and b/mods/default/textures/items/egg.png differ diff --git a/mods/default/textures/items/emerald.png b/mods/default/textures/items/emerald.png new file mode 100644 index 000000000..862bdbd6c Binary files /dev/null and b/mods/default/textures/items/emerald.png differ diff --git a/mods/default/textures/items/feather.png b/mods/default/textures/items/feather.png new file mode 100644 index 000000000..3dde794cc Binary files /dev/null and b/mods/default/textures/items/feather.png differ diff --git a/mods/default/textures/items/fish_clownfish_raw.png b/mods/default/textures/items/fish_clownfish_raw.png new file mode 100644 index 000000000..dace29379 Binary files /dev/null and b/mods/default/textures/items/fish_clownfish_raw.png differ diff --git a/mods/default/textures/items/fish_cod_cooked.png b/mods/default/textures/items/fish_cod_cooked.png new file mode 100644 index 000000000..357c0209c Binary files /dev/null and b/mods/default/textures/items/fish_cod_cooked.png differ diff --git a/mods/default/textures/items/fish_cod_raw.png b/mods/default/textures/items/fish_cod_raw.png new file mode 100644 index 000000000..f44300098 Binary files /dev/null and b/mods/default/textures/items/fish_cod_raw.png differ diff --git a/mods/default/textures/items/fish_pufferfish_raw.png b/mods/default/textures/items/fish_pufferfish_raw.png new file mode 100644 index 000000000..fe1d8faf7 Binary files /dev/null and b/mods/default/textures/items/fish_pufferfish_raw.png differ diff --git a/mods/default/textures/items/fish_salmon_cooked.png b/mods/default/textures/items/fish_salmon_cooked.png new file mode 100644 index 000000000..7929f1d6c Binary files /dev/null and b/mods/default/textures/items/fish_salmon_cooked.png differ diff --git a/mods/default/textures/items/fish_salmon_raw.png b/mods/default/textures/items/fish_salmon_raw.png new file mode 100644 index 000000000..36ba5c75b Binary files /dev/null and b/mods/default/textures/items/fish_salmon_raw.png differ diff --git a/mods/default/textures/items/flint.png b/mods/default/textures/items/flint.png new file mode 100644 index 000000000..0cf7b191b Binary files /dev/null and b/mods/default/textures/items/flint.png differ diff --git a/mods/default/textures/items/glowstone_dust.png b/mods/default/textures/items/glowstone_dust.png new file mode 100644 index 000000000..0c0694aa0 Binary files /dev/null and b/mods/default/textures/items/glowstone_dust.png differ diff --git a/mods/default/textures/items/gold_ingot.png b/mods/default/textures/items/gold_ingot.png index ec63cf3cb..5e166bf0c 100644 Binary files a/mods/default/textures/items/gold_ingot.png and b/mods/default/textures/items/gold_ingot.png differ diff --git a/mods/default/textures/items/gold_nugget.png b/mods/default/textures/items/gold_nugget.png new file mode 100644 index 000000000..35192f247 Binary files /dev/null and b/mods/default/textures/items/gold_nugget.png differ diff --git a/mods/default/textures/items/golden_axe.png b/mods/default/textures/items/golden_axe.png index 7b575796c..f8457b3c9 100644 Binary files a/mods/default/textures/items/golden_axe.png and b/mods/default/textures/items/golden_axe.png differ diff --git a/mods/default/textures/items/golden_carrot.png b/mods/default/textures/items/golden_carrot.png new file mode 100644 index 000000000..8e8449ede Binary files /dev/null and b/mods/default/textures/items/golden_carrot.png differ diff --git a/mods/default/textures/items/golden_hoe.png b/mods/default/textures/items/golden_hoe.png index 788380f96..65bcea03b 100644 Binary files a/mods/default/textures/items/golden_hoe.png and b/mods/default/textures/items/golden_hoe.png differ diff --git a/mods/default/textures/items/golden_pickaxe.png b/mods/default/textures/items/golden_pickaxe.png index 4052e3e86..4de4f7770 100644 Binary files a/mods/default/textures/items/golden_pickaxe.png and b/mods/default/textures/items/golden_pickaxe.png differ diff --git a/mods/default/textures/items/golden_shovel.png b/mods/default/textures/items/golden_shovel.png index c091f7b71..e592ddeca 100644 Binary files a/mods/default/textures/items/golden_shovel.png and b/mods/default/textures/items/golden_shovel.png differ diff --git a/mods/default/textures/items/golden_sword.png b/mods/default/textures/items/golden_sword.png index 7f65bf75e..b47c63f6c 100644 Binary files a/mods/default/textures/items/golden_sword.png and b/mods/default/textures/items/golden_sword.png differ diff --git a/mods/default/textures/items/iron_axe.png b/mods/default/textures/items/iron_axe.png index b70b5d9fd..a9f349087 100644 Binary files a/mods/default/textures/items/iron_axe.png and b/mods/default/textures/items/iron_axe.png differ diff --git a/mods/default/textures/items/iron_hoe.png b/mods/default/textures/items/iron_hoe.png index 823f13b6e..3dd76dec9 100644 Binary files a/mods/default/textures/items/iron_hoe.png and b/mods/default/textures/items/iron_hoe.png differ diff --git a/mods/default/textures/items/iron_ingot.png b/mods/default/textures/items/iron_ingot.png index 0b45a9d4e..7a872e418 100644 Binary files a/mods/default/textures/items/iron_ingot.png and b/mods/default/textures/items/iron_ingot.png differ diff --git a/mods/default/textures/items/iron_nugget.png b/mods/default/textures/items/iron_nugget.png new file mode 100644 index 000000000..fe0852710 Binary files /dev/null and b/mods/default/textures/items/iron_nugget.png differ diff --git a/mods/default/textures/items/iron_pickaxe.png b/mods/default/textures/items/iron_pickaxe.png index 02fed1a06..d631f0830 100644 Binary files a/mods/default/textures/items/iron_pickaxe.png and b/mods/default/textures/items/iron_pickaxe.png differ diff --git a/mods/default/textures/items/iron_shovel.png b/mods/default/textures/items/iron_shovel.png index ea26fe1ce..c3b57bec7 100644 Binary files a/mods/default/textures/items/iron_shovel.png and b/mods/default/textures/items/iron_shovel.png differ diff --git a/mods/default/textures/items/iron_sword.png b/mods/default/textures/items/iron_sword.png index ece5c9494..caa7d993b 100644 Binary files a/mods/default/textures/items/iron_sword.png and b/mods/default/textures/items/iron_sword.png differ diff --git a/mods/default/textures/items/lapis_lazuli.png b/mods/default/textures/items/lapis_lazuli.png new file mode 100644 index 000000000..12fcb5ecd Binary files /dev/null and b/mods/default/textures/items/lapis_lazuli.png differ diff --git a/mods/default/textures/items/leather.png b/mods/default/textures/items/leather.png new file mode 100644 index 000000000..c68fc2130 Binary files /dev/null and b/mods/default/textures/items/leather.png differ diff --git a/mods/default/textures/items/magma_cream.png b/mods/default/textures/items/magma_cream.png new file mode 100644 index 000000000..468dfbf2d Binary files /dev/null and b/mods/default/textures/items/magma_cream.png differ diff --git a/mods/default/textures/items/melon.png b/mods/default/textures/items/melon.png new file mode 100644 index 000000000..879da50e4 Binary files /dev/null and b/mods/default/textures/items/melon.png differ diff --git a/mods/default/textures/items/melon_speckled.png b/mods/default/textures/items/melon_speckled.png new file mode 100644 index 000000000..2e49afe58 Binary files /dev/null and b/mods/default/textures/items/melon_speckled.png differ diff --git a/mods/default/textures/items/mushroom_stew.png b/mods/default/textures/items/mushroom_stew.png new file mode 100644 index 000000000..d596283bf Binary files /dev/null and b/mods/default/textures/items/mushroom_stew.png differ diff --git a/mods/default/textures/items/mutton_cooked.png b/mods/default/textures/items/mutton_cooked.png new file mode 100644 index 000000000..4ece81d5a Binary files /dev/null and b/mods/default/textures/items/mutton_cooked.png differ diff --git a/mods/default/textures/items/mutton_raw.png b/mods/default/textures/items/mutton_raw.png new file mode 100644 index 000000000..1e9da5ce3 Binary files /dev/null and b/mods/default/textures/items/mutton_raw.png differ diff --git a/mods/default/textures/items/nether_wart.png b/mods/default/textures/items/nether_wart.png new file mode 100644 index 000000000..e00fdb773 Binary files /dev/null and b/mods/default/textures/items/nether_wart.png differ diff --git a/mods/default/textures/items/netherbrick.png b/mods/default/textures/items/netherbrick.png new file mode 100644 index 000000000..9835ffd7e Binary files /dev/null and b/mods/default/textures/items/netherbrick.png differ diff --git a/mods/default/textures/items/paper.png b/mods/default/textures/items/paper.png new file mode 100644 index 000000000..27ef8b007 Binary files /dev/null and b/mods/default/textures/items/paper.png differ diff --git a/mods/default/textures/items/porkchop_cooked.png b/mods/default/textures/items/porkchop_cooked.png new file mode 100644 index 000000000..062fefc88 Binary files /dev/null and b/mods/default/textures/items/porkchop_cooked.png differ diff --git a/mods/default/textures/items/porkchop_raw.png b/mods/default/textures/items/porkchop_raw.png new file mode 100644 index 000000000..9d0e3cd2c Binary files /dev/null and b/mods/default/textures/items/porkchop_raw.png differ diff --git a/mods/default/textures/items/potato.png b/mods/default/textures/items/potato.png new file mode 100644 index 000000000..c4ad0dfda Binary files /dev/null and b/mods/default/textures/items/potato.png differ diff --git a/mods/default/textures/items/potato_baked.png b/mods/default/textures/items/potato_baked.png new file mode 100644 index 000000000..b4e47da7b Binary files /dev/null and b/mods/default/textures/items/potato_baked.png differ diff --git a/mods/default/textures/items/potato_poisonous.png b/mods/default/textures/items/potato_poisonous.png new file mode 100644 index 000000000..23edb5f23 Binary files /dev/null and b/mods/default/textures/items/potato_poisonous.png differ diff --git a/mods/default/textures/items/pumpkin_pie.png b/mods/default/textures/items/pumpkin_pie.png new file mode 100644 index 000000000..266907daa Binary files /dev/null and b/mods/default/textures/items/pumpkin_pie.png differ diff --git a/mods/default/textures/items/rabbit_cooked.png b/mods/default/textures/items/rabbit_cooked.png new file mode 100644 index 000000000..2ce4a7415 Binary files /dev/null and b/mods/default/textures/items/rabbit_cooked.png differ diff --git a/mods/default/textures/items/rabbit_foot.png b/mods/default/textures/items/rabbit_foot.png new file mode 100644 index 000000000..ff3efd357 Binary files /dev/null and b/mods/default/textures/items/rabbit_foot.png differ diff --git a/mods/default/textures/items/rabbit_hide.png b/mods/default/textures/items/rabbit_hide.png new file mode 100644 index 000000000..c9fce8ee1 Binary files /dev/null and b/mods/default/textures/items/rabbit_hide.png differ diff --git a/mods/default/textures/items/rabbit_raw.png b/mods/default/textures/items/rabbit_raw.png new file mode 100644 index 000000000..40b1dbfe4 Binary files /dev/null and b/mods/default/textures/items/rabbit_raw.png differ diff --git a/mods/default/textures/items/rabbit_stew.png b/mods/default/textures/items/rabbit_stew.png new file mode 100644 index 000000000..fd8e0cd30 Binary files /dev/null and b/mods/default/textures/items/rabbit_stew.png differ diff --git a/mods/default/textures/items/redstone_dust.png b/mods/default/textures/items/redstone_dust.png new file mode 100644 index 000000000..9e9534f92 Binary files /dev/null and b/mods/default/textures/items/redstone_dust.png differ diff --git a/mods/default/textures/items/reeds_item.png b/mods/default/textures/items/reeds_item.png index 3c7d3f6bf..ded5a6498 100644 Binary files a/mods/default/textures/items/reeds_item.png and b/mods/default/textures/items/reeds_item.png differ diff --git a/mods/default/textures/items/rotten_flesh.png b/mods/default/textures/items/rotten_flesh.png new file mode 100644 index 000000000..9d655c950 Binary files /dev/null and b/mods/default/textures/items/rotten_flesh.png differ diff --git a/mods/default/textures/items/seeds_melon.png b/mods/default/textures/items/seeds_melon.png new file mode 100644 index 000000000..6934acbf4 Binary files /dev/null and b/mods/default/textures/items/seeds_melon.png differ diff --git a/mods/default/textures/items/seeds_pumpkin.png b/mods/default/textures/items/seeds_pumpkin.png new file mode 100644 index 000000000..6672fd663 Binary files /dev/null and b/mods/default/textures/items/seeds_pumpkin.png differ diff --git a/mods/default/textures/items/seeds_wheat.png b/mods/default/textures/items/seeds_wheat.png index 5073bdda5..80dc4744c 100644 Binary files a/mods/default/textures/items/seeds_wheat.png and b/mods/default/textures/items/seeds_wheat.png differ diff --git a/mods/default/textures/items/slimeball.png b/mods/default/textures/items/slimeball.png new file mode 100644 index 000000000..be56e3561 Binary files /dev/null and b/mods/default/textures/items/slimeball.png differ diff --git a/mods/default/textures/items/snowball.png b/mods/default/textures/items/snowball.png new file mode 100644 index 000000000..dc21552cf Binary files /dev/null and b/mods/default/textures/items/snowball.png differ diff --git a/mods/default/textures/items/spider_eye.png b/mods/default/textures/items/spider_eye.png new file mode 100644 index 000000000..5a4a05cb2 Binary files /dev/null and b/mods/default/textures/items/spider_eye.png differ diff --git a/mods/default/textures/items/spider_eye_fermented.png b/mods/default/textures/items/spider_eye_fermented.png new file mode 100644 index 000000000..d74d56da3 Binary files /dev/null and b/mods/default/textures/items/spider_eye_fermented.png differ diff --git a/mods/default/textures/items/string.png b/mods/default/textures/items/string.png new file mode 100644 index 000000000..e32d2c90f Binary files /dev/null and b/mods/default/textures/items/string.png differ diff --git a/mods/default/textures/items/sugar.png b/mods/default/textures/items/sugar.png new file mode 100644 index 000000000..c3ba978c2 Binary files /dev/null and b/mods/default/textures/items/sugar.png differ diff --git a/mods/default/textures/items/wheat.png b/mods/default/textures/items/wheat.png index a4fb96c4d..311850c19 100644 Binary files a/mods/default/textures/items/wheat.png and b/mods/default/textures/items/wheat.png differ diff --git a/texturepacks/minecraft/blocks/bookshelf.png b/texturepacks/minecraft/blocks/bookshelf.png new file mode 100644 index 000000000..7ac3737ae Binary files /dev/null and b/texturepacks/minecraft/blocks/bookshelf.png differ diff --git a/texturepacks/minecraft/blocks/chiseled_red_sandstone.png b/texturepacks/minecraft/blocks/chiseled_red_sandstone.png new file mode 100644 index 000000000..c86e0e95b Binary files /dev/null and b/texturepacks/minecraft/blocks/chiseled_red_sandstone.png differ diff --git a/texturepacks/minecraft/blocks/chiseled_sandstone.png b/texturepacks/minecraft/blocks/chiseled_sandstone.png new file mode 100644 index 000000000..9bd7fa142 Binary files /dev/null and b/texturepacks/minecraft/blocks/chiseled_sandstone.png differ diff --git a/texturepacks/minecraft/blocks/coal_block.png b/texturepacks/minecraft/blocks/coal_block.png new file mode 100644 index 000000000..d440bb9ae Binary files /dev/null and b/texturepacks/minecraft/blocks/coal_block.png differ diff --git a/texturepacks/minecraft/blocks/cobblestone_mossy.png b/texturepacks/minecraft/blocks/cobblestone_mossy.png new file mode 100644 index 000000000..dd479fff0 Binary files /dev/null and b/texturepacks/minecraft/blocks/cobblestone_mossy.png differ diff --git a/texturepacks/minecraft/blocks/cut_red_sandstone.png b/texturepacks/minecraft/blocks/cut_red_sandstone.png new file mode 100644 index 000000000..795853129 Binary files /dev/null and b/texturepacks/minecraft/blocks/cut_red_sandstone.png differ diff --git a/texturepacks/minecraft/blocks/cut_sandstone.png b/texturepacks/minecraft/blocks/cut_sandstone.png new file mode 100644 index 000000000..ef118bdc3 Binary files /dev/null and b/texturepacks/minecraft/blocks/cut_sandstone.png differ diff --git a/texturepacks/minecraft/blocks/diamond_block.png b/texturepacks/minecraft/blocks/diamond_block.png new file mode 100644 index 000000000..d8663d365 Binary files /dev/null and b/texturepacks/minecraft/blocks/diamond_block.png differ diff --git a/texturepacks/minecraft/blocks/diamond_ore.png b/texturepacks/minecraft/blocks/diamond_ore.png new file mode 100644 index 000000000..735ecdaa9 Binary files /dev/null and b/texturepacks/minecraft/blocks/diamond_ore.png differ diff --git a/texturepacks/minecraft/blocks/emerald_block.png b/texturepacks/minecraft/blocks/emerald_block.png new file mode 100644 index 000000000..dc214ee7e Binary files /dev/null and b/texturepacks/minecraft/blocks/emerald_block.png differ diff --git a/texturepacks/minecraft/blocks/emerald_ore.png b/texturepacks/minecraft/blocks/emerald_ore.png new file mode 100644 index 000000000..db820dd13 Binary files /dev/null and b/texturepacks/minecraft/blocks/emerald_ore.png differ diff --git a/texturepacks/minecraft/blocks/end_bricks.png b/texturepacks/minecraft/blocks/end_bricks.png new file mode 100644 index 000000000..b8a99a821 Binary files /dev/null and b/texturepacks/minecraft/blocks/end_bricks.png differ diff --git a/texturepacks/minecraft/blocks/end_stone.png b/texturepacks/minecraft/blocks/end_stone.png new file mode 100644 index 000000000..c2a91e3c6 Binary files /dev/null and b/texturepacks/minecraft/blocks/end_stone.png differ diff --git a/texturepacks/minecraft/blocks/end_stone_bricks.png b/texturepacks/minecraft/blocks/end_stone_bricks.png new file mode 100644 index 000000000..b8a99a821 Binary files /dev/null and b/texturepacks/minecraft/blocks/end_stone_bricks.png differ diff --git a/texturepacks/minecraft/blocks/gold_block.png b/texturepacks/minecraft/blocks/gold_block.png new file mode 100644 index 000000000..4d233c763 Binary files /dev/null and b/texturepacks/minecraft/blocks/gold_block.png differ diff --git a/texturepacks/minecraft/blocks/gold_ore.png b/texturepacks/minecraft/blocks/gold_ore.png new file mode 100644 index 000000000..b1a7a55b1 Binary files /dev/null and b/texturepacks/minecraft/blocks/gold_ore.png differ diff --git a/texturepacks/minecraft/blocks/hay_block_side.png b/texturepacks/minecraft/blocks/hay_block_side.png new file mode 100644 index 000000000..342d8fee5 Binary files /dev/null and b/texturepacks/minecraft/blocks/hay_block_side.png differ diff --git a/texturepacks/minecraft/blocks/hay_block_top.png b/texturepacks/minecraft/blocks/hay_block_top.png new file mode 100644 index 000000000..3c74f6f31 Binary files /dev/null and b/texturepacks/minecraft/blocks/hay_block_top.png differ diff --git a/texturepacks/minecraft/blocks/ice.png b/texturepacks/minecraft/blocks/ice.png new file mode 100644 index 000000000..ac946e95d Binary files /dev/null and b/texturepacks/minecraft/blocks/ice.png differ diff --git a/texturepacks/minecraft/blocks/iron_block.png b/texturepacks/minecraft/blocks/iron_block.png new file mode 100644 index 000000000..7816799ef Binary files /dev/null and b/texturepacks/minecraft/blocks/iron_block.png differ diff --git a/texturepacks/minecraft/blocks/lapis_block.png b/texturepacks/minecraft/blocks/lapis_block.png new file mode 100644 index 000000000..24810ac9c Binary files /dev/null and b/texturepacks/minecraft/blocks/lapis_block.png differ diff --git a/texturepacks/minecraft/blocks/lapis_ore.png b/texturepacks/minecraft/blocks/lapis_ore.png new file mode 100644 index 000000000..7e293cfcf Binary files /dev/null and b/texturepacks/minecraft/blocks/lapis_ore.png differ diff --git a/texturepacks/minecraft/blocks/mossy_cobblestone.png b/texturepacks/minecraft/blocks/mossy_cobblestone.png new file mode 100644 index 000000000..dd479fff0 Binary files /dev/null and b/texturepacks/minecraft/blocks/mossy_cobblestone.png differ diff --git a/texturepacks/minecraft/blocks/mossy_stone_bricks.png b/texturepacks/minecraft/blocks/mossy_stone_bricks.png new file mode 100644 index 000000000..fc67b4a9b Binary files /dev/null and b/texturepacks/minecraft/blocks/mossy_stone_bricks.png differ diff --git a/texturepacks/minecraft/blocks/nether_bricks.png b/texturepacks/minecraft/blocks/nether_bricks.png new file mode 100644 index 000000000..5482be14e Binary files /dev/null and b/texturepacks/minecraft/blocks/nether_bricks.png differ diff --git a/texturepacks/minecraft/blocks/nether_wart_stage_0.png b/texturepacks/minecraft/blocks/nether_wart_stage_0.png new file mode 100644 index 000000000..514a95be2 Binary files /dev/null and b/texturepacks/minecraft/blocks/nether_wart_stage_0.png differ diff --git a/texturepacks/minecraft/blocks/nether_wart_stage_1.png b/texturepacks/minecraft/blocks/nether_wart_stage_1.png new file mode 100644 index 000000000..b4ad0d1e0 Binary files /dev/null and b/texturepacks/minecraft/blocks/nether_wart_stage_1.png differ diff --git a/texturepacks/minecraft/blocks/nether_wart_stage_2.png b/texturepacks/minecraft/blocks/nether_wart_stage_2.png new file mode 100644 index 000000000..b9b674315 Binary files /dev/null and b/texturepacks/minecraft/blocks/nether_wart_stage_2.png differ diff --git a/texturepacks/minecraft/blocks/red_nether_brick.png b/texturepacks/minecraft/blocks/red_nether_brick.png new file mode 100644 index 000000000..ef287dee9 Binary files /dev/null and b/texturepacks/minecraft/blocks/red_nether_brick.png differ diff --git a/texturepacks/minecraft/blocks/red_sand.png b/texturepacks/minecraft/blocks/red_sand.png new file mode 100644 index 000000000..096ed0ee3 Binary files /dev/null and b/texturepacks/minecraft/blocks/red_sand.png differ diff --git a/texturepacks/minecraft/blocks/red_sandstone.png b/texturepacks/minecraft/blocks/red_sandstone.png new file mode 100644 index 000000000..30783bd7c Binary files /dev/null and b/texturepacks/minecraft/blocks/red_sandstone.png differ diff --git a/texturepacks/minecraft/blocks/red_sandstone_bottom.png b/texturepacks/minecraft/blocks/red_sandstone_bottom.png new file mode 100644 index 000000000..864370fd6 Binary files /dev/null and b/texturepacks/minecraft/blocks/red_sandstone_bottom.png differ diff --git a/texturepacks/minecraft/blocks/red_sandstone_carved.png b/texturepacks/minecraft/blocks/red_sandstone_carved.png new file mode 100644 index 000000000..c86e0e95b Binary files /dev/null and b/texturepacks/minecraft/blocks/red_sandstone_carved.png differ diff --git a/texturepacks/minecraft/blocks/red_sandstone_normal.png b/texturepacks/minecraft/blocks/red_sandstone_normal.png new file mode 100644 index 000000000..30783bd7c Binary files /dev/null and b/texturepacks/minecraft/blocks/red_sandstone_normal.png differ diff --git a/texturepacks/minecraft/blocks/red_sandstone_smooth.png b/texturepacks/minecraft/blocks/red_sandstone_smooth.png new file mode 100644 index 000000000..795853129 Binary files /dev/null and b/texturepacks/minecraft/blocks/red_sandstone_smooth.png differ diff --git a/texturepacks/minecraft/blocks/red_sandstone_top.png b/texturepacks/minecraft/blocks/red_sandstone_top.png new file mode 100644 index 000000000..bf231481f Binary files /dev/null and b/texturepacks/minecraft/blocks/red_sandstone_top.png differ diff --git a/texturepacks/minecraft/blocks/redstone_block.png b/texturepacks/minecraft/blocks/redstone_block.png new file mode 100644 index 000000000..57fb02b9d Binary files /dev/null and b/texturepacks/minecraft/blocks/redstone_block.png differ diff --git a/texturepacks/minecraft/blocks/redstone_ore.png b/texturepacks/minecraft/blocks/redstone_ore.png new file mode 100644 index 000000000..575a48880 Binary files /dev/null and b/texturepacks/minecraft/blocks/redstone_ore.png differ diff --git a/texturepacks/minecraft/blocks/sandstone.png b/texturepacks/minecraft/blocks/sandstone.png new file mode 100644 index 000000000..1b79145ff Binary files /dev/null and b/texturepacks/minecraft/blocks/sandstone.png differ diff --git a/texturepacks/minecraft/blocks/sandstone_bottom.png b/texturepacks/minecraft/blocks/sandstone_bottom.png new file mode 100644 index 000000000..e1022209c Binary files /dev/null and b/texturepacks/minecraft/blocks/sandstone_bottom.png differ diff --git a/texturepacks/minecraft/blocks/sandstone_carved.png b/texturepacks/minecraft/blocks/sandstone_carved.png new file mode 100644 index 000000000..9bd7fa142 Binary files /dev/null and b/texturepacks/minecraft/blocks/sandstone_carved.png differ diff --git a/texturepacks/minecraft/blocks/sandstone_normal.png b/texturepacks/minecraft/blocks/sandstone_normal.png new file mode 100644 index 000000000..1b79145ff Binary files /dev/null and b/texturepacks/minecraft/blocks/sandstone_normal.png differ diff --git a/texturepacks/minecraft/blocks/sandstone_smooth.png b/texturepacks/minecraft/blocks/sandstone_smooth.png new file mode 100644 index 000000000..ef118bdc3 Binary files /dev/null and b/texturepacks/minecraft/blocks/sandstone_smooth.png differ diff --git a/texturepacks/minecraft/blocks/sandstone_top.png b/texturepacks/minecraft/blocks/sandstone_top.png new file mode 100644 index 000000000..74838777d Binary files /dev/null and b/texturepacks/minecraft/blocks/sandstone_top.png differ diff --git a/texturepacks/minecraft/blocks/slime.png b/texturepacks/minecraft/blocks/slime.png new file mode 100644 index 000000000..c577a5a9e Binary files /dev/null and b/texturepacks/minecraft/blocks/slime.png differ diff --git a/texturepacks/minecraft/blocks/snow.png b/texturepacks/minecraft/blocks/snow.png new file mode 100644 index 000000000..d1a14162b Binary files /dev/null and b/texturepacks/minecraft/blocks/snow.png differ diff --git a/texturepacks/minecraft/blocks/stone_andesite.png b/texturepacks/minecraft/blocks/stone_andesite.png new file mode 100644 index 000000000..01ba4a181 Binary files /dev/null and b/texturepacks/minecraft/blocks/stone_andesite.png differ diff --git a/texturepacks/minecraft/blocks/stone_diorite.png b/texturepacks/minecraft/blocks/stone_diorite.png new file mode 100644 index 000000000..3d752ddc1 Binary files /dev/null and b/texturepacks/minecraft/blocks/stone_diorite.png differ diff --git a/texturepacks/minecraft/blocks/stone_granite.png b/texturepacks/minecraft/blocks/stone_granite.png new file mode 100644 index 000000000..269c4a1f8 Binary files /dev/null and b/texturepacks/minecraft/blocks/stone_granite.png differ diff --git a/texturepacks/minecraft/blocks/stonebrick.png b/texturepacks/minecraft/blocks/stonebrick.png new file mode 100644 index 000000000..69138cf23 Binary files /dev/null and b/texturepacks/minecraft/blocks/stonebrick.png differ diff --git a/texturepacks/minecraft/blocks/stonebrick_carved.png b/texturepacks/minecraft/blocks/stonebrick_carved.png new file mode 100644 index 000000000..b7e88db29 Binary files /dev/null and b/texturepacks/minecraft/blocks/stonebrick_carved.png differ diff --git a/texturepacks/minecraft/blocks/stonebrick_cracked.png b/texturepacks/minecraft/blocks/stonebrick_cracked.png new file mode 100644 index 000000000..918a88456 Binary files /dev/null and b/texturepacks/minecraft/blocks/stonebrick_cracked.png differ diff --git a/texturepacks/minecraft/blocks/stonebrick_mossy.png b/texturepacks/minecraft/blocks/stonebrick_mossy.png new file mode 100644 index 000000000..fc67b4a9b Binary files /dev/null and b/texturepacks/minecraft/blocks/stonebrick_mossy.png differ diff --git a/texturepacks/minecraft/items/apple.png b/texturepacks/minecraft/items/apple.png new file mode 100644 index 000000000..3e2ee59f3 Binary files /dev/null and b/texturepacks/minecraft/items/apple.png differ diff --git a/texturepacks/minecraft/items/apple_golden.png b/texturepacks/minecraft/items/apple_golden.png new file mode 100644 index 000000000..620198981 Binary files /dev/null and b/texturepacks/minecraft/items/apple_golden.png differ diff --git a/texturepacks/minecraft/items/arrow.png b/texturepacks/minecraft/items/arrow.png new file mode 100644 index 000000000..4f748a002 Binary files /dev/null and b/texturepacks/minecraft/items/arrow.png differ diff --git a/texturepacks/minecraft/items/baked_potato.png b/texturepacks/minecraft/items/baked_potato.png new file mode 100644 index 000000000..6d12e98e9 Binary files /dev/null and b/texturepacks/minecraft/items/baked_potato.png differ diff --git a/texturepacks/minecraft/items/beef_cooked.png b/texturepacks/minecraft/items/beef_cooked.png new file mode 100644 index 000000000..1ecff370d Binary files /dev/null and b/texturepacks/minecraft/items/beef_cooked.png differ diff --git a/texturepacks/minecraft/items/beef_raw.png b/texturepacks/minecraft/items/beef_raw.png new file mode 100644 index 000000000..82af4e7ec Binary files /dev/null and b/texturepacks/minecraft/items/beef_raw.png differ diff --git a/texturepacks/minecraft/items/beetroot.png b/texturepacks/minecraft/items/beetroot.png new file mode 100644 index 000000000..390fac5d1 Binary files /dev/null and b/texturepacks/minecraft/items/beetroot.png differ diff --git a/texturepacks/minecraft/items/beetroot_seeds.png b/texturepacks/minecraft/items/beetroot_seeds.png new file mode 100644 index 000000000..067cb098f Binary files /dev/null and b/texturepacks/minecraft/items/beetroot_seeds.png differ diff --git a/texturepacks/minecraft/items/beetroot_soup.png b/texturepacks/minecraft/items/beetroot_soup.png new file mode 100644 index 000000000..51eaa57cc Binary files /dev/null and b/texturepacks/minecraft/items/beetroot_soup.png differ diff --git a/texturepacks/minecraft/items/blaze_powder.png b/texturepacks/minecraft/items/blaze_powder.png new file mode 100644 index 000000000..89c57d6ea Binary files /dev/null and b/texturepacks/minecraft/items/blaze_powder.png differ diff --git a/texturepacks/minecraft/items/blaze_rod.png b/texturepacks/minecraft/items/blaze_rod.png new file mode 100644 index 000000000..7050e10f0 Binary files /dev/null and b/texturepacks/minecraft/items/blaze_rod.png differ diff --git a/texturepacks/minecraft/items/bone.png b/texturepacks/minecraft/items/bone.png new file mode 100644 index 000000000..40afdfc99 Binary files /dev/null and b/texturepacks/minecraft/items/bone.png differ diff --git a/texturepacks/minecraft/items/bone_meal.png b/texturepacks/minecraft/items/bone_meal.png new file mode 100644 index 000000000..5b1833bea Binary files /dev/null and b/texturepacks/minecraft/items/bone_meal.png differ diff --git a/texturepacks/minecraft/items/book_normal.png b/texturepacks/minecraft/items/book_normal.png new file mode 100644 index 000000000..f791ae43f Binary files /dev/null and b/texturepacks/minecraft/items/book_normal.png differ diff --git a/texturepacks/minecraft/items/bowl.png b/texturepacks/minecraft/items/bowl.png new file mode 100644 index 000000000..63d16ad6b Binary files /dev/null and b/texturepacks/minecraft/items/bowl.png differ diff --git a/texturepacks/minecraft/items/bucket_empty.png b/texturepacks/minecraft/items/bucket_empty.png new file mode 100644 index 000000000..f8e536923 Binary files /dev/null and b/texturepacks/minecraft/items/bucket_empty.png differ diff --git a/texturepacks/minecraft/items/bucket_lava.png b/texturepacks/minecraft/items/bucket_lava.png new file mode 100644 index 000000000..13a195700 Binary files /dev/null and b/texturepacks/minecraft/items/bucket_lava.png differ diff --git a/texturepacks/minecraft/items/bucket_milk.png b/texturepacks/minecraft/items/bucket_milk.png new file mode 100644 index 000000000..c77d92c53 Binary files /dev/null and b/texturepacks/minecraft/items/bucket_milk.png differ diff --git a/texturepacks/minecraft/items/bucket_water.png b/texturepacks/minecraft/items/bucket_water.png new file mode 100644 index 000000000..2f36accb8 Binary files /dev/null and b/texturepacks/minecraft/items/bucket_water.png differ diff --git a/texturepacks/minecraft/items/carrot.png b/texturepacks/minecraft/items/carrot.png new file mode 100644 index 000000000..2d08aab9f Binary files /dev/null and b/texturepacks/minecraft/items/carrot.png differ diff --git a/texturepacks/minecraft/items/carrot_golden.png b/texturepacks/minecraft/items/carrot_golden.png new file mode 100644 index 000000000..e0f1ea624 Binary files /dev/null and b/texturepacks/minecraft/items/carrot_golden.png differ diff --git a/texturepacks/minecraft/items/chicken_cooked.png b/texturepacks/minecraft/items/chicken_cooked.png new file mode 100644 index 000000000..890b5b3f7 Binary files /dev/null and b/texturepacks/minecraft/items/chicken_cooked.png differ diff --git a/texturepacks/minecraft/items/chicken_raw.png b/texturepacks/minecraft/items/chicken_raw.png new file mode 100644 index 000000000..6d259224b Binary files /dev/null and b/texturepacks/minecraft/items/chicken_raw.png differ diff --git a/texturepacks/minecraft/items/cod.png b/texturepacks/minecraft/items/cod.png new file mode 100644 index 000000000..ec50d33ce Binary files /dev/null and b/texturepacks/minecraft/items/cod.png differ diff --git a/texturepacks/minecraft/items/cooked_cod.png b/texturepacks/minecraft/items/cooked_cod.png new file mode 100644 index 000000000..87564c705 Binary files /dev/null and b/texturepacks/minecraft/items/cooked_cod.png differ diff --git a/texturepacks/minecraft/items/cooked_mutton.png b/texturepacks/minecraft/items/cooked_mutton.png new file mode 100644 index 000000000..87e6632a0 Binary files /dev/null and b/texturepacks/minecraft/items/cooked_mutton.png differ diff --git a/texturepacks/minecraft/items/cooked_porkchop.png b/texturepacks/minecraft/items/cooked_porkchop.png new file mode 100644 index 000000000..a355cd0c0 Binary files /dev/null and b/texturepacks/minecraft/items/cooked_porkchop.png differ diff --git a/texturepacks/minecraft/items/cooked_rabbit.png b/texturepacks/minecraft/items/cooked_rabbit.png new file mode 100644 index 000000000..3fbc5f2bf Binary files /dev/null and b/texturepacks/minecraft/items/cooked_rabbit.png differ diff --git a/texturepacks/minecraft/items/cooked_salmon.png b/texturepacks/minecraft/items/cooked_salmon.png new file mode 100644 index 000000000..230a101db Binary files /dev/null and b/texturepacks/minecraft/items/cooked_salmon.png differ diff --git a/texturepacks/minecraft/items/cookie.png b/texturepacks/minecraft/items/cookie.png new file mode 100644 index 000000000..01fe56b13 Binary files /dev/null and b/texturepacks/minecraft/items/cookie.png differ diff --git a/texturepacks/minecraft/items/egg.png b/texturepacks/minecraft/items/egg.png new file mode 100644 index 000000000..a6fe2bfa3 Binary files /dev/null and b/texturepacks/minecraft/items/egg.png differ diff --git a/texturepacks/minecraft/items/emerald.png b/texturepacks/minecraft/items/emerald.png new file mode 100644 index 000000000..98d953e26 Binary files /dev/null and b/texturepacks/minecraft/items/emerald.png differ diff --git a/texturepacks/minecraft/items/feather.png b/texturepacks/minecraft/items/feather.png new file mode 100644 index 000000000..d4c3be555 Binary files /dev/null and b/texturepacks/minecraft/items/feather.png differ diff --git a/texturepacks/minecraft/items/fish_clownfish_raw.png b/texturepacks/minecraft/items/fish_clownfish_raw.png new file mode 100644 index 000000000..717a57ad3 Binary files /dev/null and b/texturepacks/minecraft/items/fish_clownfish_raw.png differ diff --git a/texturepacks/minecraft/items/fish_cod_cooked.png b/texturepacks/minecraft/items/fish_cod_cooked.png new file mode 100644 index 000000000..87564c705 Binary files /dev/null and b/texturepacks/minecraft/items/fish_cod_cooked.png differ diff --git a/texturepacks/minecraft/items/fish_cod_raw.png b/texturepacks/minecraft/items/fish_cod_raw.png new file mode 100644 index 000000000..ec50d33ce Binary files /dev/null and b/texturepacks/minecraft/items/fish_cod_raw.png differ diff --git a/texturepacks/minecraft/items/fish_pufferfish_raw.png b/texturepacks/minecraft/items/fish_pufferfish_raw.png new file mode 100644 index 000000000..71f22ca98 Binary files /dev/null and b/texturepacks/minecraft/items/fish_pufferfish_raw.png differ diff --git a/texturepacks/minecraft/items/fish_salmon_cooked.png b/texturepacks/minecraft/items/fish_salmon_cooked.png new file mode 100644 index 000000000..230a101db Binary files /dev/null and b/texturepacks/minecraft/items/fish_salmon_cooked.png differ diff --git a/texturepacks/minecraft/items/fish_salmon_raw.png b/texturepacks/minecraft/items/fish_salmon_raw.png new file mode 100644 index 000000000..988a8aac2 Binary files /dev/null and b/texturepacks/minecraft/items/fish_salmon_raw.png differ diff --git a/texturepacks/minecraft/items/flint.png b/texturepacks/minecraft/items/flint.png new file mode 100644 index 000000000..5f51093fb Binary files /dev/null and b/texturepacks/minecraft/items/flint.png differ diff --git a/texturepacks/minecraft/items/glowstone_dust.png b/texturepacks/minecraft/items/glowstone_dust.png new file mode 100644 index 000000000..edd93a6d6 Binary files /dev/null and b/texturepacks/minecraft/items/glowstone_dust.png differ diff --git a/texturepacks/minecraft/items/gold_nugget.png b/texturepacks/minecraft/items/gold_nugget.png new file mode 100644 index 000000000..3a9a2fe4f Binary files /dev/null and b/texturepacks/minecraft/items/gold_nugget.png differ diff --git a/texturepacks/minecraft/items/golden_carrot.png b/texturepacks/minecraft/items/golden_carrot.png new file mode 100644 index 000000000..e0f1ea624 Binary files /dev/null and b/texturepacks/minecraft/items/golden_carrot.png differ diff --git a/texturepacks/minecraft/items/iron_nugget.png b/texturepacks/minecraft/items/iron_nugget.png new file mode 100644 index 000000000..2d2aeeb97 Binary files /dev/null and b/texturepacks/minecraft/items/iron_nugget.png differ diff --git a/texturepacks/minecraft/items/lapis_lazuli.png b/texturepacks/minecraft/items/lapis_lazuli.png new file mode 100644 index 000000000..4713983ee Binary files /dev/null and b/texturepacks/minecraft/items/lapis_lazuli.png differ diff --git a/texturepacks/minecraft/items/leather.png b/texturepacks/minecraft/items/leather.png new file mode 100644 index 000000000..13dc19988 Binary files /dev/null and b/texturepacks/minecraft/items/leather.png differ diff --git a/texturepacks/minecraft/items/magma_cream.png b/texturepacks/minecraft/items/magma_cream.png new file mode 100644 index 000000000..d89b7bc5a Binary files /dev/null and b/texturepacks/minecraft/items/magma_cream.png differ diff --git a/texturepacks/minecraft/items/melon.png b/texturepacks/minecraft/items/melon.png new file mode 100644 index 000000000..590f47a20 Binary files /dev/null and b/texturepacks/minecraft/items/melon.png differ diff --git a/texturepacks/minecraft/items/melon_slice.png b/texturepacks/minecraft/items/melon_slice.png new file mode 100644 index 000000000..590f47a20 Binary files /dev/null and b/texturepacks/minecraft/items/melon_slice.png differ diff --git a/texturepacks/minecraft/items/melon_speckled.png b/texturepacks/minecraft/items/melon_speckled.png new file mode 100644 index 000000000..dee1bf563 Binary files /dev/null and b/texturepacks/minecraft/items/melon_speckled.png differ diff --git a/texturepacks/minecraft/items/mushroom_stew.png b/texturepacks/minecraft/items/mushroom_stew.png new file mode 100644 index 000000000..5598bc780 Binary files /dev/null and b/texturepacks/minecraft/items/mushroom_stew.png differ diff --git a/texturepacks/minecraft/items/mutton.png b/texturepacks/minecraft/items/mutton.png new file mode 100644 index 000000000..cedbfe2b9 Binary files /dev/null and b/texturepacks/minecraft/items/mutton.png differ diff --git a/texturepacks/minecraft/items/mutton_cooked.png b/texturepacks/minecraft/items/mutton_cooked.png new file mode 100644 index 000000000..87e6632a0 Binary files /dev/null and b/texturepacks/minecraft/items/mutton_cooked.png differ diff --git a/texturepacks/minecraft/items/mutton_raw.png b/texturepacks/minecraft/items/mutton_raw.png new file mode 100644 index 000000000..cedbfe2b9 Binary files /dev/null and b/texturepacks/minecraft/items/mutton_raw.png differ diff --git a/texturepacks/minecraft/items/nether_wart.png b/texturepacks/minecraft/items/nether_wart.png new file mode 100644 index 000000000..09da1e33f Binary files /dev/null and b/texturepacks/minecraft/items/nether_wart.png differ diff --git a/texturepacks/minecraft/items/netherbrick.png b/texturepacks/minecraft/items/netherbrick.png new file mode 100644 index 000000000..8ce4e3fc8 Binary files /dev/null and b/texturepacks/minecraft/items/netherbrick.png differ diff --git a/texturepacks/minecraft/items/paper.png b/texturepacks/minecraft/items/paper.png new file mode 100644 index 000000000..a1d9c7e2c Binary files /dev/null and b/texturepacks/minecraft/items/paper.png differ diff --git a/texturepacks/minecraft/items/poisonous_potato.png b/texturepacks/minecraft/items/poisonous_potato.png new file mode 100644 index 000000000..6f154afae Binary files /dev/null and b/texturepacks/minecraft/items/poisonous_potato.png differ diff --git a/texturepacks/minecraft/items/porkchop.png b/texturepacks/minecraft/items/porkchop.png new file mode 100644 index 000000000..6c1ef739e Binary files /dev/null and b/texturepacks/minecraft/items/porkchop.png differ diff --git a/texturepacks/minecraft/items/porkchop_cooked.png b/texturepacks/minecraft/items/porkchop_cooked.png new file mode 100644 index 000000000..a355cd0c0 Binary files /dev/null and b/texturepacks/minecraft/items/porkchop_cooked.png differ diff --git a/texturepacks/minecraft/items/porkchop_raw.png b/texturepacks/minecraft/items/porkchop_raw.png new file mode 100644 index 000000000..6c1ef739e Binary files /dev/null and b/texturepacks/minecraft/items/porkchop_raw.png differ diff --git a/texturepacks/minecraft/items/potato.png b/texturepacks/minecraft/items/potato.png new file mode 100644 index 000000000..c1d8541e1 Binary files /dev/null and b/texturepacks/minecraft/items/potato.png differ diff --git a/texturepacks/minecraft/items/potato_baked.png b/texturepacks/minecraft/items/potato_baked.png new file mode 100644 index 000000000..6d12e98e9 Binary files /dev/null and b/texturepacks/minecraft/items/potato_baked.png differ diff --git a/texturepacks/minecraft/items/potato_poisonous.png b/texturepacks/minecraft/items/potato_poisonous.png new file mode 100644 index 000000000..6f154afae Binary files /dev/null and b/texturepacks/minecraft/items/potato_poisonous.png differ diff --git a/texturepacks/minecraft/items/pufferfish.png b/texturepacks/minecraft/items/pufferfish.png new file mode 100644 index 000000000..71f22ca98 Binary files /dev/null and b/texturepacks/minecraft/items/pufferfish.png differ diff --git a/texturepacks/minecraft/items/pumpkin_pie.png b/texturepacks/minecraft/items/pumpkin_pie.png new file mode 100644 index 000000000..c21a032bd Binary files /dev/null and b/texturepacks/minecraft/items/pumpkin_pie.png differ diff --git a/texturepacks/minecraft/items/rabbit.png b/texturepacks/minecraft/items/rabbit.png new file mode 100644 index 000000000..4e7e33c12 Binary files /dev/null and b/texturepacks/minecraft/items/rabbit.png differ diff --git a/texturepacks/minecraft/items/rabbit_cooked.png b/texturepacks/minecraft/items/rabbit_cooked.png new file mode 100644 index 000000000..3fbc5f2bf Binary files /dev/null and b/texturepacks/minecraft/items/rabbit_cooked.png differ diff --git a/texturepacks/minecraft/items/rabbit_foot.png b/texturepacks/minecraft/items/rabbit_foot.png new file mode 100644 index 000000000..be1b5ef48 Binary files /dev/null and b/texturepacks/minecraft/items/rabbit_foot.png differ diff --git a/texturepacks/minecraft/items/rabbit_hide.png b/texturepacks/minecraft/items/rabbit_hide.png new file mode 100644 index 000000000..9294cc670 Binary files /dev/null and b/texturepacks/minecraft/items/rabbit_hide.png differ diff --git a/texturepacks/minecraft/items/rabbit_raw.png b/texturepacks/minecraft/items/rabbit_raw.png new file mode 100644 index 000000000..4e7e33c12 Binary files /dev/null and b/texturepacks/minecraft/items/rabbit_raw.png differ diff --git a/texturepacks/minecraft/items/rabbit_stew.png b/texturepacks/minecraft/items/rabbit_stew.png new file mode 100644 index 000000000..d0207bb26 Binary files /dev/null and b/texturepacks/minecraft/items/rabbit_stew.png differ diff --git a/texturepacks/minecraft/items/redstone_dust.png b/texturepacks/minecraft/items/redstone_dust.png new file mode 100644 index 000000000..6da938be8 Binary files /dev/null and b/texturepacks/minecraft/items/redstone_dust.png differ diff --git a/texturepacks/minecraft/items/rotten_flesh.png b/texturepacks/minecraft/items/rotten_flesh.png new file mode 100644 index 000000000..3f39998ea Binary files /dev/null and b/texturepacks/minecraft/items/rotten_flesh.png differ diff --git a/texturepacks/minecraft/items/salmon.png b/texturepacks/minecraft/items/salmon.png new file mode 100644 index 000000000..988a8aac2 Binary files /dev/null and b/texturepacks/minecraft/items/salmon.png differ diff --git a/texturepacks/minecraft/items/seeds_melon.png b/texturepacks/minecraft/items/seeds_melon.png new file mode 100644 index 000000000..ef84499c2 Binary files /dev/null and b/texturepacks/minecraft/items/seeds_melon.png differ diff --git a/texturepacks/minecraft/items/seeds_pumpkin.png b/texturepacks/minecraft/items/seeds_pumpkin.png new file mode 100644 index 000000000..8d8f07614 Binary files /dev/null and b/texturepacks/minecraft/items/seeds_pumpkin.png differ diff --git a/texturepacks/minecraft/items/slime_ball.png b/texturepacks/minecraft/items/slime_ball.png new file mode 100644 index 000000000..e14dc9423 Binary files /dev/null and b/texturepacks/minecraft/items/slime_ball.png differ diff --git a/texturepacks/minecraft/items/slimeball.png b/texturepacks/minecraft/items/slimeball.png new file mode 100644 index 000000000..e14dc9423 Binary files /dev/null and b/texturepacks/minecraft/items/slimeball.png differ diff --git a/texturepacks/minecraft/items/snowball.png b/texturepacks/minecraft/items/snowball.png new file mode 100644 index 000000000..340c63981 Binary files /dev/null and b/texturepacks/minecraft/items/snowball.png differ diff --git a/texturepacks/minecraft/items/spider_eye.png b/texturepacks/minecraft/items/spider_eye.png new file mode 100644 index 000000000..35d858430 Binary files /dev/null and b/texturepacks/minecraft/items/spider_eye.png differ diff --git a/texturepacks/minecraft/items/spider_eye_fermented.png b/texturepacks/minecraft/items/spider_eye_fermented.png new file mode 100644 index 000000000..226ffb898 Binary files /dev/null and b/texturepacks/minecraft/items/spider_eye_fermented.png differ diff --git a/texturepacks/minecraft/items/string.png b/texturepacks/minecraft/items/string.png new file mode 100644 index 000000000..eecdb046d Binary files /dev/null and b/texturepacks/minecraft/items/string.png differ diff --git a/texturepacks/minecraft/items/sugar.png b/texturepacks/minecraft/items/sugar.png new file mode 100644 index 000000000..effbfae8b Binary files /dev/null and b/texturepacks/minecraft/items/sugar.png differ