forked from Mineclonia/Mineclonia
142 lines
5.2 KiB
Lua
142 lines
5.2 KiB
Lua
-- This file stores the various node types. This makes it easier to plug this mod into games
|
|
-- in which you need to change the node names.
|
|
|
|
-- Adapted for MineClone 2!
|
|
|
|
-- Node names (Don't use aliases!)
|
|
tsm_railcorridors.nodes = {
|
|
dirt = "mcl_core:dirt",
|
|
chest = "mcl_chests:chest",
|
|
rail = "mcl_minecarts:rail",
|
|
torch_floor = "mcl_torches:torch",
|
|
torch_wall = "mcl_torches:torch_wall",
|
|
cobweb = "mcl_core:cobweb",
|
|
spawner = "mcl_mobspawners:spawner",
|
|
}
|
|
|
|
local mg_name = minetest.get_mapgen_setting("mg_name")
|
|
|
|
if mg_name == "v6" then
|
|
-- In v6, wood is chosen randomly.
|
|
--[[ Wood types for the corridors. Corridors are made out of full wood blocks
|
|
and posts. For each corridor system, a random wood type is chosen with the chance
|
|
specified in per mille. ]]
|
|
tsm_railcorridors.nodes.corridor_woods = {
|
|
{ wood = "mcl_core:wood", post = "mcl_fences:fence", chance = 900},
|
|
{ wood = "mcl_core:darkwood", post = "mcl_fences:dark_oak_fence", chance = 100},
|
|
}
|
|
else
|
|
-- This generates dark oak wood in mesa biomes and oak wood everywhere else.
|
|
tsm_railcorridors.nodes.corridor_woods_function = function(pos, node)
|
|
if minetest.get_item_group(node.name, "hardened_clay") ~= 0 then
|
|
return "mcl_core:darkwood", "mcl_fences:dark_oak_fence"
|
|
else
|
|
return "mcl_core:wood", "mcl_fences:fence"
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
-- TODO: Use minecart with chest instead of normal minecart
|
|
tsm_railcorridors.carts = { "mcl_minecarts:minecart" }
|
|
|
|
function tsm_railcorridors.on_construct_cart(pos, cart)
|
|
-- TODO: Fill cart with treasures
|
|
end
|
|
|
|
-- Fallback function. Returns a random treasure. This function is called for chests
|
|
-- only if the Treasurer mod is not found.
|
|
-- pr: A PseudoRandom object
|
|
function tsm_railcorridors.get_default_treasure(pr)
|
|
-- UNUSED IN MINECLONE 2!
|
|
end
|
|
|
|
-- Almost all spawners spawn cave spiders, but there is a 1 in 1000
|
|
-- chance to spawn a pig spawner instead, inspired by multiple bugs
|
|
-- in Minecraft that turn spawners in Mineshafts into pig spawners.
|
|
-- (Basically any spawner bug in Minecraft generates pig spawners.)
|
|
--
|
|
-- The Minecraft chance to get a pig spawner here is way lower than
|
|
-- 1 in 1000, but because of the small size of Minetest worlds, the
|
|
-- Minecraft chance would risk not having a pig spawner in a world.
|
|
--
|
|
-- The world with the seed “pigs” generates a pig spawner at 3,-8,7
|
|
function tsm_railcorridors.on_construct_spawner(pos, pr)
|
|
if pr:next(1,1000) == 900 then
|
|
mcl_mobspawners.setup_spawner(pos, "mobs_mc:pig", 0, 7)
|
|
else
|
|
mcl_mobspawners.setup_spawner(pos, "mobs_mc:cave_spider", 0, 7)
|
|
end
|
|
end
|
|
|
|
-- MineClone 2's treasure function. Gets all treasures for a single chest.
|
|
-- Based on information from Minecraft Wiki.
|
|
function tsm_railcorridors.get_treasures(pr)
|
|
local loottable = {
|
|
{
|
|
stacks_min = 1,
|
|
stacks_max = 1,
|
|
items = {
|
|
{ itemstring = "mcl_mobs:nametag", weight = 30 },
|
|
{ itemstring = "mcl_core:apple_gold", weight = 20 },
|
|
{ itemstack = mcl_enchanting.get_uniform_randomly_enchanted_book({"soul_speed"}), weight = 10 },
|
|
{ itemstring = "", weight = 5},
|
|
{ itemstring = "mcl_core:pick_iron", weight = 5 },
|
|
{ itemstring = "mcl_core:apple_gold_enchanted", weight = 1 },
|
|
}
|
|
},
|
|
{
|
|
stacks_min = 2,
|
|
stacks_max = 4,
|
|
items = {
|
|
{ itemstring = "mcl_farming:bread", weight = 15, amount_min = 1, amount_max = 3 },
|
|
{ itemstring = "mcl_core:coal_lump", weight = 10, amount_min = 3, amount_max = 8 },
|
|
{ itemstring = "mcl_farming:beetroot_seeds", weight = 10, amount_min = 2, amount_max = 4 },
|
|
{ itemstring = "mcl_farming:melon_seeds", weight = 10, amount_min = 2, amount_max = 4 },
|
|
{ itemstring = "mcl_farming:pumpkin_seeds", weight = 10, amount_min = 2, amount_max = 4 },
|
|
{ itemstring = "mcl_core:iron_ingot", weight = 10, amount_min = 1, amount_max = 5 },
|
|
{ itemstring = "mcl_dye:blue", weight = 5, amount_min = 4, amount_max = 9 },
|
|
{ itemstring = "mesecons:redstone", weight = 5, amount_min = 4, amount_max = 9 },
|
|
{ itemstring = "mcl_core:gold_ingot", weight = 5, amount_min = 1, amount_max = 3 },
|
|
{ itemstring = "mcl_core:diamond", weight = 3, amount_min = 1, amount_max = 2 },
|
|
}
|
|
},
|
|
{
|
|
stacks_min = 3,
|
|
stacks_max = 3,
|
|
items = {
|
|
{ itemstring = "mcl_minecarts:rail", weight = 20, amount_min = 4, amount_max = 8 },
|
|
{ itemstring = "mcl_torches:torch", weight = 15, amount_min = 1, amount_max = 16 },
|
|
{ itemstring = "mcl_minecarts:activator_rail", weight = 5, amount_min = 1, amount_max = 4 },
|
|
{ itemstring = "mcl_minecarts:detector_rail", weight = 5, amount_min = 1, amount_max = 4 },
|
|
{ itemstring = "mcl_minecarts:golden_rail", weight = 5, amount_min = 1, amount_max = 4 },
|
|
}
|
|
},
|
|
-- non-MC loot: 50% chance to add a minecart, offered as alternative to spawning minecarts on rails.
|
|
-- TODO: Remove this when minecarts spawn on rails.
|
|
{
|
|
stacks_min = 0,
|
|
stacks_max = 1,
|
|
items = {
|
|
{ itemstring = "mcl_minecarts:minecart", weight = 1 },
|
|
}
|
|
}
|
|
}
|
|
|
|
-- Bonus loot for v6 mapgen: Otherwise unobtainable saplings.
|
|
if mg_name == "v6" then
|
|
table.insert(loottable, {
|
|
stacks_min = 1,
|
|
stacks_max = 3,
|
|
items = {
|
|
{ itemstring = "mcl_core:darksapling", weight = 1, amount_min = 1, amount_max = 3 },
|
|
{ itemstring = "mcl_core:birchsapling", weight = 1, amount_min = 1, amount_max = 2 },
|
|
{ itemstring = "", weight = 6 },
|
|
},
|
|
})
|
|
end
|
|
local items = mcl_loot.get_multi_loot(loottable, pr)
|
|
|
|
return items
|
|
end
|