Version MFF.
8
dryplants/crafting.lua
Normal file → Executable file
@ -2,10 +2,10 @@
|
||||
-- Dry Plants - Recipes 0.1.0 -- Short Grass -> Dirt
|
||||
-----------------------------------------------------------------------------------------------
|
||||
-- by Mossmanikin
|
||||
-- License (everything): WTFPL
|
||||
-- License (everything): WTFPL
|
||||
-- Looked at code from: darkage, default, farming, sickle, stairs
|
||||
-- Dependencies: default, farming
|
||||
-- Supports: flint, stoneage, sumpf
|
||||
-- Supports: flint, stoneage, sumpf
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
||||
-----------------------------------------------------------------------------------------------
|
||||
@ -220,7 +220,7 @@ for i in pairs(ReeD) do
|
||||
recipe = {
|
||||
{slab},
|
||||
}
|
||||
})
|
||||
})
|
||||
-----------------------------------------------------------------------------------------------
|
||||
-- Roof Corner
|
||||
-----------------------------------------------------------------------------------------------
|
||||
@ -343,7 +343,7 @@ minetest.register_craft({
|
||||
burntime = 2,
|
||||
})
|
||||
-----------------------------------------------------------------------------------------------
|
||||
-- Dandelion Leave
|
||||
-- Dandelion Leave
|
||||
-----------------------------------------------------------------------------------------------
|
||||
--[[minetest.register_craftitem("dryplants:dandelion_leave", {
|
||||
description = "Dandelion Leave",
|
||||
|
0
dryplants/depends.txt
Normal file → Executable file
14
dryplants/init.lua
Normal file → Executable file
@ -7,10 +7,10 @@ local mname = "dryplants"
|
||||
-- textures & ideas partly by Neuromancer
|
||||
|
||||
-- License (everything): WTFPL
|
||||
-- Contains code from: default, farming
|
||||
-- Contains code from: default, farming
|
||||
-- Looked at code from: darkage, sickle, stairs
|
||||
-- Dependencies: default, farming, biome_lib
|
||||
-- Supports:
|
||||
-- Supports:
|
||||
-----------------------------------------------------------------------------------------------
|
||||
abstract_dryplants = {}
|
||||
|
||||
@ -190,14 +190,14 @@ minetest.register_abm({
|
||||
interval = GRASS_REGROWING_TIME, --1200, -- 20 minutes: a minetest-day/night-cycle
|
||||
chance = 100/GRASS_REGROWING_CHANCE,
|
||||
action = function(pos)
|
||||
-- Only become dirt with grass if no cut grass or hay lies on top
|
||||
local above = minetest.get_node({x=pos.x, y=pos.y+1, z=pos.z})
|
||||
if above.name ~= "dryplants:grass" and above.name ~= "dryplants:hay" then
|
||||
-- Only become dirt with grass if no cut grass or hay lies on top
|
||||
local above = minetest.get_node({x=pos.x, y=pos.y+1, z=pos.z})
|
||||
if above.name ~= "dryplants:grass" and above.name ~= "dryplants:hay" then
|
||||
minetest.set_node(pos, {name="default:dirt_with_grass"})
|
||||
end
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
-----------------------------------------------------------------------------------------------
|
||||
print("[Mod] "..title.." ["..version.."] ["..mname.."] Loaded...")
|
||||
minetest.log("action", "[Mod] "..title.." ["..version.."] ["..mname.."] Loaded...")
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
6
dryplants/juncus.lua
Normal file → Executable file
@ -6,7 +6,7 @@
|
||||
|
||||
-- License (everything): WTFPL
|
||||
-- Contains code from: biome_lib
|
||||
-- Looked at code from: default
|
||||
-- Looked at code from: default
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
||||
abstract_dryplants.grow_juncus = function(pos)
|
||||
@ -92,7 +92,7 @@ minetest.register_node("dryplants:juncus_02", {
|
||||
-- near water or swamp
|
||||
biome_lib:register_generate_plant({
|
||||
surface = {
|
||||
"default:dirt_with_grass",
|
||||
"default:dirt_with_grass",
|
||||
--"default:desert_sand",
|
||||
--"default:sand",
|
||||
"stoneage:grass_with_silex",
|
||||
@ -113,7 +113,7 @@ biome_lib:register_generate_plant({
|
||||
-- at dunes/beach
|
||||
biome_lib:register_generate_plant({
|
||||
surface = {
|
||||
--"default:dirt_with_grass",
|
||||
--"default:dirt_with_grass",
|
||||
--"default:desert_sand",
|
||||
"default:sand",
|
||||
--"stoneage:grass_with_silex",
|
||||
|
2
dryplants/meadowvariation.lua
Normal file → Executable file
@ -5,7 +5,7 @@
|
||||
|
||||
-- License (everything): WTFPL
|
||||
-- Contains code from: biome_lib
|
||||
-- Looked at code from: default
|
||||
-- Looked at code from: default
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
||||
abstract_dryplants.grow_grass_variation = function(pos)
|
||||
|
0
dryplants/models/plantlike.obj
Normal file → Executable file
2
dryplants/moregrass.lua
Normal file → Executable file
@ -5,7 +5,7 @@
|
||||
|
||||
-- License (everything): WTFPL
|
||||
-- Contains code from: biome_lib
|
||||
-- Looked at code from: default
|
||||
-- Looked at code from: default
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
||||
abstract_dryplants.grow_grass = function(pos)
|
||||
|
18
dryplants/reed.lua
Normal file → Executable file
@ -4,7 +4,7 @@
|
||||
-- by Mossmanikin
|
||||
-- License (everything): WTFPL
|
||||
-- Looked at code from: darkage, default, stairs
|
||||
-- Dependencies: default
|
||||
-- Dependencies: default
|
||||
-----------------------------------------------------------------------------------------------
|
||||
minetest.register_alias("stairs:stair_wetreed", "dryplants:wetreed_roof")
|
||||
minetest.register_alias("stairs:slab_wetreed", "dryplants:wetreed_slab")
|
||||
@ -93,7 +93,7 @@ if AUTO_ROOF_CORNER == true then
|
||||
interval = 1,
|
||||
chance = 1,
|
||||
action = function(pos)
|
||||
|
||||
|
||||
local node_east = minetest.get_node({x=pos.x+1, y=pos.y, z=pos.z })
|
||||
local node_west = minetest.get_node({x=pos.x-1, y=pos.y, z=pos.z })
|
||||
local node_north = minetest.get_node({x=pos.x, y=pos.y, z=pos.z+1})
|
||||
@ -106,7 +106,7 @@ if AUTO_ROOF_CORNER == true then
|
||||
then
|
||||
minetest.set_node(pos, {name=corner, param2=0})
|
||||
end
|
||||
|
||||
|
||||
if ((node_north.name == roof and node_north.param2 == 1)
|
||||
or (node_north.name == corner and node_north.param2 == 2))
|
||||
and ((node_east.name == roof and node_east.param2 == 0)
|
||||
@ -114,7 +114,7 @@ if AUTO_ROOF_CORNER == true then
|
||||
then
|
||||
minetest.set_node(pos, {name=corner, param2=1})
|
||||
end
|
||||
|
||||
|
||||
if ((node_east.name == roof and node_east.param2 == 2)
|
||||
or (node_east.name == corner and node_east.param2 == 3))
|
||||
and ((node_south.name == roof and node_south.param2 == 1)
|
||||
@ -122,7 +122,7 @@ if AUTO_ROOF_CORNER == true then
|
||||
then
|
||||
minetest.set_node(pos, {name=corner, param2=2})
|
||||
end
|
||||
|
||||
|
||||
if ((node_south.name == roof and node_south.param2 == 3)
|
||||
or (node_south.name == corner and node_south.param2 == 0))
|
||||
and ((node_west.name == roof and node_west.param2 == 2)
|
||||
@ -138,7 +138,7 @@ if AUTO_ROOF_CORNER == true then
|
||||
then
|
||||
minetest.set_node(pos, {name=corner_2, param2=0})
|
||||
end
|
||||
|
||||
|
||||
if ((node_north.name == roof and node_north.param2 == 3)
|
||||
or (node_north.name == corner_2 and node_north.param2 == 2))
|
||||
and ((node_east.name == roof and node_east.param2 == 2)
|
||||
@ -146,7 +146,7 @@ if AUTO_ROOF_CORNER == true then
|
||||
then
|
||||
minetest.set_node(pos, {name=corner_2, param2=1})
|
||||
end
|
||||
|
||||
|
||||
if ((node_east.name == roof and node_east.param2 == 0)
|
||||
or (node_east.name == corner_2 and node_east.param2 == 3))
|
||||
and ((node_south.name == roof and node_south.param2 == 3)
|
||||
@ -154,7 +154,7 @@ if AUTO_ROOF_CORNER == true then
|
||||
then
|
||||
minetest.set_node(pos, {name=corner_2, param2=2})
|
||||
end
|
||||
|
||||
|
||||
if ((node_south.name == roof and node_south.param2 == 1)
|
||||
or (node_south.name == corner_2 and node_south.param2 == 0))
|
||||
and ((node_west.name == roof and node_west.param2 == 0)
|
||||
@ -227,7 +227,7 @@ minetest.register_node("dryplants:wetreed_roof_corner_2", {
|
||||
groups = {snappy=3, flammable=2},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
|
||||
-----------------------------------------------------------------------------------------------
|
||||
-- Wet Reed becomes (dry) Reed over time
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
18
dryplants/reedmace.lua
Normal file → Executable file
@ -6,7 +6,7 @@
|
||||
|
||||
-- License (everything): WTFPL
|
||||
-- Contains code from: biome_lib
|
||||
-- Looked at code from: default, trees
|
||||
-- Looked at code from: default, trees
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
||||
-- NOTES (from wikipedia, some of this might get implemented)
|
||||
@ -70,7 +70,7 @@ abstract_dryplants.grow_reedmace_water = function(pos)
|
||||
minetest.set_node(pos_02, {name="dryplants:reedmace_height_3_spikes"})
|
||||
else
|
||||
minetest.set_node(pos_02, {name="dryplants:reedmace_height_3"})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -212,8 +212,8 @@ minetest.register_node("dryplants:reedmace", {
|
||||
after_destruct = function(pos,oldnode)
|
||||
local node = minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z})
|
||||
if node.name == "dryplants:reedmace_top"
|
||||
or node.name == "dryplants:reedmace_spikes" then
|
||||
minetest.dig_node({x=pos.x,y=pos.y+1,z=pos.z})
|
||||
or node.name == "dryplants:reedmace_spikes" then
|
||||
minetest.dig_node({x=pos.x,y=pos.y+1,z=pos.z})
|
||||
minetest.add_item(pos,"dryplants:reedmace_sapling")
|
||||
end
|
||||
end,
|
||||
@ -241,10 +241,10 @@ minetest.register_node("dryplants:reedmace_bottom", {
|
||||
},
|
||||
after_destruct = function(pos,oldnode)
|
||||
local node = minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z})
|
||||
if node.name == "dryplants:reedmace"
|
||||
if node.name == "dryplants:reedmace"
|
||||
or node.name == "dryplants:reedmace_top"
|
||||
or node.name == "dryplants:reedmace_spikes" then
|
||||
minetest.dig_node({x=pos.x,y=pos.y+1,z=pos.z})
|
||||
or node.name == "dryplants:reedmace_spikes" then
|
||||
minetest.dig_node({x=pos.x,y=pos.y+1,z=pos.z})
|
||||
minetest.add_item(pos,"dryplants:reedmace_sapling")
|
||||
end
|
||||
end,
|
||||
@ -348,7 +348,7 @@ minetest.register_entity("dryplants:reedmace_water_entity",{
|
||||
-- near water or swamp
|
||||
biome_lib:register_generate_plant({
|
||||
surface = {
|
||||
"default:dirt_with_grass",
|
||||
"default:dirt_with_grass",
|
||||
"default:desert_sand",
|
||||
"stoneage:grass_with_silex",
|
||||
"sumpf:peat",
|
||||
@ -370,7 +370,7 @@ biome_lib:register_generate_plant({
|
||||
biome_lib:register_generate_plant({
|
||||
surface = {
|
||||
"default:dirt",
|
||||
"default:dirt_with_grass",
|
||||
"default:dirt_with_grass",
|
||||
--"default:desert_sand",
|
||||
--"stoneage:grass_with_silex",
|
||||
"stoneage:sand_with_silex",
|
||||
|
6
dryplants/settings.txt
Normal file → Executable file
@ -18,7 +18,7 @@ REEDMACE_FOR_OASES_PER_MAPBLOCK = 35 -- plants per 80x80x80 nodes (absolute ma
|
||||
REEDMACE_FOR_OASES_RARITY = 90 -- percent
|
||||
|
||||
-- growing of reedmace sapling
|
||||
REEDMACE_GROWING_TIME = 600 -- seconds
|
||||
REEDMACE_GROWING_TIME = 16800 -- seconds
|
||||
REEDMACE_GROWING_CHANCE = 5 -- percent
|
||||
|
||||
|
||||
@ -40,8 +40,8 @@ TALL_GRASS_RARITY = 75 -- percent
|
||||
|
||||
|
||||
-- short grass becomes dirt with grass again
|
||||
GRASS_REGROWING_TIME = 1200 -- seconds
|
||||
GRASS_REGROWING_CHANCE = 5 -- percent
|
||||
GRASS_REGROWING_TIME = 16800 -- seconds
|
||||
GRASS_REGROWING_CHANCE = 0.5 -- percent
|
||||
|
||||
HAY_DRYING_TIME = 3600 -- seconds
|
||||
|
||||
|
0
dryplants/textures/default_grass_1.png
Normal file → Executable file
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
0
dryplants/textures/default_grass_2.png
Normal file → Executable file
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 315 B |
0
dryplants/textures/default_grass_3.png
Normal file → Executable file
Before Width: | Height: | Size: 428 B After Width: | Height: | Size: 428 B |
0
dryplants/textures/default_grass_4.png
Normal file → Executable file
Before Width: | Height: | Size: 525 B After Width: | Height: | Size: 525 B |
0
dryplants/textures/default_grass_5.png
Normal file → Executable file
Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 611 B |
0
dryplants/textures/dryplants_grass.png
Normal file → Executable file
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 486 B |
0
dryplants/textures/dryplants_grass_short.png
Normal file → Executable file
Before Width: | Height: | Size: 771 B After Width: | Height: | Size: 771 B |
0
dryplants/textures/dryplants_grass_short_side.png
Normal file → Executable file
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 396 B |
0
dryplants/textures/dryplants_hay.png
Normal file → Executable file
Before Width: | Height: | Size: 512 B After Width: | Height: | Size: 512 B |
0
dryplants/textures/dryplants_juncus_02.png
Normal file → Executable file
Before Width: | Height: | Size: 670 B After Width: | Height: | Size: 670 B |
0
dryplants/textures/dryplants_juncus_03.png
Normal file → Executable file
Before Width: | Height: | Size: 720 B After Width: | Height: | Size: 720 B |
0
dryplants/textures/dryplants_juncus_inv.png
Normal file → Executable file
Before Width: | Height: | Size: 600 B After Width: | Height: | Size: 600 B |
0
dryplants/textures/dryplants_reed.png
Normal file → Executable file
Before Width: | Height: | Size: 685 B After Width: | Height: | Size: 685 B |
0
dryplants/textures/dryplants_reed_wet.png
Normal file → Executable file
Before Width: | Height: | Size: 672 B After Width: | Height: | Size: 672 B |
0
dryplants/textures/dryplants_reedmace.png
Normal file → Executable file
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 615 B |
0
dryplants/textures/dryplants_reedmace_bottom.png
Normal file → Executable file
Before Width: | Height: | Size: 708 B After Width: | Height: | Size: 708 B |
BIN
dryplants/textures/dryplants_reedmace_height_2.png
Normal file → Executable file
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
BIN
dryplants/textures/dryplants_reedmace_height_3.png
Normal file → Executable file
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
BIN
dryplants/textures/dryplants_reedmace_height_3_spikes.png
Normal file → Executable file
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.0 KiB |
0
dryplants/textures/dryplants_reedmace_sapling.png
Normal file → Executable file
Before Width: | Height: | Size: 455 B After Width: | Height: | Size: 455 B |
0
dryplants/textures/dryplants_reedmace_spikes.png
Normal file → Executable file
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 491 B |
0
dryplants/textures/dryplants_reedmace_top.png
Normal file → Executable file
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 329 B |
0
dryplants/textures/dryplants_reedmace_water.png
Normal file → Executable file
Before Width: | Height: | Size: 588 B After Width: | Height: | Size: 588 B |
BIN
dryplants/textures/dryplants_sickle.png
Normal file → Executable file
Before Width: | Height: | Size: 147 B After Width: | Height: | Size: 146 B |
BIN
dryplants/textures/not_in_use/big_pic_8.png
Normal file → Executable file
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
0
dryplants/textures/not_in_use/big_pic_9.png
Normal file → Executable file
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
BIN
dryplants/textures/not_in_use/dryplants_cattailsG_m2.png
Normal file → Executable file
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.4 KiB |
0
dryplants/textures/not_in_use/dryplants_juncus_02_left.png
Normal file → Executable file
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 352 B |
0
dryplants/textures/not_in_use/dryplants_juncus_02_right.png
Normal file → Executable file
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 393 B |
0
dryplants/textures/not_in_use/dryplants_juncus_02_whole2.png
Normal file → Executable file
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 621 B |
0
dryplants/textures/not_in_use/dryplants_juncus_03_left.png
Normal file → Executable file
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |
0
dryplants/textures/not_in_use/dryplants_juncus_03_right.png
Normal file → Executable file
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 387 B |
0
dryplants/textures/not_in_use/dryplants_juncus_03_whole2.png
Normal file → Executable file
Before Width: | Height: | Size: 665 B After Width: | Height: | Size: 665 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_01.png
Normal file → Executable file
Before Width: | Height: | Size: 362 B After Width: | Height: | Size: 362 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_02.png
Normal file → Executable file
Before Width: | Height: | Size: 708 B After Width: | Height: | Size: 708 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_03.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
0
dryplants/textures/not_in_use/dryplants_reedmace_04.png
Normal file → Executable file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
dryplants/textures/not_in_use/dryplants_reedmace_bottom_left.png
Normal file → Executable file
Before Width: | Height: | Size: 122 B After Width: | Height: | Size: 122 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_bottom_right.png
Normal file → Executable file
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 189 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_left.png
Normal file → Executable file
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 185 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_right.png
Normal file → Executable file
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 196 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_top_left.png
Normal file → Executable file
Before Width: | Height: | Size: 102 B After Width: | Height: | Size: 102 B |
0
dryplants/textures/not_in_use/dryplants_reedmace_top_right.png
Normal file → Executable file
Before Width: | Height: | Size: 147 B After Width: | Height: | Size: 147 B |
BIN
dryplants/textures/not_in_use/reedmace2.png
Normal file → Executable file
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
BIN
dryplants/textures/not_in_use/reedmace3.png
Normal file → Executable file
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
BIN
dryplants/textures/not_in_use/reedmace4.png
Normal file → Executable file
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.8 KiB |
0
dryplants/textures/not_in_use/reedtest.png
Normal file → Executable file
Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 333 B |
BIN
dryplants/textures/not_in_use/texturing.png
Normal file → Executable file
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.8 KiB |
0
dryplants/textures/old/dryplants_grass_short_old3.png
Normal file → Executable file
Before Width: | Height: | Size: 823 B After Width: | Height: | Size: 823 B |
BIN
dryplants/textures/old/dryplants_grass_short_old4.png
Normal file → Executable file
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 335 B |
0
dryplants/textures/old/dryplants_juncus_02_left_old.png
Normal file → Executable file
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 371 B |
0
dryplants/textures/old/dryplants_juncus_02_right_old.png
Normal file → Executable file
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 389 B |
0
dryplants/textures/old/dryplants_juncus_03_left_old.png
Normal file → Executable file
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |
0
dryplants/textures/old/dryplants_juncus_03_right_old.png
Normal file → Executable file
Before Width: | Height: | Size: 400 B After Width: | Height: | Size: 400 B |
0
dryplants/textures/old/dryplants_reedmace_bottom_left_old2.png
Normal file → Executable file
Before Width: | Height: | Size: 143 B After Width: | Height: | Size: 143 B |
0
dryplants/textures/old/dryplants_reedmace_bottom_old4.png
Normal file → Executable file
Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 734 B |
0
dryplants/textures/old/dryplants_reedmace_bottom_right_old2.png
Normal file → Executable file
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 186 B |
0
dryplants/textures/old/dryplants_reedmace_left_old2.png
Normal file → Executable file
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 191 B |
0
dryplants/textures/old/dryplants_reedmace_old8.png
Normal file → Executable file
Before Width: | Height: | Size: 698 B After Width: | Height: | Size: 698 B |
0
dryplants/textures/old/dryplants_reedmace_right_old2.png
Normal file → Executable file
Before Width: | Height: | Size: 200 B After Width: | Height: | Size: 200 B |
0
dryplants/textures/old/dryplants_reedmace_spikes_old3.png
Normal file → Executable file
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 556 B |
0
dryplants/textures/old/dryplants_reedmace_top_left_old2.png
Normal file → Executable file
Before Width: | Height: | Size: 99 B After Width: | Height: | Size: 99 B |
0
dryplants/textures/old/dryplants_reedmace_top_old3.png
Normal file → Executable file
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 404 B |
0
dryplants/textures/old/dryplants_reedmace_top_right_old2.png
Normal file → Executable file
Before Width: | Height: | Size: 120 B After Width: | Height: | Size: 120 B |
0
dryplants/textures/old/dryplants_reedmace_water_old2.png
Normal file → Executable file
Before Width: | Height: | Size: 569 B After Width: | Height: | Size: 569 B |