wand actions perfected, crystals jarring
This commit is contained in:
parent
1e3cd5c7e7
commit
fcd74fd0f2
8
book.lua
Normal file
8
book.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
minetest.register_craftitem("magicalities:book", {
|
||||||
|
description = "Magicalities' Guide for Witches and Wizards",
|
||||||
|
inventory_image = "magicalities_book.png",
|
||||||
|
on_place = function (itemstack, user, pointed_thing)
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
})
|
@ -187,6 +187,11 @@ function magicalities.register_crystal(element, description, color)
|
|||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
|
|
||||||
on_rightclick = crystal_rightclick,
|
on_rightclick = crystal_rightclick,
|
||||||
|
after_place_node = function(pos, placer, itemstack, pointed_thing)
|
||||||
|
local meta = minetest.get_meta(pos)
|
||||||
|
local imeta = itemstack:get_meta()
|
||||||
|
meta:set_string("contents", imeta:get_string("contents"))
|
||||||
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Crystal Block
|
-- Crystal Block
|
||||||
@ -259,8 +264,8 @@ end
|
|||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
label = "Crystal Elements Refill",
|
label = "Crystal Elements Refill",
|
||||||
nodenames = {"group:crystal_cluster"},
|
nodenames = {"group:crystal_cluster"},
|
||||||
interval = 60.0,
|
interval = 30.0,
|
||||||
chance = 10,
|
chance = 2,
|
||||||
action = function (pos, node, active_object_count, active_object_count_wider)
|
action = function (pos, node, active_object_count, active_object_count_wider)
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
local contents = meta:get_string("contents")
|
local contents = meta:get_string("contents")
|
||||||
|
3
init.lua
3
init.lua
@ -40,5 +40,8 @@ dofile(modpath.."/scanner.lua")
|
|||||||
-- Cauldron
|
-- Cauldron
|
||||||
dofile(modpath.."/cauldron.lua")
|
dofile(modpath.."/cauldron.lua")
|
||||||
|
|
||||||
|
-- Book
|
||||||
|
dofile(modpath.."/book.lua")
|
||||||
|
|
||||||
-- Register
|
-- Register
|
||||||
dofile(modpath.."/register.lua")
|
dofile(modpath.."/register.lua")
|
||||||
|
@ -252,13 +252,15 @@ if minetest.get_modpath("craftguide") ~= nil then
|
|||||||
})
|
})
|
||||||
|
|
||||||
for g,v in pairs(magicalities.wands.transform_recipes) do
|
for g,v in pairs(magicalities.wands.transform_recipes) do
|
||||||
|
if v.result and type(v.result) == "string" then
|
||||||
craftguide.register_craft({
|
craftguide.register_craft({
|
||||||
type = "wand",
|
type = "wand",
|
||||||
output = v.result,
|
output = v.result,
|
||||||
width = 1,
|
width = 1,
|
||||||
items = {"group:"..g},
|
items = {g},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Cauldron
|
-- Cauldron
|
||||||
craftguide.register_craft_type("cauldron", {
|
craftguide.register_craft_type("cauldron", {
|
||||||
|
BIN
textures/magicalities_book.png
Normal file
BIN
textures/magicalities_book.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 995 B |
145
wands.lua
145
wands.lua
@ -2,9 +2,51 @@
|
|||||||
|
|
||||||
magicalities.wands = {}
|
magicalities.wands = {}
|
||||||
|
|
||||||
|
local function pickup_jarred(itemstack, user, glassp)
|
||||||
|
local node = minetest.get_node_or_nil(glassp)
|
||||||
|
if not node or node.name ~= "default:glass" then return nil end
|
||||||
|
local closest = minetest.find_node_near(glassp, 1, "group:crystal_cluster")
|
||||||
|
if not closest then return nil end
|
||||||
|
if minetest.is_protected(closest, user:get_player_name()) then return nil end
|
||||||
|
local cap = minetest.find_nodes_in_area(
|
||||||
|
vector.add(closest, {x = -1, y = 1, z = -1}),
|
||||||
|
vector.add(closest, {x = 1, y = 1, z = 1}), {"stairs:slab_wood"})
|
||||||
|
if #cap ~= 9 then return nil end
|
||||||
|
local glass = minetest.find_nodes_in_area(
|
||||||
|
vector.add(closest, {x = -1, y = 0, z = -1}),
|
||||||
|
vector.add(closest, {x = 1, y = -1, z = 1}), {"default:glass", "group:crystal_cluster"})
|
||||||
|
if #glass ~= 18 then return nil end
|
||||||
|
local node = minetest.get_node(closest)
|
||||||
|
local item = ItemStack(node.name)
|
||||||
|
local nmeta = minetest.get_meta(closest)
|
||||||
|
local imeta = item:get_meta()
|
||||||
|
|
||||||
|
local contents = nmeta:get_string("contents")
|
||||||
|
if contents ~= "" then
|
||||||
|
local def = minetest.registered_items[node.name]
|
||||||
|
imeta:set_string("description", def.description .. "\n" ..
|
||||||
|
minetest.colorize("#a070e0", "Contains elements!"))
|
||||||
|
imeta:set_string("contents", contents)
|
||||||
|
end
|
||||||
|
|
||||||
|
for _,p in pairs(cap) do
|
||||||
|
minetest.set_node(p, { name = "air" })
|
||||||
|
end
|
||||||
|
|
||||||
|
for _,p in pairs(glass) do
|
||||||
|
minetest.set_node(p, { name = "air" })
|
||||||
|
end
|
||||||
|
|
||||||
|
minetest.add_item(closest, item)
|
||||||
|
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
|
||||||
magicalities.wands.transform_recipes = {
|
magicalities.wands.transform_recipes = {
|
||||||
["enchanted_table"] = {result = "magicalities:arcane_table", requirements = nil},
|
["group:enchanted_table"] = {result = "magicalities:arcane_table", requirements = nil},
|
||||||
["tree"] = {result = "magicalities:tree_enchanted", requirements = nil}
|
["default:bookshelf"] = {result = "magicalities:book", requirements = nil, drop = true},
|
||||||
|
["default:glass"] = {result = pickup_jarred, requirements = nil},
|
||||||
|
["group:tree"] = {result = "magicalities:tree_enchanted", requirements = nil},
|
||||||
}
|
}
|
||||||
|
|
||||||
local wandcaps = {
|
local wandcaps = {
|
||||||
@ -96,7 +138,7 @@ function magicalities.wands.update_wand_desc(stack)
|
|||||||
focusstr = def.description
|
focusstr = def.description
|
||||||
end
|
end
|
||||||
|
|
||||||
strbld = strbld .. minetest.colorize("#5716ad", focusstr) .. "\n"
|
strbld = strbld .. minetest.colorize("#a070e0", focusstr) .. "\n"
|
||||||
if #elems > 0 then
|
if #elems > 0 then
|
||||||
table.sort(elems)
|
table.sort(elems)
|
||||||
strbld = strbld .. "\n" .. table.concat(elems, "\n")
|
strbld = strbld .. "\n" .. table.concat(elems, "\n")
|
||||||
@ -218,23 +260,8 @@ local function wand_action(itemstack, placer, pointed_thing)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Replacement
|
-- Call on_rightclick on the node
|
||||||
local to_replace = nil
|
|
||||||
for grp, result in pairs(magicalities.wands.transform_recipes) do
|
|
||||||
if minetest.get_item_group(node.name, grp) > 0 then
|
|
||||||
to_replace = result
|
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if to_replace and minetest.is_protected(pos, placer:get_player_name()) then
|
|
||||||
to_replace = nil
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Call on_rightclick on the node instead if it cannot be replaced
|
|
||||||
if not to_replace then
|
|
||||||
local nodedef = minetest.registered_nodes[node.name]
|
local nodedef = minetest.registered_nodes[node.name]
|
||||||
|
|
||||||
if nodedef.on_rightclick then
|
if nodedef.on_rightclick then
|
||||||
itemstack = nodedef.on_rightclick(pos, node, placer, itemstack, pointed_thing)
|
itemstack = nodedef.on_rightclick(pos, node, placer, itemstack, pointed_thing)
|
||||||
end
|
end
|
||||||
@ -242,27 +269,11 @@ local function wand_action(itemstack, placer, pointed_thing)
|
|||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
|
|
||||||
if to_replace.requirements then
|
|
||||||
if not magicalities.wands.wand_has_contents(itemstack, to_replace.requirements) then return itemstack end
|
|
||||||
itemstack = magicalities.wands.wand_take_contents(itemstack, to_replace.requirements)
|
|
||||||
magicalities.wands.update_wand_desc(itemstack)
|
|
||||||
end
|
|
||||||
|
|
||||||
minetest.swap_node(pos, {name = to_replace.result, param1 = node.param1, param2 = node.param2})
|
|
||||||
|
|
||||||
local spec = minetest.registered_nodes[to_replace.result]
|
|
||||||
if spec.on_construct then
|
|
||||||
spec.on_construct(pos)
|
|
||||||
end
|
|
||||||
|
|
||||||
return itemstack
|
|
||||||
end
|
|
||||||
|
|
||||||
local function use_wand(itemstack, user, pointed_thing)
|
local function use_wand(itemstack, user, pointed_thing)
|
||||||
local imeta = itemstack:get_meta()
|
local imeta = itemstack:get_meta()
|
||||||
|
|
||||||
-- Initialize wand metadata
|
-- Initialize wand metadata
|
||||||
if imeta:get_string("contents") == nil or imeta:get_string("contents") == "" then
|
if imeta:get_string("contents") == "" then
|
||||||
initialize_wand(itemstack)
|
initialize_wand(itemstack)
|
||||||
magicalities.wands.update_wand_desc(itemstack)
|
magicalities.wands.update_wand_desc(itemstack)
|
||||||
end
|
end
|
||||||
@ -277,17 +288,69 @@ local function use_wand(itemstack, user, pointed_thing)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Call use on the node
|
if pointed_thing.type ~= "node" then
|
||||||
if pointed_thing.type == "node" then
|
magicalities.wands.update_wand_desc(itemstack)
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
|
||||||
local pos = pointed_thing.under
|
local pos = pointed_thing.under
|
||||||
local node = minetest.get_node_or_nil(pos)
|
local node = minetest.get_node_or_nil(pos)
|
||||||
if node and node.name ~= "air" then
|
|
||||||
|
if not node or node.name == "air" or minetest.is_protected(pos, user:get_player_name()) then
|
||||||
|
magicalities.wands.update_wand_desc(itemstack)
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Replacement
|
||||||
|
local to_replace = nil
|
||||||
|
for name, result in pairs(magicalities.wands.transform_recipes) do
|
||||||
|
if name:match("group:") ~= nil and
|
||||||
|
minetest.get_item_group(node.name, string.gsub(name, "group:", "")) > 0 then
|
||||||
|
to_replace = result
|
||||||
|
break
|
||||||
|
elseif name == node.name then
|
||||||
|
to_replace = result
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if to_replace then
|
||||||
|
local take_req = true
|
||||||
|
|
||||||
|
if type(to_replace.result) == "function" then
|
||||||
|
local t = to_replace.result(itemstack, user, pos)
|
||||||
|
if not t then
|
||||||
|
take_req = false
|
||||||
|
else
|
||||||
|
itemstack = t
|
||||||
|
end
|
||||||
|
elseif to_replace.drop then
|
||||||
|
minetest.add_item(pos, ItemStack(to_replace.result))
|
||||||
|
minetest.set_node(pos, {name = "air"})
|
||||||
|
else
|
||||||
|
minetest.swap_node(pos, {name = to_replace.result, param1 = node.param1, param2 = node.param2})
|
||||||
|
local spec = minetest.registered_nodes[to_replace.result]
|
||||||
|
if spec.on_construct then
|
||||||
|
spec.on_construct(pos)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if take_req and to_replace.requirements then
|
||||||
|
if not magicalities.wands.wand_has_contents(itemstack, to_replace.requirements) then
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
itemstack = magicalities.wands.wand_take_contents(itemstack, to_replace.requirements)
|
||||||
|
end
|
||||||
|
|
||||||
|
magicalities.wands.update_wand_desc(itemstack)
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Call _wand_use on the node, if it has the callback registered
|
||||||
local ndef = minetest.registered_nodes[node.name]
|
local ndef = minetest.registered_nodes[node.name]
|
||||||
if ndef['_wand_use'] then
|
if ndef['_wand_use'] then
|
||||||
return ndef['_wand_use'](pos, node, itemstack, user, pointed_thing)
|
return ndef['_wand_use'](pos, node, itemstack, user, pointed_thing)
|
||||||
end
|
end
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
magicalities.wands.update_wand_desc(itemstack)
|
magicalities.wands.update_wand_desc(itemstack)
|
||||||
return itemstack
|
return itemstack
|
||||||
|
Loading…
Reference in New Issue
Block a user