From 888b0ebfec8c2eff9015163549a7e47443cb8665 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 21:00:20 -0400 Subject: "explode" all modpacks into their individual components (you can't have a modpack buried inside a modpack) --- plantlife_modpack/youngtrees/depends.txt | 2 - plantlife_modpack/youngtrees/init.lua | 146 --------------------- plantlife_modpack/youngtrees/textures/bamboo.png | Bin 112 -> 0 bytes .../youngtrees/textures/unused/sapling.png | Bin 14617 -> 0 bytes .../youngtrees/textures/unused/sapling16x.png | Bin 1020 -> 0 bytes .../youngtrees/textures/youngtree16xa.png | Bin 420 -> 0 bytes .../youngtrees/textures/youngtree16xb.png | Bin 314 -> 0 bytes .../youngtrees/textures/youngtree16xc.png | Bin 142 -> 0 bytes .../youngtrees/textures/youngtree2branch.png | Bin 129 -> 0 bytes 9 files changed, 148 deletions(-) delete mode 100644 plantlife_modpack/youngtrees/depends.txt delete mode 100644 plantlife_modpack/youngtrees/init.lua delete mode 100644 plantlife_modpack/youngtrees/textures/bamboo.png delete mode 100644 plantlife_modpack/youngtrees/textures/unused/sapling.png delete mode 100644 plantlife_modpack/youngtrees/textures/unused/sapling16x.png delete mode 100644 plantlife_modpack/youngtrees/textures/youngtree16xa.png delete mode 100644 plantlife_modpack/youngtrees/textures/youngtree16xb.png delete mode 100644 plantlife_modpack/youngtrees/textures/youngtree16xc.png delete mode 100644 plantlife_modpack/youngtrees/textures/youngtree2branch.png (limited to 'plantlife_modpack/youngtrees') diff --git a/plantlife_modpack/youngtrees/depends.txt b/plantlife_modpack/youngtrees/depends.txt deleted file mode 100644 index 4e35179..0000000 --- a/plantlife_modpack/youngtrees/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -default -biome_lib \ No newline at end of file diff --git a/plantlife_modpack/youngtrees/init.lua b/plantlife_modpack/youngtrees/init.lua deleted file mode 100644 index 183e86e..0000000 --- a/plantlife_modpack/youngtrees/init.lua +++ /dev/null @@ -1,146 +0,0 @@ -abstract_youngtrees = {} - -minetest.register_node("youngtrees:bamboo", { - description = "Young Bamboo Tree", - drawtype="nodebox", - tiles = {"bamboo.png"}, - paramtype = "light", - walkable = false, - is_ground_content = true, - node_box = { - type = "fixed", - fixed = { - {-0.058251,-0.500000,-0.413681,0.066749,0.500000,-0.282500}, --NodeBox 1 - {-0.058251,-0.500000,-0.103123,0.066749,0.500000,0.038672}, --NodeBox 2 - {-0.058251,-0.500000,0.181227,0.066749,0.500000,0.342500}, --NodeBox 3 - } - }, - groups = {snappy=3,flammable=2}, - sounds = default.node_sound_leaves_defaults(), - drop = 'trunks:twig_1' -}) - -minetest.register_node("youngtrees:youngtree2_middle",{ - description = "Young Tree 2 (middle)", - drawtype="nodebox", - tiles = {"youngtree2branch.png"}, - inventory_image = "youngtree2branch.png", - wield_image = "youngtree2branch.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - node_box = { - type = "fixed", - fixed = { - {0.125000,-0.500000,-0.500000,0.500000,-0.187500,-0.125000}, --NodeBox 1 - {-0.187500,-0.187500,-0.500000,0.500000,0.125000,0.250000}, --NodeBox 2 - {-0.500000,0.125000,-0.500000,0.500000,0.500000,0.500000}, --NodeBox 3 - } - }, - groups = {snappy=3,flammable=2}, - sounds = default.node_sound_leaves_defaults(), - drop = 'trunks:twig_1' -}) - -minetest.register_node("youngtrees:youngtree_top", { - description = "Young Tree (top)", - drawtype = "plantlike", - tiles = {"youngtree16xa.png"}, - inventory_image = "youngtree16xa.png", - wield_image = "youngtree16xa.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - selection_box = { - type = "fixed", - fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} - }, - groups = {snappy=3,flammable=2}, - sounds = default.node_sound_leaves_defaults(), - drop = 'trunks:twig_1' -}) - - -minetest.register_node("youngtrees:youngtree_middle", { - description = "Young Tree (middle)", - drawtype = "plantlike", - tiles = {"youngtree16xb.png"}, - inventory_image = "youngtree16xb.png", - wield_image = "youngtree16xb.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - selection_box = { - type = "fixed", - fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} - }, - groups = {snappy=3,flammable=2}, - sounds = default.node_sound_leaves_defaults(), - drop = 'trunks:twig_1' -}) - - - -minetest.register_node("youngtrees:youngtree_bottom", { - description = "Young Tree (bottom)", - drawtype = "plantlike", - tiles = {"youngtree16xc.png"}, - inventory_image = "youngtree16xc.png", - wield_image = "youngtree16xc.png", - paramtype = "light", - walkable = false, - is_ground_content = true, - selection_box = { - type = "fixed", - fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} - }, - groups = {snappy=3,flammable=2}, - sounds = default.node_sound_leaves_defaults(), - drop = 'trunks:twig_1' -}) - - - abstract_youngtrees.grow_youngtree = function(pos) - local height = math.random(1,3) - abstract_youngtrees.grow_youngtree_node(pos,height) -end - -abstract_youngtrees.grow_youngtree_node = function(pos, height) - - - local right_here = {x=pos.x, y=pos.y+1, z=pos.z} - local above_right_here = {x=pos.x, y=pos.y+2, z=pos.z} - - if minetest.get_node(right_here).name == "air" -- instead of check_air = true, - or minetest.get_node(right_here).name == "default:junglegrass" then - if height == 1 then - minetest.set_node(right_here, {name="youngtrees:youngtree_top"}) - end - if height == 2 then - minetest.set_node(right_here, {name="youngtrees:youngtree_bottom"}) - minetest.set_node(above_right_here, {name="youngtrees:youngtree_top"}) - end - if height == 3 then - local two_above_right_here = {x=pos.x, y=pos.y+3, z=pos.z} - minetest.set_node(right_here, {name="youngtrees:youngtree_bottom"}) - minetest.set_node(above_right_here, {name="youngtrees:youngtree_middle"}) - minetest.set_node(two_above_right_here, {name="youngtrees:youngtree_top"}) - end - end -end - - -biome_lib:register_generate_plant({ - surface = { - "default:dirt_with_grass", - "stoneage:grass_with_silex", - "sumpf:peat", - "sumpf:sumpf" - }, - max_count = 55, --10,15 - rarity = 101 - 4, --3,4 - min_elevation = 1, -- above sea level - plantlife_limit = -0.9, - }, - abstract_youngtrees.grow_youngtree -) diff --git a/plantlife_modpack/youngtrees/textures/bamboo.png b/plantlife_modpack/youngtrees/textures/bamboo.png deleted file mode 100644 index 018d42e..0000000 Binary files a/plantlife_modpack/youngtrees/textures/bamboo.png and /dev/null differ diff --git a/plantlife_modpack/youngtrees/textures/unused/sapling.png b/plantlife_modpack/youngtrees/textures/unused/sapling.png deleted file mode 100644 index a3d5127..0000000 Binary files a/plantlife_modpack/youngtrees/textures/unused/sapling.png and /dev/null differ diff --git a/plantlife_modpack/youngtrees/textures/unused/sapling16x.png b/plantlife_modpack/youngtrees/textures/unused/sapling16x.png deleted file mode 100644 index 45b86ee..0000000 Binary files a/plantlife_modpack/youngtrees/textures/unused/sapling16x.png and /dev/null differ diff --git a/plantlife_modpack/youngtrees/textures/youngtree16xa.png b/plantlife_modpack/youngtrees/textures/youngtree16xa.png deleted file mode 100644 index 9bba623..0000000 Binary files a/plantlife_modpack/youngtrees/textures/youngtree16xa.png and /dev/null differ diff --git a/plantlife_modpack/youngtrees/textures/youngtree16xb.png b/plantlife_modpack/youngtrees/textures/youngtree16xb.png deleted file mode 100644 index d83b7a3..0000000 Binary files a/plantlife_modpack/youngtrees/textures/youngtree16xb.png and /dev/null differ diff --git a/plantlife_modpack/youngtrees/textures/youngtree16xc.png b/plantlife_modpack/youngtrees/textures/youngtree16xc.png deleted file mode 100644 index cfe3cf1..0000000 Binary files a/plantlife_modpack/youngtrees/textures/youngtree16xc.png and /dev/null differ diff --git a/plantlife_modpack/youngtrees/textures/youngtree2branch.png b/plantlife_modpack/youngtrees/textures/youngtree2branch.png deleted file mode 100644 index 89b2f23..0000000 Binary files a/plantlife_modpack/youngtrees/textures/youngtree2branch.png and /dev/null differ -- cgit v1.2.3