diff --git a/mods/ITEMS/mcl_blackstone/init.lua b/mods/ITEMS/mcl_blackstone/init.lua index 3a57604a0..06b94ebaa 100644 --- a/mods/ITEMS/mcl_blackstone/init.lua +++ b/mods/ITEMS/mcl_blackstone/init.lua @@ -16,34 +16,7 @@ minetest.register_node("mcl_blackstone:blackstone", { _mcl_blast_resistance = 6, _mcl_hardness = 1.5, }) -minetest.register_node("mcl_blackstone:blackstone_gilded", { - description = S("Gilded Blackstone"), - tiles = {"mcl_blackstone_gilded.png"}, - sounds = mcl_sounds.node_sound_stone_defaults(), - is_ground_content = false, - groups = {cracky = 3, pickaxey=1, material_stone=1, xp=1}, - drop = { - max_items = 1, - items = { - {items = {"mcl_core:gold_nugget 2"},rarity = 40}, - {items = {"mcl_core:gold_nugget 3"},rarity = 40}, - {items = {"mcl_core:gold_nugget 4"},rarity = 40}, - {items = {"mcl_core:gold_nugget 5"},rarity = 40}, - -- 4x 1 in 40 chance adds up to a 10% chance - {items = {"mcl_blackstone:blackstone_gilded"}, rarity = 1}, - } - }, - _mcl_blast_resistance = 2, - _mcl_hardness = 2, - _mcl_silk_touch_drop = true, - _mcl_fortune_drop = { - discrete_uniform_distribution = true, - items = {"mcl_core:gold_nugget"}, - min_count = 2, - max_count = 5, - cap = 5, - }, -}) + minetest.register_node("mcl_blackstone:nether_gold", { description = S("Nether Gold Ore"), tiles = {"mcl_nether_gold_ore.png"}, @@ -65,18 +38,7 @@ minetest.register_node("mcl_blackstone:nether_gold", { _mcl_silk_touch_drop = true, _mcl_fortune_drop = mcl_core.fortune_drop_ore, }) -minetest.register_node("mcl_blackstone:basalt_polished", { - description = S("Polished Basalt"), - tiles = {"mcl_blackstone_basalt_top_polished.png", "mcl_blackstone_basalt_top_polished.png", "mcl_blackstone_basalt_side_polished.png"}, - sounds = mcl_sounds.node_sound_stone_defaults(), - paramtype2 = "facedir", - on_place = mcl_util.rotate_axis, - on_rotate = on_rotate, - is_ground_content = false, - groups = {cracky = 3, pickaxey=1, material_stone=1}, - _mcl_blast_resistance = 4.2, - _mcl_hardness = 1.25, -}) + minetest.register_node("mcl_blackstone:basalt", { description = S("Basalt"), tiles = {"mcl_blackstone_basalt_top.png", "mcl_blackstone_basalt_top.png", "mcl_blackstone_basalt_side.png"}, @@ -89,44 +51,7 @@ minetest.register_node("mcl_blackstone:basalt", { _mcl_blast_resistance = 4.2, _mcl_hardness = 1.25, }) -minetest.register_node("mcl_blackstone:basalt_smooth", { - description = S("Smooth Basalt"), - tiles = {"mcl_blackstone_basalt_smooth.png"}, - sounds = mcl_sounds.node_sound_stone_defaults(), - is_ground_content = false, - groups = {cracky = 3, pickaxey=1, material_stone=1}, - _mcl_blast_resistance = 4.2, - _mcl_hardness = 1.25, -}) -minetest.register_node("mcl_blackstone:blackstone_polished", { - description = S("Polished Blackstone"), - tiles = {"mcl_blackstone_polished.png"}, - sounds = mcl_sounds.node_sound_stone_defaults(), - is_ground_content = false, - groups = {cracky = 3, pickaxey=1, material_stone=1}, - _mcl_blast_resistance = 6, - _mcl_hardness = 2, -}) -minetest.register_node("mcl_blackstone:blackstone_chiseled_polished", { - description = S("Chiseled Polished Blackstone"), - tiles = {"mcl_blackstone_chiseled_polished.png"}, - sounds = mcl_sounds.node_sound_stone_defaults(), - is_ground_content = false, - groups = {cracky = 3, pickaxey=1, material_stone=1}, - _mcl_blast_resistance = 6, - _mcl_hardness = 1.5, -}) -minetest.register_node("mcl_blackstone:quartz_brick", { - description = S("Quartz Bricks"), - tiles = {"mcl_backstone_quartz_bricks.png"}, - sounds = mcl_sounds.node_sound_stone_defaults(), - is_ground_content = false, - sounds = mcl_sounds.node_sound_stone_defaults(), - groups = {cracky = 3, pickaxey=1, material_stone=1}, - _mcl_blast_resistance = 0.8, - _mcl_hardness = 0.8, -}) minetest.register_node("mcl_blackstone:soul_soil", { description = S("Soul Soil"), tiles = {"mcl_blackstone_soul_soil.png"}, @@ -136,6 +61,7 @@ minetest.register_node("mcl_blackstone:soul_soil", { _mcl_blast_resistance = 0.5, _mcl_hardness = 0.5, }) + minetest.register_node("mcl_blackstone:soul_fire", { description = S("Eternal Soul Fire"), _doc_items_longdesc = minetest.registered_nodes["mcl_fire:eternal_fire"]._doc_items_longdesc , @@ -193,22 +119,6 @@ mcl_stairs.register_stair_and_slab("blackstone", "mcl_blackstone:blackstone", mcl_sounds.node_sound_stone_defaults(), 6, 2, S("Double Blackstone Slab"), nil) -mcl_stairs.register_stair_and_slab("blackstone_polished", "mcl_blackstone:blackstone_polished", - {cracky=3, pickaxey=1, material_stone=1}, - {"mcl_blackstone_polished.png"}, - S("Polished Blackstone Stairs"), - S("Polished Blackstone Slab"), - mcl_sounds.node_sound_stone_defaults(), 6, 2, - S("Double Polished Blackstone Slab"), nil) - -mcl_stairs.register_stair_and_slab("blackstone_chiseled_polished", "mcl_blackstone:blackstone_chiseled_polished", - {cracky=3, pickaxey=1, material_stone=1}, - {"mcl_blackstone_chiseled_polished.png"}, - S("Chiseled Polished Blackstone Stairs"), - S("Chiseled Polished Blackstone Slab"), - mcl_sounds.node_sound_stone_defaults(), 6, 2, - S("Double Chiseled Polished Blackstone Slab"), nil) - --Wall mcl_walls.register_wall( "mcl_blackstone:wall", @@ -288,13 +198,6 @@ minetest.register_craft({ {"mcl_blackstone:basalt","mcl_blackstone:basalt"}, } }) -minetest.register_craft({ - output = "mcl_blackstone:blackstone_chiseled_polished 2", - recipe = { - {"mcl_blackstone:blackstone_polished"}, - {"mcl_blackstone:blackstone_polished"}, - } -}) minetest.register_craft({ output = "mcl_blackstone:quartz_brick 4", @@ -309,12 +212,7 @@ minetest.register_craft({ recipe = "mcl_blackstone:nether_gold", cooktime = 10, }) -minetest.register_craft({ - type = "cooking", - output = "mcl_core:gold_ingot", - recipe = "mcl_blackstone:blackstone_gilded", - cooktime = 10, -}) + minetest.register_craft({ type = "cooking", output = "mcl_nether:quartz_smooth", diff --git a/mods/ITEMS/mcl_core/nodes_glass.lua b/mods/ITEMS/mcl_core/nodes_glass.lua index c53e99226..923a99cb5 100644 --- a/mods/ITEMS/mcl_core/nodes_glass.lua +++ b/mods/ITEMS/mcl_core/nodes_glass.lua @@ -2,23 +2,6 @@ local S = minetest.get_translator(minetest.get_current_modname()) local mod_doc = minetest.get_modpath("doc") -minetest.register_node("mcl_core:glass", { - description = S("Glass"), - drawtype = "glasslike_framed_optional", - is_ground_content = false, - tiles = {"default_glass.png", "default_glass_detail.png"}, - paramtype = "light", - paramtype2 = "glasslikeliquidlevel", - sunlight_propagates = true, - stack_max = 64, - groups = {handy=1, glass=1, building_block=1, material_glass=1}, - sounds = mcl_sounds.node_sound_glass_defaults(), - drop = "", - _mcl_blast_resistance = 0.3, - _mcl_hardness = 0.3, - _mcl_silk_touch_drop = true, -}) - ------------------------ -- Create Color Glass -- ------------------------ @@ -52,21 +35,3 @@ function mcl_core.add_stained_glass(desc, recipeitem, colorgroup, color) } }) end - ----- colored glass -mcl_core.add_stained_glass( S("Red Stained Glass"), "mcl_dye:red", "basecolor_red", "red") -mcl_core.add_stained_glass( S("Green Stained Glass"), "mcl_dye:dark_green", "unicolor_dark_green", "green") -mcl_core.add_stained_glass( S("Blue Stained Glass"), "mcl_dye:blue", "basecolor_blue", "blue") -mcl_core.add_stained_glass( S("Light Blue Stained Glass"), "mcl_dye:lightblue", "unicolor_light_blue", "light_blue") -mcl_core.add_stained_glass( S("Black Stained Glass"), "mcl_dye:black", "basecolor_black", "black") -mcl_core.add_stained_glass( S("White Stained Glass"), "mcl_dye:white", "basecolor_white", "white") -mcl_core.add_stained_glass( S("Yellow Stained Glass"), "mcl_dye:yellow", "basecolor_yellow", "yellow") -mcl_core.add_stained_glass( S("Brown Stained Glass"), "mcl_dye:brown", "unicolor_dark_orange", "brown") -mcl_core.add_stained_glass( S("Orange Stained Glass"), "mcl_dye:orange", "excolor_orange", "orange") -mcl_core.add_stained_glass( S("Pink Stained Glass"), "mcl_dye:pink", "unicolor_light_red", "pink") -mcl_core.add_stained_glass( S("Grey Stained Glass"), "mcl_dye:dark_grey", "unicolor_darkgrey", "gray") -mcl_core.add_stained_glass( S("Lime Stained Glass"), "mcl_dye:green", "basecolor_green", "lime") -mcl_core.add_stained_glass( S("Light Grey Stained Glass"), "mcl_dye:grey", "basecolor_grey", "silver") -mcl_core.add_stained_glass( S("Magenta Stained Glass"), "mcl_dye:magenta", "basecolor_magenta", "magenta") -mcl_core.add_stained_glass( S("Purple Stained Glass"), "mcl_dye:violet", "excolor_violet", "purple") -mcl_core.add_stained_glass( S("Cyan Stained Glass"), "mcl_dye:cyan", "basecolor_cyan", "cyan") diff --git a/mods/ITEMS/mcl_core/nodes_misc.lua b/mods/ITEMS/mcl_core/nodes_misc.lua index 93c426b18..95ad56ac9 100644 --- a/mods/ITEMS/mcl_core/nodes_misc.lua +++ b/mods/ITEMS/mcl_core/nodes_misc.lua @@ -245,62 +245,6 @@ minetest.register_node("mcl_core:realm_barrier", { end, }) - ---- Light blocks ---- TODO: make node only pointable when wielding it - -local light_block_pattern = "^mcl_core:light_(%d+)$" - - -for i = 0, 14 do --minetest.LIGHT_MAX - minetest.register_node("mcl_core:light_" .. i, { - description = S("Light"), - drawtype = "airlike", - paramtype = "light", - walkable = false, - light_source = i, - drop = "", - buildable_to = true, - node_placement_prediction = "", - inventory_image = "mcl_core_light_" .. i .. ".png", - wield_image = "mcl_core_light_" .. i .. ".png", - sunlight_propagates = true, - is_ground_content = false, - groups = {creative_breakable = 1, not_solid = 1, light_block = i + 1}, - on_blast = function(pos, intensity) end, - on_use = function(itemstack, user, pointed_thing) - -- user:get_player_control() returns {} for non players, so we don't need user:is_player() - if pointed_thing.type == "node" and string.match(minetest.get_node(pointed_thing.under).name, light_block_pattern) and not user:get_player_control().sneak then - minetest.dig_node(pointed_thing.under) - return - end - itemstack:set_name("mcl_core:light_" .. ((i == 14) and 0 or i + 1)) - return itemstack - end, - on_place = mcl_util.bypass_buildable_to(function(node_name) - return string.match(node_name, light_block_pattern) - end), - after_place_node = function(pos, placer, itemstack, pointed_thing) - if not placer then - return - end - minetest.add_particle({ - pos = pos, - expirationtime = 1, - size = 8, - texture = "mcl_core_light_" .. i .. ".png", - glow = 14, - playername = placer:get_player_name() - }) - end, - _mcl_blast_resistance = 36000008, - _mcl_hardness = -1, - }) -end - - - - -- The void below the bedrock. Void damage is handled in mcl_playerplus. -- The void does not exist as a block in Minecraft but we register it as a -- block here to make things easier for us. diff --git a/mods/ITEMS/xpanes/init.lua b/mods/ITEMS/xpanes/init.lua index 26f550874..6a59d2ebd 100644 --- a/mods/ITEMS/xpanes/init.lua +++ b/mods/ITEMS/xpanes/init.lua @@ -234,24 +234,3 @@ xpanes.register_pane("bar", { _mcl_blast_resistance = 6, _mcl_hardness = 5, }) - --- Glass Pane -pane(S("Glass Pane"), "mcl_core:glass", "_natural") -- triggers special case - --- Stained Glass Pane -pane(S("Red Stained Glass Pane"), "mcl_core:glass_red", "_red") -pane(S("Green Stained Glass Pane"), "mcl_core:glass_green", "_green") -pane(S("Blue Stained Glass Pane"), "mcl_core:glass_blue", "_blue") -pane(S("Light Blue Stained Glass Pane"), "mcl_core:glass_light_blue", "_light_blue") -pane(S("Black Stained Glass Pane"), "mcl_core:glass_black", "_black") -pane(S("White Stained Glass Pane"), "mcl_core:glass_white", "_white") -pane(S("Yellow Stained Glass Pane"), "mcl_core:glass_yellow", "_yellow") -pane(S("Brown Stained Glass Pane"), "mcl_core:glass_brown", "_brown") -pane(S("Orange Stained Glass Pane"), "mcl_core:glass_orange", "_orange") -pane(S("Pink Stained Glass Pane"), "mcl_core:glass_pink", "_pink") -pane(S("Grey Stained Glass Pane"), "mcl_core:glass_gray", "_gray") -pane(S("Lime Stained Glass Pane"), "mcl_core:glass_lime", "_lime") -pane(S("Light Grey Stained Glass Pane"), "mcl_core:glass_silver", "_silver") -pane(S("Magenta Stained Glass Pane"), "mcl_core:glass_magenta", "_magenta") -pane(S("Purple Stained Glass Pane"), "mcl_core:glass_purple", "_purple") -pane(S("Cyan Stained Glass Pane"), "mcl_core:glass_cyan", "_cyan") diff --git a/textures/farming_bread.png b/textures/farming_bread.png deleted file mode 100644 index 2793fcd14..000000000 Binary files a/textures/farming_bread.png and /dev/null differ diff --git a/textures/farming_carrot.png b/textures/farming_carrot.png deleted file mode 100644 index 7c916fce4..000000000 Binary files a/textures/farming_carrot.png and /dev/null differ diff --git a/textures/farming_carrot_gold.png b/textures/farming_carrot_gold.png deleted file mode 100644 index febaa87ae..000000000 Binary files a/textures/farming_carrot_gold.png and /dev/null differ diff --git a/textures/farming_cookie.png b/textures/farming_cookie.png deleted file mode 100644 index 38f8f4b54..000000000 Binary files a/textures/farming_cookie.png and /dev/null differ diff --git a/textures/farming_melon.png b/textures/farming_melon.png deleted file mode 100644 index cbd946144..000000000 Binary files a/textures/farming_melon.png and /dev/null differ diff --git a/textures/farming_mushroom_stew.png b/textures/farming_mushroom_stew.png deleted file mode 100644 index 453225088..000000000 Binary files a/textures/farming_mushroom_stew.png and /dev/null differ diff --git a/textures/farming_potato.png b/textures/farming_potato.png deleted file mode 100644 index 70e3a7e03..000000000 Binary files a/textures/farming_potato.png and /dev/null differ diff --git a/textures/farming_potato_baked.png b/textures/farming_potato_baked.png deleted file mode 100644 index 9921da97d..000000000 Binary files a/textures/farming_potato_baked.png and /dev/null differ diff --git a/textures/farming_potato_poison.png b/textures/farming_potato_poison.png deleted file mode 100644 index 68e8ad153..000000000 Binary files a/textures/farming_potato_poison.png and /dev/null differ diff --git a/textures/farming_pumpkin_face_light.png b/textures/farming_pumpkin_face_light.png deleted file mode 100644 index a47c72e80..000000000 Binary files a/textures/farming_pumpkin_face_light.png and /dev/null differ diff --git a/textures/farming_wheat_harvested.png b/textures/farming_wheat_harvested.png deleted file mode 100644 index 32acfd609..000000000 Binary files a/textures/farming_wheat_harvested.png and /dev/null differ diff --git a/textures/fletching_table_bottom.png b/textures/fletching_table_bottom.png deleted file mode 100644 index 380b2e61c..000000000 Binary files a/textures/fletching_table_bottom.png and /dev/null differ diff --git a/textures/fletching_table_front.png b/textures/fletching_table_front.png deleted file mode 100644 index c5919daee..000000000 Binary files a/textures/fletching_table_front.png and /dev/null differ diff --git a/textures/fletching_table_side.png b/textures/fletching_table_side.png deleted file mode 100644 index 649010fdf..000000000 Binary files a/textures/fletching_table_side.png and /dev/null differ diff --git a/textures/fletching_table_top.png b/textures/fletching_table_top.png deleted file mode 100644 index d74115b5a..000000000 Binary files a/textures/fletching_table_top.png and /dev/null differ diff --git a/textures/mcl_amethyst_calcite_block.png b/textures/mcl_amethyst_calcite_block.png deleted file mode 100644 index 524d56264..000000000 Binary files a/textures/mcl_amethyst_calcite_block.png and /dev/null differ diff --git a/textures/mcl_amethyst_tinted_glass.png b/textures/mcl_amethyst_tinted_glass.png deleted file mode 100644 index e0694d74e..000000000 Binary files a/textures/mcl_amethyst_tinted_glass.png and /dev/null differ diff --git a/textures/mcl_blackstone_basalt_side_polished.png b/textures/mcl_blackstone_basalt_side_polished.png deleted file mode 100644 index 3f7175a25..000000000 Binary files a/textures/mcl_blackstone_basalt_side_polished.png and /dev/null differ diff --git a/textures/mcl_blackstone_basalt_smooth.png b/textures/mcl_blackstone_basalt_smooth.png deleted file mode 100644 index ad04d5700..000000000 Binary files a/textures/mcl_blackstone_basalt_smooth.png and /dev/null differ diff --git a/textures/mcl_blackstone_basalt_top_polished.png b/textures/mcl_blackstone_basalt_top_polished.png deleted file mode 100644 index 7386b20da..000000000 Binary files a/textures/mcl_blackstone_basalt_top_polished.png and /dev/null differ diff --git a/textures/mcl_blackstone_chiseled_polished.png b/textures/mcl_blackstone_chiseled_polished.png deleted file mode 100644 index 3fc35d305..000000000 Binary files a/textures/mcl_blackstone_chiseled_polished.png and /dev/null differ diff --git a/textures/mcl_blackstone_gilded.png b/textures/mcl_blackstone_gilded.png deleted file mode 100644 index 4f9b84493..000000000 Binary files a/textures/mcl_blackstone_gilded.png and /dev/null differ diff --git a/textures/mcl_blackstone_polished.png b/textures/mcl_blackstone_polished.png deleted file mode 100644 index 42d22ad06..000000000 Binary files a/textures/mcl_blackstone_polished.png and /dev/null differ diff --git a/textures/mcl_chiseled_deepslate.png b/textures/mcl_chiseled_deepslate.png deleted file mode 100644 index 8150e5230..000000000 Binary files a/textures/mcl_chiseled_deepslate.png and /dev/null differ diff --git a/textures/mcl_core_glass_black.png b/textures/mcl_core_glass_black.png deleted file mode 100644 index 35a9dbb7d..000000000 Binary files a/textures/mcl_core_glass_black.png and /dev/null differ diff --git a/textures/mcl_core_glass_black_detail.png b/textures/mcl_core_glass_black_detail.png deleted file mode 100644 index 9dac71149..000000000 Binary files a/textures/mcl_core_glass_black_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_blue.png b/textures/mcl_core_glass_blue.png deleted file mode 100644 index 9e0790a67..000000000 Binary files a/textures/mcl_core_glass_blue.png and /dev/null differ diff --git a/textures/mcl_core_glass_blue_detail.png b/textures/mcl_core_glass_blue_detail.png deleted file mode 100644 index 13d0e83b2..000000000 Binary files a/textures/mcl_core_glass_blue_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_brown.png b/textures/mcl_core_glass_brown.png deleted file mode 100644 index 3f898ef4c..000000000 Binary files a/textures/mcl_core_glass_brown.png and /dev/null differ diff --git a/textures/mcl_core_glass_brown_detail.png b/textures/mcl_core_glass_brown_detail.png deleted file mode 100644 index d342045b1..000000000 Binary files a/textures/mcl_core_glass_brown_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_cyan.png b/textures/mcl_core_glass_cyan.png deleted file mode 100644 index 24382900c..000000000 Binary files a/textures/mcl_core_glass_cyan.png and /dev/null differ diff --git a/textures/mcl_core_glass_cyan_detail.png b/textures/mcl_core_glass_cyan_detail.png deleted file mode 100644 index 6b907f54d..000000000 Binary files a/textures/mcl_core_glass_cyan_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_gray.png b/textures/mcl_core_glass_gray.png deleted file mode 100644 index 70b0a4359..000000000 Binary files a/textures/mcl_core_glass_gray.png and /dev/null differ diff --git a/textures/mcl_core_glass_gray_detail.png b/textures/mcl_core_glass_gray_detail.png deleted file mode 100644 index 4dbc15680..000000000 Binary files a/textures/mcl_core_glass_gray_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_green.png b/textures/mcl_core_glass_green.png deleted file mode 100644 index 380333dc5..000000000 Binary files a/textures/mcl_core_glass_green.png and /dev/null differ diff --git a/textures/mcl_core_glass_green_detail.png b/textures/mcl_core_glass_green_detail.png deleted file mode 100644 index 03b9943f1..000000000 Binary files a/textures/mcl_core_glass_green_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_light_blue.png b/textures/mcl_core_glass_light_blue.png deleted file mode 100644 index eef2edf1f..000000000 Binary files a/textures/mcl_core_glass_light_blue.png and /dev/null differ diff --git a/textures/mcl_core_glass_light_blue_detail.png b/textures/mcl_core_glass_light_blue_detail.png deleted file mode 100644 index 842441a2c..000000000 Binary files a/textures/mcl_core_glass_light_blue_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_lime.png b/textures/mcl_core_glass_lime.png deleted file mode 100644 index dbf7da166..000000000 Binary files a/textures/mcl_core_glass_lime.png and /dev/null differ diff --git a/textures/mcl_core_glass_lime_detail.png b/textures/mcl_core_glass_lime_detail.png deleted file mode 100644 index 8b80407d3..000000000 Binary files a/textures/mcl_core_glass_lime_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_magenta.png b/textures/mcl_core_glass_magenta.png deleted file mode 100644 index 9c7af074e..000000000 Binary files a/textures/mcl_core_glass_magenta.png and /dev/null differ diff --git a/textures/mcl_core_glass_magenta_detail.png b/textures/mcl_core_glass_magenta_detail.png deleted file mode 100644 index cd2d23458..000000000 Binary files a/textures/mcl_core_glass_magenta_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_orange.png b/textures/mcl_core_glass_orange.png deleted file mode 100644 index 64f931864..000000000 Binary files a/textures/mcl_core_glass_orange.png and /dev/null differ diff --git a/textures/mcl_core_glass_orange_detail.png b/textures/mcl_core_glass_orange_detail.png deleted file mode 100644 index 930992769..000000000 Binary files a/textures/mcl_core_glass_orange_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_pink.png b/textures/mcl_core_glass_pink.png deleted file mode 100644 index 9f666075c..000000000 Binary files a/textures/mcl_core_glass_pink.png and /dev/null differ diff --git a/textures/mcl_core_glass_pink_detail.png b/textures/mcl_core_glass_pink_detail.png deleted file mode 100644 index d06f90f6b..000000000 Binary files a/textures/mcl_core_glass_pink_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_purple.png b/textures/mcl_core_glass_purple.png deleted file mode 100644 index ea106b29b..000000000 Binary files a/textures/mcl_core_glass_purple.png and /dev/null differ diff --git a/textures/mcl_core_glass_purple_detail.png b/textures/mcl_core_glass_purple_detail.png deleted file mode 100644 index a5685731f..000000000 Binary files a/textures/mcl_core_glass_purple_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_red.png b/textures/mcl_core_glass_red.png deleted file mode 100644 index 5de6aadc9..000000000 Binary files a/textures/mcl_core_glass_red.png and /dev/null differ diff --git a/textures/mcl_core_glass_red_detail.png b/textures/mcl_core_glass_red_detail.png deleted file mode 100644 index 587fbdbdd..000000000 Binary files a/textures/mcl_core_glass_red_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_silver.png b/textures/mcl_core_glass_silver.png deleted file mode 100644 index 632c318df..000000000 Binary files a/textures/mcl_core_glass_silver.png and /dev/null differ diff --git a/textures/mcl_core_glass_silver_detail.png b/textures/mcl_core_glass_silver_detail.png deleted file mode 100644 index 49d444b80..000000000 Binary files a/textures/mcl_core_glass_silver_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_white.png b/textures/mcl_core_glass_white.png deleted file mode 100644 index 84aca6ee0..000000000 Binary files a/textures/mcl_core_glass_white.png and /dev/null differ diff --git a/textures/mcl_core_glass_white_detail.png b/textures/mcl_core_glass_white_detail.png deleted file mode 100644 index e7e0db92d..000000000 Binary files a/textures/mcl_core_glass_white_detail.png and /dev/null differ diff --git a/textures/mcl_core_glass_yellow.png b/textures/mcl_core_glass_yellow.png deleted file mode 100644 index 58c7dacf9..000000000 Binary files a/textures/mcl_core_glass_yellow.png and /dev/null differ diff --git a/textures/mcl_core_glass_yellow_detail.png b/textures/mcl_core_glass_yellow_detail.png deleted file mode 100644 index b3fc7c893..000000000 Binary files a/textures/mcl_core_glass_yellow_detail.png and /dev/null differ diff --git a/textures/mcl_core_light_0.png b/textures/mcl_core_light_0.png deleted file mode 100644 index e8d2d093b..000000000 Binary files a/textures/mcl_core_light_0.png and /dev/null differ diff --git a/textures/mcl_core_light_1.png b/textures/mcl_core_light_1.png deleted file mode 100644 index 5ec1c11b4..000000000 Binary files a/textures/mcl_core_light_1.png and /dev/null differ diff --git a/textures/mcl_core_light_10.png b/textures/mcl_core_light_10.png deleted file mode 100644 index bdea1d56c..000000000 Binary files a/textures/mcl_core_light_10.png and /dev/null differ diff --git a/textures/mcl_core_light_11.png b/textures/mcl_core_light_11.png deleted file mode 100644 index f5078cda6..000000000 Binary files a/textures/mcl_core_light_11.png and /dev/null differ diff --git a/textures/mcl_core_light_12.png b/textures/mcl_core_light_12.png deleted file mode 100644 index 4883ec2f6..000000000 Binary files a/textures/mcl_core_light_12.png and /dev/null differ diff --git a/textures/mcl_core_light_13.png b/textures/mcl_core_light_13.png deleted file mode 100644 index df2f0330e..000000000 Binary files a/textures/mcl_core_light_13.png and /dev/null differ diff --git a/textures/mcl_core_light_14.png b/textures/mcl_core_light_14.png deleted file mode 100644 index 1b58a8bc4..000000000 Binary files a/textures/mcl_core_light_14.png and /dev/null differ diff --git a/textures/mcl_core_light_2.png b/textures/mcl_core_light_2.png deleted file mode 100644 index 00451d9c6..000000000 Binary files a/textures/mcl_core_light_2.png and /dev/null differ diff --git a/textures/mcl_core_light_3.png b/textures/mcl_core_light_3.png deleted file mode 100644 index 4e178f3e8..000000000 Binary files a/textures/mcl_core_light_3.png and /dev/null differ diff --git a/textures/mcl_core_light_4.png b/textures/mcl_core_light_4.png deleted file mode 100644 index 23047affe..000000000 Binary files a/textures/mcl_core_light_4.png and /dev/null differ diff --git a/textures/mcl_core_light_5.png b/textures/mcl_core_light_5.png deleted file mode 100644 index a1c8c9a2f..000000000 Binary files a/textures/mcl_core_light_5.png and /dev/null differ diff --git a/textures/mcl_core_light_6.png b/textures/mcl_core_light_6.png deleted file mode 100644 index 2ef86b8f5..000000000 Binary files a/textures/mcl_core_light_6.png and /dev/null differ diff --git a/textures/mcl_core_light_7.png b/textures/mcl_core_light_7.png deleted file mode 100644 index 2adfc2729..000000000 Binary files a/textures/mcl_core_light_7.png and /dev/null differ diff --git a/textures/mcl_core_light_8.png b/textures/mcl_core_light_8.png deleted file mode 100644 index bf11f8384..000000000 Binary files a/textures/mcl_core_light_8.png and /dev/null differ diff --git a/textures/mcl_core_light_9.png b/textures/mcl_core_light_9.png deleted file mode 100644 index 12c4ee769..000000000 Binary files a/textures/mcl_core_light_9.png and /dev/null differ