This commit is contained in:
HybridDog 2013-04-04 18:44:35 +02:00
parent f679925b30
commit 6f6b3d6272
15 changed files with 87 additions and 80 deletions

167
init.lua
View File

@ -2,20 +2,20 @@
--Textures (edited with gimp) from gamiano.de and minecraft
local MAX_SIZE = 3
local TIMT = 10
--Growing Functions
local function hybridpilz(pos)
local random = math.random(MAX_SIZE)
local height = 2 + random
local breite = random
local br = breite+1
for i = height, 0, -1 do
local p = {x=pos.x, y=pos.y+i, z=pos.z}
minetest.env:add_node(p, {name="riesenpilz:stamm"})
for i = 0, height, 1 do
minetest.env:add_node({x=pos.x, y=pos.y+i, z=pos.z}, {name="riesenpilz:stem"})
end
for j = -br, br, 1 do
@ -25,103 +25,118 @@ local function hybridpilz(pos)
or k == -br
or j == br
or j == -br then
minetest.env:add_node(o, {name="riesenpilz:kappe"})
minetest.env:add_node(o, {name="riesenpilz:head_red"})
else
minetest.env:add_node(o, {name="riesenpilz:lamellen"})
minetest.env:add_node(o, {name="riesenpilz:lamellas"})
end
end
end
for l = -breite, breite, 1 do
for m = -breite, breite, 1 do
local n = {x=pos.x+l, y=pos.y+height+1, z=pos.z+m}
minetest.env:add_node(n, {name="riesenpilz:kappe"})
minetest.env:add_node({x=pos.x+l, y=pos.y+height+1, z=pos.z+m}, {name="riesenpilz:head_red"})
end
end
end
local function brauner_minecraftpilz(pos)
local random = math.random(MAX_SIZE-1)
local height = 3+random
local breite = 2+random
for i = height, 0, -1 do
local p = {x=pos.x, y=pos.y+i, z=pos.z}
minetest.env:add_node(p, {name="riesenpilz:stamm"})
for i = 0, height, 1 do
minetest.env:add_node({x=pos.x, y=pos.y+i, z=pos.z}, {name="riesenpilz:stem"})
end
for j = -breite, breite, 1 do
for k = -(breite-1), breite-1, 1 do
minetest.env:add_node({x=pos.x+j, y=pos.y+height+1, z=pos.z+k}, {name="riesenpilz:kappe2"})
minetest.env:add_node({x=pos.x+k, y=pos.y+height+1, z=pos.z+j}, {name="riesenpilz:kappe2"})
minetest.env:add_node({x=pos.x+j, y=pos.y+height+1, z=pos.z+k}, {name="riesenpilz:head_brown"})
minetest.env:add_node({x=pos.x+k, y=pos.y+height+1, z=pos.z+j}, {name="riesenpilz:head_brown"})
end
end
end
local function minecraft_fliegenpilz(pos)
local height = 3
for i = height, 0, -1 do
local p = {x=pos.x, y=pos.y+i, z=pos.z}
minetest.env:add_node(p, {name="riesenpilz:stamm"})
for i = 0, height, 1 do
minetest.env:add_node({x=pos.x, y=pos.y+i, z=pos.z}, {name="riesenpilz:stem"})
end
for j = -1, 1, 1 do
for k = -1, 1, 1 do
minetest.env:add_node({x=pos.x+j, y=pos.y+height+1, z=pos.z+k}, {name="riesenpilz:kappe"})
minetest.env:add_node({x=pos.x+j, y=pos.y+height+1, z=pos.z+k}, {name="riesenpilz:head_red"})
end
for l = 1, height, 1 do
minetest.env:set_node({x=pos.x+j, y=pos.y+l, z=pos.z+2}, {name="riesenpilz:kappe3", param2=0})
minetest.env:set_node({x=pos.x+j, y=pos.y+l, z=pos.z-2}, {name="riesenpilz:kappe3", param2=2})
minetest.env:set_node({x=pos.x+2, y=pos.y+l, z=pos.z+j}, {name="riesenpilz:kappe3", param2=1})
minetest.env:set_node({x=pos.x-2, y=pos.y+l, z=pos.z+j}, {name="riesenpilz:kappe3", param2=3})
minetest.env:set_node({x=pos.x+j, y=pos.y+l, z=pos.z+2}, {name="riesenpilz:head_red_side", param2=0})
minetest.env:set_node({x=pos.x+j, y=pos.y+l, z=pos.z-2}, {name="riesenpilz:head_red_side", param2=2})
minetest.env:set_node({x=pos.x+2, y=pos.y+l, z=pos.z+j}, {name="riesenpilz:head_red_side", param2=1})
minetest.env:set_node({x=pos.x-2, y=pos.y+l, z=pos.z+j}, {name="riesenpilz:head_red_side", param2=3})
end
end
end
--Nodes
local function pilzsapling(name, desc, texture)
minetest.register_node("riesenpilz:sapling_"..name, {
--Mushroom Nodes
local function pilz(name, desc, box)
minetest.register_node("riesenpilz:"..name, {
description = desc,
tile_images = {texture..".png"},
inventory_image = texture..".png",
tile_images = {"riesenpilz_"..name.."_top.png", "riesenpilz_"..name.."_bottom.png", "riesenpilz_"..name.."_side.png"},
inventory_image = "riesenpilz_"..name.."_side.png",
walkable = false,
drawtype = "nodebox",
paramtype = "light",
drawtype = "plantlike",
groups = { snappy = 3 },
groups = {snappy=3,flammable=2},
sounds = default.node_sound_leaves_defaults(),
node_box = box,
selection_box = box,
})
end
pilzsapling("mc_fliegenpilz", "Giant Minecraft Mushroom Red", "pilzsapling2")
pilzsapling("mc_braun", "Giant Minecraft Mushroom Brown", "pilzsapling3")
local BOX_RED = {
type = "fixed",
fixed = {
{-1/16, -8/16, -1/16, 1/16, -6/16, 1/16},
{-3/16, -6/16, -3/16, 3/16, -5/16, 3/16},
{-4/16, -5/16, -4/16, 4/16, -4/16, 4/16},
{-3/16, -4/16, -3/16, 3/16, -3/16, 3/16},
{-2/16, -3/16, -2/16, 2/16, -2/16, 2/16},
},
}
local MUSHH = {
type = "fixed",
fixed = {
{-1/16, -8/16, -1/16, 1/16, -6/16, 1/16},
{-3/16, -6/16, -3/16, 3/16, -5/16, 3/16},
{-4/16, -5/16, -4/16, 4/16, -4/16, 4/16},
{-3/16, -4/16, -3/16, 3/16, -3/16, 3/16},
{-2/16, -3/16, -2/16, 2/16, -2/16, 2/16},
},
}
local BOX_BROWN = {
type = "fixed",
fixed = {
{-0.15, -0.2, -0.15, 0.15, -0.1, 0.15},
{-0.2, -0.3, -0.2, 0.2, -0.2, 0.2},
{-0.05, -0.5, -0.05, 0.05, -0.3, 0.05},
},
}
minetest.register_node("riesenpilz:sapling_hybrid", {
description = "Giant Mushroom",
tile_images = {"pilzsapling_t.png", "pilzsapling_t.png^pilzsapling_u.png", "pilzsapling.png"},
inventory_image = "pilzsapling.png",
pilz("brown", "Brown Mushroom", BOX_BROWN)
pilz("red", "Red Mushroom", BOX_RED)
minetest.register_node("riesenpilz:fly_agaric", {
description = "Fly Agaric",
tile_images = {"riesenpilz_fly_agaric_side.png"},
inventory_image = "riesenpilz_fly_agaric_side.png",
walkable = false,
paramtype = "light",
drawtype = "nodebox",
groups = { snappy = 3 },
drawtype = "plantlike",
groups = {snappy=3,flammable=2},
sounds = default.node_sound_leaves_defaults(),
node_box = MUSHH,
selection_box = MUSHH,
})
--Mushroom Blocks
local function pilznode(name, desc, textures, sapling)
minetest.register_node("riesenpilz:"..name, {
description = desc,
@ -133,48 +148,40 @@ minetest.register_node("riesenpilz:"..name, {
})
end
pilznode("stamm", "Giant Mushroom Stem", {"pilzstamm2.png","pilzstamm2.png","pilzstamm.png"}, "stamm")
pilznode("lamellen", "Giant Mushroom Lamella", {"pilzlamellen.png"}, "lamellen")
pilznode("kappe", "Giant Mushroom Head", {"pilzkappe.png", "pilzlamellen.png", "pilzkappe.png"}, "sapling_hybrid")
pilznode("kappe2", "Giant Mushroom Head Brown", {"pilzbraun.png","pilzlamellen.png","pilzbraun.png"}, "sapling_mc_braun")
pilznode("stem", "Giant Mushroom Stem", {"riesenpilz_stem_top.png","riesenpilz_stem_top.png","riesenpilz_stem.png"}, "stem")
pilznode("lamellas", "Giant Mushroom Lamella", {"riesenpilz_lamellas.png"}, "lamellas")
pilznode("head_red", "Giant Mushroom Head Red", {"riesenpilz_head.png", "riesenpilz_lamellas.png", "riesenpilz_head.png"}, "red")
pilznode("head_brown", "Giant Mushroom Head Brown", {"riesenpilz_brown_top.png","riesenpilz_lamellas.png","riesenpilz_brown_top.png"}, "brown")
minetest.register_node("riesenpilz:kappe3", {
minetest.register_node("riesenpilz:head_red_side", {
description = "Giant Mushroom Head Side",
tile_images = {"pilzkappe.png", "pilzlamellen.png", "pilzkappe.png",
"pilzkappe.png", "pilzkappe.png","pilzlamellen.png"},
tile_images = {"riesenpilz_head.png", "riesenpilz_lamellas.png", "riesenpilz_head.png",
"riesenpilz_head.png", "riesenpilz_head.png", "riesenpilz_lamellas.png"},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand=3},
drop = {max_items = 1,
items = {{items = {"riesenpilz:sapling_mc_fliegenpilz"},rarity = 20,},
{items = {"riesenpilz:kappe"},rarity = 1,}}},
items = {{items = {"riesenpilz:fly_agaric"},rarity = 20,},
{items = {"riesenpilz:head_red"},rarity = 1,}}},
})
--Growing
minetest.register_abm({
nodenames = {"riesenpilz:sapling_hybrid"},
interval = TIMT,
chance = TIMT,
action = function(pos)
hybridpilz(pos)
end
minetest.register_tool("riesenpilz:growingtool", {
description = "Growingtool",
inventory_image = "riesenpilz_growingtool.png",
})
minetest.register_abm({
nodenames = {"riesenpilz:sapling_mc_fliegenpilz"},
interval = TIMT,
chance = TIMT,
action = function(pos)
minecraft_fliegenpilz(pos)
minetest.register_on_punchnode(function(pos, node, puncher)
if puncher:get_wielded_item():get_name() == "riesenpilz:growingtool" then
if minetest.env:get_node(pos).name == "riesenpilz:red" then
hybridpilz(pos)
elseif minetest.env:get_node(pos).name == "riesenpilz:fly_agaric" then
minecraft_fliegenpilz(pos)
elseif minetest.env:get_node(pos).name == "riesenpilz:brown" then
brauner_minecraftpilz(pos)
end
end
})
minetest.register_abm({
nodenames = {"riesenpilz:sapling_mc_braun"},
interval = TIMT,
chance = TIMT,
action = function(pos)
brauner_minecraftpilz(pos)
end
})
end)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

View File

Before

Width:  |  Height:  |  Size: 240 B

After

Width:  |  Height:  |  Size: 240 B

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1013 B

After

Width:  |  Height:  |  Size: 1013 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

View File

Before

Width:  |  Height:  |  Size: 285 B

After

Width:  |  Height:  |  Size: 285 B

View File

Before

Width:  |  Height:  |  Size: 282 B

After

Width:  |  Height:  |  Size: 282 B

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

Before

Width:  |  Height:  |  Size: 145 B

After

Width:  |  Height:  |  Size: 145 B