2021-07-27 13:10:59 +02:00
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
2021-07-28 14:44:30 +02:00
|
|
|
mcl_amethyst = {}
|
2021-07-27 13:10:59 +02:00
|
|
|
|
|
|
|
-- Amethyst block
|
|
|
|
minetest.register_node("mcl_amethyst:amethyst_block",{
|
2022-02-04 23:39:40 +01:00
|
|
|
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."),
|
2021-07-27 13:10:59 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- (WIP!) Budding Amethyst
|
|
|
|
minetest.register_node("mcl_amethyst:budding_amethyst_block",{
|
2022-02-04 23:39:40 +01:00
|
|
|
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"),
|
2021-07-27 13:10:59 +02:00
|
|
|
})
|
|
|
|
mcl_wip.register_wip_item("mcl_amethyst:budding_amethyst_block")
|
|
|
|
|
|
|
|
-- Amethyst Shard
|
|
|
|
minetest.register_craftitem("mcl_amethyst:amethyst_shard",{
|
2022-02-04 23:39:40 +01:00
|
|
|
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."),
|
2021-07-27 13:10:59 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Calcite
|
|
|
|
minetest.register_node("mcl_amethyst:calcite",{
|
2022-02-04 23:39:40 +01:00
|
|
|
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."),
|
2021-07-27 13:10:59 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Tinied Glass
|
|
|
|
minetest.register_node("mcl_amethyst:tinted_glass",{
|
2022-02-04 23:39:40 +01:00
|
|
|
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."),
|
2021-07-27 13:10:59 +02:00
|
|
|
})
|
|
|
|
|
2021-07-28 06:40:40 +02:00
|
|
|
-- Amethyst Cluster
|
|
|
|
local bud_def = {
|
2022-02-04 23:39:40 +01:00
|
|
|
{"small","Small","mcl_amethyst:medium_amethyst_bud"},
|
|
|
|
{"medium","Medium","mcl_amethyst:large_amethyst_bud"},
|
|
|
|
{"large","Large","mcl_amethyst:amethyst_cluster"},
|
2021-07-28 06:40:40 +02:00
|
|
|
}
|
|
|
|
for x,y in pairs(bud_def) do
|
2022-02-04 23:39:40 +01:00
|
|
|
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."),
|
|
|
|
})
|
2021-07-28 06:40:40 +02:00
|
|
|
end
|
|
|
|
|
2021-07-28 14:44:30 +02:00
|
|
|
minetest.register_node("mcl_amethyst:amethyst_cluster",{
|
2022-02-04 23:39:40 +01:00
|
|
|
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,
|
2021-07-28 14:44:30 +02:00
|
|
|
})
|
|
|
|
|
2021-07-27 13:10:59 +02:00
|
|
|
-- Register Crafts
|
|
|
|
minetest.register_craft({
|
2022-02-04 23:39:40 +01:00
|
|
|
output = "mcl_amethyst:amethyst_block",
|
|
|
|
recipe = {
|
|
|
|
{"mcl_amethyst:amethyst_shard","mcl_amethyst:amethyst_shard",},
|
|
|
|
{"mcl_amethyst:amethyst_shard","mcl_amethyst:amethyst_shard",},
|
|
|
|
},
|
2021-07-27 13:10:59 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-02-04 23:39:40 +01:00
|
|
|
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",""},
|
|
|
|
},
|
2021-07-27 13:10:59 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
if minetest.get_modpath("mcl_spyglass") then
|
2022-02-04 23:39:40 +01:00
|
|
|
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
|
2021-07-27 13:10:59 +02:00
|
|
|
end
|
2021-07-28 14:44:30 +02:00
|
|
|
|
|
|
|
-- Amethyst Growing
|
|
|
|
dofile(minetest.get_modpath(minetest.get_current_modname()) .. "/grow.lua")
|