3 dofile(minetest
.get_modpath("tsm_pyramids").."/mummy.lua")
4 dofile(minetest
.get_modpath("tsm_pyramids").."/nodes.lua")
5 dofile(minetest
.get_modpath("tsm_pyramids").."/room.lua")
8 {name
="default:apple", max = 3},
9 {name
="farming:bread", max = 3},
10 {name
="default:steel_ingot", max = 2},
11 {name
="default:gold_ingot", max = 2},
12 {name
="default:diamond", max = 1},
13 {name
="default:pick_steel", max = 1},
14 {name
="default:pick_diamond", max = 1}
18 function pyramids
.fill_chest(pos
)
19 minetest
.after(2, function()
20 local n
= minetest
.get_node(pos
)
21 if n
and n
.name
and n
.name
== "default:chest" then
22 local meta
= minetest
.get_meta(pos
)
23 local inv
= meta
:get_inventory()
24 inv
:set_size("main", 8*4)
25 if math
.random(1,10) < 7 then return end
27 if minetest
.get_modpath("treasurer") ~= nil then
28 stacks
= treasurer
.select_random_treasures(3,7,9,{"minetool", "food", "crafting_component"})
31 local stuff
= chest_stuff
[math
.random(1,#chest_stuff
)]
32 if stuff
.name
== "farming:bread" and not minetest
.get_modpath("farming") then stuff
= chest_stuff
[1] end
33 table.insert(stacks
, {name
=stuff
.name
, count
= math
.random(1,stuff
.max)})
37 if not inv
:contains_item("main", stacks
[s
]) then
38 inv
:set_stack("main", math
.random(1,32), stacks
[s
])
46 local function add_spawner(pos
)
47 minetest
.set_node(pos
, {name
="tsm_pyramids:spawner_mummy"})
48 if not minetest
.setting_getbool("only_peaceful_mobs") then pyramids
.spawn_mummy({x
=pos
.x
,y
=pos
.y
,z
=pos
.z
-2},2) end
51 local function can_replace(pos
)
52 local n
= minetest
.get_node_or_nil(pos
)
53 if n
and n
.name
and minetest
.registered_nodes
[n
.name
] and not minetest
.registered_nodes
[n
.name
].walkable
then
62 local function underground(pos
, stone
, sand
)
67 while can_replace(p2
)==true do
69 if cnt
> 25 then break end
70 if cnt
>math
.random(2,4) then mat
= stone
end
71 minetest
.set_node(p2
, {name
=mat
})
76 local function make_entrance(pos
, brick
)
77 local gang
= {x
=pos
.x
+10,y
=pos
.y
, z
=pos
.z
}
80 minetest
.remove_node({x
=gang
.x
+1,y
=gang
.y
+iy
,z
=gang
.z
+iz
})
81 if iz
>=3 and iy
== 3 then
82 minetest
.set_node({x
=gang
.x
,y
=gang
.y
+iy
+1,z
=gang
.z
+iz
}, {name
=brick
})
83 minetest
.set_node({x
=gang
.x
+1,y
=gang
.y
+iy
+1,z
=gang
.z
+iz
}, {name
=brick
})
84 minetest
.set_node({x
=gang
.x
+2,y
=gang
.y
+iy
+1,z
=gang
.z
+iz
}, {name
=brick
})
90 local function make(pos
, brick
, sandstone
, stone
, sand
, ptype
)
91 minetest
.log("action", "Created pyramid at ("..pos
.x
..","..pos
.y
..","..pos
.z
..")")
95 if iy
<1 then underground({x
=pos
.x
+ix
,y
=pos
.y
,z
=pos
.z
+iz
}, stone
, sand
) end
96 minetest
.set_node({x
=pos
.x
+ix
,y
=pos
.y
+iy
,z
=pos
.z
+iz
}, {name
=brick
})
98 local n
= minetest
.get_node({x
=pos
.x
+ix
,y
=pos
.y
+iy
+yy
,z
=pos
.z
+iz
})
99 if n
and n
.name
and n
.name
== stone
then
100 minetest
.set_node({x
=pos
.x
+ix
,y
=pos
.y
+iy
+yy
,z
=pos
.z
+iz
},{name
=sand
})
107 pyramids
.make_room(pos
, ptype
)
108 minetest
.after(2, pyramids
.make_traps
, pos
)
109 add_spawner({x
=pos
.x
+11,y
=pos
.y
+2, z
=pos
.z
+17})
110 make_entrance({x
=pos
.x
,y
=pos
.y
, z
=pos
.z
}, brick
)
113 local perl1
= {SEED1
= 9130, OCTA1
= 3, PERS1
= 0.5, SCAL1
= 250} -- Values should match minetest mapgen V6 desert noise.
116 local function hlp_fnct(pos
, name
)
117 local n
= minetest
.get_node_or_nil(pos
)
118 if n
and n
.name
and n
.name
== name
then
124 local function ground(pos
, old
)
126 while hlp_fnct(p2
, "air") do
137 minetest
.register_on_generated(function(minp
, maxp
, seed
)
138 if maxp
.y
< 0 then return end
139 math
.randomseed(seed
)
142 perlin1
= minetest
.get_perlin(perl1
.SEED1
, perl1
.OCTA1
, perl1
.PERS1
, perl1
.SCAL1
)
144 local noise1
= perlin1
:get2d({x
=minp
.x
,y
=minp
.y
})--,z=minp.z})
146 if noise1
> 0.25 or noise1
< -0.26 then
147 local mpos
= {x
=math
.random(minp
.x
,maxp
.x
), y
=math
.random(minp
.y
,maxp
.y
), z
=math
.random(minp
.z
,maxp
.z
)}
149 local sands
= {"default:desert_sand", "default:sand"}
154 p2
= minetest
.find_node_near(mpos
, 25, sand
)
155 while p2
== nil and cnt
< 5 do
157 mpos
= {x
=math
.random(minp
.x
,maxp
.x
), y
=math
.random(minp
.y
,maxp
.y
), z
=math
.random(minp
.z
,maxp
.z
)}
158 p2
= minetest
.find_node_near(mpos
, 25, sand
)
164 if p2
== nil then return end
165 if p2
.y
< 0 then return end
168 local opos1
= {x
=p2
.x
+22,y
=p2
.y
-1,z
=p2
.z
+22}
169 local opos2
= {x
=p2
.x
+22,y
=p2
.y
-1,z
=p2
.z
}
170 local opos3
= {x
=p2
.x
,y
=p2
.y
-1,z
=p2
.z
+22}
171 local opos1_n
= minetest
.get_node_or_nil(opos1
)
172 local opos2_n
= minetest
.get_node_or_nil(opos2
)
173 local opos3_n
= minetest
.get_node_or_nil(opos3
)
174 if opos1_n
and opos1_n
.name
and opos1_n
.name
== "air" then
175 p2
= ground(opos1
, p2
)
177 if opos2_n
and opos2_n
.name
and opos2_n
.name
== "air" then
178 p2
= ground(opos2
, p2
)
180 if opos3_n
and opos3_n
.name
and opos3_n
.name
== "air" then
181 p2
= ground(opos3
, p2
)
184 if p2
.y
< 0 then p2
.y
= 0 end
185 if minetest
.find_node_near(p2
, 25, {"default:water_source"}) ~= nil or
186 minetest
.find_node_near(p2
, 22, {"default:dirt_with_grass"}) ~= nil or
187 minetest
.find_node_near(p2
, 52, {"default:sandstonebrick"}) ~= nil or
188 minetest
.find_node_near(p2
, 52, {"sandplus:desert_sandstonebrick"}) ~= nil then
192 if math
.random(0,10) > 7 then
195 if sand
== "default:desert_sand" then
196 if minetest
.get_modpath("sandplus") then
197 minetest
.after(0.8, make
, p2
, "sandplus:desert_sandstonebrick", "sandplus:desert_sandstone", "default:desert_stone", "default:desert_sand", "desert")
199 minetest
.after(0.8, make
, p2
, "default:desert_sandstone_brick", "default:desert_sandstone", "default:desert_stone", "default:desert_sand", "desert")
202 minetest
.after(0.8, make
, p2
, "default:sandstonebrick", "default:sandstone", "default:sandstone", "default:sand", "sandstone")
207 -- Add backwards-compability for nodes from the original pyramids mod
208 if minetest
.get_modpath("pyramids") == nil then
210 minetest
.register_alias("pyramids:trap", "tsm_pyramids:trap")
211 minetest
.register_alias("pyramids:trap_2", "tsm_pyramids:trap_2")
212 minetest
.register_alias("pyramids:deco_stone1", "tsm_pyramids:deco_stone1")
213 minetest
.register_alias("pyramids:deco_stone2", "tsm_pyramids:deco_stone2")
214 minetest
.register_alias("pyramids:deco_stone3", "tsm_pyramids:deco_stone3")
215 minetest
.register_alias("pyramids:spawner_mummy", "tsm_pyramids:spawner_mummy")
217 -- FIXME: Entities are currently NOT backwards-compatible
218 -- TODO: Update README when full backwards-compability is achieved