diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..331d858 --- /dev/null +++ b/depends.txt @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/description.txt b/description.txt new file mode 100644 index 0000000..b0c8898 --- /dev/null +++ b/description.txt @@ -0,0 +1,9 @@ +A simple mod that adds a few new plants. +Changed in V1.2: +>more plants +>plants now spawn on new worlds(as decorations not using an ABM) +>curly plants have fruit, and eyeweeds drop eyeballs +>smaller textures + +Changed in V1.3: +>added all plants to the group attatched_node \ No newline at end of file diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..b9f23d8 --- /dev/null +++ b/init.lua @@ -0,0 +1,672 @@ + +--moreplants by D00Med + +--plants + +minetest.register_node("moreplants:tallgrass", { + description = "Tall Grass", + drawtype = "plantlike", + tiles = {"moreplants_longgrass.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_longgrass.png", + visual_scale = 1.4, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5} + }, + walkable = false, +}) + +minetest.register_node("moreplants:xlbush", { + description = "Tall Bush", + drawtype = "plantlike", + tiles = {"moreplants_xlbush.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_xlbush.png", + visual_scale = 1.4, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5} + }, + walkable = false, +}) + + +minetest.register_node("moreplants:bulrush", { + description = "Bulrush", + drawtype = "plantlike", + tiles = {"moreplants_bullrush.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_bullrush.png", + visual_scale = 1.3, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5} + }, + walkable = false, +}) + +minetest.register_node("moreplants:bigfern", { + description = "Big Fern", + drawtype = "plantlike", + tiles = {"moreplants_bigfern.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_bigfern.png", + visual_scale = 1.5, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5} + }, + walkable = false, +}) + +minetest.register_node("moreplants:umbrella", { + description = "Umbrella Weed", + drawtype = "plantlike", + tiles = {"moreplants_umbrella.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_umbrella.png", + visual_scale = 2, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 3, 0.3} + }, + walkable = true, +}) + +minetest.register_node("moreplants:bigflower", { + description = "Big Flower", + drawtype = "plantlike", + tiles = {"moreplants_bigflower.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_bigflower.png", + visual_scale = 1.2, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5} + }, + walkable = false, +}) + +minetest.register_node("moreplants:weed", { + description = "Weed", + drawtype = "plantlike", + tiles = {"moreplants_weed.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_weed.png", + visual_scale = 1.1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5} + }, + walkable = false, +}) + +minetest.register_node("moreplants:stoneweed", { + description = "Stone weed", + drawtype = "plantlike", + tiles = {"moreplants_stoneplant.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_stoneplant.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3} + }, + walkable = false, +}) + +minetest.register_node("moreplants:spikefern", { + description = "Spike Fern", + drawtype = "plantlike", + tiles = {"moreplants_spikefern.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_spikefern.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3} + }, + walkable = false, +}) + +minetest.register_node("moreplants:eyeweed", { + description = "Eye weed", + drawtype = "plantlike", + tiles = {"moreplants_eyeweed.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_eyeweed.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + drop = "moreplants:eye", + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3} + }, + walkable = false, +}) + +minetest.register_node("moreplants:fern", { + description = "Fern", + drawtype = "plantlike", + tiles = {"moreplants_fern.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_fern.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3} + }, + walkable = false, +}) + +minetest.register_node("moreplants:bush", { + description = "Bush", + drawtype = "plantlike", + tiles = {"moreplants_bush.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_bush.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3} + }, + walkable = false, +}) + +minetest.register_node("moreplants:cactus", { + description = "Small Cactus", + drawtype = "plantlike", + tiles = {"moreplants_cactus.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_cactus.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3} + }, + walkable = false, + damage_per_second = 1 +}) + +minetest.register_node("moreplants:moonflower", { + description = "Moon Flower", + drawtype = "plantlike", + tiles = {"moreplants_moonflower.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_moonflower.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3} + }, + walkable = false, +}) + +minetest.register_node("moreplants:fireflower", { + description = "Fire flower", + drawtype = "plantlike", + tiles = {"moreplants_fireflower.png"}, + paramtype = "light", + light_source = 5, + is_ground_content = false, + inventory_image = "moreplants_fireflower.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, + walkable = false, +}) + +minetest.register_node("moreplants:deadweed", { + description = "dead weed", + drawtype = "plantlike", + tiles = {"moreplants_deadweed.png"}, + paramtype = "light", + light_source = 5, + is_ground_content = false, + inventory_image = "moreplants_deadweed.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, + walkable = false, +}) + +minetest.register_node("moreplants:taigabush", { + description = "Taiga bush", + drawtype = "plantlike", + tiles = {"moreplants_tundrabush.png"}, + paramtype = "light", + light_source = 5, + is_ground_content = false, + inventory_image = "moreplants_tundrabush.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, + walkable = false, +}) + +minetest.register_node("moreplants:glowfung", { + description = "glow fungus", + drawtype = "torchlike", + tiles = {"moreplants_glowfung.png"}, + paramtype = "light", + is_ground_content = false, + light_source = 20, + legacy_wallmounted = true, + selection_box = { + type = "wallmounted", + wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1}, + wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + wall_side = {-0.5, -0.3, -0.1, -0.5+0.3, 0.3, 0.1}, + }, + paramtype2 = "wallmounted", + is_ground_content = false, + inventory_image = "moreplants_glowfung.png", + visual_scale = 1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + walkable = false, +}) + +minetest.register_node("moreplants:jungleflower", { + description = "Jungle flower", + drawtype = "plantlike", + tiles = {"moreplants_jungleflower1.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_jungleflower1.png", + visual_scale = 1.1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + selection_box = { + type = "fixed", + fixed = {-0.4, -0.5, -0.4, 0.4, 0.4, 0.4} + }, + walkable = false, +}) + +minetest.register_node("moreplants:mushroom", { + description = "Pink Mushroom", + tiles = { + "moreplants_mushroom_top.png", + "moreplants_mushroom_top.png", + "moreplants_mushroom_side.png", + "moreplants_mushroom_side.png", + "moreplants_mushroom_side.png", + "moreplants_mushroom_side.png" + }, + drawtype = "nodebox", + paramtype = "light", + node_box = { + type = "fixed", + fixed = { + {-0.0625, -0.5, -0.0625, 0.0625, -0.3125, 0.0625}, -- NodeBox1 + {-0.1875, -0.3125, -0.1875, 0.1875, -0.1875, 0.1875}, -- NodeBox2 + {-0.125, -0.1875, -0.125, 0.125, -0.125, 0.125}, -- NodeBox3 + } + }, + groups = {snappy=3, flammable=1, attatched_node=1}, + light_source=2, +}) + +minetest.register_node("moreplants:curly", { + description = "Curly flower", + drawtype = "plantlike", + tiles = {"moreplants_curly.png"}, + paramtype = "light", + is_ground_content = false, + inventory_image = "moreplants_curly.png", + visual_scale = 1.1, + wield_scale = {x=0.5, y=0.5, z=0.5}, + groups = {snappy=3, flammable=1, attatched_node=1}, + drop = "moreplants:curlyfruit", + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.4, 0.3} + }, + walkable = false, +}) + +minetest.register_node("moreplants:clover", { + description = "Clover", + drawtype = "firelike", + tiles = { + "moreplants_clover.png", + "moreplants_trans.png", + "moreplants_clover.png", + "moreplants_clover.png", + "moreplants_clover.png", + "moreplants_clover.png" + }, + groups = {snappy=3, flammable=1, attatched_node=1}, + is_ground_content=true, + walkable = false, + inventory_image = "moreplants_clover.png", + paramtype = "light", + sunlight_propagates=true, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.1, 0.5} + }, +}) + +minetest.register_node("moreplants:groundfung", { + description = "Ground fungus", + drawtype = "firelike", + tiles = { + "moreplants_groundfung.png", + "moreplants_trans.png", + "moreplants_groundfung.png", + "moreplants_groundfung.png", + "moreplants_groundfung.png", + "moreplants_groundfung.png" + }, + groups = {snappy=3, flammable=1, attatched_node=1}, + is_ground_content=true, + walkable = false, + inventory_image = "moreplants_groundfung.png", + paramtype = "light", + sunlight_propagates=true, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.1, 0.5} + }, +}) + +--craftitems +minetest.register_craftitem("moreplants:curlyfruit", { + description = "Curly Fruit", + inventory_image = "moreplants_curlyfruit.png", + on_use = minetest.item_eat(1), +}) + +minetest.register_craftitem("moreplants:eye", { + description = "Eyeball", + inventory_image = "moreplants_eye.png" +}) + +--craft recipes +minetest.register_craft({ + output = "default:cactus 1", + recipe = { + {"moreplants:cactus", "moreplants:cactus", "moreplants:cactus"}, + {"moreplants:cactus", "moreplants:cactus", "moreplants:cactus"}, + {"moreplants:cactus", "moreplants:cactus", "moreplants:cactus"} + } +}) + +--decorations +if minetest.get_mapgen_params().mgname == "v7" then +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:desert_sand", + sidelen = 16, + fill_ratio = 0.005, + biomes = {"desert"}, + decoration = "moreplants:fireflower", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.03, + biomes = {"stone_grassland", "sandstone_grassland"}, + decoration = "moreplants:tallgrass", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"rainforest"}, + decoration = "moreplants:jungleflower", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.006, + biomes = {"deciduous_forest", "sandstone_grassland", "stone_grassland"}, + decoration = "moreplants:xlbush", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"rainforest"}, + decoration = "moreplants:umbrella", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"rainforest", "coniferous_forest"}, + decoration = "moreplants:bigfern", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"rainforest"}, + decoration = "moreplants:bigflower", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:sand", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"stone_grassland_ocean", "deciduous_forest_ocean"}, + decoration = "moreplants:bulrush", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:desert_sand", + sidelen = 16, + fill_ratio = 0.005, + biomes = {"desert"}, + decoration = "moreplants:eyeweed", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:stone", + sidelen = 16, + fill_ratio = 0.001, + decoration = "moreplants:stoneweed", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:desert_sand", + sidelen = 16, + fill_ratio = 0.005, + biomes = {"desert"}, + decoration = "moreplants:cactus", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.005, + biomes = {"deciduous_forest"}, + decoration = "moreplants:curly", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.005, + biomes = {"deciduous_forest"}, + decoration = "moreplants:bush", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:snow_block", + sidelen = 16, + fill_ratio = 0.005, + biomes = {"tundra"}, + decoration = "moreplants:moonflower", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:snowblock", "default:dirt_with_snow", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"taiga"}, + decoration = "moreplants:deadweed", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:snowblock", "default:dirt_with_snow", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"taiga"}, + decoration = "moreplants:taigabush", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:snowblock", "default:dirt_with_snow", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"taiga"}, + decoration = "moreplants:groundfung", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"coniferous_forest"}, + decoration = "moreplants:spikefern", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"coniferous_forest"}, + decoration = "moreplants:weed", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.02, + biomes = {"coniferous_forest"}, + decoration = "moreplants:fern", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "default:dirt_with_grass", + sidelen = 16, + fill_ratio = 0.01, + biomes = {"deciduous_forest"}, + decoration = "moreplants:mushroom", + height = 1, +}) + +minetest.register_decoration({ + deco_type = "simple", + place_on = "air", + sidelen = 16, + fill_ratio = 0.01, + biomes = {"deciduous_forest"}, + spawn_by = "default:tree", + decoration = "moreplants:glowfung", + height = 1, +}) +end \ No newline at end of file diff --git a/license.txt b/license.txt new file mode 100644 index 0000000..b6dddaa --- /dev/null +++ b/license.txt @@ -0,0 +1,24 @@ + +License for Code +---------------- + +Copyright (C) 2016 DOOmed + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +License for Textures, Models and Sounds +--------------------------------------- + +CC-BY-SA 3.0 UNPORTED. Created by DOOmed diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..e629f56 Binary files /dev/null and b/screenshot.png differ diff --git a/textures/moreplants_bigfern.png b/textures/moreplants_bigfern.png new file mode 100644 index 0000000..5df96c1 Binary files /dev/null and b/textures/moreplants_bigfern.png differ diff --git a/textures/moreplants_bigflower.png b/textures/moreplants_bigflower.png new file mode 100644 index 0000000..6ef3c7f Binary files /dev/null and b/textures/moreplants_bigflower.png differ diff --git a/textures/moreplants_bullrush.png b/textures/moreplants_bullrush.png new file mode 100644 index 0000000..11f2817 Binary files /dev/null and b/textures/moreplants_bullrush.png differ diff --git a/textures/moreplants_bush.png b/textures/moreplants_bush.png new file mode 100644 index 0000000..03527ce Binary files /dev/null and b/textures/moreplants_bush.png differ diff --git a/textures/moreplants_cactus.png b/textures/moreplants_cactus.png new file mode 100644 index 0000000..9e258fd Binary files /dev/null and b/textures/moreplants_cactus.png differ diff --git a/textures/moreplants_clover.png b/textures/moreplants_clover.png new file mode 100644 index 0000000..923810a Binary files /dev/null and b/textures/moreplants_clover.png differ diff --git a/textures/moreplants_curly.png b/textures/moreplants_curly.png new file mode 100644 index 0000000..7a71963 Binary files /dev/null and b/textures/moreplants_curly.png differ diff --git a/textures/moreplants_curlyfruit.png b/textures/moreplants_curlyfruit.png new file mode 100644 index 0000000..8a3b4b9 Binary files /dev/null and b/textures/moreplants_curlyfruit.png differ diff --git a/textures/moreplants_deadweed.png b/textures/moreplants_deadweed.png new file mode 100644 index 0000000..ebe5338 Binary files /dev/null and b/textures/moreplants_deadweed.png differ diff --git a/textures/moreplants_eye.png b/textures/moreplants_eye.png new file mode 100644 index 0000000..0041f77 Binary files /dev/null and b/textures/moreplants_eye.png differ diff --git a/textures/moreplants_eyeweed.png b/textures/moreplants_eyeweed.png new file mode 100644 index 0000000..847075f Binary files /dev/null and b/textures/moreplants_eyeweed.png differ diff --git a/textures/moreplants_fern.png b/textures/moreplants_fern.png new file mode 100644 index 0000000..78f79e2 Binary files /dev/null and b/textures/moreplants_fern.png differ diff --git a/textures/moreplants_fireflower.png b/textures/moreplants_fireflower.png new file mode 100644 index 0000000..e97af62 Binary files /dev/null and b/textures/moreplants_fireflower.png differ diff --git a/textures/moreplants_glowfung.png b/textures/moreplants_glowfung.png new file mode 100644 index 0000000..af17d37 Binary files /dev/null and b/textures/moreplants_glowfung.png differ diff --git a/textures/moreplants_groundfung.png b/textures/moreplants_groundfung.png new file mode 100644 index 0000000..335b48f Binary files /dev/null and b/textures/moreplants_groundfung.png differ diff --git a/textures/moreplants_jungleflower1.png b/textures/moreplants_jungleflower1.png new file mode 100644 index 0000000..b27ef17 Binary files /dev/null and b/textures/moreplants_jungleflower1.png differ diff --git a/textures/moreplants_longgrass.png b/textures/moreplants_longgrass.png new file mode 100644 index 0000000..6488b30 Binary files /dev/null and b/textures/moreplants_longgrass.png differ diff --git a/textures/moreplants_moonflower.png b/textures/moreplants_moonflower.png new file mode 100644 index 0000000..6bf58e1 Binary files /dev/null and b/textures/moreplants_moonflower.png differ diff --git a/textures/moreplants_mushroom_side.png b/textures/moreplants_mushroom_side.png new file mode 100644 index 0000000..e6439eb Binary files /dev/null and b/textures/moreplants_mushroom_side.png differ diff --git a/textures/moreplants_mushroom_top.png b/textures/moreplants_mushroom_top.png new file mode 100644 index 0000000..8a8069f Binary files /dev/null and b/textures/moreplants_mushroom_top.png differ diff --git a/textures/moreplants_spikefern.png b/textures/moreplants_spikefern.png new file mode 100644 index 0000000..aec9ce7 Binary files /dev/null and b/textures/moreplants_spikefern.png differ diff --git a/textures/moreplants_stoneplant.png b/textures/moreplants_stoneplant.png new file mode 100644 index 0000000..94766d1 Binary files /dev/null and b/textures/moreplants_stoneplant.png differ diff --git a/textures/moreplants_trans.png b/textures/moreplants_trans.png new file mode 100644 index 0000000..4d7beb8 Binary files /dev/null and b/textures/moreplants_trans.png differ diff --git a/textures/moreplants_tundrabush.png b/textures/moreplants_tundrabush.png new file mode 100644 index 0000000..768bbf5 Binary files /dev/null and b/textures/moreplants_tundrabush.png differ diff --git a/textures/moreplants_umbrella.png b/textures/moreplants_umbrella.png new file mode 100644 index 0000000..f5816cd Binary files /dev/null and b/textures/moreplants_umbrella.png differ diff --git a/textures/moreplants_weed.png b/textures/moreplants_weed.png new file mode 100644 index 0000000..54e20a1 Binary files /dev/null and b/textures/moreplants_weed.png differ diff --git a/textures/moreplants_xlbush.png b/textures/moreplants_xlbush.png new file mode 100644 index 0000000..b1d2616 Binary files /dev/null and b/textures/moreplants_xlbush.png differ diff --git a/textures/textures_32x/moreplants_bigflower.png b/textures/textures_32x/moreplants_bigflower.png new file mode 100644 index 0000000..f6850fb Binary files /dev/null and b/textures/textures_32x/moreplants_bigflower.png differ diff --git a/textures/textures_32x/moreplants_bullrush.png b/textures/textures_32x/moreplants_bullrush.png new file mode 100644 index 0000000..749748c Binary files /dev/null and b/textures/textures_32x/moreplants_bullrush.png differ diff --git a/textures/textures_32x/moreplants_clover.png b/textures/textures_32x/moreplants_clover.png new file mode 100644 index 0000000..f7b2b7d Binary files /dev/null and b/textures/textures_32x/moreplants_clover.png differ diff --git a/textures/textures_32x/moreplants_curly.png b/textures/textures_32x/moreplants_curly.png new file mode 100644 index 0000000..c56043a Binary files /dev/null and b/textures/textures_32x/moreplants_curly.png differ diff --git a/textures/textures_32x/moreplants_fireflower.png b/textures/textures_32x/moreplants_fireflower.png new file mode 100644 index 0000000..856fa79 Binary files /dev/null and b/textures/textures_32x/moreplants_fireflower.png differ diff --git a/textures/textures_32x/moreplants_jungleflower.png b/textures/textures_32x/moreplants_jungleflower.png new file mode 100644 index 0000000..3c32fc4 Binary files /dev/null and b/textures/textures_32x/moreplants_jungleflower.png differ diff --git a/textures/textures_32x/moreplants_jungleflower1.png b/textures/textures_32x/moreplants_jungleflower1.png new file mode 100644 index 0000000..08718a8 Binary files /dev/null and b/textures/textures_32x/moreplants_jungleflower1.png differ diff --git a/textures/textures_32x/moreplants_longgrass.png b/textures/textures_32x/moreplants_longgrass.png new file mode 100644 index 0000000..df28629 Binary files /dev/null and b/textures/textures_32x/moreplants_longgrass.png differ diff --git a/textures/textures_32x/moreplants_mushroom_side.png b/textures/textures_32x/moreplants_mushroom_side.png new file mode 100644 index 0000000..5f49396 Binary files /dev/null and b/textures/textures_32x/moreplants_mushroom_side.png differ diff --git a/textures/textures_32x/moreplants_mushroom_top.png b/textures/textures_32x/moreplants_mushroom_top.png new file mode 100644 index 0000000..d66a34c Binary files /dev/null and b/textures/textures_32x/moreplants_mushroom_top.png differ diff --git a/textures/textures_32x/moreplants_stoneplant.png b/textures/textures_32x/moreplants_stoneplant.png new file mode 100644 index 0000000..f629127 Binary files /dev/null and b/textures/textures_32x/moreplants_stoneplant.png differ diff --git a/textures/textures_32x/moreplants_trans.png b/textures/textures_32x/moreplants_trans.png new file mode 100644 index 0000000..7bee0a0 Binary files /dev/null and b/textures/textures_32x/moreplants_trans.png differ diff --git a/textures/textures_32x/moreplants_umbrella.png b/textures/textures_32x/moreplants_umbrella.png new file mode 100644 index 0000000..d5e44e3 Binary files /dev/null and b/textures/textures_32x/moreplants_umbrella.png differ