|
@ -1,2 +0,0 @@
|
|||
name = Minimal development test
|
||||
|
Before Width: | Height: | Size: 392 B |
Before Width: | Height: | Size: 218 B |
|
@ -1,2 +0,0 @@
|
|||
default
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
-- bucket (Minetest 0.4 mod)
|
||||
-- A bucket, which can pick up water and lava
|
||||
|
||||
minetest.register_alias("bucket", "bucket:bucket_empty")
|
||||
minetest.register_alias("bucket_water", "bucket:bucket_water")
|
||||
minetest.register_alias("bucket_lava", "bucket:bucket_lava")
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'bucket:bucket_empty 1',
|
||||
recipe = {
|
||||
{'default:steel_ingot', '', 'default:steel_ingot'},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
}
|
||||
})
|
||||
|
||||
bucket = {}
|
||||
bucket.liquids = {}
|
||||
|
||||
-- Register a new liquid
|
||||
-- source = name of the source node
|
||||
-- flowing = name of the flowing node
|
||||
-- itemname = name of the new bucket item (or nil if liquid is not takeable)
|
||||
-- inventory_image = texture of the new bucket item (ignored if itemname == nil)
|
||||
-- This function can be called from any mod (that depends on bucket).
|
||||
function bucket.register_liquid(source, flowing, itemname, inventory_image)
|
||||
bucket.liquids[source] = {
|
||||
source = source,
|
||||
flowing = flowing,
|
||||
itemname = itemname,
|
||||
}
|
||||
bucket.liquids[flowing] = bucket.liquids[source]
|
||||
|
||||
if itemname ~= nil then
|
||||
minetest.register_craftitem(itemname, {
|
||||
inventory_image = inventory_image,
|
||||
stack_max = 1,
|
||||
liquids_pointable = true,
|
||||
on_use = function(itemstack, user, pointed_thing)
|
||||
-- Must be pointing to node
|
||||
if pointed_thing.type ~= "node" then
|
||||
return
|
||||
end
|
||||
-- Check if pointing to a liquid
|
||||
n = minetest.get_node(pointed_thing.under)
|
||||
if bucket.liquids[n.name] == nil then
|
||||
-- Not a liquid
|
||||
minetest.add_node(pointed_thing.above, {name=source})
|
||||
elseif n.name ~= source then
|
||||
-- It's a liquid
|
||||
minetest.add_node(pointed_thing.under, {name=source})
|
||||
end
|
||||
return {name="bucket:bucket_empty"}
|
||||
end
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_craftitem("bucket:bucket_empty", {
|
||||
inventory_image = "bucket.png",
|
||||
stack_max = 1,
|
||||
liquids_pointable = true,
|
||||
on_use = function(itemstack, user, pointed_thing)
|
||||
-- Must be pointing to node
|
||||
if pointed_thing.type ~= "node" then
|
||||
return
|
||||
end
|
||||
-- Check if pointing to a liquid source
|
||||
n = minetest.get_node(pointed_thing.under)
|
||||
liquiddef = bucket.liquids[n.name]
|
||||
if liquiddef ~= nil and liquiddef.source == n.name and liquiddef.itemname ~= nil then
|
||||
minetest.add_node(pointed_thing.under, {name="air"})
|
||||
return {name=liquiddef.itemname}
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
bucket.register_liquid(
|
||||
"default:water_source",
|
||||
"default:water_flowing",
|
||||
"bucket:bucket_water",
|
||||
"bucket_water.png"
|
||||
)
|
||||
|
||||
bucket.register_liquid(
|
||||
"default:lava_source",
|
||||
"default:lava_flowing",
|
||||
"bucket:bucket_lava",
|
||||
"bucket_lava.png"
|
||||
)
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "bucket:bucket_lava",
|
||||
burntime = 60,
|
||||
})
|
Before Width: | Height: | Size: 182 B |
Before Width: | Height: | Size: 183 B |
Before Width: | Height: | Size: 180 B |
|
@ -1,126 +0,0 @@
|
|||
-- minetest/default/mapgen.lua
|
||||
|
||||
--
|
||||
-- Aliases for map generator outputs
|
||||
--
|
||||
|
||||
minetest.register_alias("mapgen_stone", "default:stone")
|
||||
minetest.register_alias("mapgen_tree", "default:tree")
|
||||
minetest.register_alias("mapgen_leaves", "default:leaves")
|
||||
minetest.register_alias("mapgen_apple", "default:apple")
|
||||
minetest.register_alias("mapgen_water_source", "default:water_source")
|
||||
minetest.register_alias("mapgen_dirt", "default:dirt")
|
||||
minetest.register_alias("mapgen_sand", "default:sand")
|
||||
minetest.register_alias("mapgen_gravel", "default:gravel")
|
||||
minetest.register_alias("mapgen_clay", "default:clay")
|
||||
minetest.register_alias("mapgen_lava_source", "default:lava_source")
|
||||
minetest.register_alias("mapgen_cobble", "default:cobble")
|
||||
minetest.register_alias("mapgen_mossycobble", "default:mossycobble")
|
||||
minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass")
|
||||
minetest.register_alias("mapgen_junglegrass", "default:junglegrass")
|
||||
minetest.register_alias("mapgen_stone_with_coal", "default:stone_with_coal")
|
||||
minetest.register_alias("mapgen_stone_with_iron", "default:stone_with_iron")
|
||||
minetest.register_alias("mapgen_mese", "default:mese")
|
||||
minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble")
|
||||
|
||||
--
|
||||
-- Ore generation
|
||||
--
|
||||
|
||||
minetest.register_ore({
|
||||
ore_type = "scatter",
|
||||
ore = "default:stone_with_coal",
|
||||
wherein = "default:stone",
|
||||
clust_scarcity = 8*8*8,
|
||||
clust_num_ores = 5,
|
||||
clust_size = 3,
|
||||
height_min = -31000,
|
||||
height_max = 64,
|
||||
})
|
||||
|
||||
minetest.register_ore({
|
||||
ore_type = "scatter",
|
||||
ore = "default:stone_with_iron",
|
||||
wherein = "default:stone",
|
||||
clust_scarcity = 16*16*16,
|
||||
clust_num_ores = 5,
|
||||
clust_size = 3,
|
||||
height_min = -5,
|
||||
height_max = 7,
|
||||
})
|
||||
|
||||
minetest.register_ore({
|
||||
ore_type = "scatter",
|
||||
ore = "default:stone_with_iron",
|
||||
wherein = "default:stone",
|
||||
clust_scarcity = 12*12*12,
|
||||
clust_num_ores = 5,
|
||||
clust_size = 3,
|
||||
height_min = -16,
|
||||
height_max = -5,
|
||||
})
|
||||
|
||||
minetest.register_ore({
|
||||
ore_type = "scatter",
|
||||
ore = "default:stone_with_iron",
|
||||
wherein = "default:stone",
|
||||
clust_scarcity = 9*9*9,
|
||||
clust_num_ores = 5,
|
||||
clust_size = 3,
|
||||
height_min = -31000,
|
||||
height_max = -17,
|
||||
})
|
||||
|
||||
minetest.register_on_generated(function(minp, maxp, seed)
|
||||
-- Generate clay
|
||||
if maxp.y >= 2 and minp.y <= 0 then
|
||||
-- Assume X and Z lengths are equal
|
||||
local divlen = 4
|
||||
local divs = (maxp.x-minp.x)/divlen+1;
|
||||
for divx=0+1,divs-1-1 do
|
||||
for divz=0+1,divs-1-1 do
|
||||
local cx = minp.x + math.floor((divx+0.5)*divlen)
|
||||
local cz = minp.z + math.floor((divz+0.5)*divlen)
|
||||
if minetest.get_node({x=cx,y=1,z=cz}).name == "default:water_source" and
|
||||
minetest.get_node({x=cx,y=0,z=cz}).name == "default:sand" then
|
||||
local is_shallow = true
|
||||
local num_water_around = 0
|
||||
if minetest.get_node({x=cx-divlen*2,y=1,z=cz+0}).name == "default:water_source" then
|
||||
num_water_around = num_water_around + 1 end
|
||||
if minetest.get_node({x=cx+divlen*2,y=1,z=cz+0}).name == "default:water_source" then
|
||||
num_water_around = num_water_around + 1 end
|
||||
if minetest.get_node({x=cx+0,y=1,z=cz-divlen*2}).name == "default:water_source" then
|
||||
num_water_around = num_water_around + 1 end
|
||||
if minetest.get_node({x=cx+0,y=1,z=cz+divlen*2}).name == "default:water_source" then
|
||||
num_water_around = num_water_around + 1 end
|
||||
if num_water_around >= 2 then
|
||||
is_shallow = false
|
||||
end
|
||||
if is_shallow then
|
||||
for x1=-divlen,divlen do
|
||||
for z1=-divlen,divlen do
|
||||
if minetest.get_node({x=cx+x1,y=0,z=cz+z1}).name == "default:sand" then
|
||||
minetest.set_node({x=cx+x1,y=0,z=cz+z1}, {name="default:clay"})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
||||
--
|
||||
-- Register biome for biome API
|
||||
--
|
||||
|
||||
minetest.register_biome({
|
||||
name = "Grassland",
|
||||
-- Will use defaults of omitted parameters
|
||||
y_min = -31000,
|
||||
y_max = 31000,
|
||||
heat_point = 50,
|
||||
humidity_point = 50,
|
||||
})
|
||||
|
Before Width: | Height: | Size: 273 B |
Before Width: | Height: | Size: 255 B |
Before Width: | Height: | Size: 109 B |
Before Width: | Height: | Size: 157 B |
Before Width: | Height: | Size: 515 B |
Before Width: | Height: | Size: 457 B |
Before Width: | Height: | Size: 144 B |
Before Width: | Height: | Size: 121 B |
Before Width: | Height: | Size: 114 B |
Before Width: | Height: | Size: 145 B |
Before Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 93 B |
Before Width: | Height: | Size: 318 B |
Before Width: | Height: | Size: 173 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 83 B |
Before Width: | Height: | Size: 138 B |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 220 B |
Before Width: | Height: | Size: 719 B |
Before Width: | Height: | Size: 159 B |
Before Width: | Height: | Size: 283 B |
Before Width: | Height: | Size: 125 B |
Before Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 782 B |
Before Width: | Height: | Size: 771 B |
Before Width: | Height: | Size: 878 B |
Before Width: | Height: | Size: 172 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 237 B |
Before Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 172 B |
Before Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 142 B |
Before Width: | Height: | Size: 922 B |
Before Width: | Height: | Size: 603 B |
Before Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 204 B |
Before Width: | Height: | Size: 137 B |
Before Width: | Height: | Size: 148 B |
Before Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 165 B |
Before Width: | Height: | Size: 437 B |
Before Width: | Height: | Size: 388 B |
Before Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 762 B |
Before Width: | Height: | Size: 744 B |
Before Width: | Height: | Size: 328 B |
Before Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 416 B |
Before Width: | Height: | Size: 128 B |
Before Width: | Height: | Size: 144 B |
Before Width: | Height: | Size: 120 B |
Before Width: | Height: | Size: 389 B |
Before Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 146 B |
Before Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 163 B |
Before Width: | Height: | Size: 144 B |
Before Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 141 B |
Before Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 144 B |
Before Width: | Height: | Size: 168 B |
Before Width: | Height: | Size: 134 B |
Before Width: | Height: | Size: 149 B |
Before Width: | Height: | Size: 135 B |
Before Width: | Height: | Size: 147 B |
Before Width: | Height: | Size: 146 B |
Before Width: | Height: | Size: 137 B |
Before Width: | Height: | Size: 138 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 177 B |
Before Width: | Height: | Size: 302 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 248 B |
Before Width: | Height: | Size: 157 B |
Before Width: | Height: | Size: 149 B |
Before Width: | Height: | Size: 757 B |