diff --git a/mods/ITEMS/mcl_amethyst/grow.lua b/mods/ITEMS/mcl_amethyst/grow.lua deleted file mode 100644 index 1ab3d4241..000000000 --- a/mods/ITEMS/mcl_amethyst/grow.lua +++ /dev/null @@ -1,47 +0,0 @@ -function mcl_amethyst.grow_amethyst_bud(pos,ignore_budding_amethyst) - local node = minetest.get_node(pos) - if not node.name then return false end - local def = minetest.registered_nodes[node.name] - if not def then return false end - if not def.groups and def.groups.amethyst_buds then return false end - local next_gen = def._mcl_amethyst_next_grade - if not next_gen then return false end - -- Check Budding Amethyst - if not ignore_budding_amethyst then - local dir = minetest.wallmounted_to_dir(node.param2) - local ba_pos = vector.add(pos,dir) - local ba_node = minetest.get_node(ba_pos) - if ba_node.name ~= "mcl_amethyst:budding_amethyst_block" then return false end - end - local swap_result = table.copy(node) - swap_result.name = next_gen - minetest.swap_node(pos,swap_result) - return true -end - -local function get_growing_tool_handle(ignore) - return function(itemstack, user, pointed_thing) - if not user:is_player() then return end - local name = user:get_player_name() - local pos = minetest.get_pointed_thing_position(pointed_thing) - if minetest.is_protected(pos, name) then - minetest.record_protection_violation(pos, name) - minetest.chat_send_player(name,"Not allowed to use Amethyst Growing Tool in a protected area!") - return - end - if not mcl_amethyst.grow_amethyst_bud(pos, ignore) then - minetest.chat_send_player(name,"Growing Failed") - end - end -end - -minetest.register_tool("mcl_amethyst:growing_tool",{ - description = "Amethyst Growing Tool", - on_use = get_growing_tool_handle(true), - on_place = get_growing_tool_handle(false), - inventory_image = "amethyst_cluster.png^amethyst_shard.png", - groups = { - tool = 1, - }, -}) -mcl_wip.register_experimental_item("mcl_amethyst:growing_tool") diff --git a/mods/ITEMS/mcl_amethyst/init.lua b/mods/ITEMS/mcl_amethyst/init.lua deleted file mode 100644 index 944361236..000000000 --- a/mods/ITEMS/mcl_amethyst/init.lua +++ /dev/null @@ -1,213 +0,0 @@ -local S = minetest.get_translator(minetest.get_current_modname()) -mcl_amethyst = {} - --- Amethyst block -minetest.register_node("mcl_amethyst:amethyst_block",{ - description = S("Block of Amethyst"), - tiles = {"amethyst_block.png"}, - _mcl_hardness = 1.5, - _mcl_blast_resistance = 1.5, - groups = { - pickaxey = 1, - building_block = 1, - }, - sounds = mcl_sounds.node_sound_glass_defaults(), - is_ground_content = true, - stack_max = 64, - _doc_items_longdesc = S("The Block of Anethyst is a decoration block creft from amethyst shards."), -}) - --- (WIP!) Budding Amethyst -minetest.register_node("mcl_amethyst:budding_amethyst_block",{ - description = S("Budding Amethyst"), - tiles = {"budding_amethyst.png"}, - drop = "", - _mcl_hardness = 1.5, - _mcl_blast_resistance = 1.5, - groups = { - pickaxey = 1, - building_block = 1, - dig_by_piston = 1, - }, - sounds = mcl_sounds.node_sound_glass_defaults(), - is_ground_content = true, - stack_max = 64, - _doc_items_longdesc = S("The Budding Anethyst can grow amethyst"), -}) -mcl_wip.register_wip_item("mcl_amethyst:budding_amethyst_block") - --- Amethyst Shard -minetest.register_craftitem("mcl_amethyst:amethyst_shard",{ - description = S("Amethyst Shard"), - inventory_image = "amethyst_shard.png", - stack_max = 64, - groups = { - craftitem = 1, - }, - _doc_items_longdesc = S("An amethyst shard is a crystalline mineral."), -}) - --- Calcite -minetest.register_node("mcl_amethyst:calcite",{ - description = S("Calcite"), - tiles = {"calcite.png"}, - _mcl_hardness = 0.75, - _mcl_blast_resistance = 0.75, - groups = { - pickaxey = 1, - building_block = 1, - }, - sounds = mcl_sounds.node_sound_stone_defaults(), - is_ground_content = true, - stack_max = 64, - _doc_items_longdesc = S("Calcite can be found as part of amethyst geodes."), -}) - --- Tinied Glass -minetest.register_node("mcl_amethyst:tinted_glass",{ - description = S("Tinted Glass"), - tiles = {"tinted_glass.png"}, - _mcl_hardness = 0.3, - _mcl_blast_resistance = 0.3, - drawtype = "glasslike", - use_texture_alpha = "clip", - sunlight_propagates = false, - groups = { - handy = 1, - building_block = 1, - deco_block = 1, - }, - sounds = mcl_sounds.node_sound_glass_defaults(), - is_ground_content = false, - stack_max = 64, - _doc_items_longdesc = S("Tinted Glass is a type of glass which blocks lights while it is visually transparent."), -}) - --- Amethyst Cluster -local bud_def = { - {"small","Small","mcl_amethyst:medium_amethyst_bud"}, - {"medium","Medium","mcl_amethyst:large_amethyst_bud"}, - {"large","Large","mcl_amethyst:amethyst_cluster"}, -} -for x,y in pairs(bud_def) do - minetest.register_node("mcl_amethyst:" .. y[1] .. "_amethyst_bud",{ - description = y[2] .. " Amethyst Bud", - _mcl_hardness = 1.5, - _mcl_blast_resistance = 1.5, - drop = "", - tiles = {y[1] .. "_amethyst_bud.png",}, - inventory_image = y[1] .. "_amethyst_bud.png", - paramtype1 = "light", - paramtype2 = "wallmounted", - drawtype = "plantlike", - use_texture_alpha = "clip", - sunlight_propagates = true, - groups = { - dig_by_water = 1, - destroy_by_lava_flow = 1, - dig_by_piston = 1, - pickaxey = 1, - deco_block = 1, - amethyst_buds = 1, - attached_node = 1, - }, - selection_box = { - type = "fixed", - -- fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, - }, - collision_box = { - type = "fixed", - -- fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, - }, - _mcl_silk_touch_drop = true, - _mcl_amethyst_next_grade = y[3], - _doc_items_longdesc = S(y[2] .. " Amethyst Bud is the " .. y[1] .. " grouth of amethyst bud."), - }) -end - -minetest.register_node("mcl_amethyst:amethyst_cluster",{ - description = "Amethyst Cluster", - _mcl_hardness = 1.5, - _mcl_blast_resistance = 1.5, - _doc_items_longdesc = S("Amethyst Cluster is the final grouth of amethyst bud."), - drop = { - max_items = 1, - items = { - { - tools = {"~mcl_tools:pick_"}, - items = {"mcl_amethyst:amethyst_shard 4"}, - }, - { - items = {"mcl_amethyst:amethyst_shard 2"}, - }, - } - }, - tiles = {"amethyst_cluster.png",}, - inventory_image = "amethyst_cluster.png", - paramtype2 = "wallmounted", - drawtype = "plantlike", - paramtype1 = "light", - use_texture_alpha = "clip", - sunlight_propagates = true, - groups = { - dig_by_water = 1, - destroy_by_lava_flow = 1, - dig_by_piston = 1, - pickaxey = 1, - deco_block = 1, - attached_node = 1, - }, - selection_box = { - type = "fixed", - -- fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, - }, - collision_box = { - type = "fixed", - -- fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, - }, - _mcl_silk_touch_drop = true, -}) - --- Register Crafts -minetest.register_craft({ - output = "mcl_amethyst:amethyst_block", - recipe = { - {"mcl_amethyst:amethyst_shard","mcl_amethyst:amethyst_shard",}, - {"mcl_amethyst:amethyst_shard","mcl_amethyst:amethyst_shard",}, - }, -}) - -minetest.register_craft({ - output = "mcl_amethyst:tinted_glass 2", - recipe = { - {"","mcl_amethyst:amethyst_shard",""}, - {"mcl_amethyst:amethyst_shard","mcl_core:glass","mcl_amethyst:amethyst_shard",}, - {"","mcl_amethyst:amethyst_shard",""}, - }, -}) - -if minetest.get_modpath("mcl_spyglass") then - minetest.clear_craft({output = "mcl_spyglass:spyglass",}) - local function craft_spyglass(ingot) - minetest.register_craft({ - output = "mcl_spyglass:spyglass", - recipe = { - {"mcl_amethyst:amethyst_shard"}, - {ingot}, - {ingot}, - } - }) - end - if minetest.get_modpath("mcl_copper") then - craft_spyglass("mcl_copper:copper_ingot") - else - craft_spyglass("mcl_core:iron_ingot") - end -end - --- Amethyst Growing -dofile(minetest.get_modpath(minetest.get_current_modname()) .. "/grow.lua") diff --git a/mods/ITEMS/mcl_amethyst/mod.conf b/mods/ITEMS/mcl_amethyst/mod.conf deleted file mode 100644 index ccbcbb430..000000000 --- a/mods/ITEMS/mcl_amethyst/mod.conf +++ /dev/null @@ -1,5 +0,0 @@ -name = mcl_amethyst -author = Emojiminetest -description = Amethyst related stuff for MCL5 -depends = mcl_init, mcl_core, mcl_wip -optional_depends = mcl_spyglass, mcl_copper diff --git a/mods/ITEMS/mcl_amethyst/screenshot.png b/mods/ITEMS/mcl_amethyst/screenshot.png deleted file mode 100644 index 4aa3a5676..000000000 Binary files a/mods/ITEMS/mcl_amethyst/screenshot.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/LICENSE.txt b/mods/ITEMS/mcl_amethyst/textures/LICENSE.txt deleted file mode 100644 index f0993b6ce..000000000 --- a/mods/ITEMS/mcl_amethyst/textures/LICENSE.txt +++ /dev/null @@ -1 +0,0 @@ -Nova_Wostra Creative Commons Attribution-Share Alike 4.0 International License https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/mods/ITEMS/mcl_amethyst/textures/amethyst_block.png b/mods/ITEMS/mcl_amethyst/textures/amethyst_block.png deleted file mode 100644 index bc172f2a0..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/amethyst_block.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/amethyst_cluster.png b/mods/ITEMS/mcl_amethyst/textures/amethyst_cluster.png deleted file mode 100644 index 1097d97b1..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/amethyst_cluster.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/amethyst_cluster_block.png b/mods/ITEMS/mcl_amethyst/textures/amethyst_cluster_block.png deleted file mode 100644 index 7ea932bf8..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/amethyst_cluster_block.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/amethyst_shard.png b/mods/ITEMS/mcl_amethyst/textures/amethyst_shard.png deleted file mode 100644 index 0d718c47a..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/amethyst_shard.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/budding_amethyst.png b/mods/ITEMS/mcl_amethyst/textures/budding_amethyst.png deleted file mode 100644 index 6dee8ee9b..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/budding_amethyst.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/calcite.png b/mods/ITEMS/mcl_amethyst/textures/calcite.png deleted file mode 100644 index 48e3ce5d9..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/calcite.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/large_amethyst_bud.png b/mods/ITEMS/mcl_amethyst/textures/large_amethyst_bud.png deleted file mode 100644 index 5c7309434..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/large_amethyst_bud.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/medium_amethyst_bud.png b/mods/ITEMS/mcl_amethyst/textures/medium_amethyst_bud.png deleted file mode 100644 index 5a54f63dc..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/medium_amethyst_bud.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/small_amethyst_bud.png b/mods/ITEMS/mcl_amethyst/textures/small_amethyst_bud.png deleted file mode 100644 index 7a414235b..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/small_amethyst_bud.png and /dev/null differ diff --git a/mods/ITEMS/mcl_amethyst/textures/tinted_glass.png b/mods/ITEMS/mcl_amethyst/textures/tinted_glass.png deleted file mode 100644 index 18e797789..000000000 Binary files a/mods/ITEMS/mcl_amethyst/textures/tinted_glass.png and /dev/null differ