Update init.lua

This commit is contained in:
NO11 2021-07-11 14:54:19 +00:00
parent 6d17255fc2
commit 1e20b87a88
1 changed files with 23 additions and 30 deletions

View File

@ -1,20 +1,21 @@
local S = minetest.get_translator("mcl_nether_gold") local modname = minetest.get_current_modname()
local S = minetest.get_translator(modname)
minetest.register_node("mcl_nether_gold:nether_gold_ore", { minetest.register_node("mcl_nether_gold:nether_gold_ore", {
description = S("Nether Gold Ore"), description = S("Nether Gold Ore"),
_doc_items_longdesc = S("Nether gold ore is an ore containing gold nuggets. It is commonly found around netherrack in the Nether."), _doc_items_longdesc = S("Nether gold ore is an ore containing gold nuggets. It is commonly found around netherrack in the Nether."),
stack_max = 64, stack_max = 64,
tiles = {"mcl_nether_netherrack.png^mcl_nether_gold_ore.png"}, tiles = { "mcl_nether_netherrack.png^mcl_nether_gold_ore.png" },
is_ground_content = true, is_ground_content = true,
groups = {pickaxey=1, building_block=1, material_stone=1, xp=0}, groups = { pickaxey = 1, building_block = 1, material_stone = 1, xp = 0 },
drop = { drop = {
max_items = 1, max_items = 1,
items = { items = {
{items = {'mcl_core:gold_nugget 6'},rarity = 5}, { items = { "mcl_core:gold_nugget 6" }, rarity = 5 },
{items = {'mcl_core:gold_nugget 5'},rarity = 5}, { items = { "mcl_core:gold_nugget 5" }, rarity = 5 },
{items = {'mcl_core:gold_nugget 4'},rarity = 5}, { items = { "mcl_core:gold_nugget 4" }, rarity = 5 },
{items = {'mcl_core:gold_nugget 3'},rarity = 5}, { items = { "mcl_core:gold_nugget 3" }, rarity = 5 },
{items = {'mcl_core:gold_nugget 2'}}, { items = { "mcl_core:gold_nugget 2" } },
} }
}, },
sounds = mcl_sounds.node_sound_stone_defaults(), sounds = mcl_sounds.node_sound_stone_defaults(),
@ -26,30 +27,22 @@ minetest.register_node("mcl_nether_gold:nether_gold_ore", {
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = 'mcl_core:gold_ingot', output = "mcl_core:gold_ingot",
recipe = 'mcl_nether_gold:nether_gold_ore', recipe = "mcl_nether_gold:nether_gold_ore",
cooktime = 10, cooktime = 10,
}) })
if minetest.settings:get_bool("mcl_generate_ores", true) then if minetest.settings:get_bool("mcl_generate_ores", true) then
minetest.register_ore({ for _, g in pairs({ { 850, 4, 3 }, { 1650, 8, 4 } }) do
ore_type = "scatter", minetest.register_ore({
ore = "mcl_nether_gold:nether_gold_ore", ore_type = "scatter",
wherein = {"mcl_nether:netherrack", "mcl_core:stone"}, ore = "mcl_nether_gold:nether_gold_ore",
clust_scarcity = 850, wherein = { "mcl_nether:netherrack", "mcl_core:stone" },
clust_num_ores = 4, -- MC cluster amount: 4-10 clust_scarcity = g[1],
clust_size = 3, clust_num_ores = g[2],
y_min = mcl_vars.mg_nether_min, clust_size = g[3],
y_max = mcl_vars.mg_nether_max, y_min = mcl_vars.mg_nether_min,
}) y_max = mcl_vars.mg_nether_max,
minetest.register_ore({ })
ore_type = "scatter", end
ore = "mcl_nether_gold:nether_gold_ore",
wherein = {"mcl_nether:netherrack", "mcl_core:stone"},
clust_scarcity = 1650,
clust_num_ores = 8, -- MC cluster amount: 4-10
clust_size = 4,
y_min = mcl_vars.mg_nether_min,
y_max = mcl_vars.mg_nether_max,
})
end end