Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
8bf81458bd |
0
.gitignore
vendored
Normal file → Executable file
@ -1,3 +0,0 @@
|
|||||||
read_globals = {"minetest", "vector", "PseudoRandom", "ItemStack", "VoxelArea",
|
|
||||||
"table", "dump", "default"}
|
|
||||||
globals = {"riesenpilz"}
|
|
13
LICENSE.txt
Normal file → Executable file
@ -1,9 +1,6 @@
|
|||||||
Sounds and textures
|
------Mushrooms------
|
||||||
CC by 3.0
|
— glowshroom and lavashroom from bas080's plants mod (WTFPL)
|
||||||
Code
|
— parasol mushroom from a mod called mushrooms (WTFPL)
|
||||||
MIT
|
— "45" mushrooms from r01922090's mush45 mod (WTFPL)
|
||||||
|
|
||||||
Some source information:
|
rest also WTFPL
|
||||||
— glowshroom and lavashroom from bas080's plants mod (originally WTFPL)
|
|
||||||
— parasol mushroom from a mod called mushrooms (originally WTFPL)
|
|
||||||
— "45" mushrooms from r01922090's mush45 mod (originally WTFPL)
|
|
||||||
|
23
README.md
Normal file → Executable file
@ -2,24 +2,17 @@
|
|||||||
|
|
||||||
This mod adds mushrooms to minetest. The growing tool can make them giant.
|
This mod adds mushrooms to minetest. The growing tool can make them giant.
|
||||||
|
|
||||||
**Depends:** see [depends.txt](https://raw.githubusercontent.com/HybridDog/riesenpilz/master/depends.txt)<br/>
|
**Depends:** see [depends.txt](https://raw.githubusercontent.com/HybridDog/riesenpilz/master/depends.txt)
|
||||||
**License:** see [LICENSE.txt](https://raw.githubusercontent.com/HybridDog/riesenpilz/master/LICENSE.txt)<br/>
|
**License:** see [LICENSE.txt](https://raw.githubusercontent.com/HybridDog/riesenpilz/master/LICENSE.txt)
|
||||||
**Download:** [zip](https://github.com/HybridDog/riesenpilz/archive/master.zip), [tar.gz](https://github.com/HybridDog/riesenpilz/archive/master.tar.gz)<br/>
|
**Download:** [zip](https://github.com/HybridDog/riesenpilz/archive/master.zip), [tar.gz](https://github.com/HybridDog/riesenpilz/archive/master.tar.gz)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
If you got ideas or found bugs, please tell them to me.
|
If you got ideas or found bugs, please tell them to me.
|
||||||
|
|
||||||
|
|
||||||
TODO:
|
TODO:
|
||||||
* Mapgen: Do not use a fixed table of tree nodes; instead use a more flexible
|
— add more giant mushrooms
|
||||||
way to remove trees.
|
— finish supporting the mushrooms mod
|
||||||
* Add a settingtypes.txt
|
— add lava suit
|
||||||
* Make the growingtool craftable
|
— eating must become possible
|
||||||
* Test if visual_scale is useful for the small mushroom nodes,
|
|
||||||
e.g. to make textures smaller or to use power-of-two sized textures.
|
|
||||||
Nodeboxes would need to be changed accordingly (maybe automatically).
|
|
||||||
* Add new features:
|
|
||||||
* Add more giant mushrooms
|
|
||||||
* Add more content from the mushrooms mod
|
|
||||||
* Add a lava suit
|
|
||||||
|
4
depends.txt
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
default
|
||||||
|
vector_extras
|
||||||
|
fence_registration?
|
||||||
|
watershed?
|
20
functions.lua
Normal file → Executable file
@ -7,7 +7,7 @@ if riesenpilz.info then
|
|||||||
else
|
else
|
||||||
info = "[riesenpilz] "..msg
|
info = "[riesenpilz] "..msg
|
||||||
end
|
end
|
||||||
print(info)
|
minetest.log("action", info)
|
||||||
if riesenpilz.inform_all then
|
if riesenpilz.inform_all then
|
||||||
minetest.chat_send_all(info)
|
minetest.chat_send_all(info)
|
||||||
end
|
end
|
||||||
@ -17,21 +17,3 @@ else
|
|||||||
function riesenpilz.inform()
|
function riesenpilz.inform()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local circle_tables = {}
|
|
||||||
function riesenpilz.circle(r)
|
|
||||||
local circle = circle_tables[r]
|
|
||||||
if circle then
|
|
||||||
return circle
|
|
||||||
end
|
|
||||||
circle = {}
|
|
||||||
for i = -r, r do
|
|
||||||
for j = -r, r do
|
|
||||||
if math.floor(math.sqrt(i * i + j * j) + 0.5) == r then
|
|
||||||
circle[#circle+1] = {x=i, y=0, z=j}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
circle_tables[r] = circle
|
|
||||||
return circle
|
|
||||||
end
|
|
||||||
|
418
init.lua
Normal file → Executable file
@ -17,67 +17,22 @@ local function r_area(manip, width, height, pos)
|
|||||||
return VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2})
|
return VoxelArea:new({MinEdge=emerged_pos1, MaxEdge=emerged_pos2})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function set_vm_data(manip, nodes, pos, t1, name)
|
||||||
|
manip:set_data(nodes)
|
||||||
|
manip:write_to_map()
|
||||||
|
riesenpilz.inform("a giant "..name.." mushroom grew at "..vector.pos_to_string(pos), 3, t1)
|
||||||
|
local t1 = os.clock()
|
||||||
|
manip:update_map()
|
||||||
|
riesenpilz.inform("map updated", 3, t1)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- contents become added later
|
-- contents become added later
|
||||||
local c
|
local c
|
||||||
|
|
||||||
-- cache buildable_to ids
|
|
||||||
local re_al_cache = {[minetest.get_content_id("ignore")] = true}
|
|
||||||
local function replacing_allowed(id)
|
|
||||||
if re_al_cache[id] ~= nil then
|
|
||||||
return re_al_cache[id]
|
|
||||||
end
|
|
||||||
local def = minetest.registered_nodes[minetest.get_name_from_content_id(id)]
|
|
||||||
if not def
|
|
||||||
or def.buildable_to then
|
|
||||||
re_al_cache[id] = true
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
re_al_cache[id] = false
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
local set_vm_nodes
|
|
||||||
if riesenpilz.giant_restrict_area then
|
|
||||||
function set_vm_nodes(manip, pznodes)
|
|
||||||
local nodes = manip:get_data()
|
|
||||||
for vi,id in pairs(pznodes) do
|
|
||||||
if not replacing_allowed(nodes[vi]) then
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
nodes[vi] = id
|
|
||||||
end
|
|
||||||
manip:set_data(nodes)
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
else
|
|
||||||
function set_vm_nodes(manip, pznodes)
|
|
||||||
local nodes = manip:get_data()
|
|
||||||
for vi,id in pairs(pznodes) do
|
|
||||||
if replacing_allowed(nodes[vi]) then
|
|
||||||
nodes[vi] = id
|
|
||||||
end
|
|
||||||
end
|
|
||||||
manip:set_data(nodes)
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function set_vm_data(manip, pznodes, pos, t1, name)
|
|
||||||
if not set_vm_nodes(manip, pznodes) then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
manip:write_to_map()
|
|
||||||
riesenpilz.inform("a giant " .. name .. " mushroom grew at " ..
|
|
||||||
minetest.pos_to_string(pos), 3, t1)
|
|
||||||
local t2 = os.clock()
|
|
||||||
manip:update_map()
|
|
||||||
riesenpilz.inform("map updated", 3, t2)
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
function riesenpilz.red(pos, nodes, area, w)
|
function riesenpilz.red(pos, nodes, area, w)
|
||||||
w = w or math.random(MAX_SIZE)
|
local w = w or math.random(MAX_SIZE)
|
||||||
local h = w + 2
|
local h = w+2
|
||||||
|
|
||||||
for i = 0, h do
|
for i = 0, h do
|
||||||
nodes[area:index(pos.x, pos.y+i, pos.z)] = c.stem
|
nodes[area:index(pos.x, pos.y+i, pos.z)] = c.stem
|
||||||
@ -106,17 +61,17 @@ local function riesenpilz_hybridpilz(pos)
|
|||||||
|
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, w+1, w+3, pos)
|
local area = r_area(manip, w+1, w+3, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.red(pos, nodes, area, w)
|
||||||
riesenpilz.red(pos, pznodes, area, w)
|
|
||||||
|
|
||||||
set_vm_data(manip, pznodes, pos, t1, "red")
|
set_vm_data(manip, nodes, pos, t1, "red")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function riesenpilz.brown(pos, nodes, area, br)
|
function riesenpilz.brown(pos, nodes, area, br)
|
||||||
br = br or math.random(MAX_SIZE-1)+1
|
local br = br or math.random(MAX_SIZE-1)+1
|
||||||
local h = br + 2
|
local h = br+2
|
||||||
|
|
||||||
for i in area:iterp(pos, {x=pos.x, y=pos.y+h, z=pos.z}) do
|
for i in area:iterp(pos, {x=pos.x, y=pos.y+h, z=pos.z}) do
|
||||||
nodes[i] = c.stem
|
nodes[i] = c.stem
|
||||||
@ -141,11 +96,11 @@ local function riesenpilz_brauner_minecraftpilz(pos)
|
|||||||
|
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, br+1, br+3, pos)
|
local area = r_area(manip, br+1, br+3, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.brown(pos, nodes, area, br)
|
||||||
riesenpilz.brown(pos, pznodes, area, br)
|
|
||||||
|
|
||||||
set_vm_data(manip, pznodes, pos, t1, "brown")
|
set_vm_data(manip, nodes, pos, t1, "brown")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -181,19 +136,16 @@ local function riesenpilz_minecraft_fliegenpilz(pos)
|
|||||||
|
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, 2, 4, pos)
|
local area = r_area(manip, 2, 4, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
local param2s = manip:get_param2_data()
|
local param2s = manip:get_param2_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.fly_agaric(pos, nodes, area, param2s)
|
||||||
riesenpilz.fly_agaric(pos, pznodes, area, param2s)
|
|
||||||
|
|
||||||
if not set_vm_nodes(manip, pznodes) then
|
manip:set_data(nodes)
|
||||||
return
|
|
||||||
end
|
|
||||||
manip:set_param2_data(param2s)
|
manip:set_param2_data(param2s)
|
||||||
manip:write_to_map()
|
manip:write_to_map()
|
||||||
manip:update_map()
|
manip:update_map()
|
||||||
riesenpilz.inform("a fly agaric grew at " .. minetest.pos_to_string(pos),
|
riesenpilz.inform("a fly agaric grew at "..vector.pos_to_string(pos), 3, t1)
|
||||||
3, t1)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -205,7 +157,7 @@ local function ran_node(a, b, ran)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function riesenpilz.lavashroom(pos, nodes, area, h)
|
function riesenpilz.lavashroom(pos, nodes, area, h)
|
||||||
h = h or 3 + math.random(MAX_SIZE - 2)
|
local h = h or 3+math.random(MAX_SIZE-2)
|
||||||
|
|
||||||
-- remove the mushroom
|
-- remove the mushroom
|
||||||
nodes[area:indexp(pos)] = c.air
|
nodes[area:indexp(pos)] = c.air
|
||||||
@ -265,16 +217,16 @@ local function riesenpilz_lavashroom(pos)
|
|||||||
|
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, 4, h+6, pos)
|
local area = r_area(manip, 4, h+6, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.lavashroom(pos, nodes, area, h)
|
||||||
riesenpilz.lavashroom(pos, pznodes, area, h)
|
|
||||||
|
|
||||||
set_vm_data(manip, pznodes, pos, t1, "lavashroom")
|
set_vm_data(manip, nodes, pos, t1, "lavashroom")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function riesenpilz.glowshroom(pos, nodes, area, h)
|
function riesenpilz.glowshroom(pos, nodes, area, h)
|
||||||
h = h or 2 + math.random(MAX_SIZE)
|
local h = h or 2+math.random(MAX_SIZE)
|
||||||
|
|
||||||
for i = 0, h do
|
for i = 0, h do
|
||||||
nodes[area:index(pos.x, pos.y+i, pos.z)] = c.stem_blue
|
nodes[area:index(pos.x, pos.y+i, pos.z)] = c.stem_blue
|
||||||
@ -314,29 +266,29 @@ local function riesenpilz_glowshroom(pos)
|
|||||||
|
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, 2, h+3, pos)
|
local area = r_area(manip, 2, h+3, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.glowshroom(pos, nodes, area, h)
|
||||||
riesenpilz.glowshroom(pos, pznodes, area, h)
|
|
||||||
|
|
||||||
set_vm_data(manip, pznodes, pos, t1, "glowshroom")
|
set_vm_data(manip, nodes, pos, t1, "glowshroom")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function riesenpilz.parasol(pos, nodes, area, w, h)
|
function riesenpilz.parasol(pos, nodes, area, w, h)
|
||||||
h = h or 6 + math.random(MAX_SIZE)
|
local h = h or 6+math.random(MAX_SIZE)
|
||||||
|
|
||||||
--stem
|
--stem
|
||||||
for i in area:iterp(pos, {x=pos.x, y=pos.y+h-2, z=pos.z}) do
|
for i in area:iterp(pos, {x=pos.x, y=pos.y+h-2, z=pos.z}) do
|
||||||
nodes[i] = c.stem
|
nodes[i] = c.stem
|
||||||
end
|
end
|
||||||
|
|
||||||
w = w or MAX_SIZE + math.random(2)
|
local w = w or MAX_SIZE+math.random(2)
|
||||||
local bhead1 = w-1
|
local bhead1 = w-1
|
||||||
local bhead2 = math.random(1,w-2)
|
local bhead2 = math.random(1,w-2)
|
||||||
|
|
||||||
for _,j in pairs({
|
for _,j in pairs({
|
||||||
{bhead2, 0, c.head_brown_bright},
|
{bhead2, 0, c.head_brown_bright},
|
||||||
{bhead1, -1, c.head_beige}
|
{bhead1, -1, c.head_binge}
|
||||||
}) do
|
}) do
|
||||||
for i in area:iter(pos.x-j[1], pos.y+h+j[2], pos.z-j[1], pos.x+j[1], pos.y+h+j[2], pos.z+j[1]) do
|
for i in area:iter(pos.x-j[1], pos.y+h+j[2], pos.z-j[1], pos.x+j[1], pos.y+h+j[2], pos.z+j[1]) do
|
||||||
nodes[i] = j[3]
|
nodes[i] = j[3]
|
||||||
@ -350,8 +302,8 @@ function riesenpilz.parasol(pos, nodes, area, w, h)
|
|||||||
nodes[area:index(pos.x+l*k, pos.y+rh, pos.z+k)] = c.head_white
|
nodes[area:index(pos.x+l*k, pos.y+rh, pos.z+k)] = c.head_white
|
||||||
end
|
end
|
||||||
for l = -w+1, w do
|
for l = -w+1, w do
|
||||||
nodes[area:index(pos.x+w*k, pos.y+h-2, pos.z-l*k)] = c.head_beige
|
nodes[area:index(pos.x+w*k, pos.y+h-2, pos.z-l*k)] = c.head_binge
|
||||||
nodes[area:index(pos.x+l*k, pos.y+h-2, pos.z+w*k)] = c.head_beige
|
nodes[area:index(pos.x+l*k, pos.y+h-2, pos.z+w*k)] = c.head_binge
|
||||||
end
|
end
|
||||||
for l = -bhead1+1, bhead1 do
|
for l = -bhead1+1, bhead1 do
|
||||||
nodes[area:index(pos.x+bhead1*k, pos.y+h-2, pos.z-l*k)] = c.head_white
|
nodes[area:index(pos.x+bhead1*k, pos.y+h-2, pos.z-l*k)] = c.head_white
|
||||||
@ -368,11 +320,11 @@ local function riesenpilz_parasol(pos)
|
|||||||
|
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, w, h, pos)
|
local area = r_area(manip, w, h, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.parasol(pos, nodes, area, w, h)
|
||||||
riesenpilz.parasol(pos, pznodes, area, w, h)
|
|
||||||
|
|
||||||
set_vm_data(manip, pznodes, pos, t1, "parasol")
|
set_vm_data(manip, nodes, pos, t1, "parasol")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -418,15 +370,13 @@ function riesenpilz.red45(pos, nodes, area, h1, h2)
|
|||||||
or math.random(4) ~= 2 then
|
or math.random(4) ~= 2 then
|
||||||
nodes[area:index(pos.x+x*j, pos.y+h, pos.z+z*i)] = c.head_red
|
nodes[area:index(pos.x+x*j, pos.y+h, pos.z+z*i)] = c.head_red
|
||||||
end
|
end
|
||||||
local zo = z+1
|
local z = z+1
|
||||||
local xo = x+1
|
x = x+1
|
||||||
nodes[area:index(pos.x + xo * j, pos.y + walkspace + 2,
|
nodes[area:index(pos.x+x*j, pos.y+walkspace+2, pos.z+z*i)] = c.head_red
|
||||||
pos.z + zo * i)] = c.head_red
|
if z ~= 3
|
||||||
if zo ~= 3
|
or x ~= 3
|
||||||
or xo ~= 3
|
|
||||||
or math.random(2) == 1 then
|
or math.random(2) == 1 then
|
||||||
nodes[area:index(pos.x + xo * j, pos.y + walkspace + 3,
|
nodes[area:index(pos.x+x*j, pos.y+walkspace+3, pos.z+z*i)] = c.head_red
|
||||||
pos.z + zo * i)] = c.head_red
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -450,11 +400,11 @@ local function riesenpilz_red45(pos)
|
|||||||
|
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, 3, h, pos)
|
local area = r_area(manip, 3, h, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.red45(pos, nodes, area, h1, h2)
|
||||||
riesenpilz.red45(pos, pznodes, area, h1, h2)
|
|
||||||
|
|
||||||
set_vm_data(manip, pznodes, pos, t1, "red45")
|
set_vm_data(manip, nodes, pos, t1, "red45")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -480,16 +430,16 @@ function riesenpilz.apple(pos, nodes, area)
|
|||||||
nodes[area:index(pos.x, pos.y+i, pos.z)] = c.tree
|
nodes[area:index(pos.x, pos.y+i, pos.z)] = c.tree
|
||||||
end
|
end
|
||||||
|
|
||||||
local d = pos.y+1
|
local c = pos.y+1
|
||||||
for i = -3,1,1 do
|
for i = -3,1,1 do
|
||||||
nodes[area:index(pos.x+i, d, pos.z+1)] = c.brown
|
nodes[area:index(pos.x+i, c, pos.z+1)] = c.brown
|
||||||
end
|
end
|
||||||
for i = 0,1,1 do
|
for i = 0,1,1 do
|
||||||
nodes[area:index(pos.x+i+1, d, pos.z-1-i)] = c.brown
|
nodes[area:index(pos.x+i+1, c, pos.z-1-i)] = c.brown
|
||||||
nodes[area:index(pos.x+i+2, d, pos.z-1-i)] = c.brown
|
nodes[area:index(pos.x+i+2, c, pos.z-1-i)] = c.brown
|
||||||
end
|
end
|
||||||
nodes[area:index(pos.x+1, d, pos.z)] = c.brown
|
nodes[area:index(pos.x+1, c, pos.z)] = c.brown
|
||||||
nodes[area:index(pos.x-3, d+1, pos.z+1)] = c.brown
|
nodes[area:index(pos.x-3, c+1, pos.z+1)] = c.brown
|
||||||
end
|
end
|
||||||
|
|
||||||
local function riesenpilz_apple(pos)
|
local function riesenpilz_apple(pos)
|
||||||
@ -497,15 +447,13 @@ local function riesenpilz_apple(pos)
|
|||||||
local t1 = os.clock()
|
local t1 = os.clock()
|
||||||
local manip = minetest.get_voxel_manip()
|
local manip = minetest.get_voxel_manip()
|
||||||
local area = r_area(manip, 5, 14, pos)
|
local area = r_area(manip, 5, 14, pos)
|
||||||
|
local nodes = manip:get_data()
|
||||||
|
|
||||||
local pznodes = {}
|
riesenpilz.apple(pos, nodes, area)
|
||||||
riesenpilz.apple(pos, pznodes, area)
|
|
||||||
|
|
||||||
if not set_vm_nodes(manip, pznodes) then
|
manip:set_data(nodes)
|
||||||
return
|
|
||||||
end
|
|
||||||
manip:write_to_map()
|
manip:write_to_map()
|
||||||
riesenpilz.inform("an apple grew at " .. minetest.pos_to_string(pos), 3, t1)
|
riesenpilz.inform("an apple grew at "..vector.pos_to_string(pos), 3, t1)
|
||||||
manip:update_map()
|
manip:update_map()
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -542,7 +490,7 @@ end
|
|||||||
local abm_allowed = true
|
local abm_allowed = true
|
||||||
local disallowed_ps = {}
|
local disallowed_ps = {}
|
||||||
|
|
||||||
for name, ndata in pairs({
|
for name,i in pairs({
|
||||||
brown = {
|
brown = {
|
||||||
description = "brown mushroom",
|
description = "brown mushroom",
|
||||||
box = {
|
box = {
|
||||||
@ -558,7 +506,6 @@ for name, ndata in pairs({
|
|||||||
interval = 100,
|
interval = 100,
|
||||||
chance = 18,
|
chance = 18,
|
||||||
},
|
},
|
||||||
hp = 2,
|
|
||||||
},
|
},
|
||||||
red = {
|
red = {
|
||||||
description = "red mushroom",
|
description = "red mushroom",
|
||||||
@ -577,7 +524,6 @@ for name, ndata in pairs({
|
|||||||
interval = 50,
|
interval = 50,
|
||||||
chance = 30,
|
chance = 30,
|
||||||
},
|
},
|
||||||
hp = -2,
|
|
||||||
},
|
},
|
||||||
fly_agaric = {
|
fly_agaric = {
|
||||||
description = "fly agaric",
|
description = "fly agaric",
|
||||||
@ -594,7 +540,6 @@ for name, ndata in pairs({
|
|||||||
interval = 101,
|
interval = 101,
|
||||||
chance = 30,
|
chance = 30,
|
||||||
},
|
},
|
||||||
hp = -6,
|
|
||||||
},
|
},
|
||||||
lavashroom = {
|
lavashroom = {
|
||||||
description = "Lavashroom",
|
description = "Lavashroom",
|
||||||
@ -612,7 +557,6 @@ for name, ndata in pairs({
|
|||||||
interval = 1010,
|
interval = 1010,
|
||||||
chance = 60,
|
chance = 60,
|
||||||
},
|
},
|
||||||
hp = -1,
|
|
||||||
},
|
},
|
||||||
glowshroom = {
|
glowshroom = {
|
||||||
description = "Glowshroom",
|
description = "Glowshroom",
|
||||||
@ -633,7 +577,6 @@ for name, ndata in pairs({
|
|||||||
interval = 710,
|
interval = 710,
|
||||||
chance = 320,
|
chance = 320,
|
||||||
},
|
},
|
||||||
hp = -2,
|
|
||||||
},
|
},
|
||||||
nether_shroom = {
|
nether_shroom = {
|
||||||
description = "Nether mushroom",
|
description = "Nether mushroom",
|
||||||
@ -647,7 +590,6 @@ for name, ndata in pairs({
|
|||||||
{ 2/16, -1/16, -2/16, 4/16, 1/16, 2/16}
|
{ 2/16, -1/16, -2/16, 4/16, 1/16, 2/16}
|
||||||
},
|
},
|
||||||
burntime = 6,
|
burntime = 6,
|
||||||
hp = -3,
|
|
||||||
},
|
},
|
||||||
parasol = {
|
parasol = {
|
||||||
description = "white parasol mushroom",
|
description = "white parasol mushroom",
|
||||||
@ -666,7 +608,6 @@ for name, ndata in pairs({
|
|||||||
interval = 51,
|
interval = 51,
|
||||||
chance = 36,
|
chance = 36,
|
||||||
},
|
},
|
||||||
hp = 3,
|
|
||||||
},
|
},
|
||||||
red45 = {
|
red45 = {
|
||||||
description = "45 red mushroom",
|
description = "45 red mushroom",
|
||||||
@ -686,7 +627,6 @@ for name, ndata in pairs({
|
|||||||
interval = 1000,
|
interval = 1000,
|
||||||
chance = 180,
|
chance = 180,
|
||||||
},
|
},
|
||||||
hp = 1,
|
|
||||||
},
|
},
|
||||||
brown45 = {
|
brown45 = {
|
||||||
description = "45 brown mushroom",
|
description = "45 brown mushroom",
|
||||||
@ -705,26 +645,17 @@ for name, ndata in pairs({
|
|||||||
interval = 100,
|
interval = 100,
|
||||||
chance = 20,
|
chance = 20,
|
||||||
},
|
},
|
||||||
hp = 1,
|
|
||||||
},
|
},
|
||||||
}) do
|
}) do
|
||||||
local burntime = ndata.burntime or 1
|
local burntime = i.burntime or 1
|
||||||
local box = {
|
local box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = ndata.box
|
fixed = i.box
|
||||||
}
|
}
|
||||||
local nd = "riesenpilz:" .. name
|
local nd = "riesenpilz:"..name
|
||||||
minetest.register_node(nd, {
|
minetest.register_node(nd, {
|
||||||
description = ndata.description,
|
description = i.description,
|
||||||
tiles = {
|
tiles = {"riesenpilz_"..name.."_top.png", "riesenpilz_"..name.."_bottom.png", "riesenpilz_"..name.."_side.png"},
|
||||||
--~ {name = "riesenpilz_"..name.."_top.png", tileable_vertical = false},
|
|
||||||
--~ {name = "riesenpilz_"..name.."_bottom.png", tileable_vertical = false},
|
|
||||||
--~ {name = "riesenpilz_"..name.."_side.png", tileable_vertical = false},
|
|
||||||
"riesenpilz_" .. name .. "_top.png",
|
|
||||||
"riesenpilz_" .. name .. "_bottom.png",
|
|
||||||
"riesenpilz_" .. name .. "_side.png",
|
|
||||||
},
|
|
||||||
use_texture_alpha = "opaque",
|
|
||||||
inventory_image = "riesenpilz_"..name.."_side.png",
|
inventory_image = "riesenpilz_"..name.."_side.png",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
@ -734,11 +665,10 @@ for name, ndata in pairs({
|
|||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
node_box = box,
|
node_box = box,
|
||||||
selection_box = box,
|
selection_box = box,
|
||||||
furnace_burntime = burntime,
|
furnace_burntime = burntime
|
||||||
on_secondary_use = minetest.item_eat(ndata.hp),
|
|
||||||
})
|
})
|
||||||
|
|
||||||
local g = ndata.growing
|
local g = i.growing
|
||||||
|
|
||||||
if g then
|
if g then
|
||||||
local grounds = g.grounds
|
local grounds = g.grounds
|
||||||
@ -775,7 +705,6 @@ for name, ndata in pairs({
|
|||||||
neighbors = g.neighbours,
|
neighbors = g.neighbours,
|
||||||
interval = g.interval,
|
interval = g.interval,
|
||||||
chance = g.chance,
|
chance = g.chance,
|
||||||
catch_up = false,
|
|
||||||
action = function(pos, node)
|
action = function(pos, node)
|
||||||
if not abm_allowed then
|
if not abm_allowed then
|
||||||
return
|
return
|
||||||
@ -800,8 +729,8 @@ for name, ndata in pairs({
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
local groups = data.groups
|
local groups = data.groups
|
||||||
for groupname, groupvalue in pairs(grounds) do
|
for n,i in pairs(grounds) do
|
||||||
if groups[groupname] ~= groupvalue then
|
if groups[n] ~= i then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -816,36 +745,36 @@ for name, ndata in pairs({
|
|||||||
-- should disallow lag
|
-- should disallow lag
|
||||||
abm_allowed = false
|
abm_allowed = false
|
||||||
minetest.after(2, function() abm_allowed = true end)
|
minetest.after(2, function() abm_allowed = true end)
|
||||||
disallowed_ps[#disallowed_ps+1] = pos
|
table.insert(disallowed_ps, pos)
|
||||||
|
|
||||||
-- witch circles
|
-- witch circles
|
||||||
local ps = {}
|
local ps = {}
|
||||||
for _,p in pairs(riesenpilz.circle(math.random(rmin, rmax))) do
|
for _,p in pairs(vector.circle(math.random(rmin, rmax))) do
|
||||||
p = vector.add(pos, p)
|
local p = vector.add(pos, p)
|
||||||
|
|
||||||
-- currently 3 is used here, approved by its use in the mapgen
|
-- currently 3 is used here, approved by its use in the mapgen
|
||||||
if math.random(3) == 1 then
|
if math.random(3) == 1 then
|
||||||
|
|
||||||
-- don't only use the current y for them
|
-- don't only use the current y for them
|
||||||
for y = 1,-1,-1 do
|
for y = 1,-1,-1 do
|
||||||
local pos_above = {x=p.x, y=p.y+y, z=p.z}
|
local pos = {x=p.x, y=p.y+y, z=p.z}
|
||||||
if minetest.get_node(pos_above).name ~= "air" then
|
if minetest.get_node(pos).name ~= "air" then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
local f = minetest.get_node({x=p.x, y=p.y+y-1, z=p.z}).name
|
local f = minetest.get_node({x=p.x, y=p.y+y-1, z=p.z}).name
|
||||||
if f ~= "air" then
|
if f ~= "air" then
|
||||||
|
|
||||||
-- they grown on specific nodes
|
-- they grown on specific nodes
|
||||||
local data_ground = minetest.registered_nodes[f]
|
local data = minetest.registered_nodes[f]
|
||||||
if data_ground
|
if data
|
||||||
and data_ground.walkable
|
and data.walkable
|
||||||
and data_ground.groups
|
and data.groups
|
||||||
and (not data_ground.drawtype
|
and (not data.drawtype
|
||||||
or data_ground.drawtype == "normal"
|
or data.drawtype == "normal"
|
||||||
) then
|
) then
|
||||||
local ground_disallowed
|
local ground_disallowed
|
||||||
for n,i in pairs(grounds) do
|
for n,i in pairs(grounds) do
|
||||||
if data_ground.groups[n] ~= i then
|
if data.groups[n] ~= i then
|
||||||
ground_disallowed = true
|
ground_disallowed = true
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
@ -853,11 +782,10 @@ for name, ndata in pairs({
|
|||||||
if not ground_disallowed then
|
if not ground_disallowed then
|
||||||
|
|
||||||
-- they also need specific light strengths
|
-- they also need specific light strengths
|
||||||
local light = minetest.get_node_light(
|
local light = minetest.get_node_light(pos, 0.5)
|
||||||
pos_above, 0.5)
|
|
||||||
if light >= lmin
|
if light >= lmin
|
||||||
and light <= lmax then
|
and light <= lmax then
|
||||||
ps[#ps+1] = pos_above
|
table.insert(ps, pos)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -904,7 +832,7 @@ local head_sounds = default.node_sound_wood_defaults({
|
|||||||
local add_fence = minetest.register_fence
|
local add_fence = minetest.register_fence
|
||||||
local node_groups = {oddly_breakable_by_hand=3, fall_damage_add_percent=-80, bouncy=10}
|
local node_groups = {oddly_breakable_by_hand=3, fall_damage_add_percent=-80, bouncy=10}
|
||||||
|
|
||||||
for _, ndata in ipairs({
|
for _,i in pairs({
|
||||||
{
|
{
|
||||||
typ = "stem",
|
typ = "stem",
|
||||||
description = "white",
|
description = "white",
|
||||||
@ -986,8 +914,8 @@ for _, ndata in ipairs({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
typ = "head",
|
typ = "head",
|
||||||
name = "beige",
|
name = "binge",
|
||||||
textures = {"head_beige.png", "head_white.png", "head_beige.png"},
|
textures = {"head_binge.png", "head_white.png", "head_binge.png"},
|
||||||
sapling = "parasol"
|
sapling = "parasol"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -999,8 +927,8 @@ for _, ndata in ipairs({
|
|||||||
},
|
},
|
||||||
}) do
|
}) do
|
||||||
-- fill missing stuff
|
-- fill missing stuff
|
||||||
local textures = ndata.textures
|
local textures = i.textures
|
||||||
ndata.description = ndata.description or ndata.name
|
i.description = i.description or i.name
|
||||||
if type(textures) == "string" then
|
if type(textures) == "string" then
|
||||||
textures = {textures}
|
textures = {textures}
|
||||||
end
|
end
|
||||||
@ -1009,26 +937,25 @@ for _, ndata in ipairs({
|
|||||||
end
|
end
|
||||||
local nodename = "riesenpilz:"
|
local nodename = "riesenpilz:"
|
||||||
local desctiption,sounds = "giant mushroom "
|
local desctiption,sounds = "giant mushroom "
|
||||||
if ndata.typ == "stem" then
|
if i.typ == "stem" then
|
||||||
desctiption = desctiption .. "stem " .. ndata.description
|
desctiption = desctiption.."stem "..i.description
|
||||||
nodename = nodename .. "stem" ..
|
nodename = nodename.."stem"..((i.name and "_"..i.name) or "")
|
||||||
((ndata.name and "_" .. ndata.name) or "")
|
|
||||||
sounds = default.node_sound_wood_defaults({
|
sounds = default.node_sound_wood_defaults({
|
||||||
footstep = {name="riesenpilz_stem", gain=0.2},
|
footstep = {name="riesenpilz_stem", gain=0.2},
|
||||||
place = {name="default_place_node", gain=0.5},
|
place = {name="default_place_node", gain=0.5},
|
||||||
dig = {name="riesenpilz_stem", gain=0.4},
|
dig = {name="riesenpilz_stem", gain=0.4},
|
||||||
dug = {name="default_wood_footstep", gain=0.3}
|
dug = {name="default_wood_footstep", gain=0.3}
|
||||||
})
|
})
|
||||||
elseif ndata.typ == "head" then
|
elseif i.typ == "head" then
|
||||||
desctiption = desctiption .. "head " .. ndata.description
|
desctiption = desctiption.."head "..i.description
|
||||||
nodename = nodename .. "head_" .. ndata.name
|
nodename = nodename.."head_"..i.name
|
||||||
sounds = head_sounds
|
sounds = head_sounds
|
||||||
else
|
else
|
||||||
nodename = nodename .. ndata.name
|
nodename = nodename..i.name
|
||||||
desctiption = desctiption .. ndata.description
|
desctiption = desctiption..i.description
|
||||||
end
|
end
|
||||||
local drop = ndata.sapling and {max_items = 1, items = {
|
local drop = i.sapling and {max_items = 1, items = {
|
||||||
{items = {"riesenpilz:" .. ndata.sapling}, rarity = 20},
|
{items = {"riesenpilz:"..i.sapling}, rarity = 20},
|
||||||
{items = {nodename}, rarity = 1}
|
{items = {nodename}, rarity = 1}
|
||||||
}}
|
}}
|
||||||
minetest.register_node(nodename, {
|
minetest.register_node(nodename, {
|
||||||
@ -1040,7 +967,7 @@ for _, ndata in ipairs({
|
|||||||
})
|
})
|
||||||
|
|
||||||
if add_fence
|
if add_fence
|
||||||
and ndata.fence ~= false then
|
and i.fence ~= false then
|
||||||
add_fence({fence_of = nodename})
|
add_fence({fence_of = nodename})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -1091,7 +1018,7 @@ c = {
|
|||||||
head_blue_bright = minetest.get_content_id("riesenpilz:head_blue_bright"),
|
head_blue_bright = minetest.get_content_id("riesenpilz:head_blue_bright"),
|
||||||
|
|
||||||
head_white = minetest.get_content_id("riesenpilz:head_white"),
|
head_white = minetest.get_content_id("riesenpilz:head_white"),
|
||||||
head_beige = minetest.get_content_id("riesenpilz:head_beige"),
|
head_binge = minetest.get_content_id("riesenpilz:head_binge"),
|
||||||
head_brown_bright = minetest.get_content_id("riesenpilz:head_brown_bright"),
|
head_brown_bright = minetest.get_content_id("riesenpilz:head_brown_bright"),
|
||||||
|
|
||||||
stem_red = minetest.get_content_id("riesenpilz:stem_red"),
|
stem_red = minetest.get_content_id("riesenpilz:stem_red"),
|
||||||
@ -1111,88 +1038,37 @@ minetest.register_tool("riesenpilz:growingtool", {
|
|||||||
inventory_image = "riesenpilz_growingtool.png",
|
inventory_image = "riesenpilz_growingtool.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
local grow_functions = {
|
|
||||||
["riesenpilz:red"] = riesenpilz_hybridpilz,
|
|
||||||
["riesenpilz:fly_agaric"] = riesenpilz_minecraft_fliegenpilz,
|
|
||||||
["riesenpilz:brown"] = riesenpilz_brauner_minecraftpilz,
|
|
||||||
["riesenpilz:lavashroom"] = riesenpilz_lavashroom,
|
|
||||||
["riesenpilz:glowshroom"] = riesenpilz_glowshroom,
|
|
||||||
["riesenpilz:parasol"] = riesenpilz_parasol,
|
|
||||||
["riesenpilz:red45"] = riesenpilz_red45,
|
|
||||||
["default:apple"] = riesenpilz_apple
|
|
||||||
}
|
|
||||||
local function get_grow(name)
|
|
||||||
if grow_functions[name] then
|
|
||||||
return grow_functions[name]
|
|
||||||
end
|
|
||||||
|
|
||||||
local is = {}
|
|
||||||
for i = 1,#minetest.registered_abms do
|
|
||||||
local ad = minetest.registered_abms[i]
|
|
||||||
if type(ad.nodenames) ~= "table" then
|
|
||||||
minetest.log("warning", "ABM nodenames is not a table: " ..
|
|
||||||
dump(ad))
|
|
||||||
return
|
|
||||||
end
|
|
||||||
if ad.chance > 1
|
|
||||||
and table.indexof(ad.nodenames, name) ~= -1 then
|
|
||||||
is[#is+1] = ad.action
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local func
|
|
||||||
if is[1] then
|
|
||||||
function func(pos, node)
|
|
||||||
for i = 1,#is do
|
|
||||||
is[i](pos, node)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
local def = minetest.registered_nodes[name]
|
|
||||||
if def then
|
|
||||||
if def.on_timer then
|
|
||||||
func = def.on_timer
|
|
||||||
else
|
|
||||||
func = function(pos, _, player)
|
|
||||||
if def.on_place then
|
|
||||||
def.on_place(ItemStack(name), player, {
|
|
||||||
type = "node",
|
|
||||||
under = vector.new(pos),--{x=pos.x, y=pos.y-1, z=pos.z},
|
|
||||||
above = vector.new(pos)
|
|
||||||
})
|
|
||||||
end
|
|
||||||
if def.after_place_node then
|
|
||||||
def.after_place_node(pos)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
func = function() end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
grow_functions[name] = func
|
|
||||||
return func
|
|
||||||
end
|
|
||||||
|
|
||||||
minetest.register_on_punchnode(function(pos, node, player)
|
minetest.register_on_punchnode(function(pos, node, player)
|
||||||
if player:get_wielded_item():get_name() ~= "riesenpilz:growingtool"
|
if player:get_wielded_item():get_name() ~= "riesenpilz:growingtool"
|
||||||
or minetest.is_protected(pos, player:get_player_name()) then
|
or minetest.is_protected(pos, player:get_player_name()) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local func = get_grow(node.name)
|
local name = node.name
|
||||||
if func then
|
if name == "riesenpilz:red" then
|
||||||
func(pos, node, player)
|
riesenpilz_hybridpilz(pos)
|
||||||
|
elseif name == "riesenpilz:fly_agaric" then
|
||||||
|
riesenpilz_minecraft_fliegenpilz(pos)
|
||||||
|
elseif name == "riesenpilz:brown" then
|
||||||
|
riesenpilz_brauner_minecraftpilz(pos)
|
||||||
|
elseif name == "riesenpilz:lavashroom" then
|
||||||
|
riesenpilz_lavashroom(pos)
|
||||||
|
elseif name == "riesenpilz:glowshroom" then
|
||||||
|
riesenpilz_glowshroom(pos)
|
||||||
|
elseif name == "riesenpilz:parasol" then
|
||||||
|
riesenpilz_parasol(pos)
|
||||||
|
elseif name == "riesenpilz:red45" then
|
||||||
|
riesenpilz_red45(pos)
|
||||||
|
elseif name == "default:apple" then
|
||||||
|
riesenpilz_apple(pos)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Uses
|
-- Food
|
||||||
|
|
||||||
|
|
||||||
-- mush45's meal
|
|
||||||
minetest.register_craftitem("riesenpilz:mush45_meal", {
|
minetest.register_craftitem("riesenpilz:mush45_meal", {
|
||||||
description = "Mushroom Meal",
|
description = "Mushroom Meal",
|
||||||
inventory_image = "riesenpilz_mush45_meal.png",
|
inventory_image = "riesenpilz_mush45_meal.png",
|
||||||
@ -1208,71 +1084,15 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
--[[ unfinished
|
|
||||||
if minetest.global_exists(technic) then
|
|
||||||
if minetest.global_exists(digilines) then
|
|
||||||
-- digiline light value detector
|
|
||||||
minetest.register_node("riesenpilz:light_detector" {
|
|
||||||
tiles = {"riesenpilz_light_detector.png"},
|
|
||||||
paramtype = "light",
|
|
||||||
digiline = {
|
|
||||||
receive = function(pos)
|
|
||||||
local light = minetest.get_node_light(pos)
|
|
||||||
send("light_detector", light)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
--sounds = ,
|
|
||||||
})
|
|
||||||
|
|
||||||
--technic.comp({"riesenpilz:glowshroom 10", "coal"}, "riesenpilz:light_detector")
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
--[ [
|
|
||||||
if minetest.global_exists(3darmor) then add to depends
|
|
||||||
--lavashroom skin armor, swimming in lava possible
|
|
||||||
|
|
||||||
minetest.register_craftitem("riesenpilz:lavashroom_flesh", {
|
|
||||||
description = "lavashroom's flesh",
|
|
||||||
inventory_image = "riesenpilz_lavashroom_flesh.png",
|
|
||||||
on_use = minetest.item_eat(3),
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craftitem("riesenpilz:lavashroom_skin", {
|
|
||||||
description = "lavashroom's skin",
|
|
||||||
inventory_image = "riesenpilz_lavashroom_skin.png",
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craftitem("riesenpilz:antilava_plate", {
|
|
||||||
description = "lava protecting plate",
|
|
||||||
inventory_image = "riesenpilz_antilava_plate.png",
|
|
||||||
})
|
|
||||||
|
|
||||||
technic.centri("riesenpilz:lavashroom", {"riesenpilz:lavashroom_flesh", "riesenpilz:lavashroom_skin"})
|
|
||||||
technic.comp("riesenpilz:lavashroom_skin 5", "riesenpilz:antilava_plate")
|
|
||||||
|
|
||||||
armor_register(plate blah)
|
|
||||||
end--] ]
|
|
||||||
})
|
|
||||||
end--]]
|
|
||||||
|
|
||||||
|
|
||||||
if riesenpilz.enable_mapgen then
|
if riesenpilz.enable_mapgen then
|
||||||
dofile(modpath.."mapgen.lua")
|
dofile(modpath.."mapgen.lua")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Legacy
|
|
||||||
|
|
||||||
|
|
||||||
minetest.register_alias("riesenpilz:head_binge", "riesenpilz:head_beige")
|
|
||||||
|
|
||||||
|
|
||||||
local time = math.floor(tonumber(os.clock()-load_time_start)*100+0.5)/100
|
local time = math.floor(tonumber(os.clock()-load_time_start)*100+0.5)/100
|
||||||
local msg = "[riesenpilz] loaded after ca. "..time
|
local msg = "[riesenpilz] loaded after ca. "..time
|
||||||
if time > 0.05 then
|
if time > 0.05 then
|
||||||
print(msg)
|
minetest.log("warning", msg)
|
||||||
else
|
else
|
||||||
minetest.log("info", msg)
|
minetest.log("info", msg)
|
||||||
end
|
end
|
||||||
|
253
mapgen.lua
Normal file → Executable file
@ -6,7 +6,6 @@ local function define_contents()
|
|||||||
ignore = minetest.get_content_id("ignore"),
|
ignore = minetest.get_content_id("ignore"),
|
||||||
air = minetest.get_content_id("air"),
|
air = minetest.get_content_id("air"),
|
||||||
|
|
||||||
water = minetest.get_content_id("default:water_source"),
|
|
||||||
stone = minetest.get_content_id("default:stone"),
|
stone = minetest.get_content_id("default:stone"),
|
||||||
dirt = minetest.get_content_id("default:dirt"),
|
dirt = minetest.get_content_id("default:dirt"),
|
||||||
desert_sand = minetest.get_content_id("default:desert_sand"),
|
desert_sand = minetest.get_content_id("default:desert_sand"),
|
||||||
@ -21,6 +20,7 @@ local function define_contents()
|
|||||||
riesenpilz_glowshroom = minetest.get_content_id("riesenpilz:glowshroom"),
|
riesenpilz_glowshroom = minetest.get_content_id("riesenpilz:glowshroom"),
|
||||||
riesenpilz_parasol = minetest.get_content_id("riesenpilz:parasol"),
|
riesenpilz_parasol = minetest.get_content_id("riesenpilz:parasol"),
|
||||||
|
|
||||||
|
GROUND = {},
|
||||||
TREE_STUFF = {
|
TREE_STUFF = {
|
||||||
minetest.get_content_id("default:tree"),
|
minetest.get_content_id("default:tree"),
|
||||||
minetest.get_content_id("default:leaves"),
|
minetest.get_content_id("default:leaves"),
|
||||||
@ -29,75 +29,74 @@ local function define_contents()
|
|||||||
minetest.get_content_id("default:jungleleaves"),
|
minetest.get_content_id("default:jungleleaves"),
|
||||||
minetest.get_content_id("default:junglegrass"),
|
minetest.get_content_id("default:junglegrass"),
|
||||||
},
|
},
|
||||||
|
USUAL_STUFF = {
|
||||||
|
minetest.get_content_id("default:cactus"),
|
||||||
|
minetest.get_content_id("default:papyrus"),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
end
|
for name,data in pairs(minetest.registered_nodes) do
|
||||||
|
local groups = data.groups
|
||||||
|
if groups then
|
||||||
local grounds = {}
|
if groups.crumbly == 3
|
||||||
local function is_ground(id)
|
or groups.soil == 1 then
|
||||||
local is = grounds[id]
|
table.insert(c.GROUND, minetest.get_content_id(name))
|
||||||
if is ~= nil then
|
|
||||||
return is
|
|
||||||
end
|
|
||||||
local data = minetest.registered_nodes[minetest.get_name_from_content_id(id)]
|
|
||||||
if not data
|
|
||||||
or data.paramtype == "light" then
|
|
||||||
grounds[id] = false
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
local groups = data.groups
|
|
||||||
if groups
|
|
||||||
and (groups.crumbly == 3 or groups.soil == 1) then
|
|
||||||
grounds[id] = true
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
grounds[id] = false
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
local toremoves = {}
|
|
||||||
local function is_toremove(id)
|
|
||||||
local is = toremoves[id]
|
|
||||||
if is ~= nil then
|
|
||||||
return is
|
|
||||||
end
|
|
||||||
local data = minetest.registered_nodes[minetest.get_name_from_content_id(id)]
|
|
||||||
if not data then
|
|
||||||
toremoves[id] = false
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
local groups = data.groups
|
|
||||||
if groups
|
|
||||||
and groups.flammable then
|
|
||||||
toremoves[id] = true
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
toremoves[id] = false
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
local data = {}
|
|
||||||
local area, pr
|
|
||||||
local function make_circle(nam, pos, radius, chance)
|
|
||||||
local circle = riesenpilz.circle(radius)
|
|
||||||
for i = 1, #circle do
|
|
||||||
if pr:next(1, chance) == 1 then
|
|
||||||
local vi = area:indexp(vector.add(pos, circle[i]))
|
|
||||||
if data[vi] == c.air
|
|
||||||
and is_ground(data[vi - area.ystride]) then
|
|
||||||
data[vi] = nam
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local nosmooth_rarity = 0.5
|
local function find_ground(a,list)
|
||||||
local smooth_rarity_max = 0.6
|
for i = 1,#list do
|
||||||
local smooth_rarity_min = 0.4
|
if a == list[i] then
|
||||||
local smooth_rarity_dif = smooth_rarity_max - smooth_rarity_min
|
return true
|
||||||
local perlin_scale = 500
|
end
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local data, area
|
||||||
|
function riesenpilz_circle(nam, pos, radius, chance)
|
||||||
|
for _,p in pairs(vector.circle(radius)) do
|
||||||
|
if pr:next(1,chance) == 1 then
|
||||||
|
local p = vector.add(pos, p)
|
||||||
|
local p_p = area:indexp(p)
|
||||||
|
if (data[p_p] == c.air or data[p_p] == c.ignore)
|
||||||
|
and find_ground(data[area:index(p.x, p.y-1, p.z)], c.GROUND) then
|
||||||
|
data[p_p] = nam
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function say_info(info)
|
||||||
|
local info = "[riesenpilz] "..info
|
||||||
|
print(info)
|
||||||
|
minetest.chat_send_all(info)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- perlin noise "hills" are not peaks but looking like sinus curve
|
||||||
|
local function upper_rarity(rarity)
|
||||||
|
return math.sign(rarity)*math.sin(math.abs(rarity)*math.pi/2)
|
||||||
|
end
|
||||||
|
|
||||||
|
local rarity = riesenpilz.mapgen_rarity
|
||||||
|
local riesenpilz_size = riesenpilz.mapgen_size
|
||||||
|
|
||||||
|
local nosmooth_rarity = 1-rarity/50
|
||||||
|
local perlin_scale = riesenpilz_size*100/rarity
|
||||||
|
local smooth_rarity_max, smooth_rarity_min, smooth_rarity_dif
|
||||||
|
local smooth = riesenpilz.smooth
|
||||||
|
if smooth then
|
||||||
|
local smooth_trans_size = riesenpilz.smooth_trans_size
|
||||||
|
smooth_rarity_max = upper_rarity(nosmooth_rarity+smooth_trans_size*2/perlin_scale)
|
||||||
|
smooth_rarity_min = upper_rarity(nosmooth_rarity-smooth_trans_size/perlin_scale)
|
||||||
|
smooth_rarity_dif = smooth_rarity_max-smooth_rarity_min
|
||||||
|
end
|
||||||
|
nosmooth_rarity = upper_rarity(nosmooth_rarity)
|
||||||
|
|
||||||
|
--local USUAL_STUFF = {"default:leaves","default:apple","default:tree","default:cactus","default:papyrus"}
|
||||||
|
|
||||||
local contents_defined
|
local contents_defined
|
||||||
minetest.register_on_generated(function(minp, maxp, seed)
|
minetest.register_on_generated(function(minp, maxp, seed)
|
||||||
@ -128,9 +127,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local t1 = os.clock()
|
local t1 = os.clock()
|
||||||
riesenpilz.inform(("tries to generate a giant mushroom biome at: " ..
|
riesenpilz.inform("tries to generate a giant mushroom biome at: x=["..minp.x.."; "..maxp.x.."]; y=["..minp.y.."; "..maxp.y.."]; z=["..minp.z.."; "..maxp.z.."]", 2)
|
||||||
"x=[%d; %d]; y=[%d; %d]; z=[%d; %d]"):format(minp.x, maxp.x, minp.y,
|
|
||||||
maxp.y, minp.z, maxp.z), 2)
|
|
||||||
|
|
||||||
if not contents_defined then
|
if not contents_defined then
|
||||||
define_contents()
|
define_contents()
|
||||||
@ -144,10 +141,9 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
|
|
||||||
local heightmap = minetest.get_mapgen_object("heightmap")
|
local heightmap = minetest.get_mapgen_object("heightmap")
|
||||||
local hmi = 1
|
local hmi = 1
|
||||||
local hm_zstride = divs+1
|
|
||||||
|
|
||||||
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
||||||
vm:get_data(data)
|
data = vm:get_data()
|
||||||
area = VoxelArea:new{MinEdge=emin, MaxEdge=emax}
|
area = VoxelArea:new{MinEdge=emin, MaxEdge=emax}
|
||||||
|
|
||||||
for p_pos in area:iterp(minp, maxp) do --remove tree stuff
|
for p_pos in area:iterp(minp, maxp) do --remove tree stuff
|
||||||
@ -170,7 +166,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
--smooth mapgen
|
--smooth mapgen
|
||||||
if riesenpilz.always_generate then
|
if riesenpilz.always_generate then
|
||||||
in_biome = true
|
in_biome = true
|
||||||
elseif riesenpilz.smooth then
|
elseif smooth then
|
||||||
if test >= smooth_rarity_max
|
if test >= smooth_rarity_max
|
||||||
or (
|
or (
|
||||||
test > smooth_rarity_min
|
test > smooth_rarity_min
|
||||||
@ -184,62 +180,59 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
|
|
||||||
if in_biome then
|
if in_biome then
|
||||||
|
|
||||||
local ymin = math.max(heightmap[hmi]-5, minp.y)
|
local ymin = math.max(heightmap[hmi]-5, minp.y) -- -1
|
||||||
local ymax = math.min(heightmap[hmi]+20, maxp.y)
|
|
||||||
|
|
||||||
-- skip the air part
|
-- skip the air part
|
||||||
local ground
|
local ground
|
||||||
local vi = area:index(x, ymax, z)
|
for y = math.min(heightmap[hmi]+20, maxp.y),ymin,-1 do
|
||||||
for y = ymax, ymin, -1 do
|
if data[area:index(x, y, z)] ~= c.air then
|
||||||
if data[vi] ~= c.air then
|
|
||||||
ground = y
|
ground = y
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
vi = vi - area.ystride
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local ground_y
|
local ground_y
|
||||||
if ground then
|
if ground then
|
||||||
for y = ground, ymin, -1 do
|
for y = ground,ymin,-1 do
|
||||||
local d_p_pos = data[vi]
|
local p_pos = area:index(x, y, z)
|
||||||
if is_toremove(d_p_pos) then
|
local d_p_pos = data[p_pos]
|
||||||
-- remove trees etc.
|
for _,nam in pairs(c.USUAL_STUFF) do --remove usual stuff
|
||||||
data[vi] = c.air
|
if d_p_pos == nam then
|
||||||
else
|
data[p_pos] = c.air
|
||||||
if is_ground(d_p_pos) then
|
p_pos = nil
|
||||||
ground_y = y
|
break
|
||||||
heightmap[hmi] = y
|
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
if p_pos --else search ground_y
|
||||||
|
and find_ground(d_p_pos, c.GROUND) then
|
||||||
|
ground_y = y
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
vi = vi - area.ystride
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if ground_y then
|
if ground_y then
|
||||||
-- add ground and dirt below if needed
|
data[area:index(x, ground_y, z)] = c.ground
|
||||||
data[vi] = c.ground
|
for i = -1,-5,-1 do
|
||||||
for off = -1,-5,-1 do
|
local p_pos = area:index(x, ground_y+i, z)
|
||||||
local p_pos = vi + off * area.ystride
|
if data[p_pos] == c.desert_sand then
|
||||||
if not is_ground(data[p_pos])
|
data[p_pos] = c.dirt
|
||||||
or data[p_pos] == c.dirt then
|
else
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
data[p_pos] = c.dirt
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local bigtype
|
local bigtype
|
||||||
local boden = {x=x,y=ground_y+1,z=z}
|
local boden = {x=x,y=ground_y+1,z=z}
|
||||||
if pr:next(1,15) == 1 then
|
if pr:next(1,15) == 1 then
|
||||||
data[vi + area.ystride] = c.dry_shrub
|
data[area:index(x, ground_y+1, z)] = c.dry_shrub
|
||||||
elseif pr:next(1,80) == 1 then
|
elseif pr:next(1,80) == 1 then
|
||||||
make_circle(c.riesenpilz_brown, boden, pr:next(3,4), 3)
|
riesenpilz_circle(c.riesenpilz_brown, boden, pr:next(3,4), 3)
|
||||||
elseif pr:next(1,85) == 1 then
|
elseif pr:next(1,85) == 1 then
|
||||||
make_circle(c.riesenpilz_parasol, boden, pr:next(3,5), 3)
|
riesenpilz_circle(c.riesenpilz_parasol, boden, pr:next(3,5), 3)
|
||||||
elseif pr:next(1,90) == 1 then
|
elseif pr:next(1,90) == 1 then
|
||||||
make_circle(c.riesenpilz_red, boden, pr:next(4,5), 3)
|
riesenpilz_circle(c.riesenpilz_red, boden, pr:next(4,5), 3)
|
||||||
elseif pr:next(1,100) == 1 then
|
elseif pr:next(1,100) == 1 then
|
||||||
make_circle(c.riesenpilz_fly_agaric, boden, 4, 3)
|
riesenpilz_circle(c.riesenpilz_fly_agaric, boden, 4, 3)
|
||||||
elseif pr:next(1,340) == 10 then
|
elseif pr:next(1,340) == 10 then
|
||||||
bigtype = 2
|
bigtype = 2
|
||||||
elseif pr:next(1,380) == 1 then
|
elseif pr:next(1,380) == 1 then
|
||||||
@ -249,9 +242,9 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
elseif pr:next(1,800) == 7 then
|
elseif pr:next(1,800) == 7 then
|
||||||
bigtype = 5
|
bigtype = 5
|
||||||
elseif pr:next(1,4000) == 1 then
|
elseif pr:next(1,4000) == 1 then
|
||||||
make_circle(c.riesenpilz_lavashroom, boden, pr:next(5,6), 3)
|
riesenpilz_circle(c.riesenpilz_lavashroom, boden, pr:next(5,6), 3)
|
||||||
elseif pr:next(1,5000) == 1 then
|
elseif pr:next(1,5000) == 1 then
|
||||||
make_circle(c.riesenpilz_glowshroom, boden, 3, 3)
|
riesenpilz_circle(c.riesenpilz_glowshroom, boden, 3, 3)
|
||||||
elseif pr:next(1,6000) == 2 then
|
elseif pr:next(1,6000) == 2 then
|
||||||
if pr:next(1,200) == 15 then
|
if pr:next(1,200) == 15 then
|
||||||
bigtype = 4
|
bigtype = 4
|
||||||
@ -275,51 +268,22 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
local t2 = os.clock()
|
local t2 = os.clock()
|
||||||
for _,v in pairs(tab) do
|
for _,v in pairs(tab) do
|
||||||
local p = v[2]
|
local p = v[2]
|
||||||
|
local m = v[1]
|
||||||
-- simple test for the distance to the biome border
|
if m == 1 then
|
||||||
local found_border = false
|
riesenpilz.red(p, data, area)
|
||||||
local dist = 5
|
elseif m == 2 then
|
||||||
local xmin = math.max(minp.x, p.x - dist)
|
riesenpilz.brown(p, data, area)
|
||||||
local xmax = math.min(maxp.x, p.x + dist)
|
elseif m == 3 then
|
||||||
local hm_vi = (p.z - minp.z) * hm_zstride + xmin - minp.x + 1
|
if not param2s then
|
||||||
for _ = xmin, xmax do
|
param2s = vm:get_param2_data()
|
||||||
if not heightmap[hm_vi] then
|
|
||||||
found_border = true
|
|
||||||
break
|
|
||||||
end
|
|
||||||
hm_vi = hm_vi+1
|
|
||||||
end
|
|
||||||
if not found_border then
|
|
||||||
local zmin = math.max(minp.z, p.z - dist)
|
|
||||||
local zmax = math.min(maxp.z, p.z + dist)
|
|
||||||
hm_vi = (zmin - minp.z) * hm_zstride + p.x - minp.x + 1
|
|
||||||
for _ = zmin, zmax do
|
|
||||||
if not heightmap[hm_vi] then
|
|
||||||
found_border = true
|
|
||||||
break
|
|
||||||
end
|
|
||||||
hm_vi = hm_vi + hm_zstride
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if not found_border then
|
|
||||||
local m = v[1]
|
|
||||||
if m == 1 then
|
|
||||||
riesenpilz.red(p, data, area)
|
|
||||||
elseif m == 2 then
|
|
||||||
riesenpilz.brown(p, data, area)
|
|
||||||
elseif m == 3 then
|
|
||||||
if not param2s then
|
|
||||||
param2s = vm:get_param2_data()
|
|
||||||
end
|
|
||||||
riesenpilz.fly_agaric(p, data, area, param2s)
|
|
||||||
elseif m == 4 then
|
|
||||||
riesenpilz.lavashroom(p, data, area)
|
|
||||||
elseif m == 5 then
|
|
||||||
riesenpilz.parasol(p, data, area)
|
|
||||||
elseif m == 6 then
|
|
||||||
riesenpilz.red45(p, data, area)
|
|
||||||
end
|
end
|
||||||
|
riesenpilz.fly_agaric(p, data, area, param2s)
|
||||||
|
elseif m == 4 then
|
||||||
|
riesenpilz.lavashroom(p, data, area)
|
||||||
|
elseif m == 5 then
|
||||||
|
riesenpilz.parasol(p, data, area)
|
||||||
|
elseif m == 6 then
|
||||||
|
riesenpilz.red45(p, data, area)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
riesenpilz.inform("giant shrooms generated", 2, t2)
|
riesenpilz.inform("giant shrooms generated", 2, t2)
|
||||||
@ -333,6 +297,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
vm:set_lighting({day=0, night=0})
|
vm:set_lighting({day=0, night=0})
|
||||||
vm:calc_lighting()
|
vm:calc_lighting()
|
||||||
vm:write_to_map()
|
vm:write_to_map()
|
||||||
|
data = nil
|
||||||
area = nil
|
area = nil
|
||||||
riesenpilz.inform("data set", 2, t2)
|
riesenpilz.inform("data set", 2, t2)
|
||||||
|
|
||||||
|
3
mod.conf
@ -1,3 +0,0 @@
|
|||||||
name = riesenpilz
|
|
||||||
depends = default
|
|
||||||
optional_depends = digilines,fence_registration,technic
|
|
13
settings.lua
Normal file → Executable file
@ -1,6 +1,5 @@
|
|||||||
--This file contains configuration options for riesenpilz mod.
|
--This file contains configuration options for riesenpilz mod.
|
||||||
|
|
||||||
-- mapgen size etc. does not work
|
|
||||||
riesenpilz.enable_mapgen = false
|
riesenpilz.enable_mapgen = false
|
||||||
|
|
||||||
--Generate giant mushroom biomes everywhere
|
--Generate giant mushroom biomes everywhere
|
||||||
@ -9,6 +8,15 @@ riesenpilz.always_generate = false
|
|||||||
--Enables smooth transition of biomes.
|
--Enables smooth transition of biomes.
|
||||||
riesenpilz.smooth = true
|
riesenpilz.smooth = true
|
||||||
|
|
||||||
|
--rarity in %
|
||||||
|
riesenpilz.mapgen_rarity = 0.25 -- Modif MFF (default = 1)
|
||||||
|
|
||||||
|
--size of the generated... (has an effect to the rarity, too)
|
||||||
|
riesenpilz.mapgen_size = 50
|
||||||
|
|
||||||
|
--approximate size of smooth transitions
|
||||||
|
riesenpilz.smooth_trans_size = 2
|
||||||
|
|
||||||
--says some information.
|
--says some information.
|
||||||
riesenpilz.info = true
|
riesenpilz.info = true
|
||||||
|
|
||||||
@ -20,6 +28,3 @@ riesenpilz.max_spam = 2
|
|||||||
|
|
||||||
--3d apple
|
--3d apple
|
||||||
riesenpilz.change_apple = true
|
riesenpilz.change_apple = true
|
||||||
|
|
||||||
--disallows growing a mushroom if it not every node would have a free place
|
|
||||||
riesenpilz.giant_restrict_area = false
|
|
||||||
|
0
sounds/riesenpilz_head.0.ogg
Normal file → Executable file
0
sounds/riesenpilz_head.1.ogg
Normal file → Executable file
0
sounds/riesenpilz_head.2.ogg
Normal file → Executable file
0
sounds/riesenpilz_stem.0.ogg
Normal file → Executable file
0
sounds/riesenpilz_stem.1.ogg
Normal file → Executable file
0
sounds/riesenpilz_stem.2.ogg
Normal file → Executable file
0
textures/3apple_apple.png
Normal file → Executable file
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 252 B |
BIN
textures/3apple_apple_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 236 B After Width: | Height: | Size: 246 B |
BIN
textures/3apple_apple_top.png
Normal file → Executable file
Before Width: | Height: | Size: 348 B After Width: | Height: | Size: 321 B |
BIN
textures/riesenpilz_brown45_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 108 B After Width: | Height: | Size: 118 B |
BIN
textures/riesenpilz_brown45_side.png
Normal file → Executable file
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
0
textures/riesenpilz_brown45_top.png
Normal file → Executable file
Before Width: | Height: | Size: 112 B After Width: | Height: | Size: 112 B |
BIN
textures/riesenpilz_brown_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 319 B After Width: | Height: | Size: 320 B |
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 251 B |
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 182 B |
BIN
textures/riesenpilz_fly_agaric_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 304 B After Width: | Height: | Size: 313 B |
BIN
textures/riesenpilz_fly_agaric_side.png
Normal file → Executable file
Before Width: | Height: | Size: 284 B After Width: | Height: | Size: 284 B |
BIN
textures/riesenpilz_fly_agaric_top.png
Normal file → Executable file
Before Width: | Height: | Size: 214 B After Width: | Height: | Size: 220 B |
BIN
textures/riesenpilz_glowshroom_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 183 B After Width: | Height: | Size: 188 B |
BIN
textures/riesenpilz_glowshroom_side.png
Normal file → Executable file
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 150 B |
BIN
textures/riesenpilz_glowshroom_top.png
Normal file → Executable file
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 109 B |
BIN
textures/riesenpilz_ground_side.png
Normal file → Executable file
Before Width: | Height: | Size: 699 B After Width: | Height: | Size: 718 B |
BIN
textures/riesenpilz_ground_side_normal.png
Normal file → Executable file
Before Width: | Height: | Size: 631 B After Width: | Height: | Size: 638 B |
0
textures/riesenpilz_ground_top.png
Normal file → Executable file
Before Width: | Height: | Size: 619 B After Width: | Height: | Size: 619 B |
BIN
textures/riesenpilz_ground_top_normal.png
Normal file → Executable file
Before Width: | Height: | Size: 499 B After Width: | Height: | Size: 500 B |
BIN
textures/riesenpilz_growingtool.png
Normal file → Executable file
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
BIN
textures/riesenpilz_head.png
Normal file → Executable file
Before Width: | Height: | Size: 694 B After Width: | Height: | Size: 695 B |
0
textures/riesenpilz_head_beige.png → textures/riesenpilz_head_binge.png
Normal file → Executable file
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 305 B |
BIN
textures/riesenpilz_head_blue.png
Normal file → Executable file
Before Width: | Height: | Size: 703 B After Width: | Height: | Size: 724 B |
BIN
textures/riesenpilz_head_blue_bright.png
Normal file → Executable file
Before Width: | Height: | Size: 742 B After Width: | Height: | Size: 761 B |
BIN
textures/riesenpilz_head_brown_bright.png
Normal file → Executable file
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 182 B |
BIN
textures/riesenpilz_head_normal.png
Normal file → Executable file
Before Width: | Height: | Size: 522 B After Width: | Height: | Size: 525 B |
0
textures/riesenpilz_head_orange.png
Normal file → Executable file
Before Width: | Height: | Size: 578 B After Width: | Height: | Size: 578 B |
0
textures/riesenpilz_head_white.png
Normal file → Executable file
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 544 B |
0
textures/riesenpilz_head_yellow.png
Normal file → Executable file
Before Width: | Height: | Size: 535 B After Width: | Height: | Size: 535 B |
BIN
textures/riesenpilz_lamellas.png
Normal file → Executable file
Before Width: | Height: | Size: 974 B After Width: | Height: | Size: 1000 B |
BIN
textures/riesenpilz_lamellas_normal.png
Normal file → Executable file
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.3 KiB |
BIN
textures/riesenpilz_lavashroom_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 137 B After Width: | Height: | Size: 141 B |
BIN
textures/riesenpilz_lavashroom_side.png
Normal file → Executable file
Before Width: | Height: | Size: 148 B After Width: | Height: | Size: 149 B |
BIN
textures/riesenpilz_lavashroom_top.png
Normal file → Executable file
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 297 B |
Before Width: | Height: | Size: 279 B |
BIN
textures/riesenpilz_mush45_meal.png
Normal file → Executable file
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 146 B |
BIN
textures/riesenpilz_nether_shroom_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 264 B |
BIN
textures/riesenpilz_nether_shroom_side.png
Normal file → Executable file
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 184 B |
BIN
textures/riesenpilz_nether_shroom_top.png
Normal file → Executable file
Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 255 B |
BIN
textures/riesenpilz_parasol_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 236 B |
BIN
textures/riesenpilz_parasol_side.png
Normal file → Executable file
Before Width: | Height: | Size: 195 B After Width: | Height: | Size: 196 B |
BIN
textures/riesenpilz_parasol_top.png
Normal file → Executable file
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 183 B |
BIN
textures/riesenpilz_red45_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 111 B After Width: | Height: | Size: 140 B |
0
textures/riesenpilz_red45_side.png
Normal file → Executable file
Before Width: | Height: | Size: 131 B After Width: | Height: | Size: 131 B |
BIN
textures/riesenpilz_red45_top.png
Normal file → Executable file
Before Width: | Height: | Size: 94 B After Width: | Height: | Size: 98 B |
0
textures/riesenpilz_red_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 302 B After Width: | Height: | Size: 302 B |
BIN
textures/riesenpilz_red_side.png
Normal file → Executable file
Before Width: | Height: | Size: 266 B After Width: | Height: | Size: 267 B |
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 261 B |
BIN
textures/riesenpilz_stem_blue.png
Normal file → Executable file
Before Width: | Height: | Size: 625 B After Width: | Height: | Size: 633 B |
0
textures/riesenpilz_stem_brown.png
Normal file → Executable file
Before Width: | Height: | Size: 701 B After Width: | Height: | Size: 701 B |
Before Width: | Height: | Size: 716 B After Width: | Height: | Size: 734 B |
Before Width: | Height: | Size: 718 B After Width: | Height: | Size: 734 B |
0
textures/riesenpilz_stem_top.png
Normal file → Executable file
Before Width: | Height: | Size: 130 B After Width: | Height: | Size: 130 B |
BIN
textures/riesenpilz_stem_white.png
Normal file → Executable file
Before Width: | Height: | Size: 519 B After Width: | Height: | Size: 521 B |
0
textures/riesenpilz_stem_white_normal.png
Normal file → Executable file
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |