moreores/init.lua

366 lines
10 KiB
Lua
Raw Normal View History

2013-07-11 20:32:45 +02:00
-- Load translation library if intllib is installed
local S
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else
S = function ( s ) return s end
end
moreores_modpath = minetest.get_modpath("moreores")
2014-06-24 17:49:10 +02:00
dofile(moreores_modpath .. "/_config.txt")
2013-07-11 20:32:45 +02:00
--[[
****
More Ores
by Calinou
2013-08-31 17:01:44 +02:00
with the help of Nore/Novatux
Licensed under the CC0
2013-07-11 20:32:45 +02:00
****
--]]
-- Utility functions
local default_stone_sounds = default.node_sound_stone_defaults()
2013-08-31 17:01:44 +02:00
local function hoe_on_use(itemstack, user, pointed_thing, uses)
local pt = pointed_thing
-- check if pointing at a node
if not pt then
return
end
if pt.type ~= "node" then
return
end
local under = minetest.get_node(pt.under)
2014-06-24 17:49:10 +02:00
local pos = {x = pt.under.x, y = pt.under.y + 1, z = pt.under.z}
local above = minetest.get_node(pos)
2013-08-31 17:01:44 +02:00
2014-06-24 17:49:10 +02:00
-- Return if any of the nodes is not registered:
if not minetest.registered_nodes[under.name] then return end
if not minetest.registered_nodes[above.name] then return end
2013-08-31 17:01:44 +02:00
2014-06-24 17:49:10 +02:00
-- Check if the node above the pointed thing is air:
if above.name ~= "air" then return end
2013-08-31 17:01:44 +02:00
2014-06-24 17:49:10 +02:00
-- Check if pointing at dirt:
if minetest.get_item_group(under.name, "soil") ~= 1 then return end
2013-08-31 17:01:44 +02:00
2014-06-24 17:49:10 +02:00
-- Turn the node into soil, wear out item and play sound:
minetest.set_node(pt.under, {name ="farming:soil"})
minetest.sound_play("default_dig_crumbly", {pos = pt.under, gain = 0.5})
itemstack:add_wear(65535 / (uses - 1))
2013-08-31 17:01:44 +02:00
return itemstack
end
local function get_recipe(c, name)
2013-09-02 12:15:12 +02:00
if name == "sword" then
2014-06-24 17:49:10 +02:00
return {{c}, {c}, {"group:stick"}}
2013-09-02 12:15:12 +02:00
end
if name == "shovel" then
2014-06-24 17:49:10 +02:00
return {{c}, {"group:stick"}, {"group:stick"}}
2013-09-02 12:15:12 +02:00
end
if name == "axe" then
2014-06-24 17:49:10 +02:00
return {{c, c}, {c, "group:stick"}, {"", "group:stick"}}
2013-09-02 12:15:12 +02:00
end
if name == "pick" then
2014-06-24 17:49:10 +02:00
return {{c, c, c}, {"", "group:stick", ""}, {"", "group:stick", ""}}
2013-09-02 12:15:12 +02:00
end
if name == "hoe" then
2014-06-24 17:49:10 +02:00
return {{c, c}, {"", "group:stick"}, {"", "group:stick"}}
2013-09-02 12:15:12 +02:00
end
if name == "block" then
2014-06-24 17:49:10 +02:00
return {{c, c, c}, {c, c, c}, {c, c, c}}
2013-09-02 12:15:12 +02:00
end
if name == "lockedchest" then
2014-06-24 17:49:10 +02:00
return {{"group:wood", "group:wood", "group:wood"}, {"group:wood", c, "group:wood"}, {"group:wood", "group:wood", "group:wood"}}
2013-09-02 12:15:12 +02:00
end
2013-07-11 20:32:45 +02:00
end
2013-08-31 17:01:44 +02:00
local function add_ore(modname, description, mineral_name, oredef)
local img_base = modname .. "_" .. mineral_name
local toolimg_base = modname .. "_tool_"..mineral_name
2013-07-11 20:32:45 +02:00
local tool_base = modname .. ":"
local tool_post = "_" .. mineral_name
2013-08-31 17:01:44 +02:00
local item_base = tool_base .. mineral_name
2013-07-11 20:32:45 +02:00
local ingot = item_base .. "_ingot"
local lumpitem = item_base .. "_lump"
local ingotcraft = ingot
if oredef.makes.ore then
minetest.register_node(modname .. ":mineral_"..mineral_name, {
description = S("%s Ore"):format(S(description)),
2013-08-31 17:01:44 +02:00
tiles = {"default_stone.png^"..modname.."_mineral_"..mineral_name..".png"},
2014-06-24 17:49:10 +02:00
groups = {cracky = 3},
2013-07-11 20:32:45 +02:00
sounds = default_stone_sounds,
2013-08-31 17:01:44 +02:00
drop = lumpitem
2013-07-11 20:32:45 +02:00
})
end
if oredef.makes.block then
local blockitem = item_base .. "_block"
minetest.register_node(blockitem, {
description = S("%s Block"):format(S(description)),
tiles = { img_base .. "_block.png" },
2014-06-24 17:49:10 +02:00
groups = {snappy = 1,bendy = 2, cracky = 1,melty = 2,level= 2},
2013-07-11 20:32:45 +02:00
sounds = default_stone_sounds
})
minetest.register_alias(mineral_name.."_block", blockitem)
2013-08-31 17:01:44 +02:00
if oredef.makes.ingot then
minetest.register_craft( {
output = blockitem,
recipe = get_recipe(ingot, "block")
})
minetest.register_craft( {
output = ingot .. " 9",
recipe = {
{ blockitem }
}
})
end
2013-07-11 20:32:45 +02:00
end
if oredef.makes.lump then
minetest.register_craftitem(lumpitem, {
description = S("%s Lump"):format(S(description)),
inventory_image = img_base .. "_lump.png",
})
minetest.register_alias(mineral_name .. "_lump", lumpitem)
if oredef.makes.ingot then
minetest.register_craft({
type = "cooking",
output = ingot,
recipe = lumpitem
})
end
end
if oredef.makes.ingot then
minetest.register_craftitem(ingot, {
description = S("%s Ingot"):format(S(description)),
inventory_image = img_base .. "_ingot.png",
})
minetest.register_alias(mineral_name .. "_ingot", ingot)
end
2013-08-31 17:01:44 +02:00
if oredef.makes.chest then
minetest.register_craft( {
2014-06-24 17:49:10 +02:00
output = "default:chest_locked",
2013-08-31 17:01:44 +02:00
recipe = {
2014-06-24 17:49:10 +02:00
{ingot},
{"default:chest"}
2013-08-31 17:01:44 +02:00
}
})
minetest.register_craft( {
2014-06-24 17:49:10 +02:00
output = "default:chest_locked",
2013-08-31 17:01:44 +02:00
recipe = get_recipe(ingot, "lockedchest")
})
end
oredef.oredef.ore_type = "scatter"
2014-06-24 17:49:10 +02:00
oredef.oredef.ore = modname .. ":mineral_" .. mineral_name
2013-08-31 17:01:44 +02:00
oredef.oredef.wherein = "default:stone"
2013-09-02 12:15:12 +02:00
minetest.register_ore(oredef.oredef)
2013-07-11 20:32:45 +02:00
2013-09-08 20:09:03 +02:00
for toolname, tooldef in pairs(oredef.tools) do
2013-09-08 19:57:27 +02:00
local tdef = {
2013-07-11 20:32:45 +02:00
description = "",
inventory_image = toolimg_base .. toolname .. ".png",
tool_capabilities = {
2014-06-24 17:49:10 +02:00
max_drop_level = 3,
groupcaps = tooldef
2013-07-11 20:32:45 +02:00
}
}
2014-07-05 10:57:50 +02:00
2013-07-11 20:32:45 +02:00
if toolname == "sword" then
2014-07-05 10:57:50 +02:00
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
tdef.tool_capabilities.damage_groups = oredef.damage_groups
2013-09-08 19:57:27 +02:00
tdef.description = S("%s Sword"):format(S(description))
2013-07-11 20:32:45 +02:00
end
2014-07-05 10:57:50 +02:00
2013-07-11 20:32:45 +02:00
if toolname == "pick" then
2014-07-05 10:57:50 +02:00
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
tdef.tool_capabilities.damage_groups = oredef.damage_groups
2013-09-08 19:57:27 +02:00
tdef.description = S("%s Pickaxe"):format(S(description))
2013-07-11 20:32:45 +02:00
end
2014-07-05 10:57:50 +02:00
2013-07-11 20:32:45 +02:00
if toolname == "axe" then
2014-07-05 10:57:50 +02:00
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
tdef.tool_capabilities.damage_groups = oredef.damage_groups
2013-09-08 19:57:27 +02:00
tdef.description = S("%s Axe"):format(S(description))
2013-07-11 20:32:45 +02:00
end
if toolname == "shovel" then
2014-06-24 17:49:10 +02:00
tdef.full_punch_interval = oredef.full_punch_interval
2014-07-05 10:57:50 +02:00
tdef.tool_capabilities.damage_groups = oredef.damage_groups
2013-09-08 19:57:27 +02:00
tdef.description = S("%s Shovel"):format(S(description))
2013-07-11 20:32:45 +02:00
end
2013-08-31 17:01:44 +02:00
if toolname == "hoe" then
2013-09-08 19:57:27 +02:00
tdef.description = S("%s Hoe"):format(S(description))
2013-09-08 20:09:03 +02:00
local uses = tooldef.uses
tooldef.uses = nil
2013-09-08 19:57:27 +02:00
tdef.on_use = function(itemstack, user, pointed_thing)
2013-08-31 17:01:44 +02:00
return hoe_on_use(itemstack, user, pointed_thing, uses)
end
end
2013-07-11 20:32:45 +02:00
local fulltoolname = tool_base .. toolname .. tool_post
2013-09-08 19:57:27 +02:00
minetest.register_tool(fulltoolname, tdef)
2013-07-11 20:32:45 +02:00
minetest.register_alias(toolname .. tool_post, fulltoolname)
if oredef.makes.ingot then
minetest.register_craft({
2013-08-31 17:01:44 +02:00
output = fulltoolname,
2013-09-02 12:15:12 +02:00
recipe = get_recipe(ingot, toolname)
2013-07-11 20:32:45 +02:00
})
end
end
end
2014-06-24 17:49:10 +02:00
-- Add everything:
2013-07-11 20:32:45 +02:00
local modname = "moreores"
local oredefs = {
silver = {
2013-09-02 12:15:12 +02:00
desc = "Silver",
2014-06-24 17:49:10 +02:00
makes = {ore = true, block = true, lump = true, ingot = true, chest = true},
2013-08-31 17:01:44 +02:00
oredef = {clust_scarcity = moreores_silver_chunk_size * moreores_silver_chunk_size * moreores_silver_chunk_size,
clust_num_ores = moreores_silver_ore_per_chunk,
clust_size = moreores_silver_chunk_size,
height_min = moreores_silver_min_depth,
height_max = moreores_silver_max_depth
},
2013-07-11 20:32:45 +02:00
tools = {
pick = {
2014-06-24 17:49:10 +02:00
cracky = {times = {[1] = 2.60, [2] = 1.00, [3] = 0.60}, uses = 100, maxlevel= 1}
2013-07-11 20:32:45 +02:00
},
2013-08-31 17:01:44 +02:00
hoe = {
uses = 300
},
2013-07-11 20:32:45 +02:00
shovel = {
2014-06-24 17:49:10 +02:00
crumbly = {times = {[1] = 1.10, [2] = 0.40, [3] = 0.25}, uses = 100, maxlevel= 1}
2013-07-11 20:32:45 +02:00
},
axe = {
2014-06-24 17:49:10 +02:00
choppy = {times = {[1] = 2.50, [2] = 0.80, [3] = 0.50}, uses = 100, maxlevel= 1},
fleshy = {times = {[2] = 1.10, [3] = 0.60}, uses = 100, maxlevel= 1}
2013-07-11 20:32:45 +02:00
},
sword = {
2014-06-24 17:49:10 +02:00
fleshy = {times = {[2] = 0.70, [3] = 0.30}, uses = 100, maxlevel= 1},
snappy = {times = {[2] = 0.70, [3] = 0.30}, uses = 100, maxlevel= 1},
choppy = {times = {[3] = 0.80}, uses = 100, maxlevel= 0}
2013-07-11 20:32:45 +02:00
}
},
2014-06-24 17:49:10 +02:00
full_punch_interval = 1.0,
damage_groups = {fleshy = 6},
2013-07-11 20:32:45 +02:00
},
tin = {
2013-09-02 12:15:12 +02:00
desc = "Tin",
2014-06-24 17:49:10 +02:00
makes = {ore = true, block = true, lump = true, ingot = true, chest = false},
2013-08-31 17:01:44 +02:00
oredef = {clust_scarcity = moreores_tin_chunk_size * moreores_tin_chunk_size * moreores_tin_chunk_size,
clust_num_ores = moreores_tin_ore_per_chunk,
clust_size = moreores_tin_chunk_size,
height_min = moreores_tin_min_depth,
height_max = moreores_tin_max_depth
},
2013-07-11 20:32:45 +02:00
tools = {}
},
mithril = {
2013-09-02 12:15:12 +02:00
desc = "Mithril",
2014-06-24 17:49:10 +02:00
makes = {ore = true, block = true, lump = true, ingot = true, chest = false},
2013-08-31 17:01:44 +02:00
oredef = {clust_scarcity = moreores_mithril_chunk_size * moreores_mithril_chunk_size * moreores_mithril_chunk_size,
clust_num_ores = moreores_mithril_ore_per_chunk,
clust_size = moreores_mithril_chunk_size,
height_min = moreores_mithril_min_depth,
height_max = moreores_mithril_max_depth
},
2013-07-11 20:32:45 +02:00
tools = {
pick = {
2014-06-24 17:49:10 +02:00
cracky = {times = {[1] = 2.25, [2] = 0.55, [3] = 0.35}, uses = 200, maxlevel= 1}
2013-07-11 20:32:45 +02:00
},
2013-08-31 17:01:44 +02:00
hoe = {
uses = 1000
},
2013-07-11 20:32:45 +02:00
shovel = {
2014-06-24 17:49:10 +02:00
crumbly = {times = {[1] = 0.70, [2] = 0.35, [3] = 0.20}, uses = 200, maxlevel= 1}
2013-07-11 20:32:45 +02:00
},
axe = {
2014-06-24 17:49:10 +02:00
choppy = {times = {[1] = 1.75, [2] = 0.45, [3] = 0.45}, uses = 200, maxlevel= 1},
fleshy = {times = {[2] = 0.95, [3] = 0.30}, uses = 200, maxlevel= 1}
2013-07-11 20:32:45 +02:00
},
sword = {
2014-06-24 17:49:10 +02:00
fleshy = {times = {[2] = 0.65, [3] = 0.25}, uses = 200, maxlevel= 1},
snappy = {times = {[2] = 0.70, [3] = 0.25}, uses = 200, maxlevel= 1},
choppy = {times = {[3] = 0.65}, uses = 200, maxlevel= 0}
2013-07-11 20:32:45 +02:00
}
},
2014-06-24 17:49:10 +02:00
full_punch_interval = 0.45,
damage_groups = {fleshy = 9},
2013-07-11 20:32:45 +02:00
}
}
for orename,def in pairs(oredefs) do
2013-09-02 12:15:12 +02:00
add_ore(modname, def.desc, orename, def)
2013-07-11 20:32:45 +02:00
end
-- Copper rail (special node)
minetest.register_craft({
output = "moreores:copper_rail 16",
recipe = {
2013-08-31 17:01:44 +02:00
{"default:copper_ingot", "", "default:copper_ingot"},
2014-04-03 00:08:21 +02:00
{"default:copper_ingot", "group:stick", "default:copper_ingot"},
2013-08-31 17:01:44 +02:00
{"default:copper_ingot", "", "default:copper_ingot"}
2013-07-11 20:32:45 +02:00
}
})
2014-06-24 17:49:10 +02:00
-- Bronze has some special cases, because it is made from copper and tin:
2013-07-11 20:32:45 +02:00
minetest.register_craft( {
type = "shapeless",
2013-08-31 17:01:44 +02:00
output = "default:bronze_ingot 3",
2013-07-11 20:32:45 +02:00
recipe = {
"moreores:tin_ingot",
2013-08-31 17:01:44 +02:00
"default:copper_ingot",
"default:copper_ingot",
2013-07-11 20:32:45 +02:00
}
})
2014-06-24 17:49:10 +02:00
-- Unique node:
2013-07-11 20:32:45 +02:00
minetest.register_node("moreores:copper_rail", {
description = S("Copper Rail"),
drawtype = "raillike",
tiles = {"moreores_copper_rail.png", "moreores_copper_rail_curved.png", "moreores_copper_rail_t_junction.png", "moreores_copper_rail_crossing.png"},
inventory_image = "moreores_copper_rail.png",
wield_image = "moreores_copper_rail.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
selection_box = {
type = "fixed",
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
},
2014-06-24 17:49:10 +02:00
groups = {bendy = 2,snappy = 1,dig_immediate = 2,rail= 1, connect_to_raillike = 1},
2013-07-11 20:32:45 +02:00
mesecons = {
effector = {
action_on = function(pos, node)
2013-08-31 17:01:44 +02:00
minetest.get_meta(pos):set_string("cart_acceleration", "0.5")
2013-07-11 20:32:45 +02:00
end,
action_off = function(pos, node)
2013-08-31 17:01:44 +02:00
minetest.get_meta(pos):set_string("cart_acceleration", "0")
2013-07-11 20:32:45 +02:00
end,
},
},
})
2014-06-24 17:49:10 +02:00
-- mg support:
2013-10-29 11:28:15 +01:00
if minetest.get_modpath("mg") then
dofile(moreores_modpath.."/mg.lua")
2013-10-29 11:28:15 +01:00
end
2014-04-30 20:04:58 +02:00
if minetest.setting_getbool("log_mods") then
print(S("[moreores] loaded."))
end