Add files via upload

master
Shad MOrdre 2019-08-30 14:21:06 -07:00 committed by GitHub
parent e2ccbe46c2
commit 1aeb4f9f86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 48406 additions and 268 deletions

2
craftitems.csv Normal file
View File

@ -0,0 +1,2 @@
#Craft Item|Craft Description|Craft Image|Craft Groups
bowl|Bowl|bowl.png|
1 #Craft Item Craft Description Craft Image Craft Groups
2 bowl Bowl bowl.png

3
craftrecipes.csv Normal file
View File

@ -0,0 +1,3 @@
#Recipe Output|Output Amnt|Recipe Type|Cooktime|Recipe|Replacements
lib_ecology:logpile|1|||default:tree;default:tree,,default:tree|
lib_ecology:candle|2|||farming:cotton;lib_ecology:palm_wax;lib_ecology:palm_wax|
1 #Recipe Output Output Amnt Recipe Type Cooktime Recipe Replacements
2 lib_ecology:logpile 1 default:tree;default:tree,,default:tree
3 lib_ecology:candle 2 farming:cotton;lib_ecology:palm_wax;lib_ecology:palm_wax

12
csv.lua Normal file
View File

@ -0,0 +1,12 @@
local function read_csv(separator, path)
local file = io.open(path, "r")
local t = {}
for line in file:lines() do
if line:sub(1,1) ~= "#" and line:find("[^%"..separator.."% ]") then
table.insert(t, line:split(separator, true))
end
end
return t
end
return read_csv

4223
decorations.csv Normal file

File diff suppressed because it is too large Load Diff

364
init.lua
View File

@ -1,48 +1,60 @@
----------------------------------------
-- The Valleys Mapgen C++ Helper Code --
----------------------------------------
-- This code handles standard decorations for the Valleys Mapgen C++
-- mapgen. Most of this code is based on Gael-de-Sailly's amazing
-- work. The C++ mapgen is available at...
-- https://github.com/duane-r/minetest
-- Check for necessary mod functions and abort if they aren't available.
--[[
if not minetest.get_biome_id then
minetest.log()
minetest.log("* Not loading Valleys Mapgen *")
minetest.log("Valleys Mapgen requires mod functions which are")
minetest.log(" not exposed by your Minetest build.")
minetest.log()
return
end
--]]
--[[
minetest.register_on_mapgen_init(function(mgparams)
minetest.set_mapgen_params({mgname="valleys"})
minetest.setting_set("mg_valleys_lava_features", 0)
minetest.setting_set("mg_valleys_water_features", 0)
end)
--]]
minetest.set_gen_notify("alternative_cave")
-------------------------------------------------------------
-- lib_ecology Š2019 Shad MOrdre (shadmordre@minetest.net)--
-------------------------------------------------------------
-- the mod object
lib_ecology = {}
lib_ecology.version = "1.0"
lib_ecology.name = "lib_ecology"
lib_ecology.ver_max = 5
lib_ecology.ver_min = 0
lib_ecology.ver_rev = 2
lib_ecology.path_mod = minetest.get_modpath(minetest.get_current_modname())
lib_ecology.path_world = minetest.get_worldpath()
lib_ecology.path = lib_ecology.path_mod
lib_ecology.time_factor = 10
lib_ecology.mgv7_mapgen_scale_factor = lib_materials.mgv7_mapgen_scale_factor or 8
lib_ecology.biome_altitude_range = lib_materials.biome_altitude_range or 40
-- path to all lib_ecology code
lib_ecology.path = minetest.get_modpath("lib_ecology")
lib_ecology.noise_set_id = minetest.settings:get("noise_set_id") or 2
--DEFAULTS
--0, 4, 30, 60, 90, 120, 150, 1800
lib_ecology.ocean_depth = lib_materials.ocean_depth or -192
lib_ecology.beach_depth = lib_materials.beach_depth or -4
lib_ecology.sea_level = lib_materials.sea_level or 0
lib_ecology.maxheight_beach = lib_materials.maxheight_beach or 4
lib_ecology.maxheight_coastal = lib_ecology.sea_level + lib_ecology.biome_altitude_range
lib_ecology.maxheight_lowland = lib_ecology.maxheight_coastal + lib_ecology.biome_altitude_range
lib_ecology.maxheight_shelf = lib_ecology.maxheight_lowland + lib_ecology.biome_altitude_range
lib_ecology.maxheight_highland = lib_ecology.maxheight_shelf + lib_ecology.biome_altitude_range
lib_ecology.maxheight_mountain = lib_ecology.maxheight_highland + lib_ecology.biome_altitude_range
lib_ecology.minheight_snow = lib_ecology.maxheight_mountain + lib_ecology.biome_altitude_range
lib_ecology.maxheight_snow = lib_ecology.minheight_snow + (lib_ecology.biome_altitude_range * 2)
lib_ecology.maxheight_strato = lib_ecology.maxheight_snow + (lib_ecology.biome_altitude_range * (lib_ecology.mgv7_mapgen_scale_factor / 2))
lib_ecology.temperature_hot = lib_materials.temperature_hot or 90
lib_ecology.temperature_warm = lib_materials.temperature_warm or 75
lib_ecology.temperature_temperate = lib_materials.temperature_temperate or 50
lib_ecology.temperature_cool = lib_materials.temperature_cool or 25
lib_ecology.temperature_cold = lib_materials.temperature_cold or 10
lib_ecology.humidity_humid = lib_materials.humidity_humid or 90
lib_ecology.humidity_semihumid = lib_materials.humidity_semihumid or 75
lib_ecology.humidity_temperate = lib_materials.humidity_temperate or 50
lib_ecology.humidity_semiarid = lib_materials.humidity_semiarid or 25
lib_ecology.humidity_arid = lib_materials.humidity_arid or 10
lib_ecology.biome_vertical_blend = lib_materials.biome_vertical_blend or (lib_ecology.biome_altitude_range / 5)
minetest.set_gen_notify("alternative_cave")
-- clear default mapgen biomes, decorations and ores
--minetest.clear_registered_biomes()
--minetest.clear_registered_decorations()
--minetest.clear_registered_ores()
-- Intllib
local MP
--local MP
local S
local NS
if minetest.get_modpath("intllib") then
@ -50,258 +62,76 @@ if minetest.get_modpath("intllib") then
else
--S = function(s) return s end
-- internationalization boilerplate
MP = minetest.get_modpath(minetest.get_current_modname())
S, NS = dofile(MP.."/intllib.lua")
--MP = minetest.get_modpath(minetest.get_current_modname())
S, NS = dofile(lib_ecology.path.."/intllib.lua")
end
lib_ecology.intllib = S
print (S("[MOD] lib_ecology loading..."))
minetest.register_node("lib_ecology:papyrus_3d", {
description = S("Papyrus 3D"),
drawtype = "nodebox",
tiles = {
"default_papyrus.png^(default_papyrus.png^[transformFX)",
"default_papyrus.png^(default_papyrus.png^[transformFX)",
"default_papyrus.png",
"default_papyrus.png^[transformFX",
"default_papyrus.png^[transformFX",
"default_papyrus.png",
},
--wield_image = "bamboo.png",
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = true,
walkable = true,
node_box = {
type = "fixed",
fixed = {
{-0.4375, -0.5, -0.1875, -0.3125, 0.5, -0.0625}, -- NodeBox1
{-0.1875, -0.5, 0.3125, -0.0625, 0.5, 0.4375}, -- NodeBox2
{0.0625, -0.5, -0.4375, 0.1875, 0.5, -0.3125}, -- NodeBox3
{0.3125, -0.5, 0.0625, 0.4375, 0.5, 0.1875}, -- NodeBox4
{-0.5, 0.1875, -0.1875, -0.4375, 0.3125, -0.0625}, -- NodeBox5
{-0.0625, -0.3125, 0.3125, 0, -0.1875, 0.4375}, -- NodeBox6
{0, -0.0625, -0.4375, 0.0625, 0.0625, -0.3125}, -- NodeBox7
{0.4375, 0.25, 0.0625, 0.5, 0.4375, 0.1875}, -- NodeBox8
{0.0625, 0.1875, -0.5, 0.1875, 0.375, -0.4375}, -- NodeBox9
{-0.4375, -0.3125, -0.0625, -0.3125, -0.1875, 0}, -- NodeBox10
{0.3125, -0.0625, 0, 0.4375, 0.0625, 0.0625}, -- NodeBox11
{-0.1875, 0.25, 0.4375, -0.0625, 0.4375, 0.5}, -- NodeBox12
}
},
groups = {snappy = 3, flammable = 2, tree = 1},
sounds = default.node_sound_leaves_defaults(),
})
minetest.log(S("[MOD]: lib_ecology: Loading..."))
--minetest.register_alias("default:papyrus", "lib_ecology:papyrus_3d")
minetest.override_item("default:papyrus", {
drawtype = "nodebox",
tiles = {
"default_papyrus.png^[transformR90^default_papyrus.png",
"default_papyrus.png^[transformR90^default_papyrus.png",
"default_papyrus.png",
"default_papyrus.png^[transformFX",
"default_papyrus.png^[transformFX",
"default_papyrus.png",
},
inventory_image = nil,
wield_image = nil,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.4375, -0.5, -0.1875, -0.3125, 0.5, -0.0625}, -- NodeBox1
{-0.1875, -0.5, 0.3125, -0.0625, 0.5, 0.4375}, -- NodeBox2
{0.0625, -0.5, -0.4375, 0.1875, 0.5, -0.3125}, -- NodeBox3
{0.3125, -0.5, 0.0625, 0.4375, 0.5, 0.1875}, -- NodeBox4
{-0.5, 0.1875, -0.1875, -0.4375, 0.3125, -0.0625}, -- NodeBox5
{-0.0625, -0.3125, 0.3125, 0, -0.1875, 0.4375}, -- NodeBox6
{0, -0.0625, -0.4375, 0.0625, 0.0625, -0.3125}, -- NodeBox7
{0.4375, 0.25, 0.0625, 0.5, 0.4375, 0.1875}, -- NodeBox8
{0.0625, 0.1875, -0.5, 0.1875, 0.375, -0.4375}, -- NodeBox9
{-0.4375, -0.3125, -0.0625, -0.3125, -0.1875, 0}, -- NodeBox10
{0.3125, -0.0625, 0, 0.4375, 0.0625, 0.0625}, -- NodeBox11
{-0.1875, 0.25, 0.4375, -0.0625, 0.4375, 0.5}, -- NodeBox12
}
},
})
--[[
lib_ecology.read_csv = dofile(lib_ecology.path .. "/csv.lua")
Minetest Ethereal Mod (6th December 2016)
dofile(lib_ecology.path.."/lib_ecology_schematic.lua")
dofile(lib_ecology.path.."/lib_ecology_sound_defaults.lua")
dofile(lib_ecology.path.."/useful_code_samples.lua")
Created by ChinChow
Updated by TenPlus1
--[[The following two code files and media from Minetest Ethereal Mod (6th December 2016)
Created by ChinChow Updated by TenPlus1
Integrated into lib_ecology by ShadMOrdre 2017-2019
]]
lib_ecology.leaftype = 0 -- 0 for 2D plantlike, 1 for 3D allfaces
lib_ecology.leafwalk = false -- true for walkable leaves, false to fall through
lib_ecology.cavedirt = true -- caves chop through dirt when true
lib_ecology.torchdrop = true -- torches drop when touching water
lib_ecology.papyruswalk = true -- papyrus can be walked on
lib_ecology.lilywalk = true -- waterlilies can be walked on
lib_ecology.xcraft = true -- allow cheat crafts for cobble->gravel->dirt->sand, ice->snow, dry dirt->desert sand
-- Set following to 1 to enable biome or 0 to disable
lib_ecology.glacier = 1 -- Ice glaciers with snow
lib_ecology.bamboo = 1 -- Bamboo with sprouts
lib_ecology.mesa = 1 -- Mesa red and orange clay with giant redwood
lib_ecology.alpine = 1 -- Snowy grass
lib_ecology.healing = 1 -- Snowy peaks with healing trees
lib_ecology.snowy = 1 -- Cold grass with pine trees and snow spots
lib_ecology.frost = 1 -- Blue dirt with blue/pink frost trees
lib_ecology.grassy = 1 -- Green grass with flowers and trees
lib_ecology.caves = 1 -- Desert stone ares with huge caverns underneath
lib_ecology.grayness = 1 -- Grey grass with willow trees
lib_ecology.grassytwo = 1 -- Sparse trees with old trees and flowers
lib_ecology.prairie = 1 -- Flowery grass with many plants and flowers
lib_ecology.jumble = 1 -- Green grass with trees and jungle grass
lib_ecology.junglee = 1 -- Jungle grass with tall jungle trees
lib_ecology.desert = 1 -- Desert sand with cactus
lib_ecology.grove = 1 -- Banana groves and ferns
lib_ecology.mushroom = 1 -- Purple grass with giant mushrooms
lib_ecology.sandstone = 1 -- Sandstone with smaller cactus
lib_ecology.quicksand = 1 -- Quicksand banks
lib_ecology.plains = 1 -- Dry dirt with scorched trees
lib_ecology.savannah = 1 -- Dry yellow grass with acacia tree's
lib_ecology.fiery = 1 -- Red grass with lava craters
lib_ecology.sandclay = 1 -- Sand areas with clay underneath
lib_ecology.swamp = 1 -- Swamp areas with vines on tree's, mushrooms, lilly's and clay sand
--local path = minetest.get_modpath("lib_ecology")
dofile(lib_ecology.path .. "/ethereal/plantlife.lua")
dofile(lib_ecology.path .. "/ethereal/mushroom.lua")
dofile(lib_ecology.path .. "/ethereal/onion.lua")
dofile(lib_ecology.path .. "/ethereal/crystal.lua")
dofile(lib_ecology.path .. "/ethereal/water.lua")
dofile(lib_ecology.path .. "/ethereal/dirt.lua")
dofile(lib_ecology.path .. "/ethereal/leaves.lua")
dofile(lib_ecology.path .. "/ethereal/wood.lua")
dofile(lib_ecology.path .. "/ethereal/sapling.lua")
dofile(lib_ecology.path .. "/ethereal/strawberry.lua")
dofile(lib_ecology.path .. "/ethereal/fishing.lua")
dofile(lib_ecology.path .. "/ethereal/extra.lua")
dofile(lib_ecology.path .. "/ethereal/sealife.lua")
--dofile(lib_ecology.path .. "/fences.lua")
--dofile(lib_ecology.path .. "/gates.lua")
--dofile(lib_ecology.path .. "/ethereal/mapgen.lua")
dofile(lib_ecology.path .. "/ethereal/food.lua")
dofile(lib_ecology.path .. "/ethereal/bonemeal.lua")
--dofile(lib_ecology.path .. "/compatibility.lua")
--dofile(lib_ecology.path .. "/stairs.lua")
--dofile(lib_ecology.path .. "/lucky_block.lua")
if minetest.get_modpath("xanadu") then
dofile(path .. "/plantpack.lua")
end
minetest.log(S("@)-->--> STATUS: lib_ecology Section ethereal loaded."))
lib_ecology.noleafdecay = minetest.setting_getbool('lib_ecology_no_leaf_decay')
lib_ecology.glow = minetest.setting_getbool('lib_ecology_glow')
lib_ecology.houses = minetest.setting_getbool('lib_ecology_houses')
lib_ecology.use_gennotify = minetest.setting_getbool('lib_ecology_use_gennotify')
-- Modify a node to add a group
function minetest.add_group(node, groups)
local def = minetest.registered_items[node]
if not def then
return false
end
local def_groups = def.groups or {}
for group, value in pairs(groups) do
if value ~= 0 then
def_groups[group] = value
else
def_groups[group] = nil
end
end
minetest.override_item(node, {groups = def_groups})
return true
end
-- Check if the table contains an element.
function table.contains(table, element)
for key, value in pairs(table) do
if value == element then
if key then
return key
else
return true
end
end
end
return false
end
-- This isn't already in the math library? Really?
function math.round(i)
return math.floor(i + 0.5)
end
-- Push an element onto a stack (table).
function push(t, x)
t[#t+1] = x
end
function lib_ecology.clone_node(name)
local node = minetest.registered_nodes[name]
local node2 = table.copy(node)
return node2
end
--dofile(lib_ecology.path .. "/lib_ecology_fishing.lua")
--dofile(lib_ecology.path .. "/lib_ecology_water_mechanics.lua")
-- Prevent rivers from flowing through (the air in) caves.
minetest.override_item("default:river_water_source", {is_ground_content = true})
--dofile(lib_ecology.path.."/lib_ecology_plant.lua")
--dofile(lib_ecology.path.."/lib_ecology_tree.lua")
-- Execute each section of the code.
--dofile(lib_ecology.path.."/valleys_c/biomes.lua")
dofile(lib_ecology.path.."/lib_ecology_biomes.lua")
--Trees
dofile(lib_ecology.path.."/lib_ecology_tree_utils.lua")
dofile(lib_ecology.path.."/valleys_c/deco.lua")
dofile(lib_ecology.path.."/valleys_c/voxel.lua")
--dofile(lib_ecology.path.."/vulcanism.lua")
dofile(lib_ecology.path.."/lib_ecology_node_registration.lua")
--[[
minetest.register_abm({
nodenames = {"bones:bones"},
interval = 10,
chance = 1,
action = function(pos)
minetest.log(S("*** Bones say: I'm at ("..pos.x..","..pos.y..","..pos.z..")."))
end,
})
--]]
--[[
minetest.register_on_dieplayer(function(player)
if minetest.setting_getbool("creative_mode") then
return
end
local pos = player:getpos()
pos.x = math.floor(pos.x+0.5)
pos.y = math.floor(pos.y+0.5)
pos.z = math.floor(pos.z+0.5)
local player_name = player:get_player_name()
--dofile(lib_ecology.path.."/lib_ecology_schem_models_1.lua")
dofile(lib_ecology.path.."/lib_ecology_schematics.lua")
minetest.log(S("* "..player_name.." died at ("..pos.x..","..pos.y..","..pos.z..")."))
minetest.chat_send_player(S(player_name, "You died at ("..pos.x..","..pos.y..","..pos.z..")."))
end)
--]]
--dofile(lib_ecology.path.."/lib_ecology_biomes.lua")
minetest.log(S("@)-->--> STATUS: lib_ecology Section valleys_c loaded."))
minetest.log(S("[MOD]: lib_ecology: Section: Remaining valleys_c code loading..."))
-- Valleys_c Schematics
--Plants
--dofile(lib_ecology.path.."/valleys_c/deco_coral.lua")
dofile(lib_ecology.path.."/valleys_c/deco_rocks.lua")
dofile(lib_ecology.path.."/valleys_c/deco_caves.lua")
--dofile(lib_ecology.path.."/valleys_c/deco_fungal_tree.lua")
dofile(lib_ecology.path.."/valleys_c/deco_water.lua")
dofile(lib_ecology.path.."/lib_ecology_extra.lua")
--dofile(lib_ecology.path .. "/lib_ecology_seedling.lua")
dofile(lib_ecology.path .. "/lib_ecology_craftitems.lua")
dofile(lib_ecology.path .. "/lib_ecology_craftrecipes.lua")
--dofile(lib_ecology.path.."/lib_ecology_decorations.lua")
dofile(lib_ecology.path.."/lib_ecology_deco_registration.lua")
--dofile(lib_ecology.path.."/lib_ecology_chatcommands.lua")
minetest.log(S("[MOD]: lib_ecology: Successfully loaded."))
minetest.log(S("@)-->--> STATUS: lib_ecology Loading Complete....."))

View File

@ -0,0 +1,43 @@
--
-- Register lib_ecology craftitems
--
for i, ci in ipairs(lib_ecology.read_csv("|", lib_ecology.path .. "/craftitems.csv")) do
--#Craft Item|Craft Description|Craft Image|Craft Groups
local citem, cdesc, cimage, cgrps = unpack(ci)
local new_ci_def = {}
if citem then
if citem ~= "" then
if cdesc then
if cdesc ~= "" then
new_ci_def.description = cdesc
end
end
if cimage then
if cimage ~= "" then
new_ci_def.inventory_image = cimage
end
end
if cgrps then
if cgrps ~= "" then
new_ci_def.groups = {}
local new_node_groups = cgrps:split(",", true)
for _, nng in pairs(new_node_groups) do
local g_name, g_val = unpack(nng:split(" ", true))
new_ci_def.groups[g_name] = tonumber(g_val)
end
end
end
minetest.register_craftitem("lib_ecology:" .. citem, new_ci_def)
--minetest.register_craftitem(citem, new_ci_def)
end
end
end

View File

@ -0,0 +1,111 @@
--
-- Register lib_materials craft recipes
--
for i, cr in ipairs(lib_materials.read_csv("|", lib_materials.path .. "/craftrecipes.csv")) do
--#Recipe Output|Output Amnt|Recipe Type|Cooktime|Recipe|Replacements
local cout_name, cout_amnt, rec_type, ctime, crecipe, creplace = unpack(cr)
local new_cr_def = {}
if cout_name then
if cout_name ~= "" then
if cout_amnt then
--if cout_amnt ~= "" then
-- new_cr_def.output = cout_name .. " " .. cout_amnt
--else
new_cr_def.output = cout_name
--end
end
end
end
if rec_type then
if rec_type ~= "" then
new_cr_def.type = rec_type
end
end
if ctime then
if ctime ~= "" then
new_cr_def.cooktime = tonumber(ctime)
end
end
if crecipe then
if crecipe ~= "" then
new_cr_def.recipe = {}
local temp_recipe = {}
if string.find(crecipe, ";") then
if string.find(crecipe, ",") then
local recipe_row_idx = 1
local new_recipe_row = crecipe:split(";", true)
for _, nrn in pairs(new_recipe_row) do
local recipe_col_idx = 1
local recipe_row_list = {}
local new_recipe_item = nrn:split(",", true)
for _, nri in pairs(new_recipe_item) do
recipe_row_list[recipe_col_idx] = nri
recipe_col_idx = recipe_col_idx + 1
end
temp_recipe[recipe_row_idx] = recipe_row_list
recipe_row_idx = recipe_row_idx + 1
end
else
local recipe_row_idx = 1
local recipe_row_list = {}
local new_recipe_item = crecipe:split(";", true)
for _, nri in pairs(new_recipe_item) do
recipe_row_list[1] = nri
temp_recipe[recipe_row_idx] = recipe_row_list
recipe_row_idx = recipe_row_idx + 1
end
end
else
if string.find(crecipe, ",") then
if rec_type == "cooking" then
local recipe_col_idx = 1
local recipe_row_list = {}
local new_recipe_item = crecipe:split(",", true)
for _, nri in pairs(new_recipe_item) do
recipe_row_list[recipe_col_idx] = nri
--recipe_row_list = recipe_row_list .. ", " .. nri
recipe_col_idx = recipe_col_idx + 1
end
temp_recipe[1] = recipe_row_list
elseif rec_type == "shapeless" then
local recipe_col_idx = 1
local recipe_row_list = ""
local new_recipe_item = crecipe:split(",", true)
for _, nri in pairs(new_recipe_item) do
--recipe_row_list[recipe_col_idx] = nri
recipe_row_list = recipe_row_list .. ", " .. nri
recipe_col_idx = recipe_col_idx + 1
end
temp_recipe[1] = recipe_row_list
else
end
else
if rec_type == "cooking" then
temp_recipe = crecipe
elseif rec_type == "shapeless" then
temp_recipe[1] = crecipe
else
local recipe_row_list = {}
recipe_row_list[1] = crecipe
temp_recipe[1] = recipe_row_list
--temp_recipe[1] = crecipe
end
end
end
--local mt_recipe = dump(temp_recipe)
new_cr_def.recipe = temp_recipe
end
end
minetest.register_craft(new_cr_def)
end

View File

@ -0,0 +1,539 @@
--
-- Register lib_ecology nodes
--
--
--
-- Define constants that can be used in csv
-- Define constants that can be used in csv
local heights = {
ocean_depth = lib_ecology.ocean_depth,
beach_depth = lib_ecology.beach_depth,
sea_level = lib_ecology.sea_level,
beach = lib_ecology.maxheight_beach,
coastal = lib_ecology.maxheight_coastal,
lowland = lib_ecology.maxheight_lowland,
shelf = lib_ecology.maxheight_shelf,
highland = lib_ecology.maxheight_highland,
mountain = lib_ecology.maxheight_mountain,
snow_min = lib_ecology.minheight_snow,
snow_max = lib_ecology.maxheight_snow,
strato = lib_ecology.maxheight_strato,
}
local temperatures = {
hot = lib_ecology.temperature_hot,
warm = lib_ecology.temperature_warm,
temperate = lib_ecology.temperature_temperate,
cool = lib_ecology.temperature_cool,
cold = lib_ecology.temperature_cold,
}
local humidities = {
humid = lib_ecology.humidity_humid,
semihumid = lib_ecology.humidity_semihumid,
temperate = lib_ecology.humidity_temperate,
semiarid = lib_ecology.humidity_semiarid,
arid = lib_ecology.humidity_arid,
}
local add_schem = function(a, b, c, d, e, f, g)
--if h ~= 1 then return end
minetest.register_decoration({
deco_type = "schematic",
place_on = a,
sidelen = 16,
fill_ratio = tonumber(b),
biomes = c,
y_min = tonumber(d) or (heights[d] - lib_ecology.biome_vertical_blend),
y_max = tonumber(e) or (heights[e] + lib_ecology.biome_vertical_blend),
schematic = lib_ecology.schematics.select(f),
flags = g or "place_center_x, place_center_z",
rotation = "random",
})
end
local add_schem_no_rot = function(a, b, c, d, e, f, g)
--if h ~= 1 then return end
minetest.register_decoration({
deco_type = "schematic",
place_on = a,
sidelen = 16,
fill_ratio = tonumber(b),
biomes = c,
y_min = tonumber(d) or (heights[d] - lib_ecology.biome_vertical_blend),
y_max = tonumber(e) or (heights[e] + lib_ecology.biome_vertical_blend),
schematic = lib_ecology.schematics.select(f),
flags = g or "place_center_x, place_center_z",
rotation = "0",
})
end
local add_schem_water = function(a, b, c, d, e, f, g, h)
--if h ~= 1 then return end
minetest.register_decoration({
deco_type = "schematic",
place_on = a,
sidelen = 16,
fill_ratio = tonumber(b),
biomes = c,
y_min = tonumber(d) or heights[d],
y_max = tonumber(e) or heights[e],
schematic = lib_ecology.schematics.select(f),
flags = g or "place_center_x, place_center_z",
rotation = "0",
})
end
local add_node = function(a, b, c, d, e, f, g, h, i)
minetest.register_decoration({
deco_type = "simple",
place_on = a,
sidelen = 16,
fill_ratio = tonumber(b),
biomes = c,
y_min = tonumber(d) or (heights[d] - lib_ecology.biome_vertical_blend),
y_max = tonumber(e) or (heights[e] + lib_ecology.biome_vertical_blend),
decoration = f,
height_max = tonumber(g),
spawn_by = h,
num_spawn_by = tonumber(i),
})
end
local add_water_node = function(a, b, c, d, e, f, g, h, i)
local t_biomes
local t_decoration
if string.find(c, ",") then
t_biomes = c:split(",", true)
else
t_biomes = c
end
if string.find(f, ",") then
t_decoration = f:split(",", true)
else
t_decoration = f
end
minetest.register_decoration({
name = "lib_ecology:corals_" .. tostring(f) .. "",
deco_type = "simple",
place_on = a,
place_offset_y = -1,
sidelen = 4,
--fill_ratio = tonumber(b),
noise_params = {
offset = -4,
scale = 4,
spread = {x = 50, y = 50, z = 50},
seed = 7013,
octaves = 3,
persist = 0.7,
},
biomes = t_biomes,
y_min = tonumber(d) or heights[d],
y_max = tonumber(e) or heights[e],
flags = "force_placement",
decoration = f,
param2 = 48,
param2_max = 96,
})
end
for i, deco in ipairs(lib_ecology.read_csv("|", lib_ecology.path .. "/decorations.csv")) do
--#Deco_Type, Place_On, FillRatio, Biome, Y_Min, Y_Max, Deco_Node, HeightMax, SpawnBy, NumSpawnBy
local decotype, placeon, fillratio, biome, ymin, ymax, deconode, heightmax, spawnby, numspawnby = unpack(deco)
--minetest.log(S("[MOD] lib_ecology: " .. decotype .. "; " .. placeon .. "; " .. biome .. "; " .. deconode))
if decotype then
if decotype ~= "" then
if decotype == "node" then
add_node(placeon, fillratio, biome, ymin, ymax, deconode, heightmax, spawnby, numspawnby)
end
if decotype == "water_node" then
add_node(placeon, fillratio, biome, ymin, ymax, deconode, heightmax, spawnby, numspawnby)
end
if decotype == "schem" then
if heightmax == "" then
add_schem(placeon, fillratio, biome, ymin, ymax, deconode)
else
add_schem(placeon, fillratio, biome, ymin, ymax, deconode, heightmax)
end
end
if decotype == "no_rot" then
if heightmax == "" then
add_schem_no_rot(placeon, fillratio, biome, ymin, ymax, deconode)
else
add_schem_no_rot(placeon, fillratio, biome, ymin, ymax, deconode, heightmax)
end
if decotype == "water_schem" then
add_schem(placeon, fillratio, biome, ymin, ymax, deconode)
end
end
end
end
end
-- Coral reefs
minetest.register_decoration({
name = "lib_ecology:corals_1",
deco_type = "simple",
place_on = {"lib_materials:sand", "lib_materials:dirt_silt_02", },
place_offset_y = -1,
sidelen = 4,
noise_params = {
offset = -4,
scale = 4,
spread = {x = 50, y = 50, z = 50},
seed = 7013,
octaves = 3,
persist = 0.7,
},
biomes = {
"warm_temperate_ocean",
"temperate_humid_ocean",
"temperate_semihumid_ocean",
"temperate_temperate_ocean",
},
y_max = -2,
y_min = -12,
flags = "force_placement",
decoration = {
"lib_ecology:coral_green_01", "lib_ecology:coral_pink_01",
"lib_ecology:coral_blue_01", "lib_ecology:coral_brown",
"lib_ecology:coral_orange_01", "lib_ecology:coral_skeleton",
"lib_ecology:coral_blue_03", "lib_ecology:coral_red",
"lib_ecology:coral_orange_03",
},
})
minetest.register_decoration({
name = "lib_ecology:corals_2",
deco_type = "simple",
place_on = {"lib_materials:sand", "lib_materials:dirt_silt_02", },
place_offset_y = -1,
sidelen = 4,
noise_params = {
offset = -4,
scale = 4,
spread = {x = 50, y = 50, z = 50},
seed = 7013,
octaves = 3,
persist = 0.7,
},
biomes = {
"warm_humid_ocean",
"warm_semihumid_ocean",
},
y_max = -4,
y_min = -14,
flags = "force_placement",
decoration = {
"lib_ecology:coral_green_02", "lib_ecology:coral_pink_02",
"lib_ecology:coral_blue_02", "lib_ecology:coral_dragon_eye",
"lib_ecology:coral_orange_02", "lib_ecology:coral_skeleton",
"lib_ecology:coral_brain", "lib_ecology:coral_staghorn",
"lib_ecology:coral_pink_03", "lib_ecology:plant_anemone",
},
})
-- Kelp
minetest.register_decoration({
name = "lib_ecology:kelp",
deco_type = "simple",
place_on = {"lib_materials:sand"},
place_offset_y = -1,
sidelen = 16,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"temperate_humid_ocean",
"temperate_semihumid_ocean",
"temperate_temperate_ocean",
"cool_humid_ocean",
"cool_semihumid_ocean",
"cool_temperate_ocean"
},
y_max = -5,
y_min = -10,
flags = "force_placement",
decoration = {"lib_ecology:plant_kelp_01"},
param2 = 48,
param2_max = 96,
})
minetest.register_decoration({
name = "lib_ecology:kelp_02_1",
deco_type = "simple",
place_on = {"lib_materials:sand"},
place_offset_y = -1,
sidelen = 16,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"temperate_humid_ocean",
"temperate_semihumid_ocean",
"temperate_temperate_ocean",
"cool_humid_ocean",
"cool_semihumid_ocean",
"cool_temperate_ocean"
},
y_max = -5,
y_min = -10,
flags = "force_placement",
decoration = {"lib_ecology:plant_kelp_02_1"},
param2 = 48,
param2_max = 96,
})
minetest.register_decoration({
name = "lib_ecology:kelp_02_2",
deco_type = "simple",
place_on = {"lib_materials:sand"},
place_offset_y = -1,
sidelen = 16,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"temperate_humid_ocean",
"temperate_semihumid_ocean",
"temperate_temperate_ocean",
"cool_humid_ocean",
"cool_semihumid_ocean",
"cool_temperate_ocean"
},
y_max = -5,
y_min = -10,
flags = "force_placement",
decoration = {"lib_ecology:plant_kelp_02_2"},
param2 = 48,
param2_max = 96,
})
minetest.register_decoration({
name = "lib_ecology:seaweed",
deco_type = "simple",
place_on = {"lib_materials:sand"},
place_offset_y = -1,
sidelen = 16,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"temperate_humid_ocean",
"temperate_semihumid_ocean",
"temperate_temperate_ocean",
"cool_humid_ocean",
"cool_semihumid_ocean",
"cool_temperate_ocean"
},
y_max = -5,
y_min = -10,
flags = "force_placement",
decoration = {"lib_ecology:plant_seaweed"},
param2 = 48,
param2_max = 96,
})
minetest.register_decoration({
name = "lib_ecology:seaweed2",
deco_type = "simple",
place_on = {"lib_materials:sand"},
place_offset_y = -1,
sidelen = 16,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"temperate_humid_ocean",
"temperate_semihumid_ocean",
"temperate_temperate_ocean",
"cool_humid_ocean",
"cool_semihumid_ocean",
"cool_temperate_ocean"
},
y_max = -5,
y_min = -10,
flags = "force_placement",
decoration = {"lib_ecology:plant_seaweed2"},
param2 = 48,
param2_max = 96,
})
minetest.register_decoration({
name = "lib_ecology:seaweed3",
deco_type = "simple",
place_on = {"lib_materials:sand"},
place_offset_y = -1,
sidelen = 16,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"temperate_humid_ocean",
"temperate_semihumid_ocean",
"temperate_temperate_ocean",
"cool_humid_ocean",
"cool_semihumid_ocean",
"cool_temperate_ocean"
},
y_max = -5,
y_min = -10,
flags = "force_placement",
decoration = {"lib_ecology:plant_seaweed3"},
param2 = 48,
param2_max = 96,
})
-- Sea Grass
minetest.register_decoration({
name = "lib_ecology:sea_grass",
deco_type = "simple",
place_on = {"lib_materials:sand", },
place_offset_y = -1,
sidelen = 16,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"hot_semiarid_ocean",
"warm_semiarid_ocean",
"temperate_semiarid_ocean",
"cool_semiarid_ocean",
},
y_max = -5,
y_min = -10,
flags = "force_placement",
decoration = {
"lib_ecology:grass_sea_1", "lib_ecology:grass_sea_2",
"lib_ecology:grass_sea_3",
},
param2 = 48,
param2_max = 96,
})
minetest.register_decoration({
name = "lib_ecology:reedmace_water",
deco_type = "simple",
place_on = {"lib_materials:dirt_mud_01"},
place_offset_y = -1,
sidelen = 4,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"lib_ecology_deciduous_forest_swamp",
"lib_materials_subtropical_rainforest_swamp",
"lib_materials_temperate_rainforest_swamp"
},
y_max = 0,
y_min = -3,
flags = "force_placement",
decoration = {"lib_ecology:plant_reedmace_water", "lib_ecology:plant_reedmace_sapling_water"},
param2 = 48,
param2_max = 96,
})
minetest.register_decoration({
name = "lib_ecology:mangroves",
deco_type = "simple",
place_on = {"lib_materials:dirt_silt_01"},
place_offset_y = -1,
sidelen = 4,
noise_params = {
offset = -0.004,
scale = 0.1,
spread = {x = 200, y = 200, z = 200},
seed = 87112,
octaves = 3,
persist = 0.7
},
biomes = {
"hot_humid_beach",
"hot_semihumid_beach",
"warm_humid_beach"
},
y_max = 0,
y_min = -3,
flags = "force_placement",
decoration = {"lib_ecology:tree_mangrove_root"},
param2 = 48,
param2_max = 96,
})

5780
lib_ecology_deco_special.csv Normal file

File diff suppressed because it is too large Load Diff

4188
lib_ecology_decorations.csv Normal file

File diff suppressed because it is too large Load Diff

531
lib_ecology_extra.lua Normal file
View File

@ -0,0 +1,531 @@
local S = lib_ecology.intllib
minetest.register_craftitem("lib_ecology:stick", {
description = "Stick",
inventory_image = "lib_ecology_stick.png",
groups = {stick = 1, flammable = 2},
})
minetest.register_node("lib_ecology:logpile", {
description = "Log Pile",
tiles = {
"lib_ecology_tree_default_trunk.png^[transformR90",
"lib_ecology_tree_default_trunk.png^[transformR90",
"lib_ecology_tree_default_trunk.png^[transformR90",
"lib_ecology_tree_default_trunk.png^[transformR90",
"lib_ecology_tree_default_trunk_top.png",
"lib_ecology_tree_default_trunk_top.png"
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.4375, -0.5, -0.0625, -0.125, 0.5}, -- NodeBox1
{0.0625, -0.4375, -0.5, 0.5, -0.125, 0.5}, -- NodeBox2
{0.125, -0.5, -0.5, 0.4375, -0.0625, 0.5}, -- NodeBox3
{-0.4375, -0.5, -0.5, -0.125, -0.0625, 0.5}, -- NodeBox4
{-0.125, -0.0625, -0.5, 0.1875, 0.375, 0.5}, -- NodeBox5
{-0.1875, 0, -0.5, 0.25, 0.3125, 0.5}, -- NodeBox6
}
},
groups = {choppy=3, oddly_breakable_by_hand=1, flammable=1, falling_node=1},
drop = "default:tree 3",
})
--minetest.register_craft( {
-- output = "lib_ecology:logpile 1",
-- recipe = {
-- { "", "default:tree", "" },
-- { "default:tree", "", "default:tree" }
-- }
--})
-- Food recipes!
local flour
if minetest.registered_nodes["farming:flour"] then
flour = "farming:flour"
else
flour = "lib_ecology:food_acorn_muffin_batter"
end
minetest.register_craftitem("lib_ecology:food_banana_bread", {
description = S("Banana Bread"),
inventory_image = "lib_ecology_food_banana_bread.png",
on_use = minetest.item_eat(6),
})
minetest.register_craftitem("lib_ecology:food_banana_dough", {
description = S("Banana Dough"),
inventory_image = "lib_ecology_food_banana_dough.png",
wield_image = "lib_ecology_food_banana_dough.png",
})
minetest.register_craft({
type = "shapeless",
output = "lib_ecology:food_banana_dough",
recipe = {"farming:flour", "lib_ecology:fruit_banana_01"}
})
minetest.register_craft({
type = "cooking",
cooktime = 14,
output = "lib_ecology:food_banana_bread",
recipe = "lib_ecology:food_banana_dough"
})
minetest.register_craftitem("lib_ecology:food_coconut_milk", {
description = S("Coconut Milk"),
inventory_image = "lib_ecology_food_coconut_milk_inv.png",
on_use = minetest.item_eat(2),
})
minetest.register_craftitem("lib_ecology:food_raw_coconut", {
description = S("Raw Coconut"),
inventory_image = "lib_ecology_food_coconut_raw.png",
on_use = minetest.item_eat(4),
})
minetest.register_craftitem("lib_ecology:food_coconut_slice", {
description = S("Coconut Slice"),
inventory_image = "lib_ecology_food_coconut_slice.png",
on_use = minetest.item_eat(1),
})
minetest.register_craft({
type = "shapeless",
output = "lib_ecology:food_coconut_milk",
recipe = {
"lib_ecology:fruit_coconut",
"vessels:drinking_glass",
},
replacements = {
{ "lib_ecology:fruit_coconut", "lib_ecology:food_raw_coconut" },
}
})
minetest.register_craft({
output = 'lib_ecology:food_coconut_slice 4',
recipe = {
{'lib_ecology:fruit_coconut'},
}
})
minetest.register_craftitem("lib_ecology:food_date", {
description = S("Date"),
inventory_image = "lib_ecology_food_date.png",
on_use = minetest.item_eat(1),
})
minetest.register_craftitem("lib_ecology:food_date_nut_batter", {
description = S("Date-nut cake batter"),
inventory_image = "lib_ecology_food_date_nut_batter.png",
})
minetest.register_craftitem("lib_ecology:food_date_nut_cake", {
description = S("Date-nut cake"),
inventory_image = "lib_ecology_food_date_nut_cake.png",
on_use = minetest.item_eat(32),
})
minetest.register_craftitem("lib_ecology:food_date_nut_bar", {
description = S("Date-nut energy bar"),
inventory_image = "lib_ecology_food_date_nut_bar.png",
on_use = minetest.item_eat(4),
})
minetest.register_craftitem("lib_ecology:food_date_nut_snack", {
description = S("Date & nut snack"),
inventory_image = "lib_ecology_food_date_nut_snack.png",
on_use = minetest.item_eat(4),
})
-- The date-nut cake is an exceptional food item due to its highly
-- concentrated nature (32 food units). Because of that, it requires
-- many different ingredients, and, starting from the base ingredients
-- found or harvested in nature, it requires many steps to prepare.
minetest.register_craft({
type = "shapeless",
output = "lib_ecology:food_date_nut_batter",
recipe = {
"lib_ecology:food_date_nut_snack",
"lib_ecology:food_date_nut_snack",
"lib_ecology:food_date_nut_snack",
"lib_ecology:food_coconut_milk",
"lib_ecology:food_date_nut_snack",
"lib_ecology:food_raw_coconut",
"lib_ecology:food_coconut_milk",
flour,
"lib_ecology:food_raw_coconut",
},
replacements = {
{ "lib_ecology:food_coconut_milk", "vessels:drinking_glass 2" }
}
})
minetest.register_craft({
type = "cooking",
output = "lib_ecology:food_date_nut_cake",
recipe = "lib_ecology:food_date_nut_batter",
})
minetest.register_craft({
type = "shapeless",
output = "lib_ecology:food_date_nut_bar 8",
recipe = {"lib_ecology:food_date_nut_cake"},
})
minetest.register_craft({
type = "shapeless",
output = "lib_ecology:food_date_nut_snack",
recipe = {
"lib_ecology:food_date",
"lib_ecology:food_date",
"lib_ecology:food_date",
"lib_ecology:food_spruce_nuts",
"lib_ecology:food_cedar_nuts",
"lib_ecology:food_fir_nuts",
}
})
minetest.register_craftitem("lib_ecology:food_acorn_muffin_batter", {
description = S("Acorn Muffin batter"),
inventory_image = "lib_ecology_food_acorn_muffin_batter.png",
})
minetest.register_craftitem("lib_ecology:food_acorn_muffin", {
description = S("Acorn Muffin"),
inventory_image = "lib_ecology_food_acorn_muffin.png",
on_use = minetest.item_eat(4),
})
minetest.register_craft({
type = "shapeless",
output = "lib_ecology:food_acorn_muffin_batter",
recipe = {
"lib_ecology:fruit_acorn",
"lib_ecology:fruit_acorn",
"lib_ecology:fruit_acorn",
"lib_ecology:fruit_acorn",
"lib_ecology:food_coconut_milk",
},
replacements = {
{ "lib_ecology:food_coconut_milk", "vessels:drinking_glass" }
}
})
minetest.register_craft({
type = "cooking",
output = "lib_ecology:food_acorn_muffin 4",
recipe = "lib_ecology:food_acorn_muffin_batter",
})
minetest.register_craftitem("lib_ecology:food_cedar_nuts", {
description = S("Roasted Cedar Cone Nuts"),
inventory_image = "lib_ecology_food_cedar_nuts.png",
on_use = minetest.item_eat(1),
})
minetest.register_craft({
type = "cooking",
output = "lib_ecology:food_cedar_nuts 4",
recipe = "lib_ecology:fruit_cedar_cone",
})
minetest.register_craftitem("lib_ecology:food_fir_nuts", {
description = S("Roasted Fir Cone Nuts"),
inventory_image = "lib_ecology_food_fir_nuts.png",
on_use = minetest.item_eat(1),
})
minetest.register_craft({
type = "cooking",
output = "lib_ecology:food_fir_nuts 4",
recipe = "lib_ecology:fruit_fir_cone",
})
minetest.register_craftitem("lib_ecology:food_spruce_nuts", {
description = S("Roasted Spruce Cone Nuts"),
inventory_image = "lib_ecology_food_spruce_nuts.png",
on_use = minetest.item_eat(1),
})
minetest.register_craft({
type = "cooking",
output = "lib_ecology:food_spruce_nuts 4",
recipe = "lib_ecology:fruit_spruce_cone",
})
-- Hearty Stew (Heals 5 hearts - thanks to ZonerDarkRevention for his DokuCraft DeviantArt bowl texture)
minetest.register_craftitem("lib_ecology:hearty_stew", {
description = S("Hearty Stew"),
inventory_image = "hearty_stew.png",
wield_image = "hearty_stew.png",
on_use = minetest.item_eat(10, "lib_ecology:bowl"),
})
minetest.register_craft({
output = "lib_ecology:hearty_stew",
recipe = {
{"lib_ecology:wild_onion_plant","lib_ecology:mushroom_plant", "lib_ecology:fern_tubers"},
{"","lib_ecology:mushroom_plant", ""},
{"","lib_ecology:bowl", ""},
}
})
-- Extra recipe for hearty stew
if farming and farming.mod and farming.mod == "redo" then
minetest.register_craft({
output = "lib_ecology:hearty_stew",
recipe = {
{"lib_ecology:wild_onion_plant","lib_ecology:mushroom_plant", "farming:beans"},
{"","lib_ecology:mushroom_plant", ""},
{"","lib_ecology:bowl", ""},
}
})
end
-- Bucket of Cactus Pulp
minetest.register_craftitem("lib_ecology:bucket_cactus", {
description = S("Bucket of Cactus Pulp"),
inventory_image = "bucket_cactus.png",
wield_image = "bucket_cactus.png",
stack_max = 1,
on_use = minetest.item_eat(2, "bucket:bucket_empty"),
})
minetest.register_craft({
output = "lib_ecology:bucket_cactus",
recipe = {
{"bucket:bucket_empty","default:cactus"},
}
})
-- Palm Wax
minetest.register_craftitem("lib_ecology:palm_wax", {
description = S("Palm Wax"),
inventory_image = "palm_wax.png",
wield_image = "palm_wax.png",
})
minetest.register_craft({
type = "cooking",
cooktime = 10,
output = "lib_ecology:palm_wax",
recipe = "lib_ecology:palmleaves"
})
minetest.register_craft({
output = "default:stick 2",
recipe = {
{"default:cactus"}
}
})
-- Candle from Wax and String/Cotton
minetest.register_node("lib_ecology:candle", {
description = S("Candle"),
drawtype = "plantlike",
inventory_image = "candle_static.png",
wield_image = "candle_static.png",
tiles = {
{
name = "candle.png",
animation={
type="vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 1.0
}
},
},
paramtype = "light",
light_source = 11,
sunlight_propagates = true,
walkable = false,
groups = {dig_immediate = 3, attached_node = 1},
sounds = lib_materials.node_sound_defaults(),
selection_box = {
type = "fixed",
fixed = { -0.15, -0.5, -0.15, 0.15, 0, 0.15 }
},
})
--minetest.register_craft({
-- output = "lib_ecology:candle 2",
-- recipe = {
-- {"farming:cotton"},
-- {"lib_ecology:palm_wax"},
-- {"lib_ecology:palm_wax"},
-- }
--})
-- Wooden Bowl
minetest.register_craftitem("lib_ecology:bowl", {
description = S("Bowl"),
inventory_image = "bowl.png",
})
minetest.register_craft({
output = "lib_ecology:bowl",
recipe = {
{"group:wood", "", "group:wood"},
{"", "group:wood", ""},
}
})
-- stone Ladder
minetest.register_node("lib_ecology:stone_ladder", {
description = S("Stone Ladder"),
drawtype = "signlike",
tiles = {"stone_ladder.png"},
inventory_image = "stone_ladder.png",
wield_image = "stone_ladder.png",
paramtype = "light",
sunlight_propagates = true,
paramtype2 = "wallmounted",
walkable = false,
climbable = true,
is_ground_content = false,
selection_box = {
type = "wallmounted",
},
groups = {cracky = 3, oddly_breakable_by_hand = 1},
legacy_wallmounted = true,
sounds = lib_materials.node_sound_stone_defaults(),
})
minetest.register_craft({
output = "lib_ecology:stone_ladder 4",
recipe = {
{"group:stone", "", "group:stone"},
{"group:stone", "group:stone", "group:stone"},
{"group:stone", "", "group:stone"},
}
})
-- Charcoal Lump
minetest.register_craftitem("lib_ecology:charcoal_lump", {
description = S("Lump of Charcoal"),
inventory_image = "charcoal_lump.png",
wield_image = "charcoal_lump.png",
})
minetest.register_craft({
output = "lib_ecology:charcoal_lump 2",
recipe = {
{"lib_ecology:scorched_tree"}
}
})
minetest.register_craft({
output = "lib_ecology:charcoal_lump 2",
type = "cooking",
recipe = "group:tree",
cooktime = 4
})
minetest.register_craft({
type = "fuel",
recipe = "lib_ecology:charcoal_lump",
burntime = 10,
})
-- Make Torch from Charcoal Lump
minetest.register_craft({
output = "default:torch 4",
recipe = {
{"lib_ecology:charcoal_lump"},
{"default:stick"},
}
})
-- mushroom soup (Heals 1 heart)
minetest.register_craftitem("lib_ecology:mushroom_soup", {
description = S("Mushroom Soup"),
inventory_image = "mushroom_soup.png",
on_use = minetest.item_eat(5, "lib_ecology:bowl"),
})
minetest.register_craft({
output = "lib_ecology:mushroom_soup",
recipe = {
{"flowers:mushroom_brown"},
{"flowers:mushroom_brown"},
{"lib_ecology:bowl"},
}
})
-- 4x red mushrooms make mushroom block
minetest.register_craft({
output = "lib_ecology:mushroom",
recipe = {
{"flowers:mushroom_red", "flowers:mushroom_red"},
{"flowers:mushroom_red", "flowers:mushroom_red"},
}
})
-- cotton seeds
minetest.register_node("lib_ecology:seed_cotton", {
description = S("Cotton Seed"),
tiles = {"lib_ecology_plant_cotton_seed.png"},
inventory_image = "lib_ecology_plant_cotton_seed.png",
wield_image = "lib_ecology_plant_cotton_seed.png",
drawtype = "signlike",
groups = {seed = 1, snappy = 3, attached_node = 1, flammable = 4},
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
sunlight_propagates = true,
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}
},
on_place = function(itemstack, placer, pointed_thing)
--return farming.place_seed(itemstack, placer, pointed_thing, "lib_ecology:plant_cotton_1")
local p2 = minetest.registered_nodes["lib_ecology:plant_cotton_1"].place_param2 or 1
minetest.set_node(pointed_thing.above, {name = "lib_ecology:plant_cotton_1", param2 = p2})
minetest.sound_play("default_place_node", {pos = pointed_thing.above, gain = 1.0})
end,
})
-- cotton / string
minetest.register_craftitem("lib_ecology:cotton", {
description = S("Cotton"),
inventory_image = "lib_ecology_plant_cotton.png",
groups = {flammable = 4},
})
minetest.register_craftitem("lib_ecology:string", {
description = S("String"),
inventory_image = "lib_ecology_plant_cotton_string.png",
groups = {flammable = 2},
})

View File

@ -0,0 +1,769 @@
--
-- Register lib_ecology nodes
--
--
--
-- Define constants that can be used in csv
local S = lib_ecology.intllib
local function read_node_str(node_str)
if #node_str > 0 then
local node, count = node_str:match("([^%s]+)%s*(%d*)")
return node, tonumber(count) or 1
end
end
for i, stone in ipairs(lib_ecology.read_csv("|", lib_ecology.path .. "/nodes.csv")) do
--#Node_Name,Description,Alias_Mod,Alias_Node,Tile_String,Special_Tiles,Inv_Image,Wield_Image,Draw_Type,Vis_Scale,Wld_Scale,Param_Type,ParamType2,Place_Param2,LightSource,Walkable,Pointable,Climbable,Diggable,Buildable,Floodable,Waving,Use_Alpha,Sun_Prop,Liquid_Point,Damage_Per_Second,Grnd_Cnt,MaxLight,Groups,Max_Drops,Drops,Sounds,Dig_Predict,Place_Predict,NodeBox,SelBox,ColBox,Mesh,OnConstruct,OnTimer,TimerTrig,TimerAct,AfterPlace,OnPlace
--#Node_Name,Description,Alias_Mod,Alias_Node,Tile_String,Special_Tiles,Inv_Image,Wield_Image,Draw_Type,Vis_Scale,Wld_Scale,Param_Type,ParamType2,Place_Param2,LightSource,Walkable,Pointable,Climbable,Diggable,Buildable,Floodable,Waving,Use_Alpha,Sun_Prop,Liquid_Point,Damage_Per_Second,Grnd_Cnt,Leg_wall,MaxLight,Grow,Eat,Groups,Max_Drops,Drops,Sounds,Dig_Predict,Place_Predict,NodeBox,SelBox,ColBox,Mesh,LiquidType,LiquidViscosity,LiquidRange,LiquidRenew,LiquidAltSource,LiquidAltFlow,OnConstruct,OnTimer,TimerTrig,TimerAct,AfterPlace,OnPlace
local node_name, descript, alias_mod, alias_node, tile_string, spec_tile, inv_img, wld_img, draw_type, vis_scale, wld_scale, param_type, param2, place_param2, light, walk, point, climb, dig, build, flood, wave, use_alpha, sun_prop, liq_point, damage, grnd_cont, leg_wal, maxlight, grow, eat, groups, max_drop, drops, sounds, dig_pre, place_pre, node_box, sel_box, col_box, mesh, liq_type, liq_visc, liq_rng, liq_renew, liq_altsrc, liq_altflow, on_con, on_time, time_trig, time_act, aft_place, on_place = unpack(stone)
-- Parse node names: transform empty strings into nil and separate node and count
node_name = read_node_str(node_name)
--descript = read_node_str(descript)
alias_mod = read_node_str(alias_mod)
alias_node = read_node_str(alias_node)
local new_node_def = {}
local new_node_type = 1
new_node_def.tiles = {}
new_node_def.groups = {}
new_node_def.sounds = {}
if descript ~= "" then
new_node_def.description = S(""..descript.."")
end
if draw_type ~= "" then
new_node_def.drawtype = draw_type
end
if vis_scale ~= "" then
new_node_def.visual_scale = tonumber(vis_scale)
end
if wld_scale ~= "" then
new_node_def.wield_scale = {}
local ws_x, ws_y, ws_z = unpack(wld_scale:split(",", true))
new_node_def.wield_scale.x = tonumber(ws_x)
new_node_def.wield_scale.y = tonumber(ws_y)
new_node_def.wield_scale.z = tonumber(ws_z)
end
if param_type ~= "" then
new_node_def.paramtype = param_type
end
if param2 ~= "" then
new_node_def.paramtype2 = param2
end
if place_param2 ~= "" then
new_node_def.place_param2 = tonumber(place_param2)
end
if light ~= "" then
new_node_def.light_source = tonumber(light)
end
if string.lower(leg_wal) == "true" then
new_node_def.legacy_wallmounted = true
else
new_node_def.legacy_wallmounted = false
end
if walk ~= "" then
if string.lower(walk) == "true" then
new_node_def.walkable = true
else
new_node_def.walkable = false
end
end
if point ~= "" then
if string.lower(point) == "true" then
new_node_def.pointable = true
else
new_node_def.pointable = false
end
end
if climb ~= "" then
if string.lower(climb) == "true" then
new_node_def.climbable = true
else
new_node_def.climbable = false
end
end
if dig ~= "" then
if string.lower(dig) == "true" then
new_node_def.diggable = true
else
new_node_def.diggable = false
end
end
if build ~= "" then
if string.lower(build) == "true" then
new_node_def.buildable_to = true
else
new_node_def.buildable_to = false
end
end
if flood ~= "" then
if string.lower(flood) == "true" then
new_node_def.floodable = true
else
new_node_def.floodable = false
end
end
if wave ~= "" then
new_node_def.waving = tonumber(wave)
end
if use_alpha ~= "" then
new_node_def.use_texture_alpha = string.lower(use_alpha)
end
if liq_point ~= "" then
if string.lower(liq_point) == "true" then
new_node_def.liquids_pointable = true
else
new_node_def.liquids_pointable = false
end
end
if sun_prop ~= "" then
if string.lower(sun_prop) == "true" then
new_node_def.sunlight_propagates = true
else
new_node_def.sunlight_propagates = false
end
end
if damage ~= "" then
if tonumber(damage) > 0 then
new_node_def.damage_per_second = tonumber(damage)
end
end
if grnd_cont ~= "" then
if string.lower(grnd_cont) == "true" then
new_node_def.is_ground_content = true
else
new_node_def.is_ground_content = false
end
end
--NEED GROW CODE FOR CROPS
if grow ~= "" then
if string.find(grow, ",") then
else
new_node_def.on_construct = function(pos)
minetest.get_node_timer(pos):start(math.random(60,120))
end
new_node_def.on_timer = function(pos)
minetest.set_node(pos, {name=grow})
end
end
end
if eat ~= "" then
new_node_def.on_use = minetest.item_eat(tonumber(eat))
end
--USE MAX LIGHT FOR CROPS
if maxlight ~= "" then
--new_node_def.alpha = tonumber(maxlight)
end
if dig_pre ~= "" then
new_node_def.node_dig_prediction = dig_pre
end
if place_pre ~= "" then
new_node_def.node_placement_prediction = place_pre
end
if mesh ~= "" then
new_node_def.mesh = mesh
end
if liq_type ~= "" then
new_node_def.liquidtype = liq_type
end
if liq_visc ~= "" then
new_node_def.liquid_viscosity = tonumber(liq_visc)
end
if liq_rng ~= "" then
new_node_def.liquid_range = tonumber(liq_rng)
end
if liq_renew ~= "" then
if string.lower(liq_renew) == "true" then
new_node_def.liquid_renewable = true
else
new_node_def.liquid_renewable = false
end
end
if liq_altflow ~= "" then
new_node_def.liquid_alternative_flowing = liq_altflow
end
if liq_altsrc ~= "" then
new_node_def.liquid_alternative_source = liq_altsrc
end
if drops == "" then
drops = nil
end
if drops then
if drops:find("[^%,% ]") then
local new_drop1, new_drop2, new_drop3, new_drop4, new_drop5, new_drop6
new_node_def.drop = {}
if max_drop then
new_node_def.drop.max_items = max_drop
end
new_node_def.drop.items = {}
new_drop1, new_drop2, new_drop3, new_drop4, new_drop5, new_drop6 = unpack(drops:split(",", true))
local new_drop_name, new_drop_rarity
if new_drop1 then
new_drop_name, new_drop_rarity = unpack(new_drop1:split(" ", true))
if new_drop_name then
minetest.log(new_drop_name)
if new_drop_rarity then
minetest.log(new_drop_rarity)
new_node_def.drop.items[1] = {items = {new_drop_name}, rarity = tonumber(new_drop_rarity)}
else
new_node_def.drop.items[1] = {items = {new_drop_name}}
end
else
new_node_def.drop.items[1] = {items = {new_drop1}}
end
else
new_node_def.drop.items[1] = {items = {drops}}
end
if new_drop2 then
new_drop_name, new_drop_rarity = unpack(new_drop2:split(" ", true))
if new_drop_name then
minetest.log(new_drop_name)
if new_drop_rarity then
minetest.log(new_drop_rarity)
new_node_def.drop.items[2] = {items = {new_drop_name}, rarity = tonumber(new_drop_rarity)}
else
new_node_def.drop.items[2] = {items = {new_drop_name}}
end
else
new_node_def.drop.items[2] = {items = {new_drop2}}
end
else
new_node_def.drop.items[2] = {items = {drops}}
end
if new_drop3 then
new_drop_name, new_drop_rarity = unpack(new_drop3:split(" ", true))
if new_drop_name then
minetest.log(new_drop_name)
if new_drop_rarity then
minetest.log(new_drop_rarity)
new_node_def.drop.items[3] = {items = {new_drop_name}, rarity = tonumber(new_drop_rarity)}
else
new_node_def.drop.items[3] = {items = {new_drop_name}}
end
else
new_node_def.drop.items[3] = {items = {new_drop3}}
end
else
new_node_def.drop.items[3] = {items = {drops}}
end
if new_drop4 then
new_drop_name, new_drop_rarity = unpack(new_drop4:split(" ", true))
if new_drop_name then
minetest.log(new_drop_name)
if new_drop_rarity then
minetest.log(new_drop_rarity)
new_node_def.drop.items[4] = {items = {new_drop_name}, rarity = tonumber(new_drop_rarity)}
else
new_node_def.drop.items[4] = {items = {new_drop_name}}
end
else
new_node_def.drop.items[4] = {items = {new_drop4}}
end
else
new_node_def.drop.items[4] = {items = {drops}}
end
if new_drop5 then
new_drop_name, new_drop_rarity = unpack(new_drop5:split(" ", true))
if new_drop_name then
minetest.log(new_drop_name)
if new_drop_rarity then
minetest.log(new_drop_rarity)
new_node_def.drop.items[5] = {items = {new_drop_name}, rarity = tonumber(new_drop_rarity)}
else
new_node_def.drop.items[5] = {items = {new_drop_name}}
end
else
new_node_def.drop.items[5] = {items = {new_drop5}}
end
else
new_node_def.drop.items[5] = {items = {drops}}
end
if new_drop6 then
new_drop_name, new_drop_rarity = unpack(new_drop6:split(" ", true))
if new_drop_name then
minetest.log(new_drop_name)
if new_drop_rarity then
minetest.log(new_drop_rarity)
new_node_def.drop.items[6] = {items = {new_drop_name}, rarity = tonumber(new_drop_rarity)}
else
new_node_def.drop.items[6] = {items = {new_drop_name}}
end
else
new_node_def.drop.items[6] = {items = {new_drop6}}
end
else
new_node_def.drop.items[6] = {items = {drops}}
end
else
new_node_def.drop = drops
end
end
if spec_tile ~= "" then
new_node_def.special_tiles = {}
new_node_def.special_tiles[1] = {}
--new_node_def.special_tiles = {{name = st_name, tileable_vertical = st_val}}
local s_tile = {}
local st_name, st_val = unpack(spec_tile:split(" ", true))
s_tile.name = st_name
if st_val ~= "" then
if string.lower(st_val) == "true" then
s_tile.tileable_vertical = true
else
s_tile.tileable_vertical = false
end
--else
--new_node_def.special_tiles.tileable_vertical = true
end
new_node_def.special_tiles[1] = s_tile
end
if inv_img ~= "" then
new_node_def.inventory_image = inv_img
end
if wld_img ~= "" then
new_node_def.wield_image = wld_img
end
local new_tile1, new_tile2, new_tile3, new_tile4, new_tile5, new_tile6
if tile_string then
if tile_string:find("[^%,% ]") then
new_tile1, new_tile2, new_tile3, new_tile4, new_tile5, new_tile6 = unpack(tile_string:split(",", true))
else
new_tile1 = tile_string
end
end
if new_tile1 then
new_node_def.tiles[1] = new_tile1
end
if new_tile2 and new_tile2 ~= "" then
new_node_def.tiles[2] = new_tile2
else
new_node_def.tiles[2] = new_tile1
end
if new_tile3 and new_tile3 ~= "" then
new_node_def.tiles[3] = new_tile3
else
new_node_def.tiles[3] = new_tile2
end
if new_tile4 and new_tile4 ~= "" then
new_node_def.tiles[4] = new_tile4
else
new_node_def.tiles[4] = new_tile3
end
if new_tile5 and new_tile5 ~= "" then
new_node_def.tiles[5] = new_tile5
else
new_node_def.tiles[5] = new_tile3
end
if new_tile6 and new_tile6 ~= "" then
new_node_def.tiles[6] = new_tile6
else
new_node_def.tiles[6] = new_tile3
end
if sounds and sounds ~= "" then
--sounds = assert(loadstring(sounds))() or lib_materials.node_sound_stone_defaults(),
--new_node_def.sounds = assert(loadstring(sounds))() or lib_materials.node_sound_stone_defaults()
if sounds == "dirt" then
new_node_def.sounds = lib_ecology.node_sound_dirt_defaults()
elseif sounds == "stone" then
new_node_def.sounds = lib_ecology.node_sound_stone_defaults()
elseif sounds == "sand" then
new_node_def.sounds = lib_ecology.node_sound_sand_defaults()
elseif sounds == "gravel" then
new_node_def.sounds = lib_ecology.node_sound_gravel_defaults()
elseif sounds == "glass" then
new_node_def.sounds = lib_ecology.node_sound_glass_defaults()
elseif sounds == "metal" then
new_node_def.sounds = lib_ecology.node_sound_metal_defaults()
elseif sounds == "water" then
new_node_def.sounds = lib_ecology.node_sound_water_defaults()
elseif sounds == "snow" then
new_node_def.sounds = lib_ecology.node_sound_snow_defaults()
else
end
end
if groups then
local temp_new_groups = {}
local new_node_groups = groups:split(",", true)
for _, nng in pairs(new_node_groups) do
local g_name, g_val = unpack(nng:split(" ", true))
temp_new_groups[g_name] = tonumber(g_val)
end
new_node_def.groups = temp_new_groups
end
if node_box ~= "" then
new_node_def.node_box = {}
local temp_nodebox_def = {}
temp_nodebox_def.type = "fixed"
temp_nodebox_def.fixed = {}
if string.find(node_box, ";") then
local nb_row_idx = 1
local new_node_nb = node_box:split(";", true)
for i, nbr in pairs(new_node_nb) do
local nb_col_idx = 1
local nb_row_list = {}
local new_nb_item = nbr:split(",", true)
for _, nri in pairs(new_nb_item) do
nb_row_list[nb_col_idx] = nri
nb_col_idx = nb_col_idx + 1
end
temp_nodebox_def.fixed[nb_row_idx] = nb_row_list
--temp_nodebox_def.fixed[nb_row_idx] = nbr
nb_row_idx = nb_row_idx + 1
end
else
--if draw_type == "plantlike" then
-- temp_nodebox_def.fixed = node_box
--else
local nb_col_idx = 1
local nb_row_list = {}
local new_nb_item = node_box:split(",", true)
for _, nri in pairs(new_nb_item) do
nb_row_list[nb_col_idx] = nri
nb_col_idx = nb_col_idx + 1
end
temp_nodebox_def.fixed[1] = nb_row_list
--end
end
new_node_def.node_box = temp_nodebox_def
end
if sel_box ~= "" then
new_node_def.selection_box = {}
local temp_selbox_def = {}
if sel_box == "wallmounted" then
temp_selbox_def.type = "wallmounted"
else
temp_selbox_def.type = "fixed"
end
temp_selbox_def.fixed = {}
if string.find(sel_box, ";") then
local nb_row_idx = 1
local new_node_nb = sel_box:split(";", true)
for i, nbr in pairs(new_node_nb) do
local nb_col_idx = 1
local nb_row_list = {}
local new_nb_item = nbr:split(",", true)
for _, nri in pairs(new_nb_item) do
nb_row_list[nb_col_idx] = nri
nb_col_idx = nb_col_idx + 1
end
temp_selbox_def.fixed[nb_row_idx] = nb_row_list
--temp_selbox_def.fixed[nb_row_idx] = nbr
nb_row_idx = nb_row_idx + 1
end
else
--if draw_type == "plantlike" then
-- temp_selbox_def.fixed = sel_box
--else
local nb_col_idx = 1
local nb_row_list = {}
local new_nb_item = sel_box:split(",", true)
for _, nri in pairs(new_nb_item) do
nb_row_list[nb_col_idx] = nri
nb_col_idx = nb_col_idx + 1
end
temp_selbox_def.fixed[1] = nb_row_list
--end
end
new_node_def.selection_box = temp_selbox_def
end
--if col_box ~= "" then
-- new_node_def.collision_box = {
-- type = "fixed",
-- fixed = col_box
-- }
--end
if string.find(node_name, "_waterlily") then
new_node_def.on_place = function(itemstack, placer, pointed_thing)
local pos = pointed_thing.above
local node = minetest.get_node(pointed_thing.under).name
local def = minetest.registered_nodes[node]
local player_name = placer:get_player_name()
if def and def.liquidtype == "source" and
minetest.get_item_group(node, "water") > 0 then
if not minetest.is_protected(pos, player_name) then
minetest.set_node(pos, {name = "lib_ecology:"..node_name, param2 = math.random(0, 3)})
if not minetest.setting_getbool("creative_mode") then
itemstack:take_item()
end
else
minetest.chat_send_player(player_name, "Node is protected")
minetest.record_protection_violation(pos, player_name)
end
end
return itemstack
end
end
if draw_type == "plantlike_rooted" then
if string.find(groups, "sea") then
if string.find(tile_string, "_coral") then
new_node_def.on_place = function(itemstack, placer, pointed_thing)
if pointed_thing.type ~= "node" or not placer then
return itemstack
end
local player_name = placer:get_player_name()
local pos_under = pointed_thing.under
local pos_above = pointed_thing.above
if minetest.get_node(pos_under).name ~= "lib_ecology:coral_skeleton" or (string.find(minetest.get_node(pos_above).name, "water_") and string.find(minetest.get_node(pos_above).name, "_source")) then
return itemstack
end
if minetest.is_protected(pos_under, player_name) or
minetest.is_protected(pos_above, player_name) then
minetest.chat_send_player(player_name, "Node is protected")
minetest.record_protection_violation(pos_under, player_name)
return itemstack
end
minetest.set_node(pos_under, {name = "lib_ecology:"..node_name..""})
if not (creative and creative.is_enabled_for(player_name)) then
itemstack:take_item()
end
return itemstack
end
new_node_def.after_destruct = function(pos, oldnode)
minetest.set_node(pos, {name = "lib_ecology:coral_skeleton"})
end
else
new_node_def.on_place = function(itemstack, placer, pointed_thing)
if pointed_thing.type ~= "node" or not placer then
return itemstack
end
local player_name = placer:get_player_name()
local pos_under = pointed_thing.under
local pos_above = pointed_thing.above
if minetest.get_node(pos_under).name ~= dig_pre or (string.find(minetest.get_node(pos_above).name, "water_") and string.find(minetest.get_node(pos_above).name, "_source")) then
return itemstack
end
if minetest.is_protected(pos_under, player_name) or
minetest.is_protected(pos_above, player_name) then
minetest.chat_send_player(player_name, "Node is protected")
minetest.record_protection_violation(pos_under, player_name)
return itemstack
end
minetest.set_node(pos_under, {name = "lib_ecology:"..node_name..""})
if not (creative and creative.is_enabled_for(player_name)) then
itemstack:take_item()
end
return itemstack
end
new_node_def.after_destruct = function(pos, oldnode)
minetest.set_node(pos, {name = dig_pre})
end
end
else
end
end
local RADIUS = 6
if string.find(node_name, "_leaves") then
new_node_def.after_place_node = function(pos, placer, itemstack, pointed_thing)
if placer and placer:is_player() and not placer:get_player_control().sneak then
local node = minetest.get_node(pos)
node.param2 = 1
minetest.set_node(pos, node)
end
end
new_node_def.on_timer = function(pos)
if minetest.find_node_near(pos, RADIUS, "lib_ecology:tree_"..node_name.."_trunk") then
return false
end
local node = minetest.get_node(pos)
local drops = minetest.get_node_drops(node.name)
for _, item in ipairs(drops) do
local is_leaf
for _, v in pairs({"lib_ecology:"..node_name..""}) do
if v == item then
is_leaf = true
end
end
if minetest.get_item_group(item, "leafdecay_drop") ~= 0 or
not is_leaf then
minetest.add_item({
x = pos.x - 0.5 + math.random(),
y = pos.y - 0.5 + math.random(),
z = pos.z - 0.5 + math.random(),
}, item)
end
end
minetest.remove_node(pos)
minetest.check_for_falling(pos)
end
end
if string.find(node_name, "_trunk") then
new_node_def.after_destruct = function(pos, oldnode)
--leafdecay_after_destruct(pos, oldnode, def)
for _, v in pairs(minetest.find_nodes_in_area(vector.subtract(pos, RADIUS),
vector.add(pos, RADIUS), "lib_ecology:"..node_name.."")) do
local node = minetest.get_node(v)
local timer = minetest.get_node_timer(v)
if node.param2 == 0 and not timer:is_started() then
timer:start(math.random(20, 120) / 10)
end
end
end
new_node_def.on_place = minetest.rotate_node
end
if string.find(node_name, "_sapling") then
new_node_def.on_construct = function(pos)
minetest.get_node_timer(pos):start(math.random(60,120))
end
new_node_def.on_timer = function(pos)
if not lib_ecology.can_grow(pos) then
-- try again 5 min later
minetest.get_node_timer(pos):start(300)
return
end
if string.find(grow, ",") then
local new_node_schems = grow:split(",", true)
local rnum = math.random(1,#new_node_schems)
local rname = new_node_schems[rnum]
minetest.place_schematic(pos, lib_ecology.schematics.select(rname), "random", nil, true, "place_center_x, place_center_z")
end
end
new_node_def.on_place = function(itemstack, placer, pointed_thing)
itemstack = lib_ecology.sapling_on_place(itemstack, placer, pointed_thing,
"lib_ecology:" .. node_name .. "",
-- minp, maxp to be checked, relative to sapling pos
-- minp_relative.y = 1 because sapling pos has been checked
{x = -4, y = 1, z = -4},
{x = 4, y = 6, z = 4},
-- maximum interval of interior volume check
4)
return itemstack
end
end
minetest.register_node("lib_ecology:"..node_name.."", new_node_def)
minetest.register_alias(""..node_name.."", "lib_ecology:"..node_name.."")
--game.lib.node.register("lib_ecology:"..node_name.."", new_node_def)
--game.lib.node.register_alias("lib_ecology", node_name, alias_mod, alias_node)
if alias_mod and alias_node then
minetest.register_alias(""..alias_mod..":"..alias_node.."", "lib_ecology:"..node_name.."")
minetest.register_alias(""..alias_node.."", "lib_ecology:"..node_name.."")
end
end

25
lib_ecology_schematic.lua Normal file
View File

@ -0,0 +1,25 @@
-- Schematics Library
lib_ecology.schematics = {}
lib_ecology.schematics.ver_maj = 0
lib_ecology.schematics.ver_min = 0
lib_ecology.schematics.ver_rev = 1
--nodes = {},
local schem_list = {
name = "",
def = {}
}
lib_ecology.schematics.insert = function(name, def)
schem_list[name] = def
end
lib_ecology.schematics.select = function(name)
return schem_list[name]
end

30649
lib_ecology_schematics.lua Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,408 @@
--
-- Sounds
--
function lib_ecology.node_sound_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "", gain = 1.0}
table.dug = table.dug or
{name = "default_dug_node", gain = 0.25}
table.place = table.place or
{name = "default_place_node_hard", gain = 1.0}
return table
end
function lib_ecology.node_sound_stone_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_hard_footstep", gain = 0.3}
table.dug = table.dug or
{name = "default_hard_footstep", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_dirt_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_dirt_footstep", gain = 0.4}
table.dug = table.dug or
{name = "default_dirt_footstep", gain = 1.0}
table.place = table.place or
{name = "default_place_node", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_sand_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_sand_footstep", gain = 0.12}
table.dug = table.dug or
{name = "default_sand_footstep", gain = 0.24}
table.place = table.place or
{name = "default_place_node", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_gravel_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_gravel_footstep", gain = 0.4}
table.dug = table.dug or
{name = "default_gravel_footstep", gain = 1.0}
table.place = table.place or
{name = "default_place_node", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_wood_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_wood_footstep", gain = 0.3}
table.dug = table.dug or
{name = "default_wood_footstep", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_leaves_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_grass_footstep", gain = 0.45}
table.dug = table.dug or
{name = "default_grass_footstep", gain = 0.7}
table.place = table.place or
{name = "default_place_node", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_glass_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_glass_footstep", gain = 0.3}
table.dig = table.dig or
{name = "default_glass_footstep", gain = 0.5}
table.dug = table.dug or
{name = "default_break_glass", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_metal_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_metal_footstep", gain = 0.4}
table.dig = table.dig or
{name = "default_dig_metal", gain = 0.5}
table.dug = table.dug or
{name = "default_dug_metal", gain = 0.5}
table.place = table.place or
{name = "default_place_node_metal", gain = 0.5}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_water_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_water_footstep", gain = 0.2}
lib_ecology.node_sound_defaults(table)
return table
end
function lib_ecology.node_sound_snow_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_snow_footstep", gain = 0.2}
table.dig = table.dig or
{name = "default_snow_footstep", gain = 0.3}
table.dug = table.dug or
{name = "default_snow_footstep", gain = 0.3}
table.place = table.place or
{name = "default_place_node", gain = 1.0}
lib_ecology.node_sound_defaults(table)
return table
end
--
-- Lavacooling
--
lib_ecology.cool_lava = function(pos, node)
if node.name == "default:lava_source" then
minetest.set_node(pos, {name = "default:obsidian"})
else -- Lava flowing
minetest.set_node(pos, {name = "default:stone"})
end
minetest.sound_play("default_cool_lava",
{pos = pos, max_hear_distance = 16, gain = 0.25})
end
if minetest.settings:get_bool("enable_lavacooling") ~= false then
minetest.register_abm({
label = "Lava cooling",
nodenames = {"default:lava_source", "default:lava_flowing"},
neighbors = {"group:cools_lava", "group:water"},
interval = 2,
chance = 2,
catch_up = false,
action = function(...)
lib_ecology.cool_lava(...)
end,
})
end
--
-- Papyrus and cactus growing
--
-- Wrapping the functions in ABM action is necessary to make overriding them possible
function lib_ecology.grow_cactus(pos, node)
if node.param2 >= 4 then
return
end
pos.y = pos.y - 1
if minetest.get_item_group(minetest.get_node(pos).name, "sand") == 0 then
return
end
pos.y = pos.y + 1
local height = 0
while node.name == "default:cactus" and height < 4 do
height = height + 1
pos.y = pos.y + 1
node = minetest.get_node(pos)
end
if height == 4 or node.name ~= "air" then
return
end
if minetest.get_node_light(pos) < 13 then
return
end
minetest.set_node(pos, {name = "default:cactus"})
return true
end
function lib_ecology.grow_papyrus(pos, node)
pos.y = pos.y - 1
local name = minetest.get_node(pos).name
if name ~= "default:dirt_with_grass" and name ~= "default:dirt" then
return
end
if not minetest.find_node_near(pos, 3, {"group:water"}) then
return
end
pos.y = pos.y + 1
local height = 0
while node.name == "default:papyrus" and height < 4 do
height = height + 1
pos.y = pos.y + 1
node = minetest.get_node(pos)
end
if height == 4 or node.name ~= "air" then
return
end
if minetest.get_node_light(pos) < 13 then
return
end
minetest.set_node(pos, {name = "default:papyrus"})
return true
end
minetest.register_abm({
label = "Grow cactus",
nodenames = {"default:cactus"},
neighbors = {"group:sand"},
interval = 12,
chance = 83,
action = function(...)
lib_ecology.grow_cactus(...)
end
})
minetest.register_abm({
label = "Grow papyrus",
nodenames = {"default:papyrus"},
neighbors = {"default:dirt", "default:dirt_with_grass"},
interval = 14,
chance = 71,
action = function(...)
lib_ecology.grow_papyrus(...)
end
})
--
-- Leafdecay
--
-- Prevent decay of placed leaves
lib_ecology.after_place_leaves = function(pos, placer, itemstack, pointed_thing)
if placer and placer:is_player() and not placer:get_player_control().sneak then
local node = minetest.get_node(pos)
node.param2 = 1
minetest.set_node(pos, node)
end
end
-- Leafdecay
local function leafdecay_after_destruct(pos, oldnode, def)
for _, v in pairs(minetest.find_nodes_in_area(vector.subtract(pos, def.radius),
vector.add(pos, def.radius), def.leaves)) do
local node = minetest.get_node(v)
local timer = minetest.get_node_timer(v)
if node.param2 == 0 and not timer:is_started() then
timer:start(math.random(20, 120) / 10)
end
end
end
local function leafdecay_on_timer(pos, def)
if minetest.find_node_near(pos, def.radius, def.trunks) then
return false
end
local node = minetest.get_node(pos)
local drops = minetest.get_node_drops(node.name)
for _, item in ipairs(drops) do
local is_leaf
for _, v in pairs(def.leaves) do
if v == item then
is_leaf = true
end
end
if minetest.get_item_group(item, "leafdecay_drop") ~= 0 or
not is_leaf then
minetest.add_item({
x = pos.x - 0.5 + math.random(),
y = pos.y - 0.5 + math.random(),
z = pos.z - 0.5 + math.random(),
}, item)
end
end
minetest.remove_node(pos)
minetest.check_for_falling(pos)
end
function lib_ecology.register_leafdecay(def)
assert(def.leaves)
assert(def.trunks)
assert(def.radius)
for _, v in pairs(def.trunks) do
minetest.override_item(v, {
after_destruct = function(pos, oldnode)
leafdecay_after_destruct(pos, oldnode, def)
end,
})
end
for _, v in pairs(def.leaves) do
minetest.override_item(v, {
on_timer = function(pos)
leafdecay_on_timer(pos, def)
end,
})
end
end
--
-- Convert dirt to something that fits the environment
--
minetest.register_abm({
label = "Grass spread",
nodenames = {"default:dirt"},
neighbors = {
"air",
"group:grass",
"group:dry_grass",
"default:snow",
},
interval = 6,
chance = 50,
catch_up = false,
action = function(pos, node)
-- Check for darkness: night, shadow or under a light-blocking node
-- Returns if ignore above
local above = {x = pos.x, y = pos.y + 1, z = pos.z}
if (minetest.get_node_light(above) or 0) < 13 then
return
end
-- Look for spreading dirt-type neighbours
local p2 = minetest.find_node_near(pos, 1, "group:spreading_dirt_type")
if p2 then
local n3 = minetest.get_node(p2)
minetest.set_node(pos, {name = n3.name})
return
end
-- Else, any seeding nodes on top?
local name = minetest.get_node(above).name
-- Snow check is cheapest, so comes first
if name == "default:snow" then
minetest.set_node(pos, {name = "default:dirt_with_snow"})
-- Most likely case first
elseif minetest.get_item_group(name, "grass") ~= 0 then
minetest.set_node(pos, {name = "default:dirt_with_grass"})
elseif minetest.get_item_group(name, "dry_grass") ~= 0 then
minetest.set_node(pos, {name = "default:dirt_with_dry_grass"})
end
end
})
--
-- Grass and dry grass removed in darkness
--
minetest.register_abm({
label = "Grass covered",
nodenames = {"group:spreading_dirt_type"},
interval = 8,
chance = 50,
catch_up = false,
action = function(pos, node)
local above = {x = pos.x, y = pos.y + 1, z = pos.z}
local name = minetest.get_node(above).name
local nodedef = minetest.registered_nodes[name]
if name ~= "ignore" and nodedef and not ((nodedef.sunlight_propagates or
nodedef.paramtype == "light") and
nodedef.liquidtype == "none") then
minetest.set_node(pos, {name = "default:dirt"})
end
end
})
--
-- Moss growth on cobble near water
--
minetest.register_abm({
label = "Moss growth",
nodenames = {"default:cobble", "stairs:slab_cobble", "stairs:stair_cobble", "walls:cobble"},
neighbors = {"group:water"},
interval = 16,
chance = 200,
catch_up = false,
action = function(pos, node)
if node.name == "default:cobble" then
minetest.set_node(pos, {name = "default:mossycobble"})
elseif node.name == "stairs:slab_cobble" then
minetest.set_node(pos, {name = "stairs:slab_mossycobble", param2 = node.param2})
elseif node.name == "stairs:stair_cobble" then
minetest.set_node(pos, {name = "stairs:stair_mossycobble", param2 = node.param2})
elseif node.name == "walls:cobble" then
minetest.set_node(pos, {name = "walls:mossycobble", param2 = node.param2})
end
end
})

4
mod.conf Normal file
View File

@ -0,0 +1,4 @@
name = lib_ecology
description = A collection of plants, trees, biomes, and ecosystems.
depends = lib_materials
optional_depends = farming, intllib, stairs, game

928
nodes.csv Normal file
View File

@ -0,0 +1,928 @@
#Node_Name|Description|Alias_Mod|Alias_Node|Tile_String|Special_Tiles|Inv_Image|Wield_Image|Draw_Type|Vis_Scale|Wld_Scale|Param_Type|ParamType2|Place_Param2|LightSource|Walkable|Pointable|Climbable|Diggable|Buildable|Floodable|Waving|Use_Alpha|Sun_Prop|Liquid_Point|Damage_Per_Second|Grnd_Cnt|Leg_wall|MaxLight|Grow|Eat|Groups|Max_Drops|Drops|Sounds|Dig_Predict|Place_Predict|NodeBox|SelBox|ColBox|Mesh|LiquidType|LiquidViscosity|LiquidRange|LiquidRenew|LiquidAltSource|LiquidAltFlow|OnConstruct|OnTimer|TimerTrig|TimerAct|AfterPlace|OnPlace|
#BUSHES, SHRUBS|||||||||||||||||||||||||||||||||||||||||||||||||||||
bush_01_1|Bush - 01 - 1|||lib_ecology_bush_01_1.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
bush_01_2|Bush - 01 - 2|||lib_ecology_bush_01_2.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
bush_02_1|Bush - 02 - 1|||lib_ecology_bush_02_1.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
bush_02_2|Bush - 02 - 2|||lib_ecology_bush_02_2.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
bush_02_3|Bush - 02 - 3|||lib_ecology_bush_02_3.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#bush_blueberry_leaves||||lib_ecology_bush_blueberry_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
#bush_blueberry_leaves_with_berries||||lib_ecology_bush_blueberry_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
#bush_blueberry_sapling||||lib_ecology_bush_blueberry_sapling.png|||||||||||||||||||||||||||||||||||||||||||||||||
bush_hawthorne_leaves|Bush - Hawthorne Leaves|||lib_ecology_bush_hawthorne_leaves.png||||allfaces_optional|2|0.5,0.5,0.5|light||||FALSE|||||TRUE|1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1|||leaves|||||||||||||||||lib_ecology.after_place_leaves||
bush_rhodedendron_leaves_1|Bush - Rhodedendron Leaves 1|||lib_ecology_bush_rhodedendron_leaves_1.png||||allfaces_optional|1.5|0.5,0.5,0.5|light||||FALSE|||||TRUE|1|||||FALSE||11|bush_rhodedendron_leaves_2||snappy 3,leafdecay 3,flammable 2,leaves 1|||leaves|||||||||||||timer|"60,120"|400|lib_ecology:bush_rhodedendron_leaves_2|lib_ecology.after_place_leaves||
bush_rhodedendron_leaves_2|Bush - Rhodedendron Leaves 2|||lib_ecology_bush_rhodedendron_leaves_2.png||||allfaces_optional|1.5|0.5,0.5,0.5|light||||FALSE|||||TRUE|1|||||FALSE||11|bush_rhodedendron_leaves_3||snappy 3,leafdecay 3,flammable 2,leaves 1|||leaves|||||||||||||timer|"60,120"|300|lib_ecology:bush_rhodedendron_leaves_3|lib_ecology.after_place_leaves||
bush_rhodedendron_leaves_3|Bush - Rhodedendron Leaves 3|||lib_ecology_bush_rhodedendron_leaves_3.png||||allfaces_optional|1.5|0.5,0.5,0.5|light||||FALSE|||||TRUE|1|||||FALSE||11|||snappy 3,leafdecay 3,flammable 2,leaves 1|||leaves|||||||||||||timer|"60,120"|200|lib_ecology:bush_rhodedendron_leaves_1|lib_ecology.after_place_leaves||
bush_trunk|Bush - Trunk|||lib_ecology_bush_trunk.png||||plantlike|1.41||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||wood||||-0.4375,-0.5,-0.4375,0.4375,0.5,0.4375|||||||||||||||
#CACTII|||||||||||||||||||||||||||||||||||||||||||||||||||||
#cactus_01_seedling||||default_large_cactus_seedling.png|||||||||||||||||||||||||||||||||||||||||||||||||
cactus_column_01|Cactus - Column 01|||lib_ecology_cactus_column_01.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||1|FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
cactus_column_02|Cactus - Column 02|||lib_ecology_cactus_column_02.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE||1|FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
cactus_globe|Cactus - Globe|||lib_ecology_cactus_globe.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||1|FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
cactus_green_column|Cactus - Green Column|||lib_ecology_plant_cactus.png||||mesh|0.5||light||||||||||||||1||||||choppy 1,oddly_breakable_by_hand 1|||wood||||-0.4,-0.5,-0.4,0.4,0.5,0.4|-0.4,-0.5,-0.4,0.4,0.5,0.4|cactus.b3d|||||||||||||
cactus_green_trunk|Cactus - Green Trunk|||lib_ecology_cactus_green_trunk_top.png,lib_ecology_cactus_green_trunk_top.png,lib_ecology_cactus_green_trunk.png|||||||light|facedir|||TRUE||||||||||1|FALSE|||||tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2|||wood||||||||||||||||||rotate|
cactus_moonflower|Cactus - Moon Flower|||lib_ecology_cactus_moonflower.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE||1|FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
cactus_prickly_pear|Cactus - Prickly Pear|||lib_ecology_cactus_prickly_pear.png||||plantlike|4|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE||1|FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
cactus_purple_button|Cactus - Purple Button|||lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk.png||||nodebox|||light|facedir|||TRUE||||||||||1|FALSE|||||tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2|||wood|||-0.25,-0.5,-0.25,0.25,0.0,0.25|-0.25,-0.5,-0.25,0.25,0.0,0.25||||||||||||||rotate|
cactus_purple_column|Cactus - Purple Column|||lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk.png||||nodebox|||light|facedir|||TRUE||||||||||1|FALSE|||||tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2|||wood|||-0.25,-0.5,-0.25,0.25,0.5,0.25|-0.25,-0.5,-0.25,0.25,0.5,0.25||||||||||||||rotate|
cactus_purple_trunk|Cactus - Purple Trunk|||lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk.png|||||||light|facedir|||TRUE||||||||||1|FALSE|||||tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2|||wood|||||||||||||||||||
cactus_small_column_01|Cactus - Small Column 01|||lib_ecology_cactus_column_01.png||||nodebox|||light|facedir|||TRUE||||||||||1|FALSE|||||tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2|||wood|||-0.0625,0.1875,-0.0625,0.0625,0.25,0.0625;-0.0625,-0.5,-0.125,0.0625,0.1875,0.125;-0.125,-0.5,-0.0625,0.125,0.1875,0.0625|-0.125,-0.5,-0.125,0.125,0.25,0.125||||||||||||||rotate|
cactus_small_column_02|Cactus - Small Column 02|||lib_ecology_cactus_column_02.png||||nodebox|||light|facedir|||TRUE||||||||||1|FALSE|||||tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2|||wood|||-0.0625,0.0625,-0.0625,0.0625,0.125,0.0625;-0.0625,-0.5,-0.125,0.0625,0.0625,0.125;-0.125,-0.5,-0.0625,0.125,0.0625,0.0625;-0.0625,-0.5,-0.001,0.0625,0.0625,0.001;-0.001,-0.5,-0.0625,0.001,0.0625,0.0625|-0.125,-0.5,-0.125,0.125,0.125,0.125||||||||||||||rotate|
cactus_small_globe|Cactus - Small Globe|||lib_ecology_cactus_globe.png||||nodebox|||light|facedir|||TRUE||||||||||1|FALSE|||||tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2|||wood|||-0.1875,-0.5,-0.0625,0.1875,0.125,0.0625;-0.25,-0.3125,-0.0625,0.25,0.0625,0.0625;-0.3125,-0.375,-0.0625,0.3125,0.0,0.0625;-0.125,0.125,-0.0625,0.125,0.1875,0.0625;-0.0625,0.1875,-0.0625,0.0625,0.25,0.0625|-0.3125,-0.5,-0.0625,0.3125,0.25,0.0625||||||||||||||rotate|
cactus_vine|Cactus - Vine|||lib_ecology_cactus_vine.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE||1|FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#candle||||candle.png|||||||||||||||||||||||||||||||||||||||||||||||||
#constant_flame||||fire_basic_flame_animated.png|||||||||||||||||||||||||||||||||||||||||||||||||
#CORALS|||||||||||||||||||||||||||||||||||||||||||||||||||||
coral_blue_01|Coral - Blue 01|||lib_ecology_coral_skeleton.png|lib_ecology_coral_blue_01.png false|lib_ecology_coral_blue_01.png|lib_ecology_coral_blue_01.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_blue_01|lib_ecology:coral_blue_01|||||||||||||||||
coral_blue_02|Coral - Blue 02|||lib_ecology_coral_skeleton.png|lib_ecology_coral_blue_02.png false|lib_ecology_coral_blue_02.png|lib_ecology_coral_blue_02.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_blue_02|lib_ecology:coral_blue_02|||||||||||||||||
coral_blue_03|Coral - Blue 03|||lib_ecology_coral_skeleton.png|lib_ecology_coral_blue_03.png false|lib_ecology_coral_blue_03.png|lib_ecology_coral_blue_03.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_blue_03|lib_ecology:coral_blue_03|||||||||||||||||
coral_brain|Coral - Brain|||lib_ecology_coral_brain.png||||||||||4|||||||||||||||||cracky 3,stone 1,sea 1||lib_ecology:coral_skeleton|stone|||||||||||||||||||
coral_brown|Coral - Brown|||lib_ecology_coral_brown.png||||||||||4|||||||||||||||||cracky 3,stone 1,sea 1||lib_ecology:coral_skeleton|stone|||||||||||||||||||
coral_dragon_eye|Coral - Dragon Eye|||lib_ecology_coral_dragon_eye.png||||||||||4|||||||||||||||||cracky 3,stone 1,sea 1||lib_ecology:coral_skeleton|stone|||||||||||||||||||
coral_green_01|Coral - Green 01|||lib_ecology_coral_skeleton.png|lib_ecology_coral_green_01.png false|lib_ecology_coral_green_01.png|lib_ecology_coral_green_01.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_green_01|lib_ecology:coral_green_01|||||||||||||||||
coral_green_02|Coral - Green 02|||lib_ecology_coral_skeleton.png|lib_ecology_coral_green_02.png false|lib_ecology_coral_green_02.png|lib_ecology_coral_green_02.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_green_02|lib_ecology:coral_green_02|||||||||||||||||
coral_orange_01|Coral - Orange 01|||lib_ecology_coral_orange_01.png||||||||||4|||||||||||||||||cracky 3,stone 1,sea 1||lib_ecology:coral_skeleton|stone|||||||||||||||||||
coral_orange_02|Coral - Orange 02|||lib_ecology_coral_skeleton.png|lib_ecology_coral_orange_02.png false|lib_ecology_coral_orange_02.png|lib_ecology_coral_orange_02.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_orange_02|lib_ecology:coral_orange_02|||||||||||||||||
coral_orange_03|Coral - Orange 03|||lib_ecology_coral_skeleton.png|lib_ecology_coral_orange_03.png false|lib_ecology_coral_orange_03.png|lib_ecology_coral_orange_03.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_orange_03|lib_ecology:coral_orange_03|||||||||||||||||
#coral_pillar||||lib_ecology_coral_pillar.png||||nodebox||||||2|||||||||||||||||cracky 3,stone 1,sea 1||lib_ecology:coral_skeleton|stone|||grid|-0.5,-0.5,-0.5,0.5,0.5,0.5|||||||||||||||
coral_pink_01|Coral - Pink 01|||lib_ecology_coral_skeleton.png|lib_ecology_coral_pink_01.png false|lib_ecology_coral_pink_01.png|lib_ecology_coral_pink_01.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_pink_01|lib_ecology:coral_pink_01|||||||||||||||||
coral_pink_02|Coral - Pink 02|||lib_ecology_coral_skeleton.png|lib_ecology_coral_pink_02.png false|lib_ecology_coral_pink_02.png|lib_ecology_coral_pink_02.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_pink_02|lib_ecology:coral_pink_02|||||||||||||||||
coral_pink_03|Coral - Pink 03|||lib_ecology_coral_skeleton.png|lib_ecology_coral_pink_03.png false|lib_ecology_coral_pink_03.png|lib_ecology_coral_pink_03.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_pink_03|lib_ecology:coral_pink_03|||||||||||||||||
coral_purple|Coral - Purple|||lib_ecology_coral_skeleton.png|lib_ecology_coral_purple.png false|lib_ecology_coral_purple.png|lib_ecology_coral_purple.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_purple|lib_ecology:coral_purple|||||||||||||||||
coral_red|Coral - Red|||lib_ecology_coral_skeleton.png|lib_ecology_coral_red.png false|lib_ecology_coral_red.png|lib_ecology_coral_red.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_red|lib_ecology:coral_red|||||||||||||||||
coral_skeleton|Coral - Skeleton|||lib_ecology_coral_skeleton.png||||||||||2|||||||||||||||||cracky 3,stone 1,sea 1|||stone|||||||||||||||||||
coral_sponge|Coral - Sponge|||lib_ecology_coral_sponge.png||||||||||4|||||||||||||||||cracky 3,stone 1,sea 1||lib_ecology:coral_skeleton|stone|||||||||||||||||||
coral_staghorn|Coral - Staghorn|||lib_ecology_coral_skeleton.png|lib_ecology_coral_staghorn.png false|lib_ecology_coral_staghorn.png|lib_ecology_coral_staghorn.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_staghorn|lib_ecology:coral_staghorn|||||||||||||||||
#FERNS|||||||||||||||||||||||||||||||||||||||||||||||||||||
fern_big|Fern - Big|||lib_ecology_fern_big.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
fern_bluespike|Fern - BlueSpike|||lib_ecology_fern_bluespike.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
fern_boston|Fern - Boston Fern|||lib_ecology_fern_boston.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#fern_broadleaf_fern||||lib_ecology_fern_broadleaf.png|||||||||||||||||||||||||||||||||||||||||||||||||
fern_broadleaf_fern2|Fern - Broad Leaf Fern2|||lib_ecology_fern_broadleaf.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#fern_dicksonia||||lib_ecology_fern_dicksonia.png|||||||||||||||||||||||||||||||||||||||||||||||||
fern_fern|Fern - Fern|||lib_ecology_fern_fern.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
fern_fiddlehead|Fern - Fiddlehead|||lib_ecology_fern_fiddlehead.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
fern_horsetail_02|Fern - Horsetail 02|||lib_ecology_fern_horsetail_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1||||||||||||||||||||||
fern_horsetail_1|Fern - Young Horsetail (Equisetum)|||lib_ecology_fern_horsetail_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||fern_horsetail_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_horsetail_2|Fern - Horsetail (Equisetum)|||lib_ecology_fern_horsetail_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||fern_horsetail_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_horsetail_3|Fern - Horsetail (Equisetum)|||lib_ecology_fern_horsetail_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||fern_horsetail_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_horsetail_4|Fern - Horsetail (Equisetum)|||lib_ecology_fern_horsetail_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_horsetails|Fern - Horsetails|||lib_ecology_fern_horsetails.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#fern_ladyfern||||lib_ecology_fern_lady.png|||||||||||||||||||||||||||||||||||||||||||||||||
fern_ladyfern2|Fern - Ladyfern2|||lib_ecology_fern_lady.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
fern_large_1|Fern - Fern Large 1|||lib_ecology_fern_large_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||fern_large_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_large_2|Fern - Fern Large 2|||lib_ecology_fern_large_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||fern_large_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_large_3|Fern - Fern Large 3|||lib_ecology_fern_large_3.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_small_1|Fern - Fern Small 1|||lib_ecology_fern_small_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||fern_small_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_small_2|Fern - Fern Small 2|||lib_ecology_fern_small_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||fern_small_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_small_3|Fern - Fern Small 3|||lib_ecology_fern_small_3.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
fern_spike|Fern - Spike|||lib_ecology_fern_spike.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#FLOWERS|||||||||||||||||||||||||||||||||||||||||||||||||||||
flower_allium_purple|Flower - Allium Purple|||lib_ecology_flower_allium_purple.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_big|Flower - Big|||lib_ecology_flower_big.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_bird_of_paradise|Flower - Bird of Paradise|||lib_ecology_flower_bird_of_paradise.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_blue|Flower - Blue|||lib_ecology_flower_blue.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_calla_lily|Flower - Calla Lily|||lib_ecology_flower_calla_lily.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_cave|Flower - Cave|||lib_ecology_flower_cave.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_chrysanthemum_green|Flower - Chrysanthemum Green|||lib_ecology_flower_chrysanthemum_green.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_daisy_oxeye|Flower - Daisy Oxeye|||lib_ecology_flower_daisy_oxeye.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_dandelions_white|Flower - dandelions Yellow|||lib_ecology_flower_dandelions_white.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_dandelions_yellow|Flower - Dandelion White|||lib_ecology_flower_dandelions_yellow.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_dandelions_yellow_small|Flower - Dandelion White|||lib_ecology_flower_dandelions_yellow_small.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_dandelion_white|Flower - Dandelion Yellow|||lib_ecology_flower_dandelion_white.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_dandelion_yellow|Flower - Dandelions Yellow|||lib_ecology_flower_dandelion_yellow.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_delphinium|Flower - Delphinium Blue|||lib_ecology_flower_delphinium.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_fire|Flower - Fire|||lib_ecology_flower_fire.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_fire_02|Flower - Fire 02|||lib_ecology_flower_fire_02.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_flame_lily|Flower - Flame Lily|||lib_ecology_flower_flame_lily.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_foxglove_pink|Flower - Foxglove Pink|||lib_ecology_flower_foxglove_pink.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_foxglove_purple|Flower - Foxglove Purple|||lib_ecology_flower_foxglove_purple.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_geranium_blue|Flower - Geranium Blue|||lib_ecology_flower_geranium_blue.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_geraniums|Flower - Geraniums|||lib_ecology_flower_geraniums.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_gerbera|Flower - Gerbera|||lib_ecology_flower_gerbera.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#flower_ground_blue|Flower - Ground Blue|||lib_ecology_flower_ground_blue.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#flower_ground_pink|Flower - Ground Pink|||lib_ecology_flower_ground_pink.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#flower_ground_red|Flower - Ground Red|||lib_ecology_flower_ground_red.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_hibiscus|Flower - Hibiscus|||lib_ecology_flower_hibiscus.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_jungle|Flower - Jungle|||lib_ecology_flower_jungle.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_lantana|Flower - Lantana|||lib_ecology_flower_lantana.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_lavender|Flower - Lavender|||lib_ecology_flower_lavender.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_lazarus_bell|Flower - Lazarus Bell|||lib_ecology_flower_lazarus_bell.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_lobelia|Flower - Lobelia|||lib_ecology_flower_lobelia.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_medium|Flower - Medium|||lib_ecology_flower_medium.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_orchid|Flower - Orchid|||lib_ecology_flower_orchid.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_pansy_blue|Flower - Pansy Blue|||lib_ecology_flower_pansy_blue.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_pansy_purple|Flower - Pansy Purple|||lib_ecology_flower_pansy_purple.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_petunia_blue|Flower - Petunia Blue|||lib_ecology_flower_petunia_blue.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_petunia_pink|Flower - Petunia Pink|||lib_ecology_flower_petunia_pink.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_petunia_white|Flower - Petunia White|||lib_ecology_flower_petunia_white.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_rose|Flower - Rose|||lib_ecology_flower_rose.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_rose_frozen|Flower - Rose Frozen|||lib_ecology_flower_rose_frozen.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_roses|Flower - Roses|||lib_ecology_flower_roses.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_roses_black|Flower - Black Roses|||lib_ecology_flower_roses_black.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_roses_small|Flower - Small Roses|||lib_ecology_flower_roses_small.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_thistle|Flower - Thistle|||lib_ecology_flower_thistle.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_tulip_black|Flower - Tulip Black|||lib_ecology_flower_tulip_black.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_tulip_orange|Flower - Tulip Orange|||lib_ecology_flower_tulip_orange.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
flower_viola|Flower - Viola|||lib_ecology_flower_viola.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#FOOD|||||||||||||||||||||||||||||||||||||||||||||||||||||
food_fern_tuber_roasted|Food - Roasted Fern Tuber|||lib_ecology_food_fern_tuber_roasted.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
food_fiddlehead_roasted|Food - Roasted Fiddlehead|||lib_ecology_food_fiddlehead_roasted.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
#FRUIT|||||||||||||||||||||||||||||||||||||||||||||||||||||
fruit_acorn|Fruit - Acorn|||lib_ecology_fruit_acorn.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_apple|Fruit - Apple|||lib_ecology_fruit_apple.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_apple_gold|Fruit - Golden Apple|||lib_ecology_fruit_apple_gold.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||20|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_banana|Fruit - Banana|||lib_ecology_fruit_banana.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_bananas|Fruit - Bananas|||lib_ecology_fruit_bananas.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||6|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_blueberries|Fruit - Blueberries|||lib_ecology_fruit_blueberries.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||2|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_cedar_cone|Fruit - Cedar Cone|||lib_ecology_fruit_cedar_cone.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_cherry|Fruit - Cherry|||lib_ecology_fruit_cherry.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||2|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_chestnut|Fruit - Chestnut|||lib_ecology_fruit_chestnut.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_clementine|Fruit - Clementine|||lib_ecology_fruit_clementine.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_coconut|Fruit - Coconut|||lib_ecology_fruit_coconut.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||4|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_corn|Fruit - Corn|||lib_ecology_fruit_corn.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_dates|Fruit - Dates|||lib_ecology_fruit_dates.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||4|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_fern_tuber|Fruit - Fern Tuber|||lib_ecology_food_fern_tuber.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_fern_tubers|Fruit - Fern Tubers|||lib_ecology_food_fern_tubers.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_fir_cone|Fruit - Fir Cone|||lib_ecology_fruit_fir_cone.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_gourd_bottle|Fruit - Bottle Gourd|||lib_ecology_fruit_gourd_bottle.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||2|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_lavender|Fruit - lavender|||lib_ecology_fruit_lavender.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_lemon|Fruit - Lemon|||lib_ecology_fruit_lemon.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||2|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_mirabelle|Fruit - Mirabelle|||lib_ecology_fruit_mirabelle.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_orange|Fruit - Orange|||lib_ecology_fruit_orange.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_pineapple|Fruit - Pineapple|||lib_ecology_fruit_pineapple.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||4|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_pine_cone|Fruit - Pine Cone|||lib_ecology_fruit_pine_cone.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_potato|Fruit - Potato|||lib_ecology_fruit_potato.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_spruce_cone|Fruit - Spruce Cone|||lib_ecology_fruit_spruce_cone.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||1|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_strawberry|Fruit - Strawberry|||lib_ecology_fruit_strawberry.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||2|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_wheat|Fruit - Wheat|||lib_ecology_fruit_wheat.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
fruit_wild_onion|Fruit - Wild Onion|||lib_ecology_fruit_wild_onion.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE||||3|fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
#VALC|||||||||||||||||||||||||||||||||||||||||||||||||||||
#fungal_tree_fruit||||valc_fungal_tree_fruit.png|||||||||||||||||||||||||||||||||||||||||||||||||
#fungal_tree_leaves_1||||valc_fungal_tree_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
#fungal_tree_leaves_2||||valc_fungal_tree_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
#fungal_tree_leaves_3||||valc_fungal_tree_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
#fungal_tree_leaves_4||||valc_fungal_tree_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
#giant_mushroom_cap||||vmg_mushroom_giant_cap.png|||||||||||||||||||||||||||||||||||||||||||||||||
#giant_mushroom_stem||||vmg_mushroom_giant_stem.png|||||||||||||||||||||||||||||||||||||||||||||||||
#GRASS|||||||||||||||||||||||||||||||||||||||||||||||||||||
grass_1|Grass - 1|||lib_ecology_grass_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_2|Grass - 2|||lib_ecology_grass_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_3|Grass - 3|||lib_ecology_grass_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_4|Grass - 4|||lib_ecology_grass_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_5|Grass - 5|||lib_ecology_grass_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_bamboo|Grass - Bamboo|||lib_ecology_grass_bamboo.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
grass_clover|Grass - Clover|||lib_ecology_grass_clover.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
grass_dead_1|Grass - Dead 1|||lib_ecology_grass_dead_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dead_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dead_2|Grass - Dead 2|||lib_ecology_grass_dead_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dead_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dead_3|Grass - Dead 3|||lib_ecology_grass_dead_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dead_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dead_4|Grass - Dead 4|||lib_ecology_grass_dead_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dead_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dead_5|Grass - Dead 5|||lib_ecology_grass_dead_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dry_1|Grass - Dry 1|||lib_ecology_grass_dry_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dry_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dry_2|Grass - Dry 2|||lib_ecology_grass_dry_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dry_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dry_3|Grass - Dry 3|||lib_ecology_grass_dry_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dry_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dry_4|Grass - Dry 4|||lib_ecology_grass_dry_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_dry_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_dry_5|Grass - Dry 5|||lib_ecology_grass_dry_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_giant|Grass - Giant|||lib_ecology_grass_giant.png||||plantlike|4|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
grass_golden_1|Grass - Golden 1|||lib_ecology_grass_golden_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_golden_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_golden_2|Grass - Golden 2|||lib_ecology_grass_golden_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_golden_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_golden_3|Grass - Golden 3|||lib_ecology_grass_golden_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_golden_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_golden_4|Grass - Golden 4|||lib_ecology_grass_golden_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_golden_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_golden_5|Grass - Golden 5|||lib_ecology_grass_golden_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_green_1|Grass - Green 1|||lib_ecology_grass_green_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_green_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_green_2|Grass - Green 2|||lib_ecology_grass_green_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_green_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_green_3|Grass - Green 3|||lib_ecology_grass_green_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_green_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_green_4|Grass - Green 4|||lib_ecology_grass_green_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_green_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_green_5|Grass - Green 5|||lib_ecology_grass_green_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_jungle|Grass - Jungle|||lib_ecology_grass_jungle.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
grass_jungle_1|Grass - Jungle 1|||lib_ecology_grass_jungle_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_jungle_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_jungle_2|Grass - Jungle 2|||lib_ecology_grass_jungle_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_jungle_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_jungle_3|Grass - Jungle 3|||lib_ecology_grass_jungle_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_jungle_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_jungle_4|Grass - Jungle 4|||lib_ecology_grass_jungle_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_jungle_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_jungle_5|Grass - Jungle 5|||lib_ecology_grass_jungle_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_marram_1|Grass - Marram 1|||default_marram_grass_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_marram_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_marram_2|Grass - Marram 2|||default_marram_grass_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_marram_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_marram_3|Grass - Marram 3|||default_marram_grass_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_sea_1|Grass - Sea 1|||lib_materials_sand_default.png|lib_ecology_grass_sea_1.png false|lib_ecology_grass_sea_1.png|lib_ecology_grass_sea_1.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||grass_sea_2||snappy 3,sea 1|||dirt|lib_materials:sand|||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_sea_2|Grass - Sea 2|||lib_materials_sand_default.png|lib_ecology_grass_sea_2.png false|lib_ecology_grass_sea_2.png|lib_ecology_grass_sea_2.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||grass_sea_3||snappy 3,sea 1|||dirt|lib_materials:sand|||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_sea_3|Grass - Sea 3|||lib_materials_sand_default.png|lib_ecology_grass_sea_3.png false|lib_ecology_grass_sea_3.png|lib_ecology_grass_sea_3.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_materials:sand|||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_snow_1|Grass - Snow 1|||lib_ecology_grass_snow_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_snow_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_snow_2|Grass - Snow 2|||lib_ecology_grass_snow_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_snow_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_snow_3|Grass - Snow 3|||lib_ecology_grass_snow_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_snow_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_snow_4|Grass - Snow 4|||lib_ecology_grass_snow_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_snow_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_snow_5|Grass - Snow 5|||lib_ecology_grass_snow_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_swamp|Grass - swamp|||lib_ecology_grass_swamp.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
grass_swamp_1|Grass - Swamp 1|||lib_ecology_grass_swamp_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_swamp_2||snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_swamp_2|Grass - Swamp 2|||lib_ecology_grass_swamp_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_swamp_3||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_swamp_3|Grass - Swamp 3|||lib_ecology_grass_swamp_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_swamp_4||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_swamp_4|Grass - Swamp 4|||lib_ecology_grass_swamp_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||grass_swamp_5||snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_swamp_5|Grass - Swamp 5|||lib_ecology_grass_swamp_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
grass_tall|Grass - Tall|||lib_ecology_grass_long.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#GROUND|||||||||||||||||||||||||||||||||||||||||||||||||||||
#ground_grass||||lib_ecology_ground_grass.png|||||||||||||||||||||||||||||||||||||||||||||||||
#ground_grass_dry||||lib_ecology_ground_grass_dry.png|||||||||||||||||||||||||||||||||||||||||||||||||
#ground_leaf_litter||||lib_ecology_ground_leaf_litter.png|||||||||||||||||||||||||||||||||||||||||||||||||
#ground_leaf_litter_2||||lib_ecology_ground_leaf_litter_2.png|||||||||||||||||||||||||||||||||||||||||||||||||
#REFACTOR|||||||||||||||||||||||||||||||||||||||||||||||||||||
#hot_cobble||||caverealms_hot_cobble.png|||||||||||||||||||||||||||||||||||||||||||||||||
#huge_mushroom_cap||||vmg_mushroom_giant_cap.png|||||||||||||||||||||||||||||||||||||||||||||||||
#icicle_down||||caverealms_thin_ice.png|||||||||||||||||||||||||||||||||||||||||||||||||
#icicle_up||||caverealms_thin_ice.png|||||||||||||||||||||||||||||||||||||||||||||||||
#MISC|||||||||||||||||||||||||||||||||||||||||||||||||||||
#lightstring||||lightstring.png|||||||||||||||||||||||||||||||||||||||||||||||||
#logpile||||default_tree.png|||||||||||||||||||||||||||||||||||||||||||||||||
#MUSHROOMS|||||||||||||||||||||||||||||||||||||||||||||||||||||
mushroom_01_trunk|Mushroom 01 Trunk|||lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_02_trunk|Mushroom 02 Trunk|||lib_ecology_mushroom_02_trunk_top.png,lib_ecology_mushroom_02_trunk_top.png,lib_ecology_mushroom_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_03_trunk|Mushroom 03 Trunk|||lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_03_trunk.png||||nodebox|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_blue_cave|Mushroom - Blue Cave|||lib_ecology_mushroom_blue_cave.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_brown|Mushroom - Brown|||lib_ecology_mushroom_brown.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_cap_blue|Mushroom - Cap Blue|||lib_ecology_mushroom_cap_blue.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_brown_01|Mushroom - Cap Brown 01|||lib_ecology_mushroom_cap_brown_01.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_brown_02|Mushroom - Cap Brown 02|||lib_ecology_mushroom_cap_brown_02.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_green_dk|Mushroom - Cap Green Dark|||lib_ecology_mushroom_cap_green_dk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_green_lt|Mushroom - Cap Green Light|||lib_ecology_mushroom_cap_green_lt.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_green_spotted|Mushroom - Cap Green Spotted|||lib_ecology_mushroom_cap_green_spotted.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_mottled|Mushroom - Cap Mottled|||lib_ecology_mushroom_cap_mottled.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_purple|Mushroom - Cap Purple|||lib_ecology_mushroom_cap_purple.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_red_01|Mushroom - Cap Red 01|||lib_ecology_mushroom_cap_red_01.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_red_02|Mushroom - Cap Red 02|||lib_ecology_mushroom_cap_red_02.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_red_spotted|Mushroom - Cap Red Spotted|||lib_ecology_mushroom_cap_red_spotted.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_cap_tan|Mushroom - Cap Tan|||lib_ecology_mushroom_cap_tan.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_fire|Mushroom - Fire|||lib_ecology_mushroom_fire.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_glow|Mushroom - Glow|||lib_ecology_mushroom_glow.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#mushroom_glow_fungus||||lib_ecology_mushroom_glow_fungus.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_ground_fungus|Mushroom - Ground Fungus|||lib_ecology_mushroom_ground_fungus.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#mushroom_pink||||moreplants_mushroom_top.png|||||||||||||||||||||||||||||||||||||||||||||||||
mushroom_milkcap|Mushroom - Milkcap|||lib_ecology_mushroom_milkcap.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_parasol|Mushroom - Parasol|||lib_ecology_mushroom_parasol.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_purple|Mushroom - Purple|||lib_ecology_mushroom_purple.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_red|Mushroom - Red|||lib_ecology_mushroom_red.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_red_large|Mushroom - Red Large|||lib_ecology_mushroom_red_large.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_shaggy_mane|Mushroom - shaggy_mane|||lib_ecology_mushroom_shaggy_mane.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_spores|Mushroom 01 Spores|||lib_ecology_mushroom_01_spores.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
mushroom_spores_03|Mushroom - Spores 03|||lib_ecology_mushroom_spores_03.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#mushroom_steak||||vmg_mushroom_steak.png||||craftitem|||||||||||||||||||||||||||||||||||||||||||||
mushroom_stone|Mushroom - Stone|||lib_ecology_mushroom_stone.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_sulfur_tuft_1|Mushroom - sulfur_tuft_1|||lib_ecology_mushroom_sulfur_tuft_32.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_sulfur_tuft_2|Mushroom - sulfur_tuft_2|||lib_ecology_mushroom_sulfur_tuft_64.png||||plantlike|4|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
mushroom_white|Mushroom - White|||lib_ecology_mushroom_white.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#PLANTS|||||||||||||||||||||||||||||||||||||||||||||||||||||
plant_aloe_vera|Plant - Aloe Vera|||lib_ecology_plant_aloe_vera.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_anemone|Plant - Anemone|||lib_ecology_coral_skeleton.png|lib_ecology_plant_anemone.png false|lib_ecology_plant_anemone.png|lib_ecology_plant_anemone.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_skeleton|||-0.5,-0.5,-0.5,0.5,0,0.5|||||||||||||||
plant_arrow_arum|Arrow Arum|||lib_ecology_plant_arrow_arum.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_arrow_arum_water_sand|Plant - Arrow Anum Sand|||lib_materials_sand_default.png|lib_ecology_plant_arrow_arum.png false|lib_ecology_plant_arrow_arum.png|lib_ecology_plant_arrow_arum.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_ecology:plant_arrow_arum_water_sand|lib_ecology:plant_arrow_arum_water_sand|||||||||||||||||
plant_arrow_arum_water_soil|Plant - Arrow Anum Dirt|||lib_materials_dirt.png|lib_ecology_plant_arrow_arum.png false|lib_ecology_plant_arrow_arum.png|lib_ecology_plant_arrow_arum.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_ecology:plant_arrow_arum_water_soil|lib_ecology:plant_arrow_arum_water_soil|||||||||||||||||
plant_banana_1|Plant - Banana 1|||lib_ecology_plant_banana_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_banana_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_banana_2|Plant - Banana 2|||lib_ecology_plant_banana_2.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0||||||||||||||||||||||
plant_banana_tree_leaves|Plant - Banana Tree Leaves|||lib_ecology_plant_banana_2.png||||mesh|1.2||light|degrotate|||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3||fern_old.b3d|||||||||||||
plant_banana_tree_trunk|Plant - Banana Tree Trunk|||lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
plant_banana_tree_trunk_top||||lib_ecology_tree_banana_01_trunk_top.png||||plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||stone|lib_ecology:coral_skeleton||||||||||||||||||
plant_gourd_bottle_1|Plant - Bottle Gourd 1|||lib_ecology_plant_gourd_bottle_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_gourd_bottle_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_gourd_bottle_2|Plant - Bottle Gourd 2|||lib_ecology_plant_gourd_bottle_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_gourd_bottle_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_gourd_bottle_3|Plant - Bottle Gourd 3|||lib_ecology_plant_gourd_bottle_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_gourd_bottle_4||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_gourd_bottle_4|Plant - Bottle Gourd 4|||lib_ecology_plant_gourd_bottle_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_gourd_bottle_5||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_gourd_bottle_5|Plant - Bottle Gourd 5|||lib_ecology_plant_gourd_bottle_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_gourd_bottle_6||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_gourd_bottle_6|Plant - Bottle Gourd 6|||lib_ecology_plant_gourd_bottle_6.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_gourd_bottle_7||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_gourd_bottle_7|Plant - Bottle Gourd 7|||lib_ecology_plant_gourd_bottle_7.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0||lib_ecology:fruit_gourd_bottle|leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_bulrush|Plant - Bulrush|||lib_ecology_plant_bullrush.png||||plantlike|3|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#plant_bush_jungle_01||||lib_ecology_ground_grass.png|||||||||||||||||||||||||||||||||||||||||||||||||
plant_cattail|Plant - Cattail|||lib_ecology_plant_cattail.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_cattail_02|Plant - Cattail 02|||lib_ecology_plant_cattail_02.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_cattails_03|Plant - Cattails 03|||lib_ecology_plant_cattails_03.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_corn_1|Plant - Corn 1|||lib_ecology_plant_corn_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_corn_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_corn_2|Plant - Corn 2|||lib_ecology_plant_corn_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_corn_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_corn_3|Plant - Corn 3|||lib_ecology_plant_corn_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_corn_4||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_corn_4|Plant - Corn 4|||lib_ecology_plant_corn_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_corn_5||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_corn_5|Plant - Corn 5|||lib_ecology_plant_corn_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_corn_6||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_corn_6|Plant - Corn 6|||lib_ecology_plant_corn_6.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_corn_7||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_corn_7|Plant - Corn 7|||lib_ecology_plant_corn_7.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_corn_8||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_corn_8|Plant - Corn 8|||lib_ecology_plant_corn_8.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0||lib_ecology:fruit_corn|leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_1|Plant - Cotton 1|||lib_ecology_plant_cotton_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_cotton_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_2|Plant - Cotton 2|||lib_ecology_plant_cotton_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_cotton_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_3|Plant - Cotton 3|||lib_ecology_plant_cotton_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_cotton_4||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_4|Plant - Cotton 4|||lib_ecology_plant_cotton_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_cotton_5||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_5|Plant - Cotton 5|||lib_ecology_plant_cotton_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_cotton_6||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_6|Plant - Cotton 6|||lib_ecology_plant_cotton_6.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_cotton_7||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_7|Plant - Cotton 7|||lib_ecology_plant_cotton_7.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_cotton_8||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_cotton_8|Plant - Cotton 8|||lib_ecology_plant_cotton_8.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_crabgrass|Plant - Crabgrass|||lib_ecology_plant_crabgrass.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_creeper|Plant - Creeper|||lib_ecology_plant_creeper.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_curly|Plant - Curly flower|||lib_ecology_plant_curly.png||||plantlike|1.1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#plant_grass_reed||||lib_ecology_ground_grass.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_heath_gold|Plant - Heath Gold|||lib_ecology_plant_heath_gold.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_heath_green|Plant - Heath Green|||lib_ecology_plant_heath_green.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_heath_purple|Plant - Heath Purple|||lib_ecology_plant_heath_purple.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_heath_red|Plant - Heath Red|||lib_ecology_plant_heath_red.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_heath_sandwort|Plant - Heath Sandwort|||lib_ecology_plant_heath_sandwort.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_heath_saxifrage_purple|Plant - Heath Saxifrage Purple|||lib_ecology_plant_heath_saxifrage_purple.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_juncus|Plant - Juncus|||lib_ecology_plant_juncus.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_juncus_1|Plant - Juncus 1|||lib_ecology_plant_juncus_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_juncus_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_juncus_2|Plant - Juncus 2|||lib_ecology_plant_juncus_2.png||||plantlike|4||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_juncus_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_juncus_3|Plant - Juncus 3|||lib_ecology_plant_juncus_3.png||||plantlike|4||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_juncus_01|Plant - Juncus 01|||lib_ecology_plant_juncus_01.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_juncus_02|Plant - Juncus 02|||lib_ecology_plant_juncus_02.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_juncus_small|Plant - Juncus Small|||lib_ecology_plant_juncus_small.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_kelp_01|Plant - Kelp 01|||lib_materials_sand_default.png|lib_ecology_plant_kelp_01.png true|lib_ecology_plant_kelp_01.png|lib_ecology_plant_kelp_01.png|plantlike_rooted|||light|leveled|||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_materials:sand||||||||||||||||||
plant_kelp_02_1|Plant - Kelp 02 1|||lib_materials_sand_default.png|lib_ecology_plant_kelp_02_1.png true|lib_ecology_plant_kelp_02_1.png|lib_ecology_plant_kelp_02_1.png|plantlike_rooted|||light|leveled|||FALSE||||FALSE||1||TRUE|||FALSE|||plant_kelp_02_2||snappy 3,sea 1|||dirt|lib_materials:sand||||||||||||||||||
plant_kelp_02_2|Plant - Kelp 02 2|||lib_materials_sand_default.png|lib_ecology_plant_kelp_02_2.png true|lib_ecology_plant_kelp_02_2.png|lib_ecology_plant_kelp_02_2.png|plantlike_rooted|||light|leveled|||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_materials:sand||||||||||||||||||
plant_mangrove_fern|Plant - Mangrove Fern|||lib_ecology_plant_mangrove_fern.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_manna_reed|Plant - Manna Reed|||lib_ecology_plant_manna_reed.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1,color_dark_green 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_nettle_carduus|Plant - Carduus|||lib_ecology_plant_nettle_carduus.png||||plantlike|1.2||light||||FALSE||||FALSE|TRUE|1||TRUE||1|FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_nettle_cleavers|Plant - Cleavers|||lib_ecology_plant_nettle_cleavers.png||||plantlike|1.2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||source|3|0|FALSE|lib_ecology:plant_nettle_cleavers|lib_ecology:plant_nettle_cleavers|||||||
plant_nettle_giant_hogweed|Plant - Giant Hogweed|||lib_ecology_plant_nettle_giant_hogweed.png||||plantlike|2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_nettle_impatiens|Plant - Impatiens|||lib_ecology_plant_nettle_impatiens.png||||plantlike|1.4||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_nettle_nettle|Plant - Nettle|||lib_ecology_plant_nettle_nettle.png||||plantlike|1.4||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_nettle_scotch_broom|Plant - Scotch Broom|||lib_ecology_plant_nettle_scotch_broom.png||||mesh|||light||||FALSE||||||1||TRUE||||||||choppy 2,oddly_breakable_by_hand 1,flora 1,flammable 1|||leaves||||||nettle_scotch_broom.obj|||||||TRUE||||||
plant_palmetto_01|Plant - Palmetto 01|||lib_ecology_plant_palmetto_01.png||||plantlike|1.2||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_papyrus|Plant - Papyrus|||lib_ecology_plant_papyrus.png^(lib_ecology_plant_papyrus.png^[transformFX),lib_ecology_plant_papyrus.png^(lib_ecology_plant_papyrus.png^[transformFX),lib_ecology_plant_papyrus.png,lib_ecology_plant_papyrus.png^[transformFX,lib_ecology_plant_papyrus.png^[transformFX,lib_ecology_plant_papyrus.png||||nodebox|||light|facedir|||TRUE||||||||TRUE|||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||leaves|||-0.4375,-0.5,-0.1875,-0.3125,0.5,-0.0625;-0.1875,-0.5,0.3125,-0.0625,0.5,0.4375;0.0625,-0.5,-0.4375,0.1875,0.5,-0.3125;0.3125,-0.5,0.0625,0.4375,0.5,0.1875;-0.5,0.1875,-0.1875,-0.4375,0.3125,-0.0625;-0.0625,-0.3125,0.3125,0,-0.1875,0.4375;0,-0.0625,-0.4375,0.0625,0.0625,-0.3125;0.4375,0.25,0.0625,0.5,0.4375,0.1875;0.0625,0.1875,-0.5,0.1875,0.375,-0.4375;-0.4375,-0.3125,-0.0625,-0.3125,-0.1875,0;0.3125,-0.0625,0,0.4375,0.0625,0.0625;-0.1875,0.25,0.4375,-0.0625,0.4375,0.5||||||||||||||||
plant_pineapple_plant|Plant - Pineapple|||lib_ecology_plant_pineapple_plant.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_pineapple_plant||snappy 3,flammable 2,plant 1,attached_node 1,growing 1||lib_ecology:fruit_pineapple|leaves|||||||||||||||||||
plant_pineapple_plant_growing|Plant - Pineapple (Growing)|||lib_ecology_plant_pineapple_plant_growing.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_pineapple_plant||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_potato_1|Plant - Potato 1|||lib_ecology_plant_potato_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_potato_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_potato_2|Plant - Potato 2|||lib_ecology_plant_potato_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_potato_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_potato_3|Plant - Potato 3|||lib_ecology_plant_potato_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_potato_4||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_potato_4|Plant - Potato 4|||lib_ecology_plant_potato_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0||lib_ecology:fruit_potato|leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_reedmace|Plant - Reedmace|||lib_ecology_plant_reedmace.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_reedmace_1|Plant - Reedmace 1|||lib_ecology_plant_reedmace_1.png||||plantlike|4|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_reedmace_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_reedmace_2|Plant - Reedmace 2|||lib_ecology_plant_reedmace_2.png||||plantlike|4|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_reedmace_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_reedmace_3|Plant - Reedmace 3|||lib_ecology_plant_reedmace_3.png||||plantlike|4|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_reedmace_bottom|Plant - Reedmace Bottom|||lib_ecology_plant_reedmace_bottom.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_reedmace_sapling|Plant - Reedmace Sapling|||lib_ecology_plant_reedmace_sapling.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_reedmace_spikes|Plant - Reedmace Spikes|||lib_ecology_plant_reedmace_spikes.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_reedmace_top|Plant - Reedmace Top|||lib_ecology_plant_reedmace_top.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_reedmace_water|Plant - Reedmace Water|||lib_materials_dirt_mud_01.png|lib_ecology_plant_reedmace_water.png true|lib_ecology_plant_reedmace_water.png|lib_ecology_plant_reedmace_water.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_ecology:plant_reedmace_water|lib_ecology:plant_reedmace_water|||||||||||||||||
plant_reedmace_sapling_water|Plant - Reedmace Water|||lib_materials_dirt_mud_01.png|lib_ecology_plant_reedmace_sapling.png true|lib_ecology_plant_reedmace_sapling.png|lib_ecology_plant_reedmace_sapling.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_ecology:plant_reedmace_water|lib_ecology:plant_reedmace_water|||||||||||||||||
plant_seaweed|Plant - Seaweed|||lib_materials_sand_default.png|lib_ecology_plant_seaweed.png true|lib_ecology_plant_seaweed.png|lib_ecology_plant_seaweed.png|plantlike_rooted|||light|leveled|||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_materials:sand||||||||||||||||||
plant_seaweed2|Plant - Seaweed2|||lib_materials_sand_default.png|lib_ecology_plant_seaweed.png true|lib_ecology_plant_seaweed.png|lib_ecology_plant_seaweed.png|plantlike_rooted|||light|leveled|||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_materials:sand||||||||||||||||||
plant_seaweed3|Plant - Seaweed3|||lib_materials_sand_default.png|lib_ecology_plant_seaweed.png true|lib_ecology_plant_seaweed.png|lib_ecology_plant_seaweed.png|plantlike_rooted|||light|leveled|||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_materials:sand||||||||||||||||||
plant_strawberry_1|Plant - Strawberry 1|||lib_ecology_plant_strawberry_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_strawberry_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_strawberry_2|Plant - Strawberry 2|||lib_ecology_plant_strawberry_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_strawberry_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_strawberry_3|Plant - Strawberry 3|||lib_ecology_plant_strawberry_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_strawberry_4||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_strawberry_4|Plant - Strawberry 4|||lib_ecology_plant_strawberry_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_strawberry_5||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_strawberry_5|Plant - Strawberry 5|||lib_ecology_plant_strawberry_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_strawberry_6||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_strawberry_6|Plant - Strawberry 6|||lib_ecology_plant_strawberry_6.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_strawberry_7||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_strawberry_7|Plant - Strawberry 7|||lib_ecology_plant_strawberry_7.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_strawberry_8||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_strawberry_8|Plant - Strawberry 8|||lib_ecology_plant_strawberry_8.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0||lib_ecology:fruit_strawberry|leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_umbrella|Plant - Umbrella Weed|||lib_ecology_plant_umbrella.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_vine_01|Vine 01|||lib_ecology_plant_vine_01.png||lib_ecology_plant_vine_01.png|lib_ecology_plant_vine_01.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_02|Vine 02|||lib_ecology_plant_vine_02.png||lib_ecology_plant_vine_02.png|lib_ecology_plant_vine_02.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_03|Vine 03|||lib_ecology_plant_vine_03.png||lib_ecology_plant_vine_03.png|lib_ecology_plant_vine_03.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_ebony|Vine - Ebony|||lib_ecology_plant_vine_ebony.png||lib_ecology_plant_vine_ebony.png|lib_ecology_plant_vine_ebony.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_ebony_leaves|Vine - Ebony with Leaves|||lib_ecology_plant_vine_ebony_leaves.png||lib_ecology_plant_vine_ebony_leaves.png|lib_ecology_plant_vine_ebony_leaves.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_ebony_liana|Vine - Ebony Liana|||lib_ecology_plant_vine_ebony_liana.png||lib_ecology_plant_vine_ebony_liana.png|lib_ecology_plant_vine_ebony_liana.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_mahogany|Vine - Mahogany|||lib_ecology_plant_vine_mahogany.png||lib_ecology_plant_vine_mahogany.png|lib_ecology_plant_vine_mahogany.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_mahogany_flowers|Vine - Mahogany Flowers|||lib_ecology_plant_vine_mahogany_flowers.png||lib_ecology_plant_vine_mahogany_flowers.png|lib_ecology_plant_vine_mahogany_flowers.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_vine_mahogany_hanging|Vine - Mahogany Hanging|||lib_ecology_plant_vine_mahogany_hanging.png||lib_ecology_plant_vine_mahogany_hanging.png|lib_ecology_plant_vine_mahogany_hanging.png|signlike|||light|wallmounted|||FALSE||TRUE|||TRUE|1||TRUE|||FALSE|TRUE||||choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||wallmounted|||||||||||||||
plant_waterlily_pink|Waterlily with Pink Flower (no flower)|||lib_ecology_plant_waterlily_pink_noflower.png||lib_ecology_plant_waterlily_item.png|lib_ecology_plant_waterlily_item.png|mesh|0.5||light||||FALSE||||TRUE|TRUE|1||TRUE|TRUE|||||plant_waterlily_pink_with_flower||snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1|||leaves|lib_ecology:plant_waterlily_pink|lib_ecology:plant_waterlily_pink||-0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375|||||||||||||||
plant_waterlily_pink_with_flower|Waterlily with Pink Flower|||lib_ecology_plant_waterlily_pink.png||lib_ecology_plant_waterlily_item.png|lib_ecology_plant_waterlily_item.png|mesh|0.5||light||||FALSE||||TRUE|TRUE|1||TRUE|TRUE|||||||snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1|||leaves|lib_ecology:plant_waterlily_pink_with_flower|lib_ecology:plant_waterlily_pink_with_flower||-0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375|||||||||||||||
plant_waterlily_yellow|Waterlily with Yellow Flower (no flower)|||lib_ecology_plant_waterlily_yellow_noflower.png||lib_ecology_plant_waterlily_item.png|lib_ecology_plant_waterlily_item.png|mesh|0.5||light|facedir|||FALSE||||TRUE|TRUE|1||TRUE|TRUE|||||plant_waterlily_yellow_with_flower||snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1|||leaves|lib_ecology:plant_waterlily_yellow|lib_ecology:plant_waterlily_yellow||-0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375|||||||||||||||
plant_waterlily_yellow_with_flower|Waterlily with Yellow Flower|||lib_ecology_plant_waterlily_yellow.png||lib_ecology_plant_waterlily_item.png|lib_ecology_plant_waterlily_item.png|mesh|0.5||light|facedir|||FALSE||||TRUE|TRUE|1||TRUE|TRUE|||||||snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1|||leaves|lib_ecology:plant_waterlily_yellow_with_flower|lib_ecology:plant_waterlily_yellow_with_flower||-0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375|||||||||||||||
plant_weed|Plant - Weed|||lib_ecology_plant_weed.png||||plantlike|1.1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_weed_dead|Plant - Dead Weed|||lib_ecology_plant_weed_dead.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_weed_eye|Plant - Eye Weed|||lib_ecology_plant_weed_eye.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1||lib_ecology:fruit_eye|leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_wheat_1|Plant - Wheat 1|||lib_ecology_plant_wheat_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wheat_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wheat_2|Plant - Wheat 2|||lib_ecology_plant_wheat_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wheat_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wheat_3|Plant - Wheat 3|||lib_ecology_plant_wheat_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wheat_4||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wheat_4|Plant - Wheat 4|||lib_ecology_plant_wheat_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wheat_5||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wheat_5|Plant - Wheat 5|||lib_ecology_plant_wheat_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wheat_6||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wheat_6|Plant - Wheat 6|||lib_ecology_plant_wheat_6.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wheat_7||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wheat_7|Plant - Wheat 7|||lib_ecology_plant_wheat_7.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wheat_8||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wheat_8|Plant - Wheat 8|||lib_ecology_plant_wheat_8.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0||lib_ecology:fruit_wheat|leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wild_oat|Plant - Wild Oat|||lib_ecology_plant_wild_oat.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_wild_oat_dry|Plant - Dry Wild Oat|||lib_ecology_plant_wild_oat_dry.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_wild_onion_1|Wild Onion 1|||lib_ecology_plant_wild_onion_1.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wild_onion_2||snappy 3,flammable 2,plant 1,attached_node 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wild_onion_2|Wild Onion 2|||lib_ecology_plant_wild_onion_2.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wild_onion_3||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wild_onion_3|Wild Onion 3|||lib_ecology_plant_wild_onion_3.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wild_onion_4||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wild_onion_4|Wild Onion 4|||lib_ecology_plant_wild_onion_4.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||plant_wild_onion_5||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1|||leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_wild_onion_5|Wild Onion 5|||lib_ecology_plant_wild_onion_5.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0||lib_ecology:fruit_wild_onion|leaves||||-0.375,-0.5,-0.375,0.375,-0.3125,0.375|||||||||||||||
plant_willow_01|Plant - Willow 01|||lib_ecology_plant_willow_01.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
plant_willow_02|Plant - Willow 02|||lib_ecology_plant_willow_01.png^[transformFY||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#SEEDLING MOUND|||||||||||||||||||||||||||||||||||||||||||||||||||||
#river_water_flowing||||default_river_water.png|||||||||||||||||||||||||||||||||||||||||||||||||
#river_water_source||||default_river_water_source_animated.png|||||||||||||||||||||||||||||||||||||||||||||||||
#seedling_mound||||lib_seedling_dirt.png|||||||||||||||||||||||||||||||||||||||||||||||||
#SHRUBS|||||||||||||||||||||||||||||||||||||||||||||||||||||
shrub_crystal|Shrub - Crystal|||lib_ecology_shrub_crystal.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_deciduous|Shrub - Deciduous|||lib_ecology_shrub_deciduous.png||||mesh|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3||shrub.obj|||||||TRUE||||||
shrub_dry|Shrub - Dry|||lib_ecology_shrub_dry.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_fiery|Shrub - Fiery|||lib_ecology_shrub_fiery.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_hog_peanut|Shrub - Hog Peanut|||lib_ecology_shrub_hog_peanut.png||||mesh|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3||shrub.obj|||||||TRUE||||||
shrub_jungle|Shrub - Jungle|||lib_ecology_shrub_jungle.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_lush_01|Shrub - Lush 01|||lib_ecology_shrub_lush_01.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_lush_02|Shrub - Lush 02|||lib_ecology_shrub_lush_02.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_scorched|Shrub - Scorched|||lib_ecology_shrub_scorched.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_snowy|Shrub - Snowy|||lib_ecology_shrub_snowy.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
shrub_taiga|Shrub - Taiga|||lib_ecology_shrub_taiga.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
#ROCKS, CAVE, OTHER|||||||||||||||||||||||||||||||||||||||||||||||||||||
#small_rocks||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#small_rocks1||||default_desert_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#small_rocks2||||default_sandstone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#small_rocks3||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#small_rocks4||||default_desert_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#small_rocks5||||default_sandstone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#small_rocks6||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stalactite||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stalactite_mossy||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stalactite_slimy||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stalagmite||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stalagmite_mossy||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stalagmite_slimy||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stone_ladder||||stone_ladder.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stone_with_algae||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stone_with_lichen||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stone_with_moss||||default_stone.png|||||||||||||||||||||||||||||||||||||||||||||||||
#stone_with_salt||||caverealms_salty2.png|||||||||||||||||||||||||||||||||||||||||||||||||
#thin_ice||||caverealms_thin_ice.png|||||||||||||||||||||||||||||||||||||||||||||||||
#Node_Name|Description|Alias_Mod|Alias_Node|Tile_String|Special_Tiles|Inv_Image|Wield_Image|Draw_Type|Vis_Scale|Wld_Scale|Param_Type|ParamType2|Place_Param2|LightSource|Walkable|Pointable|Climbable|Diggable|Buildable|Floodable|Waving|Use_Alpha|Sun_Prop|Liquid_Point|Damage_Per_Second|Grnd_Cnt|Leg_wall|MaxLight|Grow|Eat|Groups|Max_Drops|Drops|Sounds|Dig_Predict|Place_Predict|NodeBox|SelBox|ColBox|Mesh|LiquidType|LiquidViscosity|LiquidRange|LiquidRenew|LiquidAltSource|LiquidAltFlow|OnConstruct|OnTimer|TimerTrig|TimerAct|AfterPlace|OnPlace|
#TREES|||||||||||||||||||||||||||||||||||||||||||||||||||||
tree_acacia_leaves|Acacia Leaves|||lib_ecology_tree_acacia_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_acacia_sapling|Acacia Sapling|||lib_ecology_tree_acacia_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves||||-0.25,-0.5,-0.25,0.25,0.4375,0.25|||||||||||||||
tree_acacia_trunk|Acacia Trunk|||lib_ecology_tree_acacia_trunk_top.png,lib_ecology_tree_acacia_trunk_top.png,lib_ecology_tree_acacia_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_acacia_trunk_allface_side|Acacia Block Side|||lib_ecology_tree_acacia_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_acacia_trunk_allface_top|Acacia Block Top|||lib_ecology_tree_acacia_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_acacia_wood|Acacia Wood|||lib_ecology_tree_acacia_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_apple_leaves|Apple Leaves|||lib_ecology_tree_apple_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_apple_sapling|Apple Sapling|||lib_ecology_tree_apple_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_apple_trunk|Apple Trunk|||lib_ecology_tree_apple_trunk_top.png,lib_ecology_tree_apple_trunk_top.png,lib_ecology_tree_apple_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_apple_trunk_allface_side|Apple Block Side|||lib_ecology_tree_apple_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_apple_trunk_allface_top|Apple Block Top|||lib_ecology_tree_apple_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_apple_wood|Apple Wood|||lib_ecology_tree_apple_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_ash_leaves|Ash Leaves|||lib_ecology_tree_ash_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_ash_sapling|Ash Sapling|||lib_ecology_tree_ash_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_ash_trunk|Ash Trunk|||lib_ecology_tree_ash_trunk_top.png,lib_ecology_tree_ash_trunk_top.png,lib_ecology_tree_ash_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_ash_trunk_allface_side|Ash Block Side|||lib_ecology_tree_ash_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ash_trunk_allface_top|Ash Block Top|||lib_ecology_tree_ash_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ash_wood|Ash Wood|||lib_ecology_tree_ash_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_aspen_leaves|Aspen Leaves|||lib_ecology_tree_aspen_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_aspen_sapling|Aspen Sapling|||lib_ecology_tree_aspen_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_aspen_trunk|Aspen Trunk|||lib_ecology_tree_aspen_trunk_top.png,lib_ecology_tree_aspen_trunk_top.png,lib_ecology_tree_aspen_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_aspen_trunk_allface_side|Aspen Block Side|||lib_ecology_tree_aspen_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_aspen_trunk_allface_top|Aspen Block Top|||lib_ecology_tree_aspen_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_aspen_wood|Aspen Wood|||lib_ecology_tree_aspen_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_bamboo_01_leaves|Bamboo 01 Leaves|||lib_ecology_tree_bamboo_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_bamboo_01_sapling|Bamboo 01 Sapling|||lib_ecology_tree_bamboo_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_bamboo_01_trunk|Bamboo 01 Trunk|||lib_ecology_tree_bamboo_01_trunk.png^[transformR90^lib_ecology_tree_bamboo_01_trunk.png,lib_ecology_tree_bamboo_01_trunk.png^[transformR90^lib_ecology_tree_bamboo_01_trunk.png,lib_ecology_tree_bamboo_01_trunk.png,lib_ecology_tree_bamboo_01_trunk.png^[transformFX,lib_ecology_tree_bamboo_01_trunk.png^[transformFX,lib_ecology_tree_bamboo_01_trunk.png||||nodebox|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||-0.1875,-0.5,-0.1875,0.25,0.5,0.25;-0.25,0.3125,-0.0625,-0.1875,0.4375,0.125;-0.0625,0.3125,-0.25,0.125,0.4375,-0.1875;0.25,0.125,-0.0625,0.3125,0.4375,0.125;-0.0625,0.125,0.25,0.125,0.4375,0.3125;-0.25,-0.4375,-0.0625,-0.1875,-0.3125,0.125;-0.0625,-0.4375,-0.25,0.125,-0.3125,-0.1875;-0.375,-0.375,-0.0625,-0.25,-0.3125,0.125;-0.0625,-0.375,-0.375,0.125,-0.3125,-0.25;0.3125,0.1875,-0.0625,0.375,0.25,0.125;0.375,0.25,-0.0625,0.4375,0.3125,0.125;-0.0625,0.1875,0.3125,0.125,0.25,0.375;-0.0625,0.25,0.375,0.125,0.3125,0.4375||||||||||||||||
tree_bamboo_01_wood|Bamboo 01 Wood|||lib_ecology_tree_bamboo_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_bamboo_02_leaves|Bamboo 02 Leaves|||lib_ecology_tree_bamboo_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_bamboo_02_sapling|Bamboo 02 Sapling|||lib_ecology_tree_bamboo_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_bamboo_02_trunk|Bamboo 02 Trunk|||lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk.png||||nodebox|||light|facedir|||TRUE||||||||TRUE|||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||-0.1875,-0.5,-0.1875,0.1875,0.5,0.1875;-0.5,-0.5,0,0.5,0.5,0;0.00470524,-0.5,-0.5,0.00470524,0.5,0.5||||||||||||||||
tree_bamboo_02_trunk_with_leaves|Bamboo 02 Trunk with Leaves|||lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk.png||||nodebox|||light|facedir|||TRUE||||||||TRUE|||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||-0.1875,-0.5,-0.1875,0.1875,0.5,0.1875;-0.5,-0.5,0,0.5,0.5,0;0.00470524,-0.5,-0.5,0.00470524,0.5,0.5||||||||||||||||
tree_bamboo_02_wood|Bamboo 02 Wood|||lib_ecology_tree_bamboo_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||-0.1875,-0.5,-0.1875,0.1875,0.5,0.1875;-0.5,-0.5,0,0.5,0.5,0;0.00470524,-0.5,-0.5,0.00470524,0.5,0.5||||||||||||||||
tree_bamboo_small|Small Bamboo|||lib_ecology_plant_bamboo_small.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
tree_bamboo_small_top|Small Bamboo Top|||lib_ecology_plant_bamboo_small_top.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
tree_bamboo_with_leaves|Bamboo with Leaves|||lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk.png^lib_ecology_tree_bamboo_02_trunk.png||||nodebox|||light|facedir|||TRUE||||||||TRUE|||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_banana_01_leaves|Banana 01 Leaves|||lib_ecology_tree_banana_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_banana_01_sapling|Banana 01 Sapling|||lib_ecology_tree_banana_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_banana_01_trunk|Banana 01 Trunk|||lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_banana_01_trunk_allface_side|Banana 01 Block Side|||lib_ecology_tree_banana_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_banana_01_trunk_allface_top|Banana 01 Block Top|||lib_ecology_tree_banana_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_banana_01_wood|Banana 01 Wood|||lib_ecology_tree_banana_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_baobab_leaves|Baobab Leaves|||lib_ecology_tree_baobab_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_baobab_sapling|Baobab Sapling|||lib_ecology_tree_baobab_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_baobab_trunk|Baobab Trunk|||lib_ecology_tree_baobab_trunk_top.png,lib_ecology_tree_baobab_trunk_top.png,lib_ecology_tree_baobab_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_baobab_trunk_allface_side|Baobab Block Side|||lib_ecology_tree_baobab_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_baobab_trunk_allface_top|Baobab Block Top|||lib_ecology_tree_baobab_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_baobab_wood|Baobab Wood|||lib_ecology_tree_baobab_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_beech_leaves|Beech Leaves|||lib_ecology_tree_beech_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_beech_sapling|Beech Sapling|||lib_ecology_tree_beech_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_beech_southern_leaves|Southern Beech Leaves|||lib_ecology_tree_beech_southern_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_beech_southern_sapling|Southern Beech Sapling|||lib_ecology_tree_beech_southern_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_beech_southern_trunk|Southern Beech Trunk|||lib_ecology_tree_beech_southern_trunk_top.png,lib_ecology_tree_beech_southern_trunk_top.png,lib_ecology_tree_beech_southern_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_beech_southern_trunk_allface_side|Southern Beech Block Side|||lib_ecology_tree_beech_southern_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_beech_southern_trunk_allface_top|Southern Beech Block Top|||lib_ecology_tree_beech_southern_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_beech_southern_wood|Southern Beech Wood|||lib_ecology_tree_beech_southern_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_beech_trunk|Beech Trunk|||lib_ecology_tree_beech_trunk_top.png,lib_ecology_tree_beech_trunk_top.png,lib_ecology_tree_beech_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_beech_trunk_allface_side|Beech Block Side|||lib_ecology_tree_beech_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_beech_trunk_allface_top|Beech Block Top|||lib_ecology_tree_beech_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_beech_wood|Beech Wood|||lib_ecology_tree_beech_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_birch_01_leaves|Birch 01 Leaves|||lib_ecology_tree_birch_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_birch_01_sapling|Birch 01 Sapling|||lib_ecology_tree_birch_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_birch_01_trunk|Birch 01 Trunk|||lib_ecology_tree_birch_01_trunk_top.png,lib_ecology_tree_birch_01_trunk_top.png,lib_ecology_tree_birch_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_birch_01_trunk_allface_side|Birch 01 Block Side|||lib_ecology_tree_birch_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_birch_01_trunk_allface_top|Birch 01 Block Top|||lib_ecology_tree_birch_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_birch_01_wood|Birch 01 Wood|||lib_ecology_tree_birch_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_birch_02_leaves|Birch 02 Leaves|||lib_ecology_tree_birch_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_birch_02_sapling|Birch 02 Sapling|||lib_ecology_tree_birch_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_birch_02_trunk|Birch 02 Trunk|||lib_ecology_tree_cedar_leaves.png,lib_ecology_tree_cedar_leaves.png,lib_ecology_tree_birch_02_wood.png||||nodebox|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||-0.25,-0.5,-0.25,0.25,0.5,0.25|-0.25,-0.5,-0.25,0.25,0.5,0.25|||||||||||||||
tree_birch_02_wood|Birch 02 Wood|||lib_ecology_tree_birch_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_cedar_leaves|Cedar Leaves|||lib_ecology_tree_cedar_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_cedar_sapling|Cedar Sapling|||lib_ecology_tree_cedar_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_cedar_trunk|Cedar Trunk|||lib_ecology_tree_cedar_trunk_top.png,lib_ecology_tree_cedar_trunk_top.png,lib_ecology_tree_cedar_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_cedar_trunk_allface_side|Cedar Block Side|||lib_ecology_tree_cedar_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_cedar_trunk_allface_top|Cedar Block Top|||lib_ecology_tree_cedar_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_cedar_wood|Cedar Wood|||lib_ecology_tree_cedar_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_cherry_blossom_leaves|Cherry Blossom Leaves|||lib_ecology_tree_cherry_blossom_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_cherry_blossom_sapling|Cherry Blossom Sapling|||lib_ecology_tree_cherry_blossom_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_cherry_blossom_trunk|Cherry Blossom Trunk|||lib_ecology_tree_cherry_blossom_trunk_top.png,lib_ecology_tree_cherry_blossom_trunk_top.png,lib_ecology_tree_cherry_blossom_trunk.png||||nodebox|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||-0.25,-0.5,-0.25,0.25,0.5,0.25|-0.25,-0.5,-0.25,0.25,0.5,0.25|||||||||||||||
tree_cherry_blossom_wood|Cherry Blossom Wood|||lib_ecology_tree_cherry_blossom_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_cherry_leaves|Cherry Leaves|||lib_ecology_tree_cherry_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_cherry_sapling|Cherry Sapling|||lib_ecology_tree_cherry_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_cherry_trunk|Cherry Trunk|||lib_ecology_tree_cherry_trunk_top.png,lib_ecology_tree_cherry_trunk_top.png,lib_ecology_tree_cherry_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_cherry_trunk_allface_side|Cherry Block Side|||lib_ecology_tree_cherry_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_cherry_trunk_allface_top|Cherry Block Top|||lib_ecology_tree_cherry_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_cherry_wood|Cherry Wood|||lib_ecology_tree_cherry_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_chestnut_leaves|Chestnut Leaves|||lib_ecology_tree_chestnut_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_chestnut_sapling|Chestnut Sapling|||lib_ecology_tree_chestnut_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_chestnut_trunk|Chestnut Trunk|||lib_ecology_tree_chestnut_trunk_top.png,lib_ecology_tree_chestnut_trunk_top.png,lib_ecology_tree_chestnut_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_chestnut_trunk_allface_side|Chestnut Block Side|||lib_ecology_tree_chestnut_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_chestnut_trunk_allface_top|Chestnut Block Top|||lib_ecology_tree_chestnut_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_chestnut_wood|Chestnut Wood|||lib_ecology_tree_chestnut_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_chestnut_american_leaves|American Chestnut Leaves|||lib_ecology_tree_chestnut_american_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_chestnut_american_sapling|American Chestnut Sapling|||lib_ecology_tree_chestnut_american_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_chestnut_american_trunk|American Chestnut Trunk|||lib_ecology_tree_chestnut_american_trunk_top.png,lib_ecology_tree_chestnut_american_trunk_top.png,lib_ecology_tree_chestnut_american_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_chestnut_american_trunk_allface_side|American Chestnut Block Side|||lib_ecology_tree_chestnut_american_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_chestnut_american_trunk_allface_top|American Chestnut Block Top|||lib_ecology_tree_chestnut_american_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_chestnut_american_wood|American Chestnut Wood|||lib_ecology_tree_chestnut_american_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_chestnut_american_burr|American Chestnut Burr|||lib_ecology_tree_chestnut_american_burr.png||||plantlike|1||light||||FALSE||||||||TRUE|||FALSE|||||fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1|||leaves||||-0.35,-0.5,-0.35,0.35,0.5,0.35|||||||||||||||
tree_clementine_leaves|Clementine Leaves|||lib_ecology_tree_clementine_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_clementine_sapling|Clementine Sapling|||lib_ecology_tree_clementine_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_clementine_trunk|Clementine Trunk|||lib_ecology_tree_clementine_trunk_top.png,lib_ecology_tree_clementine_trunk_top.png,lib_ecology_tree_clementine_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_clementine_trunk_allface_side|Clementine Block Side|||lib_ecology_tree_clementine_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_clementine_trunk_allface_top|Clementine Block Top|||lib_ecology_tree_clementine_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_clementine_wood|Clementine Wood|||lib_ecology_tree_clementine_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_conifers_leaves|Conifers Leaves|||lib_ecology_tree_conifers_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_conifers_sapling|Conifers Sapling|||lib_ecology_tree_conifers_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_conifers_trunk|Conifers Trunk|||lib_ecology_tree_conifers_trunk_top.png,lib_ecology_tree_conifers_trunk_top.png,lib_ecology_tree_conifers_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_conifers_trunk_allface_side|Conifers Block Side|||lib_ecology_tree_conifers_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_conifers_trunk_allface_top|Conifers Block Top|||lib_ecology_tree_conifers_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_conifers_wood|Conifers Wood|||lib_ecology_tree_conifers_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_cypress_leaves|Cypress Leaves|||lib_ecology_tree_cypress_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_cypress_sapling|Cypress Sapling|||lib_ecology_tree_cypress_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_cypress_trunk|Cypress Trunk|||lib_ecology_tree_cypress_trunk_top.png,lib_ecology_tree_cypress_trunk_top.png,lib_ecology_tree_cypress_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_cypress_trunk_allface_side|Cypress Block Side|||lib_ecology_tree_cypress_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_cypress_trunk_allface_top|Cypress Block Top|||lib_ecology_tree_cypress_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_cypress_wood|Cypress Wood|||lib_ecology_tree_cypress_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_default_leaves|Default Leaves|||lib_ecology_tree_default_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_default_sapling|Default Sapling|||lib_ecology_tree_default_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_default_trunk|Default Trunk|||lib_ecology_tree_default_trunk_top.png,lib_ecology_tree_default_trunk_top.png,lib_ecology_tree_default_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_default_trunk_allface_side|Default Block Side|||lib_ecology_tree_default_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_default_trunk_allface_top|Default Block Top|||lib_ecology_tree_default_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_default_wood|Default Wood|||lib_ecology_tree_default_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_desert_palm|Desert Palm|||lib_ecology_plant_desert_palm.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
tree_dry_leaves|Dry Leaves|||lib_ecology_tree_dry_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_dry_sapling|Dry Sapling|||lib_ecology_tree_dry_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_dry_trunk|Dry Trunk|||lib_ecology_tree_dry_trunk_top.png,lib_ecology_tree_dry_trunk_top.png,lib_ecology_tree_dry_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_dry_trunk_allface_side|Dry Block Side|||lib_ecology_tree_dry_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_dry_trunk_allface_top|Dry Block Top|||lib_ecology_tree_dry_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_dry_wood|Dry Wood|||lib_ecology_tree_dry_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_ebony_leaves|Ebony Leaves|||lib_ecology_tree_ebony_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_ebony_sapling|Ebony Sapling|||lib_ecology_tree_ebony_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_ebony_trunk|Ebony Trunk|||lib_ecology_tree_ebony_trunk_top.png,lib_ecology_tree_ebony_trunk_top.png,lib_ecology_tree_ebony_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_ebony_trunk_allface_side|Ebony Block Side|||lib_ecology_tree_ebony_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ebony_trunk_allface_top|Ebony Block Top|||lib_ecology_tree_ebony_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ebony_wood|Ebony Wood|||lib_ecology_tree_ebony_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_eucalyptus_leaves|Eucalyptus Leaves|||lib_ecology_tree_eucalyptus_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_eucalyptus_sapling|Eucalyptus Sapling|||lib_ecology_tree_eucalyptus_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||schem_tree_eucalyptus_01,schem_tree_eucalyptus_large_01||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_eucalyptus_trunk|Eucalyptus Trunk|||lib_ecology_tree_eucalyptus_trunk_top.png,lib_ecology_tree_eucalyptus_trunk_top.png,lib_ecology_tree_eucalyptus_trunk.png||||||||light|facedir|||TRUE||||||||||||FALSE||||choppy = 1, flammable = 2, tree = 1, lib_ecology_tree = 1||wood|||||||||||||||||||
tree_eucalyptus_trunk_allface_side|Eucalyptus Block Side|||lib_ecology_tree_eucalyptus_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_eucalyptus_trunk_allface_top|Eucalyptus Block Top|||lib_ecology_tree_eucalyptus_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_eucalyptus_wood|Eucalyptus Wood|||lib_ecology_tree_eucalyptus_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_fern_giant_crown|Giant Fern Crown|||lib_ecology_tree_fern_giant_crown.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant_leaves|Giant Fern Leaves|||lib_ecology_tree_fern_giant_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant_leaves_big|Giant Fern Leaves Big|||lib_ecology_tree_fern_giant_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant_leaves_end|Giant Fern Leaves End|||lib_ecology_tree_fern_giant_leaves_end.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant_sapling|Giant Fern Sapling|||lib_ecology_tree_fern_giant_sapling.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant_trunk|Giant Fern Trunk|||lib_ecology_tree_fern_giant_trunk_top.png,lib_ecology_tree_fern_giant_trunk_top.png,lib_ecology_tree_fern_giant_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_fern_giant_trunk_top|Gian Fern Trunk Top|||lib_ecology_tree_fern_giant_leaves_cross.png,lib_ecology_tree_fern_giant_trunk_top.png,lib_ecology_tree_fern_giant_trunk.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant2_crown|Giant Fern2 Crown|||lib_ecology_fern_giant_tree_crown2.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant2_leaves|Giant Fern2 Leaves|||lib_ecology_fern_giant_tree_leaves2.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant2_leaves_end|Giant Fern2 Leaves End|||lib_ecology_fern_giant_tree_leaves_end2.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_giant2_trunk_top|Giant Fern2 Trunk Top|||lib_ecology_fern_giant_tree_leaves_cross2.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_fern_small_leaves_01|Small Fern Leaves 01|||lib_ecology_tree_fern_small_01_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_small_leaves_02|Small Fern Leaves 02|||lib_ecology_tree_fern_small_02_leaves.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_small_sapling|Small Fern Sapling|||lib_ecology_tree_fern_small_sapling.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_fern_small_trunk|Small Fern Trunk|||lib_ecology_tree_fern_small_trunk_top.png,lib_ecology_tree_fern_small_trunk_top.png,lib_ecology_tree_fern_small_trunk.png||||nodebox|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||-0.5,0.5,-0.5,0.5,0.5,0.5;-0.125,-0.5,-0.125,0.125,0.5,0.125|-0.125,-0.5,-0.125,0.125,0.5,0.125|||||||||||||||0.142857142857143
tree_fir_coast_leaves|Coast Fir Leaves|||lib_ecology_tree_fir_coast_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||0.125
tree_fir_coast_sapling|Coast Fir Sapling|||lib_ecology_tree_fir_coast_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_fir_coast_trunk|Coast Fir Trunk|||lib_ecology_tree_fir_coast_trunk_top.png,lib_ecology_tree_fir_coast_trunk_top.png,lib_ecology_tree_fir_coast_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_fir_coast_trunk_allface_side|Coast Fir Block Side|||lib_ecology_tree_fir_coast_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_fir_coast_trunk_allface_top|Coast Fir Block Top|||lib_ecology_tree_fir_coast_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_fir_coast_wood|Coast Fir Wood|||lib_ecology_tree_fir_coast_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_fir_doug_leaves|Douglas Fir Leaves|||lib_ecology_tree_fir_doug_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_fir_doug_sapling|Douglas Fir Sapling|||lib_ecology_tree_fir_doug_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_fir_doug_trunk|Douglas Fir Trunk|||lib_ecology_tree_fir_doug_trunk_top.png,lib_ecology_tree_fir_doug_trunk_top.png,lib_ecology_tree_fir_doug_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_fir_doug_trunk_allface_side|Douglas Fir Block Side|||lib_ecology_tree_fir_doug_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_fir_doug_trunk_allface_top|Douglas Fir Block Top|||lib_ecology_tree_fir_doug_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_fir_doug_wood|Douglas Fir Wood|||lib_ecology_tree_fir_doug_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_fir_leaves|Fir Leaves|||lib_ecology_tree_fir_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_fir_sapling|Fir Sapling|||lib_ecology_tree_fir_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_fir_trunk|Fir Trunk|||lib_ecology_tree_fir_trunk_top.png,lib_ecology_tree_fir_trunk_top.png,lib_ecology_tree_fir_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_fir_trunk_allface_side|Fir Block Side|||lib_ecology_tree_fir_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_fir_trunk_allface_top|Fir Block Top|||lib_ecology_tree_fir_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_fir_wood|Fir Wood|||lib_ecology_tree_fir_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_frost_leaves|Frost Leaves|||lib_ecology_tree_frost_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_frost_sapling|Frost Sapling|||lib_ecology_tree_frost_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_frost_trunk|Frost Trunk|||lib_ecology_tree_frost_trunk_top.png,lib_ecology_tree_frost_trunk_top.png,lib_ecology_tree_frost_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_frost_trunk_allface_side|Frost Block Side|||lib_ecology_tree_frost_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_frost_trunk_allface_top|Frost Block Top|||lib_ecology_tree_frost_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_frost_wood|Frost Wood|||lib_ecology_tree_frost_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_generic_brown_trunk|Generic Brown Trunk|||lib_ecology_tree_generic_brown_trunk_top.png,lib_ecology_tree_generic_brown_trunk_top.png,lib_ecology_tree_generic_brown_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_generic_green_trunk|Generic Green Trunk|||lib_ecology_tree_generic_green_trunk_top.png,lib_ecology_tree_generic_green_trunk_top.png,lib_ecology_tree_generic_green_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_generic_grey_trunk|Generic Grey Trunk|||lib_ecology_tree_generic_grey_trunk_top.png,lib_ecology_tree_generic_grey_trunk_top.png,lib_ecology_tree_generic_grey_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_generic_jungle_02_trunk|Generic Jungle 02 Trunk|||lib_ecology_tree_generic_jungle_02_trunk_top.png,lib_ecology_tree_generic_jungle_02_trunk_top.png,lib_ecology_tree_generic_jungle_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_generic_jungle_03_trunk|Generic Jungle 03 Trunk|||lib_ecology_tree_generic_jungle_03_trunk_top.png,lib_ecology_tree_generic_jungle_03_trunk_top.png,lib_ecology_tree_generic_jungle_03_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_ginkgo_leaves|Ginkgo Leaves|||lib_ecology_tree_ginkgo_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_ginkgo_sapling|Ginkgo Sapling|||lib_ecology_tree_ginkgo_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_ginkgo_trunk|Ginkgo Trunk|||lib_ecology_tree_ginkgo_trunk_top.png,lib_ecology_tree_ginkgo_trunk_top.png,lib_ecology_tree_ginkgo_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_ginkgo_trunk_allface_side|Ginkgo Block Side|||lib_ecology_tree_ginkgo_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ginkgo_trunk_allface_top|Ginkgo Block Top|||lib_ecology_tree_ginkgo_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ginkgo_wood|Ginkgo Wood|||lib_ecology_tree_ginkgo_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_ipe_yellow_leaves|Yellow Ipe Leaves|||lib_ecology_tree_ipe_yellow_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_ipe_yellow_sapling|Yellow Ipe Sapling|||lib_ecology_tree_ipe_yellow_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_ipe_yellow_trunk|Yellow Ipe Trunk|||lib_ecology_tree_ipe_yellow_trunk_top.png,lib_ecology_tree_ipe_yellow_trunk_top.png,lib_ecology_tree_ipe_yellow_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_ipe_yellow_trunk_allface_side|Yellow Ipe Block Side|||lib_ecology_tree_ipe_yellow_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ipe_yellow_trunk_allface_top|Yellow Ipe Block Top|||lib_ecology_tree_ipe_yellow_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_ipe_yellow_wood|Yellow Ipe Wood|||lib_ecology_tree_ipe_yellow_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_jungle_01_leaves|Jungle 01 Leaves|||lib_ecology_tree_jungle_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_jungle_01_sapling|Jungle 01 Sapling|||lib_ecology_tree_jungle_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_jungle_01_trunk|Jungle 01 Trunk|||lib_ecology_tree_jungle_01_trunk_top.png,lib_ecology_tree_jungle_01_trunk_top.png,lib_ecology_tree_jungle_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_jungle_01_trunk_allface_side|Jungle 01 Block Side|||lib_ecology_tree_jungle_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_jungle_01_trunk_allface_top|Jungle 01 Block Top|||lib_ecology_tree_jungle_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_jungle_01_wood|Jungle 01 Wood|||lib_ecology_tree_jungle_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_jungle_02_leaves|Jungle 02 Leaves|||lib_ecology_tree_jungle_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_jungle_02_sapling|Jungle 02 Sapling|||lib_ecology_tree_jungle_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_jungle_02_trunk|Jungle 02 Trunk|||lib_ecology_tree_jungle_02_trunk_top.png,lib_ecology_tree_jungle_02_trunk_top.png,lib_ecology_tree_jungle_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_jungle_02_trunk_allface_side|Jungle 02 Block Side|||lib_ecology_tree_jungle_02_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_jungle_02_trunk_allface_top|Jungle 02 Block Top|||lib_ecology_tree_jungle_02_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_jungle_02_wood|Jungle 02 Wood|||lib_ecology_tree_jungle_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_jungle_03_leaves|Jungle 03 Leaves|||lib_ecology_tree_jungle_03_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_jungle_03_sapling|Jungle 03 Sapling|||lib_ecology_tree_jungle_03_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_jungle_03_trunk|Jungle 03 Trunk|||lib_ecology_tree_jungle_03_trunk_top.png,lib_ecology_tree_jungle_03_trunk_top.png,lib_ecology_tree_jungle_03_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_jungle_03_trunk_allface_side|Jungle 03 Block Side|||lib_ecology_tree_jungle_03_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_jungle_03_trunk_allface_top|Jungle 03 Block Top|||lib_ecology_tree_jungle_03_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_jungle_03_wood|Jungle 03 Wood|||lib_ecology_tree_jungle_03_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
#tree_jungle_palm_01_leaves|Jungle 01 Palm Leaves|||lib_ecology_tree_jungle_palm_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
#tree_jungle_palm_01_sapling|Jungle 01 Palm Sapling|||lib_ecology_tree_jungle_palm_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_jungle_palm_01_trunk|Jungle 01 Palm Trunk|||lib_ecology_tree_jungle_palm_01_trunk_top.png,lib_ecology_tree_jungle_palm_01_trunk_top.png,lib_ecology_tree_jungle_palm_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_01_trunk_allface_side|Jungle 01 Palm Block Side|||lib_ecology_tree_jungle_palm_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_01_trunk_allface_top|Jungle 01 Palm Block Top|||lib_ecology_tree_jungle_palm_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_01_wood|Jungle 01 Palm Wood|||lib_ecology_tree_jungle_palm_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
#tree_jungle_palm_02_leaves|Jungle 02 Palm Leaves|||lib_ecology_tree_jungle_palm_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
#tree_jungle_palm_02_sapling|Jungle 02 Palm Sapling|||lib_ecology_tree_jungle_palm_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_jungle_palm_02_trunk|Jungle 02 Palm Trunk|||lib_ecology_tree_jungle_palm_02_trunk_top.png,lib_ecology_tree_jungle_palm_02_trunk_top.png,lib_ecology_tree_jungle_palm_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_02_trunk_allface_side|Jungle 02 Palm Block Side|||lib_ecology_tree_jungle_palm_02_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_02_trunk_allface_top|Jungle 02 Palm Block Top|||lib_ecology_tree_jungle_palm_02_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_02_wood|Jungle 02 Palm Wood|||lib_ecology_tree_jungle_palm_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
#tree_jungle_palm_03_leaves|Jungle 03 Palm Leaves|||lib_ecology_tree_jungle_palm_03_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
#tree_jungle_palm_03_sapling|Jungle 03 Palm Sapling|||lib_ecology_tree_jungle_palm_03_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_jungle_palm_03_trunk|Jungle 03 Palm Trunk|||lib_ecology_tree_jungle_palm_03_trunk_top.png,lib_ecology_tree_jungle_palm_03_trunk_top.png,lib_ecology_tree_jungle_palm_03_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_03_trunk_allface_side|Jungle 03 Palm Block Side|||lib_ecology_tree_jungle_palm_03_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_03_trunk_allface_top|Jungle 03 Palm Block Top|||lib_ecology_tree_jungle_palm_03_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_jungle_palm_03_wood|Jungle 03 Palm Wood|||lib_ecology_tree_jungle_palm_03_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_larch_leaves|Larch Leaves|||lib_ecology_tree_larch_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_larch_sapling|Larch Sapling|||lib_ecology_tree_larch_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_larch_trunk|Larch Trunk|||lib_ecology_tree_larch_trunk_top.png,lib_ecology_tree_larch_trunk_top.png,lib_ecology_tree_larch_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_larch_trunk_allface_side|Larch Block Side|||lib_ecology_tree_larch_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_larch_trunk_allface_top|Larch Block Top|||lib_ecology_tree_larch_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_larch_wood|Larch Wood|||lib_ecology_tree_larch_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_larch_moss|Larch Wood|||lib_ecology_tree_larch_moss.png||||nodebox||||facedir|0|||||||||||||FALSE|||||snappy = 2,flammable = 3,oddly_breakable_by_hand = 3,choppy = 2,carpet = 1,leafdecay = 3,leaves = 1,falling_node = 1|||wood|||-0.5,-0.5,0.49,0.5,0.5,0.5||||||||||||||||
tree_lavender_leaves|Lavender Leaves|||lib_ecology_tree_lavender_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_lavender_sapling|Lavender Sapling|||lib_ecology_tree_lavender_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_lavender_trunk|Lavender Trunk|||lib_ecology_tree_lavender_trunk_top.png,lib_ecology_tree_lavender_trunk_top.png,lib_ecology_tree_lavender_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_lavender_trunk_allface_side|Lavender Block Side|||lib_ecology_tree_lavender_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_lavender_trunk_allface_top|Lavender Block Top|||lib_ecology_tree_lavender_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_lavender_wood|Lavender Wood|||lib_ecology_tree_lavender_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_leaves_autumn|Generic Autumn Leaves|||lib_ecology_tree_leaves_autumn.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_dk_green|Generic Dark Green Leaves|||lib_ecology_tree_leaves_dk_green.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_dk_green_2|Generic Dark Green 2 Leaves|||lib_ecology_tree_leaves_dk_green.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_dk_green_3|Generic Dark Green 3 Leaves|||lib_ecology_tree_leaves_dk_green.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_dk_green_simple|Generic Dark Green Simple Leaves|||lib_ecology_tree_leaves_dk_green_simple.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_dk_green_simple_2|Generic Dark Green 2 Simple Leaves|||lib_ecology_tree_leaves_dk_green_simple.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_dk_green_simple_3|Generic Dark Green 3 Simple Leaves|||lib_ecology_tree_leaves_dk_green_simple.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_dry|Generic Dry Leaves|||lib_ecology_tree_leaves_dry.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_green|Generic Green Leaves|||lib_ecology_tree_leaves_green.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_green_2|Generic Green 2 Leaves|||lib_ecology_tree_leaves_green.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_green_3|Generic Green 3 Leaves|||lib_ecology_tree_leaves_green.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_purple|Generic Purple Leaves|||lib_ecology_tree_leaves_purple.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_red|Generic Red Leaves|||lib_ecology_tree_leaves_red.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_white|Generic White Leaves|||lib_ecology_tree_leaves_white.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_leaves_yellow|Generic Yellow Leaves|||lib_ecology_tree_leaves_yellow.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_lemon_leaves|Lemon Leaves|||lib_ecology_tree_lemon_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_lemon_sapling|Lemon Sapling|||lib_ecology_tree_lemon_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_lemon_trunk|Lemon Trunk|||lib_ecology_tree_lemon_trunk_top.png,lib_ecology_tree_lemon_trunk_top.png,lib_ecology_tree_lemon_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_lemon_trunk_allface_side|Lemon Block Side|||lib_ecology_tree_lemon_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_lemon_trunk_allface_top|Lemon Block Top|||lib_ecology_tree_lemon_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_lemon_wood|Lemon Wood|||lib_ecology_tree_lemon_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_mahogany_leaves|Mahogany Leaves|||lib_ecology_tree_mahogany_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_mahogany_sapling|Mahogany Sapling|||lib_ecology_tree_mahogany_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_mahogany_trunk|Mahogany Trunk|||lib_ecology_tree_mahogany_trunk_top.png,lib_ecology_tree_mahogany_trunk_top.png,lib_ecology_tree_mahogany_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_mahogany_trunk_allface_side|Mahogany Block Side|||lib_ecology_tree_mahogany_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_mahogany_trunk_allface_top|Mahogany Block Top|||lib_ecology_tree_mahogany_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_mahogany_wood|Mahogany Wood|||lib_ecology_tree_mahogany_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_mangrove_leaves|Mangrove Leaves|||lib_ecology_tree_mangrove_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_mangrove_root|Mangrove Root|||aus_mangrove_mud.png|lib_ecology_tree_mangrove_roots.png false|lib_ecology_tree_mangrove_roots.png|lib_ecology_tree_mangrove_roots.png|plantlike_rooted|||light||||FALSE||||FALSE||1||TRUE|||FALSE|||||snappy 3,sea 1|||dirt|lib_ecology:tree_mangrove_root|lib_ecology:tree_mangrove_root|||||||||||||||||
tree_mangrove_sapling|Mangrove Sapling|||lib_ecology_tree_mangrove_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_mangrove_trunk|Mangrove Trunk|||lib_ecology_tree_mangrove_trunk_top.png,lib_ecology_tree_mangrove_trunk_top.png,lib_ecology_tree_mangrove_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_mangrove_trunk_allface_side|Mangrove Block Side|||lib_ecology_tree_mangrove_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_mangrove_trunk_allface_top|Mangrove Block Top|||lib_ecology_tree_mangrove_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_mangrove_wood|Mangrove Wood|||lib_ecology_tree_mangrove_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_maple_leaves|Maple Leaves|||lib_ecology_tree_maple_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_maple_sapling|Maple Sapling|||lib_ecology_tree_maple_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_maple_trunk|Maple Trunk|||lib_ecology_tree_maple_trunk_top.png,lib_ecology_tree_maple_trunk_top.png,lib_ecology_tree_maple_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_maple_trunk_allface_side|Maple Block Side|||lib_ecology_tree_maple_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_maple_trunk_allface_top|Maple Block Top|||lib_ecology_tree_maple_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_maple_wood|Maple Wood|||lib_ecology_tree_maple_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_maple_sugar_leaves|Sugar Maple Leaves|||lib_ecology_tree_maple_sugar_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_maple_sugar_sapling|Sugar Maple Sapling|||lib_ecology_tree_maple_sugar_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_maple_sugar_trunk|Sugar Maple Trunk|||lib_ecology_tree_maple_sugar_trunk_top.png,lib_ecology_tree_maple_sugar_trunk_top.png,lib_ecology_tree_maple_sugar_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_maple_sugar_trunk_allface_side|Sugar Maple Block Side|||lib_ecology_tree_maple_sugar_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_maple_sugar_trunk_allface_top|Sugar Maple Block Top|||lib_ecology_tree_maple_sugar_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_maple_sugar_wood|Sugar Maple Wood|||lib_ecology_tree_maple_sugar_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_mirabelle_leaves|Mirabelle Leaves|||lib_ecology_tree_mirabelle_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_mirabelle_sapling|Mirabelle Sapling|||lib_ecology_tree_mirabelle_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_mirabelle_trunk|Mirabelle Trunk|||lib_ecology_tree_mirabelle_trunk_top.png,lib_ecology_tree_mirabelle_trunk_top.png,lib_ecology_tree_mirabelle_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_mirabelle_trunk_allface_side|Mirabelle Block Side|||lib_ecology_tree_mirabelle_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_mirabelle_trunk_allface_top|Mirabelle Block Top|||lib_ecology_tree_mirabelle_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_mirabelle_wood|Mirabelle Wood|||lib_ecology_tree_mirabelle_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_oak_leaves|Oak Leaves|||lib_ecology_tree_oak_leaves.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
tree_oak_red_leaves|Red Oak Leaves|||lib_ecology_tree_oak_red_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_oak_red_sapling|Red Oak Sapling|||lib_ecology_tree_oak_red_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_oak_red_trunk|Red Oak Trunk|||lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_oak_red_trunk_allface_side|Red Oak Block Side|||lib_ecology_tree_oak_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_oak_red_trunk_allface_top|Red Oak Block Top|||lib_ecology_tree_oak_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_oak_red_wood|Red Oak Wood|||lib_ecology_tree_oak_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_oak_sapling|Oak Sapling|||lib_ecology_tree_oak_sapling.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_oak_southern_leaves|Southern Oak Leaves|||lib_ecology_tree_oak_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_oak_southern_sapling|Southern Oak Sapling|||lib_ecology_tree_oak_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_oak_southern_trunk|Southern Oak Trunk|||lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_oak_southern_trunk_allface_side|Southern Oak Block Side|||lib_ecology_tree_oak_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_oak_southern_trunk_allface_top|Southern Oak Block Top|||lib_ecology_tree_oak_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_oak_southern_wood|Southern Oak Wood|||lib_ecology_tree_oak_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_oak_trunk|Oak Trunk|||lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_oak_trunk_allface_side|Oak Block Side|||lib_ecology_tree_oak_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_oak_trunk_allface_top|Oak Block Top|||lib_ecology_tree_oak_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_oak_wood|Oak Wood|||lib_ecology_tree_oak_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_orange_leaves|Orange Leaves|||lib_ecology_tree_orange_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_orange_sapling|Orange Sapling|||lib_ecology_tree_orange_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_orange_trunk|Orange Trunk|||lib_ecology_tree_orange_trunk_top.png,lib_ecology_tree_orange_trunk_top.png,lib_ecology_tree_orange_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_orange_trunk_allface_side|Orange Block Side|||lib_ecology_tree_orange_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_orange_trunk_allface_top|Orange Block Top|||lib_ecology_tree_orange_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_orange_wood|Orange Wood|||lib_ecology_tree_orange_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
#tree_palm_01_leaves|Palm 01 Leaves|||lib_ecology_tree_palm_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
#tree_palm_01_sapling|Palm 01 Sapling|||lib_ecology_tree_palm_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_palm_01_trunk|Palm 01 Trunk|||lib_ecology_tree_palm_01_trunk_top.png,lib_ecology_tree_palm_01_trunk_top.png,lib_ecology_tree_palm_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_palm_01_trunk_allface_side|Palm 01 Block Side|||lib_ecology_tree_palm_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_palm_01_trunk_allface_top|Palm 01 Block Top|||lib_ecology_tree_palm_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_palm_01_wood|Palm 01 Wood|||lib_ecology_tree_palm_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
#tree_palm_02_leaves|Palm 02 Leaves|||lib_ecology_tree_palm_02_leaves.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
#tree_palm_02_leaves2|Palm 02 Leaves2|||lib_ecology_tree_palm_02_leaves.png||||allfaces_optional|||||||||||||||||||||||||||||||||||||||||||||
#tree_palm_02_sapling|Palm 02 Sapling|||lib_ecology_tree_palm_02_sapling.png|||||||||||||||||||||||||||||||||||||||||||||||||
#tree_palm_02_trunk|Palm 02 Trunk|||lib_ecology_tree_palm_02_trunk_top.png,lib_ecology_tree_palm_02_trunk_top.png,lib_ecology_tree_palm_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_palm_02_wood|Palm 02 Wood|||lib_ecology_tree_palm_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palm_coconut_leaves|Coconut Palm Leaves|||lib_ecology_tree_palm_coconut_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_coconut_sapling|Coconut Palm Sapling|||lib_ecology_tree_palm_coconut_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_coconut_trunk|Coconut Palm Trunk|||lib_ecology_tree_palm_coconut_trunk_top.png,lib_ecology_tree_palm_coconut_trunk_top.png,lib_ecology_tree_palm_coconut_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_coconut_trunk_allface_side|Coconut Palm Block Side|||lib_ecology_tree_palm_coconut_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_coconut_trunk_allface_top|Coconut Palm Block Top|||lib_ecology_tree_palm_coconut_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_coconut_wood|Coconut Palm Wood|||lib_ecology_tree_palm_coconut_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palm_date_leaves|Date Palm Leaves|||lib_ecology_tree_palm_date_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_date_sapling|Date Palm Sapling|||lib_ecology_tree_palm_date_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_date_trunk|Date Palm Trunk|||lib_ecology_tree_palm_date_trunk_top.png,lib_ecology_tree_palm_date_trunk_top.png,lib_ecology_tree_palm_date_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_date_trunk_allface_side|Date Palm Block Side|||lib_ecology_tree_palm_date_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_date_trunk_allface_top|Date Palm Block Top|||lib_ecology_tree_palm_date_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_date_wood|Date Palm Wood|||lib_ecology_tree_palm_date_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palm_desert_01_leaves|Desert Palm 01 Leaves|||lib_ecology_tree_palm_desert_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_desert_01_sapling|Desert Palm 01 Sapling|||lib_ecology_tree_palm_desert_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_desert_01_trunk|Desert Palm 01 Trunk|||lib_ecology_tree_palm_desert_01_trunk_top.png,lib_ecology_tree_palm_desert_01_trunk_top.png,lib_ecology_tree_palm_desert_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_desert_01_trunk_allface_side|Desert Palm 01 Block Side|||lib_ecology_tree_palm_desert_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_desert_01_trunk_allface_top|Desert Palm 01 Block Top|||lib_ecology_tree_palm_desert_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_desert_01_wood|Desert Palm 01 Wood|||lib_ecology_tree_palm_desert_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palm_desert_02_leaves|Desert Palm 02 Leaves|||lib_ecology_tree_palm_desert_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_desert_02_sapling|Desert Palm 02 Sapling|||lib_ecology_tree_palm_desert_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_desert_02_trunk|Desert Palm 02 Trunk|||lib_ecology_tree_palm_desert_02_trunk_top.png,lib_ecology_tree_palm_desert_02_trunk_top.png,lib_ecology_tree_palm_desert_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_desert_02_trunk_allface_side|Desert Palm 02 Block Side|||lib_ecology_tree_palm_desert_02_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_desert_02_trunk_allface_top|Desert Palm 02 Block Top|||lib_ecology_tree_palm_desert_02_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_desert_02_wood|Desert Palm 02 Wood|||lib_ecology_tree_palm_desert_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palm_desert_03_leaves|Desert Palm 03 Leaves|||lib_ecology_tree_palm_desert_03_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_desert_03_sapling|Desert Palm 03 Sapling|||lib_ecology_tree_palm_desert_03_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_desert_03_trunk|Desert Palm 03 Trunk|||lib_ecology_tree_palm_desert_03_trunk_top.png,lib_ecology_tree_palm_desert_03_trunk_top.png,lib_ecology_tree_palm_desert_03_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_desert_03_trunk_allface_side|Desert Palm 03 Block Side|||lib_ecology_tree_palm_desert_03_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_desert_03_trunk_allface_top|Desert Palm 03 Block Top|||lib_ecology_tree_palm_desert_03_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_desert_03_wood|Desert Palm 03 Wood|||lib_ecology_tree_palm_desert_03_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palmetto||||lib_ecology_tree_palmetto_trunk_top.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_palmetto_leaves||||lib_ecology_tree_palmetto_leaves.png||||plantlike|1|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
tree_palmetto_leaves2||||lib_ecology_tree_palmetto_leaves2.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_palmetto_trunk||||lib_ecology_tree_palmetto_trunk_top.png,lib_ecology_tree_palmetto_trunk_top.png,lib_ecology_tree_palmetto_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_jungle_01_leaves|Jungle Palm 01 Leaves|||lib_ecology_tree_palm_jungle_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_jungle_01_sapling|Jungle Palm 01 Sapling|||lib_ecology_tree_palm_jungle_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_jungle_01_trunk|Jungle Palm 01 Trunk|||lib_ecology_tree_palm_jungle_01_trunk_top.png,lib_ecology_tree_palm_jungle_01_trunk_top.png,lib_ecology_tree_palm_jungle_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_jungle_01_trunk_allface_side|Jungle Palm 01 Block Side|||lib_ecology_tree_palm_jungle_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_jungle_01_trunk_allface_top|Jungle Palm 01 Block Top|||lib_ecology_tree_palm_jungle_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_jungle_01_wood|Jungle Palm 01 Wood|||lib_ecology_tree_palm_jungle_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palm_jungle_02_leaves|Jungle Palm 02 Leaves|||lib_ecology_tree_palm_jungle_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_jungle_02_sapling|Jungle Palm 02 Sapling|||lib_ecology_tree_palm_jungle_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_jungle_02_trunk|Jungle Palm 02 Trunk|||lib_ecology_tree_palm_jungle_02_trunk_top.png,lib_ecology_tree_palm_jungle_02_trunk_top.png,lib_ecology_tree_palm_jungle_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_jungle_02_trunk_allface_side|Jungle Palm 02 Block Side|||lib_ecology_tree_palm_jungle_02_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_jungle_02_trunk_allface_top|Jungle Palm 02 Block Top|||lib_ecology_tree_palm_jungle_02_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_jungle_02_wood|Jungle Palm 02 Wood|||lib_ecology_tree_palm_jungle_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_palm_jungle_03_leaves|Jungle Palm 03 Leaves|||lib_ecology_tree_palm_jungle_03_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_palm_jungle_03_sapling|Jungle Palm 03 Sapling|||lib_ecology_tree_palm_jungle_03_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_palm_jungle_03_trunk|Jungle Palm 03 Trunk|||lib_ecology_tree_palm_jungle_03_trunk_top.png,lib_ecology_tree_palm_jungle_03_trunk_top.png,lib_ecology_tree_palm_jungle_03_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_palm_jungle_03_trunk_allface_side|Jungle Palm 03 Block Side|||lib_ecology_tree_palm_jungle_03_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_jungle_03_trunk_allface_top|Jungle Palm 03 Block Top|||lib_ecology_tree_palm_jungle_03_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_palm_jungle_03_wood|Jungle Palm 03 Wood|||lib_ecology_tree_palm_jungle_03_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_pine_01_leaves|Pine 01 Leaves|||lib_ecology_tree_pine_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_pine_01_sapling|Pine 01 Sapling|||lib_ecology_tree_pine_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_pine_01_trunk|Pine 01 Trunk|||lib_ecology_tree_pine_01_trunk_top.png,lib_ecology_tree_pine_01_trunk_top.png,lib_ecology_tree_pine_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_pine_01_trunk_allface_side|Pine 01 Block Side|||lib_ecology_tree_pine_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_pine_01_trunk_allface_top|Pine 01 Block Top|||lib_ecology_tree_pine_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_pine_01_wood|Pine 01 Wood|||lib_ecology_tree_pine_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_pine_02_leaves|Pine 02 Leaves|||lib_ecology_tree_pine_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_pine_02_sapling|Pine 02 Sapling|||lib_ecology_tree_pine_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_pine_02_trunk|Pine 02 Trunk|||lib_ecology_tree_pine_02_trunk_top.png,lib_ecology_tree_pine_02_trunk_top.png,lib_ecology_tree_pine_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_pine_02_trunk_allface_side|Pine 02 Block Side|||lib_ecology_tree_pine_02_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_pine_02_trunk_allface_top|Pine 02 Block Top|||lib_ecology_tree_pine_02_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_pine_02_wood|Pine 02 Wood|||lib_ecology_tree_pine_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_pine_03_leaves|Pine 03 Leaves|||lib_ecology_tree_pine_03_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_pine_03_sapling|Pine 03 Sapling|||lib_ecology_tree_pine_03_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_pine_03_trunk|Pine 03 Trunk|||lib_ecology_tree_pine_03_trunk_top.png,lib_ecology_tree_pine_03_trunk_top.png,lib_ecology_tree_pine_03_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_pine_03_trunk_allface_side|Pine 03 Block Side|||lib_ecology_tree_pine_03_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_pine_03_trunk_allface_top|Pine 03 Block Top|||lib_ecology_tree_pine_03_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_pine_03_wood|Pine 03 Wood|||lib_ecology_tree_pine_03_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_poplar_leaves|Poplar Leaves|||lib_ecology_tree_poplar_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_poplar_sapling|Poplar Sapling|||lib_ecology_tree_poplar_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_poplar_small_leaves|Small Poplar Leaves|||lib_ecology_tree_poplar_small_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
#tree_poplar_small_sapling|Small Poplar Sapling|||lib_ecology_tree_poplar_small_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_poplar_small_trunk|Small Poplar Trunk|||lib_ecology_tree_poplar_small_trunk_top.png,lib_ecology_tree_poplar_small_trunk_top.png,lib_ecology_tree_poplar_small_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_poplar_small_trunk_allface_side|Small Poplar Block Side|||lib_ecology_tree_poplar_small_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_poplar_small_trunk_allface_top|Small Poplar Block Top|||lib_ecology_tree_poplar_small_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_poplar_small_wood|Small Poplar Wood|||lib_ecology_tree_poplar_small_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_poplar_trunk|Poplar Trunk|||lib_ecology_tree_poplar_trunk_top.png,lib_ecology_tree_poplar_trunk_top.png,lib_ecology_tree_poplar_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_poplar_trunk_allface_side|Poplar Block Side|||lib_ecology_tree_poplar_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_poplar_trunk_allface_top|Poplar Block Top|||lib_ecology_tree_poplar_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_poplar_wood|Poplar Wood|||lib_ecology_tree_poplar_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
#tree_redwood_coast_leaves|Coast Redwood Leaves|||lib_ecology_tree_redwood_coast_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
#tree_redwood_coast_sapling|Coast Redwood Sapling|||lib_ecology_tree_redwood_coast_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_redwood_coast_trunk|Coast Redwood Trunk|||lib_ecology_tree_redwood_coast_trunk_top.png,lib_ecology_tree_redwood_coast_trunk_top.png,lib_ecology_tree_redwood_coast_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_redwood_coast_trunk_allface_side|Coast Redwood Block Side|||lib_ecology_tree_redwood_coast_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_redwood_coast_trunk_allface_top|Coast Redwood Block Top|||lib_ecology_tree_redwood_coast_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_redwood_coast_wood|Coast Redwood Wood|||lib_ecology_tree_redwood_coast_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_redwood_leaves|Redwood Leaves|||lib_ecology_tree_redwood_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_redwood_sapling|Redwood Sapling|||lib_ecology_tree_redwood_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_redwood_trunk|Redwood Trunk|||lib_ecology_tree_redwood_trunk_top.png,lib_ecology_tree_redwood_trunk_top.png,lib_ecology_tree_redwood_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_redwood_trunk_allface_side|Redwood Block Side|||lib_ecology_tree_redwood_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_redwood_trunk_allface_top|Redwood Block Top|||lib_ecology_tree_redwood_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_redwood_wood|Redwood Wood|||lib_ecology_tree_redwood_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_rubber_leaves|Rubber Leaves|||lib_ecology_tree_rubber_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_rubber_sapling|Rubber Sapling|||lib_ecology_tree_rubber_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_rubber_trunk|Rubber Trunk|||lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_rubber_trunk_allface_side|Rubber Block Side|||lib_ecology_tree_rubber_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_rubber_trunk_allface_top|Rubber Block Top|||lib_ecology_tree_rubber_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_rubber_trunk_empty|Rubber Trunk Empty|||lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk_empty.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_rubber_wood|Rubber Wood|||lib_ecology_tree_rubber_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_sakura_leaves|Sakura Leaves|||lib_ecology_tree_sakura_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_sakura_sapling|Sakura Sapling|||lib_ecology_tree_sakura_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_sakura_trunk|Sakura Trunk|||lib_ecology_tree_sakura_trunk_top.png,lib_ecology_tree_sakura_trunk_top.png,lib_ecology_tree_sakura_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_sakura_trunk_allface_side|Sakura Block Side|||lib_ecology_tree_sakura_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_sakura_trunk_allface_top|Sakura Block Top|||lib_ecology_tree_sakura_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_sakura_wood|Sakura Wood|||lib_ecology_tree_sakura_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_scorched_trunk|Scorched Trunk|||lib_ecology_tree_scorched_trunk_top.png,lib_ecology_tree_scorched_trunk_top.png,lib_ecology_tree_scorched_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_scorched_wood|Scorched Wood|||lib_ecology_tree_scorched_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_sequoia_leaves|Sequoia Leaves|||lib_ecology_tree_sequoia_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_sequoia_sapling|Sequoia Sapling|||lib_ecology_tree_sequoia_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_sequoia_trunk|Sequoia Trunk|||lib_ecology_tree_sequoia_trunk_top.png,lib_ecology_tree_sequoia_trunk_top.png,lib_ecology_tree_sequoia_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_sequoia_trunk_allface_side|Sequoia Block Side|||lib_ecology_tree_sequoia_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_sequoia_trunk_allface_top|Sequoia Block Top|||lib_ecology_tree_sequoia_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_sequoia_wood|Sequoia Wood|||lib_ecology_tree_sequoia_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_small_jungle|Small Jungle Tree|||lib_ecology_plant_jungletree.png||||plantlike|2|0.5,0.5,0.5|light||||FALSE||||FALSE|TRUE|1||TRUE|||FALSE|||||snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1|||leaves||||-0.3,-0.5,-0.3,0.3,0,0.3|||||||||||||||
tree_spruce_leaves|Spruce Leaves|||lib_ecology_tree_spruce_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_spruce_sapling|Spruce Sapling|||lib_ecology_tree_spruce_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_spruce_sitka_leaves|Sitka Spruce Leaves|||lib_ecology_tree_spruce_sitka_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
#tree_spruce_sitka_sapling|Sitka Spruce Sapling|||lib_ecology_tree_spruce_sitka_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
#tree_spruce_sitka_trunk|Sitka Spruce Trunk|||lib_ecology_tree_spruce_sitka_trunk_top.png,lib_ecology_tree_spruce_sitka_trunk_top.png,lib_ecology_tree_spruce_sitka_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
#tree_spruce_sitka_trunk_allface_side|Sitka Spruce Block Side|||lib_ecology_tree_spruce_sitka_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_spruce_sitka_trunk_allface_top|Sitka Spruce Block Top|||lib_ecology_tree_spruce_sitka_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
#tree_spruce_sitka_wood|Sitka Spruce Wood|||lib_ecology_tree_spruce_sitka_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_spruce_trunk|Spruce Trunk|||lib_ecology_tree_spruce_trunk_top.png,lib_ecology_tree_spruce_trunk_top.png,lib_ecology_tree_spruce_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_spruce_trunk_allface_side|Spruce Block Side|||lib_ecology_tree_spruce_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_spruce_trunk_allface_top|Spruce Block Top|||lib_ecology_tree_spruce_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_spruce_wood|Spruce Wood|||lib_ecology_tree_spruce_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_teak_leaves|Teak Leaves|||lib_ecology_tree_teak_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_teak_sapling|Teak Sapling|||lib_ecology_tree_teak_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_teak_trunk|Teak Trunk|||lib_ecology_tree_teak_trunk_top.png,lib_ecology_tree_teak_trunk_top.png,lib_ecology_tree_teak_trunk.png|||||||||||||||||||||||||||||||||||||||||||||||||
tree_teak_trunk_allface_side|Teak Block Side|||lib_ecology_tree_teak_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_teak_trunk_allface_top|Teak Block Top|||lib_ecology_tree_teak_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_teak_wood|Teak Wood|||lib_ecology_tree_teak_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_willow_01_leaves|Willow 01 Leaves|||lib_ecology_tree_willow_01_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_willow_01_sapling|Willow 01 Sapling|||lib_ecology_tree_willow_01_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_willow_01_trunk|Willow 01 Trunk|||lib_ecology_tree_willow_01_trunk_top.png,lib_ecology_tree_willow_01_trunk_top.png,lib_ecology_tree_willow_01_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_willow_01_trunk_allface_side|Willow 01 Block Side|||lib_ecology_tree_willow_01_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_willow_01_trunk_allface_top|Willow 01 Block Top|||lib_ecology_tree_willow_01_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_willow_01_wood|Willow 01 Wood|||lib_ecology_tree_willow_01_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_willow_02_leaves|Willow 02 Leaves|||lib_ecology_tree_willow_02_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_willow_02_sapling|Willow 02 Sapling|||lib_ecology_tree_willow_02_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||schem_tree_willow_02_01,schem_tree_willow_02_02,schem_tree_willow_02_03||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_willow_02_trunk|Willow 02 Trunk|||lib_ecology_tree_willow_02_trunk_top.png,lib_ecology_tree_willow_02_trunk_top.png,lib_ecology_tree_willow_02_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_willow_02_trunk_allface_side|Willow 02 Block Side|||lib_ecology_tree_willow_02_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_willow_02_trunk_allface_top|Willow 02 Block Top|||lib_ecology_tree_willow_02_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_willow_02_wood|Willow 02 Wood|||lib_ecology_tree_willow_02_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_willow_03_leaves|Willow 03 Leaves|||lib_ecology_tree_willow_03_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_willow_03_sapling|Willow 03 Sapling|||lib_ecology_tree_willow_03_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_willow_03_trunk|Willow 03 Trunk|||lib_ecology_tree_willow_03_trunk_top.png,lib_ecology_tree_willow_03_trunk_top.png,lib_ecology_tree_willow_03_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_willow_03_trunk_allface_side|Willow 03 Block Side|||lib_ecology_tree_willow_03_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_willow_03_trunk_allface_top|Willow 03 Block Top|||lib_ecology_tree_willow_03_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_willow_03_wood|Willow 03 Wood|||lib_ecology_tree_willow_03_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
tree_yellow_healing_leaves|Yellow Healing Leaves|||lib_ecology_tree_yellow_healing_leaves.png||||allfaces_optional|||light|facedir|||FALSE||||||1|||||FALSE|||||snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1|1||leaves|||||||||||||||||||
tree_yellow_healing_sapling|Yellow Healing Sapling|||lib_ecology_tree_yellow_healing_sapling.png||||plantlike|||light||||FALSE||||FALSE|TRUE|1||TRUE||||||||snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1|||leaves|||||||||||||||||||
tree_yellow_healing_trunk|Yellow Healing Trunk|||lib_ecology_tree_yellow_healing_trunk_top.png,lib_ecology_tree_yellow_healing_trunk_top.png,lib_ecology_tree_yellow_healing_trunk.png|||||||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,flammable 2,tree 1,lib_ecology_tree 1|||wood|||||||||||||||||||
tree_yellow_healing_trunk_allface_side|Yellow Healing Block Side|||lib_ecology_tree_yellow_healing_trunk.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_yellow_healing_trunk_allface_top|Yellow Healing Block Top|||lib_ecology_tree_yellow_healing_trunk_top.png||||allfaces_optional|||light|facedir|||TRUE|||||||||||FALSE|||||choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1|||wood|||||||||||||||||||
tree_yellow_healing_wood|Yellow Healing Wood|||lib_ecology_tree_yellow_healing_wood.png||||||||facedir|0|||||||||||||FALSE|||||choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1|||wood|||||||||||||||||||
1 #Node_Name Description Alias_Mod Alias_Node Tile_String Special_Tiles Inv_Image Wield_Image Draw_Type Vis_Scale Wld_Scale Param_Type ParamType2 Place_Param2 LightSource Walkable Pointable Climbable Diggable Buildable Floodable Waving Use_Alpha Sun_Prop Liquid_Point Damage_Per_Second Grnd_Cnt Leg_wall MaxLight Grow Eat Groups Max_Drops Drops Sounds Dig_Predict Place_Predict NodeBox SelBox ColBox Mesh LiquidType LiquidViscosity LiquidRange LiquidRenew LiquidAltSource LiquidAltFlow OnConstruct OnTimer TimerTrig TimerAct AfterPlace OnPlace
2 #BUSHES, SHRUBS
3 bush_01_1 Bush - 01 - 1 lib_ecology_bush_01_1.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
4 bush_01_2 Bush - 01 - 2 lib_ecology_bush_01_2.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
5 bush_02_1 Bush - 02 - 1 lib_ecology_bush_02_1.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
6 bush_02_2 Bush - 02 - 2 lib_ecology_bush_02_2.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
7 bush_02_3 Bush - 02 - 3 lib_ecology_bush_02_3.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
8 #bush_blueberry_leaves lib_ecology_bush_blueberry_leaves.png
9 #bush_blueberry_leaves_with_berries lib_ecology_bush_blueberry_leaves.png
10 #bush_blueberry_sapling lib_ecology_bush_blueberry_sapling.png
11 bush_hawthorne_leaves Bush - Hawthorne Leaves lib_ecology_bush_hawthorne_leaves.png allfaces_optional 2 0.5,0.5,0.5 light FALSE TRUE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1 leaves lib_ecology.after_place_leaves
12 bush_rhodedendron_leaves_1 Bush - Rhodedendron Leaves 1 lib_ecology_bush_rhodedendron_leaves_1.png allfaces_optional 1.5 0.5,0.5,0.5 light FALSE TRUE 1 FALSE 11 bush_rhodedendron_leaves_2 snappy 3,leafdecay 3,flammable 2,leaves 1 leaves timer 60,120 400 lib_ecology:bush_rhodedendron_leaves_2 lib_ecology.after_place_leaves
13 bush_rhodedendron_leaves_2 Bush - Rhodedendron Leaves 2 lib_ecology_bush_rhodedendron_leaves_2.png allfaces_optional 1.5 0.5,0.5,0.5 light FALSE TRUE 1 FALSE 11 bush_rhodedendron_leaves_3 snappy 3,leafdecay 3,flammable 2,leaves 1 leaves timer 60,120 300 lib_ecology:bush_rhodedendron_leaves_3 lib_ecology.after_place_leaves
14 bush_rhodedendron_leaves_3 Bush - Rhodedendron Leaves 3 lib_ecology_bush_rhodedendron_leaves_3.png allfaces_optional 1.5 0.5,0.5,0.5 light FALSE TRUE 1 FALSE 11 snappy 3,leafdecay 3,flammable 2,leaves 1 leaves timer 60,120 200 lib_ecology:bush_rhodedendron_leaves_1 lib_ecology.after_place_leaves
15 bush_trunk Bush - Trunk lib_ecology_bush_trunk.png plantlike 1.41 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 wood -0.4375,-0.5,-0.4375,0.4375,0.5,0.4375
16 #CACTII
17 #cactus_01_seedling default_large_cactus_seedling.png
18 cactus_column_01 Cactus - Column 01 lib_ecology_cactus_column_01.png plantlike light FALSE FALSE TRUE 1 TRUE 1 FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
19 cactus_column_02 Cactus - Column 02 lib_ecology_cactus_column_02.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE 1 FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
20 cactus_globe Cactus - Globe lib_ecology_cactus_globe.png plantlike light FALSE FALSE TRUE 1 TRUE 1 FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
21 cactus_green_column Cactus - Green Column lib_ecology_plant_cactus.png mesh 0.5 light 1 choppy 1,oddly_breakable_by_hand 1 wood -0.4,-0.5,-0.4,0.4,0.5,0.4 -0.4,-0.5,-0.4,0.4,0.5,0.4 cactus.b3d
22 cactus_green_trunk Cactus - Green Trunk lib_ecology_cactus_green_trunk_top.png,lib_ecology_cactus_green_trunk_top.png,lib_ecology_cactus_green_trunk.png light facedir TRUE 1 FALSE tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2 wood rotate
23 cactus_moonflower Cactus - Moon Flower lib_ecology_cactus_moonflower.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE 1 FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
24 cactus_prickly_pear Cactus - Prickly Pear lib_ecology_cactus_prickly_pear.png plantlike 4 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE 1 FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
25 cactus_purple_button Cactus - Purple Button lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk.png nodebox light facedir TRUE 1 FALSE tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2 wood -0.25,-0.5,-0.25,0.25,0.0,0.25 -0.25,-0.5,-0.25,0.25,0.0,0.25 rotate
26 cactus_purple_column Cactus - Purple Column lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk.png nodebox light facedir TRUE 1 FALSE tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2 wood -0.25,-0.5,-0.25,0.25,0.5,0.25 -0.25,-0.5,-0.25,0.25,0.5,0.25 rotate
27 cactus_purple_trunk Cactus - Purple Trunk lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk_top.png,lib_ecology_cactus_purple_trunk.png light facedir TRUE 1 FALSE tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2 wood
28 cactus_small_column_01 Cactus - Small Column 01 lib_ecology_cactus_column_01.png nodebox light facedir TRUE 1 FALSE tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2 wood -0.0625,0.1875,-0.0625,0.0625,0.25,0.0625;-0.0625,-0.5,-0.125,0.0625,0.1875,0.125;-0.125,-0.5,-0.0625,0.125,0.1875,0.0625 -0.125,-0.5,-0.125,0.125,0.25,0.125 rotate
29 cactus_small_column_02 Cactus - Small Column 02 lib_ecology_cactus_column_02.png nodebox light facedir TRUE 1 FALSE tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2 wood -0.0625,0.0625,-0.0625,0.0625,0.125,0.0625;-0.0625,-0.5,-0.125,0.0625,0.0625,0.125;-0.125,-0.5,-0.0625,0.125,0.0625,0.0625;-0.0625,-0.5,-0.001,0.0625,0.0625,0.001;-0.001,-0.5,-0.0625,0.001,0.0625,0.0625 -0.125,-0.5,-0.125,0.125,0.125,0.125 rotate
30 cactus_small_globe Cactus - Small Globe lib_ecology_cactus_globe.png nodebox light facedir TRUE 1 FALSE tree 1,choppy 2,oddly_breakable_by_hand 1,flammable 2 wood -0.1875,-0.5,-0.0625,0.1875,0.125,0.0625;-0.25,-0.3125,-0.0625,0.25,0.0625,0.0625;-0.3125,-0.375,-0.0625,0.3125,0.0,0.0625;-0.125,0.125,-0.0625,0.125,0.1875,0.0625;-0.0625,0.1875,-0.0625,0.0625,0.25,0.0625 -0.3125,-0.5,-0.0625,0.3125,0.25,0.0625 rotate
31 cactus_vine Cactus - Vine lib_ecology_cactus_vine.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE 1 FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
32 #candle candle.png
33 #constant_flame fire_basic_flame_animated.png
34 #CORALS
35 coral_blue_01 Coral - Blue 01 lib_ecology_coral_skeleton.png lib_ecology_coral_blue_01.png false lib_ecology_coral_blue_01.png lib_ecology_coral_blue_01.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_blue_01 lib_ecology:coral_blue_01
36 coral_blue_02 Coral - Blue 02 lib_ecology_coral_skeleton.png lib_ecology_coral_blue_02.png false lib_ecology_coral_blue_02.png lib_ecology_coral_blue_02.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_blue_02 lib_ecology:coral_blue_02
37 coral_blue_03 Coral - Blue 03 lib_ecology_coral_skeleton.png lib_ecology_coral_blue_03.png false lib_ecology_coral_blue_03.png lib_ecology_coral_blue_03.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_blue_03 lib_ecology:coral_blue_03
38 coral_brain Coral - Brain lib_ecology_coral_brain.png 4 cracky 3,stone 1,sea 1 lib_ecology:coral_skeleton stone
39 coral_brown Coral - Brown lib_ecology_coral_brown.png 4 cracky 3,stone 1,sea 1 lib_ecology:coral_skeleton stone
40 coral_dragon_eye Coral - Dragon Eye lib_ecology_coral_dragon_eye.png 4 cracky 3,stone 1,sea 1 lib_ecology:coral_skeleton stone
41 coral_green_01 Coral - Green 01 lib_ecology_coral_skeleton.png lib_ecology_coral_green_01.png false lib_ecology_coral_green_01.png lib_ecology_coral_green_01.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_green_01 lib_ecology:coral_green_01
42 coral_green_02 Coral - Green 02 lib_ecology_coral_skeleton.png lib_ecology_coral_green_02.png false lib_ecology_coral_green_02.png lib_ecology_coral_green_02.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_green_02 lib_ecology:coral_green_02
43 coral_orange_01 Coral - Orange 01 lib_ecology_coral_orange_01.png 4 cracky 3,stone 1,sea 1 lib_ecology:coral_skeleton stone
44 coral_orange_02 Coral - Orange 02 lib_ecology_coral_skeleton.png lib_ecology_coral_orange_02.png false lib_ecology_coral_orange_02.png lib_ecology_coral_orange_02.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_orange_02 lib_ecology:coral_orange_02
45 coral_orange_03 Coral - Orange 03 lib_ecology_coral_skeleton.png lib_ecology_coral_orange_03.png false lib_ecology_coral_orange_03.png lib_ecology_coral_orange_03.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_orange_03 lib_ecology:coral_orange_03
46 #coral_pillar lib_ecology_coral_pillar.png nodebox 2 cracky 3,stone 1,sea 1 lib_ecology:coral_skeleton stone grid -0.5,-0.5,-0.5,0.5,0.5,0.5
47 coral_pink_01 Coral - Pink 01 lib_ecology_coral_skeleton.png lib_ecology_coral_pink_01.png false lib_ecology_coral_pink_01.png lib_ecology_coral_pink_01.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_pink_01 lib_ecology:coral_pink_01
48 coral_pink_02 Coral - Pink 02 lib_ecology_coral_skeleton.png lib_ecology_coral_pink_02.png false lib_ecology_coral_pink_02.png lib_ecology_coral_pink_02.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_pink_02 lib_ecology:coral_pink_02
49 coral_pink_03 Coral - Pink 03 lib_ecology_coral_skeleton.png lib_ecology_coral_pink_03.png false lib_ecology_coral_pink_03.png lib_ecology_coral_pink_03.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_pink_03 lib_ecology:coral_pink_03
50 coral_purple Coral - Purple lib_ecology_coral_skeleton.png lib_ecology_coral_purple.png false lib_ecology_coral_purple.png lib_ecology_coral_purple.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_purple lib_ecology:coral_purple
51 coral_red Coral - Red lib_ecology_coral_skeleton.png lib_ecology_coral_red.png false lib_ecology_coral_red.png lib_ecology_coral_red.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_red lib_ecology:coral_red
52 coral_skeleton Coral - Skeleton lib_ecology_coral_skeleton.png 2 cracky 3,stone 1,sea 1 stone
53 coral_sponge Coral - Sponge lib_ecology_coral_sponge.png 4 cracky 3,stone 1,sea 1 lib_ecology:coral_skeleton stone
54 coral_staghorn Coral - Staghorn lib_ecology_coral_skeleton.png lib_ecology_coral_staghorn.png false lib_ecology_coral_staghorn.png lib_ecology_coral_staghorn.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_staghorn lib_ecology:coral_staghorn
55 #FERNS
56 fern_big Fern - Big lib_ecology_fern_big.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
57 fern_bluespike Fern - BlueSpike lib_ecology_fern_bluespike.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
58 fern_boston Fern - Boston Fern lib_ecology_fern_boston.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
59 #fern_broadleaf_fern lib_ecology_fern_broadleaf.png
60 fern_broadleaf_fern2 Fern - Broad Leaf Fern2 lib_ecology_fern_broadleaf.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
61 #fern_dicksonia lib_ecology_fern_dicksonia.png
62 fern_fern Fern - Fern lib_ecology_fern_fern.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
63 fern_fiddlehead Fern - Fiddlehead lib_ecology_fern_fiddlehead.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
64 fern_horsetail_02 Fern - Horsetail 02 lib_ecology_fern_horsetail_4.png plantlike light FALSE FALSE TRUE TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1
65 fern_horsetail_1 Fern - Young Horsetail (Equisetum) lib_ecology_fern_horsetail_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE fern_horsetail_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
66 fern_horsetail_2 Fern - Horsetail (Equisetum) lib_ecology_fern_horsetail_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE fern_horsetail_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
67 fern_horsetail_3 Fern - Horsetail (Equisetum) lib_ecology_fern_horsetail_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE fern_horsetail_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
68 fern_horsetail_4 Fern - Horsetail (Equisetum) lib_ecology_fern_horsetail_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
69 fern_horsetails Fern - Horsetails lib_ecology_fern_horsetails.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
70 #fern_ladyfern lib_ecology_fern_lady.png
71 fern_ladyfern2 Fern - Ladyfern2 lib_ecology_fern_lady.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
72 fern_large_1 Fern - Fern Large 1 lib_ecology_fern_large_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE fern_large_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
73 fern_large_2 Fern - Fern Large 2 lib_ecology_fern_large_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE fern_large_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
74 fern_large_3 Fern - Fern Large 3 lib_ecology_fern_large_3.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
75 fern_small_1 Fern - Fern Small 1 lib_ecology_fern_small_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE fern_small_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
76 fern_small_2 Fern - Fern Small 2 lib_ecology_fern_small_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE fern_small_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
77 fern_small_3 Fern - Fern Small 3 lib_ecology_fern_small_3.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
78 fern_spike Fern - Spike lib_ecology_fern_spike.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
79 #FLOWERS
80 flower_allium_purple Flower - Allium Purple lib_ecology_flower_allium_purple.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
81 flower_big Flower - Big lib_ecology_flower_big.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
82 flower_bird_of_paradise Flower - Bird of Paradise lib_ecology_flower_bird_of_paradise.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
83 flower_blue Flower - Blue lib_ecology_flower_blue.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
84 flower_calla_lily Flower - Calla Lily lib_ecology_flower_calla_lily.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
85 flower_cave Flower - Cave lib_ecology_flower_cave.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
86 flower_chrysanthemum_green Flower - Chrysanthemum Green lib_ecology_flower_chrysanthemum_green.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
87 flower_daisy_oxeye Flower - Daisy Oxeye lib_ecology_flower_daisy_oxeye.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
88 flower_dandelions_white Flower - dandelions Yellow lib_ecology_flower_dandelions_white.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
89 flower_dandelions_yellow Flower - Dandelion White lib_ecology_flower_dandelions_yellow.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
90 flower_dandelions_yellow_small Flower - Dandelion White lib_ecology_flower_dandelions_yellow_small.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
91 flower_dandelion_white Flower - Dandelion Yellow lib_ecology_flower_dandelion_white.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
92 flower_dandelion_yellow Flower - Dandelions Yellow lib_ecology_flower_dandelion_yellow.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
93 flower_delphinium Flower - Delphinium Blue lib_ecology_flower_delphinium.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
94 flower_fire Flower - Fire lib_ecology_flower_fire.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
95 flower_fire_02 Flower - Fire 02 lib_ecology_flower_fire_02.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
96 flower_flame_lily Flower - Flame Lily lib_ecology_flower_flame_lily.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
97 flower_foxglove_pink Flower - Foxglove Pink lib_ecology_flower_foxglove_pink.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
98 flower_foxglove_purple Flower - Foxglove Purple lib_ecology_flower_foxglove_purple.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
99 flower_geranium_blue Flower - Geranium Blue lib_ecology_flower_geranium_blue.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
100 flower_geraniums Flower - Geraniums lib_ecology_flower_geraniums.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
101 flower_gerbera Flower - Gerbera lib_ecology_flower_gerbera.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
102 #flower_ground_blue Flower - Ground Blue lib_ecology_flower_ground_blue.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
103 #flower_ground_pink Flower - Ground Pink lib_ecology_flower_ground_pink.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
104 #flower_ground_red Flower - Ground Red lib_ecology_flower_ground_red.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
105 flower_hibiscus Flower - Hibiscus lib_ecology_flower_hibiscus.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
106 flower_jungle Flower - Jungle lib_ecology_flower_jungle.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
107 flower_lantana Flower - Lantana lib_ecology_flower_lantana.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
108 flower_lavender Flower - Lavender lib_ecology_flower_lavender.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
109 flower_lazarus_bell Flower - Lazarus Bell lib_ecology_flower_lazarus_bell.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
110 flower_lobelia Flower - Lobelia lib_ecology_flower_lobelia.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
111 flower_medium Flower - Medium lib_ecology_flower_medium.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
112 flower_orchid Flower - Orchid lib_ecology_flower_orchid.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
113 flower_pansy_blue Flower - Pansy Blue lib_ecology_flower_pansy_blue.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
114 flower_pansy_purple Flower - Pansy Purple lib_ecology_flower_pansy_purple.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
115 flower_petunia_blue Flower - Petunia Blue lib_ecology_flower_petunia_blue.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
116 flower_petunia_pink Flower - Petunia Pink lib_ecology_flower_petunia_pink.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
117 flower_petunia_white Flower - Petunia White lib_ecology_flower_petunia_white.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
118 flower_rose Flower - Rose lib_ecology_flower_rose.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
119 flower_rose_frozen Flower - Rose Frozen lib_ecology_flower_rose_frozen.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
120 flower_roses Flower - Roses lib_ecology_flower_roses.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
121 flower_roses_black Flower - Black Roses lib_ecology_flower_roses_black.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
122 flower_roses_small Flower - Small Roses lib_ecology_flower_roses_small.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
123 flower_thistle Flower - Thistle lib_ecology_flower_thistle.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
124 flower_tulip_black Flower - Tulip Black lib_ecology_flower_tulip_black.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
125 flower_tulip_orange Flower - Tulip Orange lib_ecology_flower_tulip_orange.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
126 flower_viola Flower - Viola lib_ecology_flower_viola.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
127 #FOOD
128 food_fern_tuber_roasted Food - Roasted Fern Tuber lib_ecology_food_fern_tuber_roasted.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
129 food_fiddlehead_roasted Food - Roasted Fiddlehead lib_ecology_food_fiddlehead_roasted.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
130 #FRUIT
131 fruit_acorn Fruit - Acorn lib_ecology_fruit_acorn.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
132 fruit_apple Fruit - Apple lib_ecology_fruit_apple.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
133 fruit_apple_gold Fruit - Golden Apple lib_ecology_fruit_apple_gold.png plantlike 1 light FALSE TRUE FALSE 20 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
134 fruit_banana Fruit - Banana lib_ecology_fruit_banana.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
135 fruit_bananas Fruit - Bananas lib_ecology_fruit_bananas.png plantlike 1 light FALSE TRUE FALSE 6 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
136 fruit_blueberries Fruit - Blueberries lib_ecology_fruit_blueberries.png plantlike 1 light FALSE TRUE FALSE 2 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
137 fruit_cedar_cone Fruit - Cedar Cone lib_ecology_fruit_cedar_cone.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
138 fruit_cherry Fruit - Cherry lib_ecology_fruit_cherry.png plantlike 1 light FALSE TRUE FALSE 2 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
139 fruit_chestnut Fruit - Chestnut lib_ecology_fruit_chestnut.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
140 fruit_clementine Fruit - Clementine lib_ecology_fruit_clementine.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
141 fruit_coconut Fruit - Coconut lib_ecology_fruit_coconut.png plantlike 1 light FALSE TRUE FALSE 4 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
142 fruit_corn Fruit - Corn lib_ecology_fruit_corn.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
143 fruit_dates Fruit - Dates lib_ecology_fruit_dates.png plantlike 1 light FALSE TRUE FALSE 4 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
144 fruit_fern_tuber Fruit - Fern Tuber lib_ecology_food_fern_tuber.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
145 fruit_fern_tubers Fruit - Fern Tubers lib_ecology_food_fern_tubers.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
146 fruit_fir_cone Fruit - Fir Cone lib_ecology_fruit_fir_cone.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
147 fruit_gourd_bottle Fruit - Bottle Gourd lib_ecology_fruit_gourd_bottle.png plantlike 1 light FALSE TRUE FALSE 2 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
148 fruit_lavender Fruit - lavender lib_ecology_fruit_lavender.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
149 fruit_lemon Fruit - Lemon lib_ecology_fruit_lemon.png plantlike 1 light FALSE TRUE FALSE 2 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
150 fruit_mirabelle Fruit - Mirabelle lib_ecology_fruit_mirabelle.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
151 fruit_orange Fruit - Orange lib_ecology_fruit_orange.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
152 fruit_pineapple Fruit - Pineapple lib_ecology_fruit_pineapple.png plantlike 1 light FALSE TRUE FALSE 4 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
153 fruit_pine_cone Fruit - Pine Cone lib_ecology_fruit_pine_cone.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
154 fruit_potato Fruit - Potato lib_ecology_fruit_potato.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
155 fruit_spruce_cone Fruit - Spruce Cone lib_ecology_fruit_spruce_cone.png plantlike 1 light FALSE TRUE FALSE 1 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
156 fruit_strawberry Fruit - Strawberry lib_ecology_fruit_strawberry.png plantlike 1 light FALSE TRUE FALSE 2 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
157 fruit_wheat Fruit - Wheat lib_ecology_fruit_wheat.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
158 fruit_wild_onion Fruit - Wild Onion lib_ecology_fruit_wild_onion.png plantlike 1 light FALSE TRUE FALSE 3 fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
159 #VALC
160 #fungal_tree_fruit valc_fungal_tree_fruit.png
161 #fungal_tree_leaves_1 valc_fungal_tree_leaves.png
162 #fungal_tree_leaves_2 valc_fungal_tree_leaves.png
163 #fungal_tree_leaves_3 valc_fungal_tree_leaves.png
164 #fungal_tree_leaves_4 valc_fungal_tree_leaves.png
165 #giant_mushroom_cap vmg_mushroom_giant_cap.png
166 #giant_mushroom_stem vmg_mushroom_giant_stem.png
167 #GRASS
168 grass_1 Grass - 1 lib_ecology_grass_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
169 grass_2 Grass - 2 lib_ecology_grass_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
170 grass_3 Grass - 3 lib_ecology_grass_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
171 grass_4 Grass - 4 lib_ecology_grass_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
172 grass_5 Grass - 5 lib_ecology_grass_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
173 grass_bamboo Grass - Bamboo lib_ecology_grass_bamboo.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
174 grass_clover Grass - Clover lib_ecology_grass_clover.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
175 grass_dead_1 Grass - Dead 1 lib_ecology_grass_dead_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dead_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
176 grass_dead_2 Grass - Dead 2 lib_ecology_grass_dead_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dead_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
177 grass_dead_3 Grass - Dead 3 lib_ecology_grass_dead_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dead_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
178 grass_dead_4 Grass - Dead 4 lib_ecology_grass_dead_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dead_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
179 grass_dead_5 Grass - Dead 5 lib_ecology_grass_dead_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
180 grass_dry_1 Grass - Dry 1 lib_ecology_grass_dry_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dry_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
181 grass_dry_2 Grass - Dry 2 lib_ecology_grass_dry_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dry_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
182 grass_dry_3 Grass - Dry 3 lib_ecology_grass_dry_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dry_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
183 grass_dry_4 Grass - Dry 4 lib_ecology_grass_dry_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_dry_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
184 grass_dry_5 Grass - Dry 5 lib_ecology_grass_dry_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
185 grass_giant Grass - Giant lib_ecology_grass_giant.png plantlike 4 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
186 grass_golden_1 Grass - Golden 1 lib_ecology_grass_golden_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_golden_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
187 grass_golden_2 Grass - Golden 2 lib_ecology_grass_golden_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_golden_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
188 grass_golden_3 Grass - Golden 3 lib_ecology_grass_golden_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_golden_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
189 grass_golden_4 Grass - Golden 4 lib_ecology_grass_golden_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_golden_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
190 grass_golden_5 Grass - Golden 5 lib_ecology_grass_golden_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
191 grass_green_1 Grass - Green 1 lib_ecology_grass_green_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_green_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
192 grass_green_2 Grass - Green 2 lib_ecology_grass_green_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_green_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
193 grass_green_3 Grass - Green 3 lib_ecology_grass_green_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_green_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
194 grass_green_4 Grass - Green 4 lib_ecology_grass_green_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_green_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
195 grass_green_5 Grass - Green 5 lib_ecology_grass_green_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
196 grass_jungle Grass - Jungle lib_ecology_grass_jungle.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
197 grass_jungle_1 Grass - Jungle 1 lib_ecology_grass_jungle_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_jungle_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
198 grass_jungle_2 Grass - Jungle 2 lib_ecology_grass_jungle_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_jungle_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
199 grass_jungle_3 Grass - Jungle 3 lib_ecology_grass_jungle_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_jungle_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
200 grass_jungle_4 Grass - Jungle 4 lib_ecology_grass_jungle_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_jungle_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
201 grass_jungle_5 Grass - Jungle 5 lib_ecology_grass_jungle_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
202 grass_marram_1 Grass - Marram 1 default_marram_grass_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_marram_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
203 grass_marram_2 Grass - Marram 2 default_marram_grass_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_marram_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
204 grass_marram_3 Grass - Marram 3 default_marram_grass_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
205 grass_sea_1 Grass - Sea 1 lib_materials_sand_default.png lib_ecology_grass_sea_1.png false lib_ecology_grass_sea_1.png lib_ecology_grass_sea_1.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE grass_sea_2 snappy 3,sea 1 dirt lib_materials:sand -0.375,-0.5,-0.375,0.375,-0.3125,0.375
206 grass_sea_2 Grass - Sea 2 lib_materials_sand_default.png lib_ecology_grass_sea_2.png false lib_ecology_grass_sea_2.png lib_ecology_grass_sea_2.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE grass_sea_3 snappy 3,sea 1 dirt lib_materials:sand -0.375,-0.5,-0.375,0.375,-0.3125,0.375
207 grass_sea_3 Grass - Sea 3 lib_materials_sand_default.png lib_ecology_grass_sea_3.png false lib_ecology_grass_sea_3.png lib_ecology_grass_sea_3.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_materials:sand -0.375,-0.5,-0.375,0.375,-0.3125,0.375
208 grass_snow_1 Grass - Snow 1 lib_ecology_grass_snow_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_snow_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
209 grass_snow_2 Grass - Snow 2 lib_ecology_grass_snow_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_snow_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
210 grass_snow_3 Grass - Snow 3 lib_ecology_grass_snow_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_snow_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
211 grass_snow_4 Grass - Snow 4 lib_ecology_grass_snow_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_snow_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
212 grass_snow_5 Grass - Snow 5 lib_ecology_grass_snow_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
213 grass_swamp Grass - swamp lib_ecology_grass_swamp.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
214 grass_swamp_1 Grass - Swamp 1 lib_ecology_grass_swamp_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_swamp_2 snappy 3,flora 1,plant 1,attached_node 1,growing 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
215 grass_swamp_2 Grass - Swamp 2 lib_ecology_grass_swamp_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_swamp_3 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
216 grass_swamp_3 Grass - Swamp 3 lib_ecology_grass_swamp_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_swamp_4 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
217 grass_swamp_4 Grass - Swamp 4 lib_ecology_grass_swamp_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE grass_swamp_5 snappy 3,flora 1,plant 1,attached_node 1,growing 1,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
218 grass_swamp_5 Grass - Swamp 5 lib_ecology_grass_swamp_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flora 1,plant 1,attached_node 1,growing 0,not_in_creative_inventory 1,grass 1,flammable 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
219 grass_tall Grass - Tall lib_ecology_grass_long.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
220 #GROUND
221 #ground_grass lib_ecology_ground_grass.png
222 #ground_grass_dry lib_ecology_ground_grass_dry.png
223 #ground_leaf_litter lib_ecology_ground_leaf_litter.png
224 #ground_leaf_litter_2 lib_ecology_ground_leaf_litter_2.png
225 #REFACTOR
226 #hot_cobble caverealms_hot_cobble.png
227 #huge_mushroom_cap vmg_mushroom_giant_cap.png
228 #icicle_down caverealms_thin_ice.png
229 #icicle_up caverealms_thin_ice.png
230 #MISC
231 #lightstring lightstring.png
232 #logpile default_tree.png
233 #MUSHROOMS
234 mushroom_01_trunk Mushroom 01 Trunk lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
235 mushroom_02_trunk Mushroom 02 Trunk lib_ecology_mushroom_02_trunk_top.png,lib_ecology_mushroom_02_trunk_top.png,lib_ecology_mushroom_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
236 mushroom_03_trunk Mushroom 03 Trunk lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_01_trunk_top.png,lib_ecology_mushroom_03_trunk.png nodebox light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
237 mushroom_blue_cave Mushroom - Blue Cave lib_ecology_mushroom_blue_cave.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
238 mushroom_brown Mushroom - Brown lib_ecology_mushroom_brown.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
239 mushroom_cap_blue Mushroom - Cap Blue lib_ecology_mushroom_cap_blue.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
240 mushroom_cap_brown_01 Mushroom - Cap Brown 01 lib_ecology_mushroom_cap_brown_01.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
241 mushroom_cap_brown_02 Mushroom - Cap Brown 02 lib_ecology_mushroom_cap_brown_02.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
242 mushroom_cap_green_dk Mushroom - Cap Green Dark lib_ecology_mushroom_cap_green_dk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
243 mushroom_cap_green_lt Mushroom - Cap Green Light lib_ecology_mushroom_cap_green_lt.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
244 mushroom_cap_green_spotted Mushroom - Cap Green Spotted lib_ecology_mushroom_cap_green_spotted.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
245 mushroom_cap_mottled Mushroom - Cap Mottled lib_ecology_mushroom_cap_mottled.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
246 mushroom_cap_purple Mushroom - Cap Purple lib_ecology_mushroom_cap_purple.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
247 mushroom_cap_red_01 Mushroom - Cap Red 01 lib_ecology_mushroom_cap_red_01.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
248 mushroom_cap_red_02 Mushroom - Cap Red 02 lib_ecology_mushroom_cap_red_02.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
249 mushroom_cap_red_spotted Mushroom - Cap Red Spotted lib_ecology_mushroom_cap_red_spotted.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
250 mushroom_cap_tan Mushroom - Cap Tan lib_ecology_mushroom_cap_tan.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
251 mushroom_fire Mushroom - Fire lib_ecology_mushroom_fire.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
252 mushroom_glow Mushroom - Glow lib_ecology_mushroom_glow.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
253 #mushroom_glow_fungus lib_ecology_mushroom_glow_fungus.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
254 mushroom_ground_fungus Mushroom - Ground Fungus lib_ecology_mushroom_ground_fungus.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
255 #mushroom_pink moreplants_mushroom_top.png
256 mushroom_milkcap Mushroom - Milkcap lib_ecology_mushroom_milkcap.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
257 mushroom_parasol Mushroom - Parasol lib_ecology_mushroom_parasol.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
258 mushroom_purple Mushroom - Purple lib_ecology_mushroom_purple.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
259 mushroom_red Mushroom - Red lib_ecology_mushroom_red.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
260 mushroom_red_large Mushroom - Red Large lib_ecology_mushroom_red_large.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
261 mushroom_shaggy_mane Mushroom - shaggy_mane lib_ecology_mushroom_shaggy_mane.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
262 mushroom_spores Mushroom 01 Spores lib_ecology_mushroom_01_spores.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
263 mushroom_spores_03 Mushroom - Spores 03 lib_ecology_mushroom_spores_03.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
264 #mushroom_steak vmg_mushroom_steak.png craftitem
265 mushroom_stone Mushroom - Stone lib_ecology_mushroom_stone.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
266 mushroom_sulfur_tuft_1 Mushroom - sulfur_tuft_1 lib_ecology_mushroom_sulfur_tuft_32.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
267 mushroom_sulfur_tuft_2 Mushroom - sulfur_tuft_2 lib_ecology_mushroom_sulfur_tuft_64.png plantlike 4 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
268 mushroom_white Mushroom - White lib_ecology_mushroom_white.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
269 #PLANTS
270 plant_aloe_vera Plant - Aloe Vera lib_ecology_plant_aloe_vera.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
271 plant_anemone Plant - Anemone lib_ecology_coral_skeleton.png lib_ecology_plant_anemone.png false lib_ecology_plant_anemone.png lib_ecology_plant_anemone.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_skeleton -0.5,-0.5,-0.5,0.5,0,0.5
272 plant_arrow_arum Arrow Arum lib_ecology_plant_arrow_arum.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
273 plant_arrow_arum_water_sand Plant - Arrow Anum Sand lib_materials_sand_default.png lib_ecology_plant_arrow_arum.png false lib_ecology_plant_arrow_arum.png lib_ecology_plant_arrow_arum.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_ecology:plant_arrow_arum_water_sand lib_ecology:plant_arrow_arum_water_sand
274 plant_arrow_arum_water_soil Plant - Arrow Anum Dirt lib_materials_dirt.png lib_ecology_plant_arrow_arum.png false lib_ecology_plant_arrow_arum.png lib_ecology_plant_arrow_arum.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_ecology:plant_arrow_arum_water_soil lib_ecology:plant_arrow_arum_water_soil
275 plant_banana_1 Plant - Banana 1 lib_ecology_plant_banana_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_banana_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
276 plant_banana_2 Plant - Banana 2 lib_ecology_plant_banana_2.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0
277 plant_banana_tree_leaves Plant - Banana Tree Leaves lib_ecology_plant_banana_2.png mesh 1.2 light degrotate FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3 fern_old.b3d
278 plant_banana_tree_trunk Plant - Banana Tree Trunk lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
279 plant_banana_tree_trunk_top lib_ecology_tree_banana_01_trunk_top.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 stone lib_ecology:coral_skeleton
280 plant_gourd_bottle_1 Plant - Bottle Gourd 1 lib_ecology_plant_gourd_bottle_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_gourd_bottle_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
281 plant_gourd_bottle_2 Plant - Bottle Gourd 2 lib_ecology_plant_gourd_bottle_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_gourd_bottle_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
282 plant_gourd_bottle_3 Plant - Bottle Gourd 3 lib_ecology_plant_gourd_bottle_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_gourd_bottle_4 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
283 plant_gourd_bottle_4 Plant - Bottle Gourd 4 lib_ecology_plant_gourd_bottle_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_gourd_bottle_5 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
284 plant_gourd_bottle_5 Plant - Bottle Gourd 5 lib_ecology_plant_gourd_bottle_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_gourd_bottle_6 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
285 plant_gourd_bottle_6 Plant - Bottle Gourd 6 lib_ecology_plant_gourd_bottle_6.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_gourd_bottle_7 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
286 plant_gourd_bottle_7 Plant - Bottle Gourd 7 lib_ecology_plant_gourd_bottle_7.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 lib_ecology:fruit_gourd_bottle leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
287 plant_bulrush Plant - Bulrush lib_ecology_plant_bullrush.png plantlike 3 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
288 #plant_bush_jungle_01 lib_ecology_ground_grass.png
289 plant_cattail Plant - Cattail lib_ecology_plant_cattail.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
290 plant_cattail_02 Plant - Cattail 02 lib_ecology_plant_cattail_02.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
291 plant_cattails_03 Plant - Cattails 03 lib_ecology_plant_cattails_03.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
292 plant_corn_1 Plant - Corn 1 lib_ecology_plant_corn_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_corn_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
293 plant_corn_2 Plant - Corn 2 lib_ecology_plant_corn_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_corn_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
294 plant_corn_3 Plant - Corn 3 lib_ecology_plant_corn_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_corn_4 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
295 plant_corn_4 Plant - Corn 4 lib_ecology_plant_corn_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_corn_5 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
296 plant_corn_5 Plant - Corn 5 lib_ecology_plant_corn_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_corn_6 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
297 plant_corn_6 Plant - Corn 6 lib_ecology_plant_corn_6.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE plant_corn_7 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
298 plant_corn_7 Plant - Corn 7 lib_ecology_plant_corn_7.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE plant_corn_8 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
299 plant_corn_8 Plant - Corn 8 lib_ecology_plant_corn_8.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 lib_ecology:fruit_corn leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
300 plant_cotton_1 Plant - Cotton 1 lib_ecology_plant_cotton_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_cotton_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
301 plant_cotton_2 Plant - Cotton 2 lib_ecology_plant_cotton_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_cotton_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
302 plant_cotton_3 Plant - Cotton 3 lib_ecology_plant_cotton_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_cotton_4 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
303 plant_cotton_4 Plant - Cotton 4 lib_ecology_plant_cotton_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_cotton_5 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
304 plant_cotton_5 Plant - Cotton 5 lib_ecology_plant_cotton_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_cotton_6 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
305 plant_cotton_6 Plant - Cotton 6 lib_ecology_plant_cotton_6.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_cotton_7 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
306 plant_cotton_7 Plant - Cotton 7 lib_ecology_plant_cotton_7.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_cotton_8 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
307 plant_cotton_8 Plant - Cotton 8 lib_ecology_plant_cotton_8.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
308 plant_crabgrass Plant - Crabgrass lib_ecology_plant_crabgrass.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
309 plant_creeper Plant - Creeper lib_ecology_plant_creeper.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
310 plant_curly Plant - Curly flower lib_ecology_plant_curly.png plantlike 1.1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
311 #plant_grass_reed lib_ecology_ground_grass.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
312 plant_heath_gold Plant - Heath Gold lib_ecology_plant_heath_gold.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
313 plant_heath_green Plant - Heath Green lib_ecology_plant_heath_green.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
314 plant_heath_purple Plant - Heath Purple lib_ecology_plant_heath_purple.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
315 plant_heath_red Plant - Heath Red lib_ecology_plant_heath_red.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
316 plant_heath_sandwort Plant - Heath Sandwort lib_ecology_plant_heath_sandwort.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
317 plant_heath_saxifrage_purple Plant - Heath Saxifrage Purple lib_ecology_plant_heath_saxifrage_purple.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
318 plant_juncus Plant - Juncus lib_ecology_plant_juncus.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
319 plant_juncus_1 Plant - Juncus 1 lib_ecology_plant_juncus_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_juncus_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
320 plant_juncus_2 Plant - Juncus 2 lib_ecology_plant_juncus_2.png plantlike 4 light FALSE FALSE TRUE 1 TRUE FALSE plant_juncus_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
321 plant_juncus_3 Plant - Juncus 3 lib_ecology_plant_juncus_3.png plantlike 4 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
322 plant_juncus_01 Plant - Juncus 01 lib_ecology_plant_juncus_01.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
323 plant_juncus_02 Plant - Juncus 02 lib_ecology_plant_juncus_02.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
324 plant_juncus_small Plant - Juncus Small lib_ecology_plant_juncus_small.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
325 plant_kelp_01 Plant - Kelp 01 lib_materials_sand_default.png lib_ecology_plant_kelp_01.png true lib_ecology_plant_kelp_01.png lib_ecology_plant_kelp_01.png plantlike_rooted light leveled FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_materials:sand
326 plant_kelp_02_1 Plant - Kelp 02 1 lib_materials_sand_default.png lib_ecology_plant_kelp_02_1.png true lib_ecology_plant_kelp_02_1.png lib_ecology_plant_kelp_02_1.png plantlike_rooted light leveled FALSE FALSE 1 TRUE FALSE plant_kelp_02_2 snappy 3,sea 1 dirt lib_materials:sand
327 plant_kelp_02_2 Plant - Kelp 02 2 lib_materials_sand_default.png lib_ecology_plant_kelp_02_2.png true lib_ecology_plant_kelp_02_2.png lib_ecology_plant_kelp_02_2.png plantlike_rooted light leveled FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_materials:sand
328 plant_mangrove_fern Plant - Mangrove Fern lib_ecology_plant_mangrove_fern.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
329 plant_manna_reed Plant - Manna Reed lib_ecology_plant_manna_reed.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1,color_dark_green 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
330 plant_nettle_carduus Plant - Carduus lib_ecology_plant_nettle_carduus.png plantlike 1.2 light FALSE FALSE TRUE 1 TRUE 1 FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
331 plant_nettle_cleavers Plant - Cleavers lib_ecology_plant_nettle_cleavers.png plantlike 1.2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3 source 3 0 FALSE lib_ecology:plant_nettle_cleavers lib_ecology:plant_nettle_cleavers
332 plant_nettle_giant_hogweed Plant - Giant Hogweed lib_ecology_plant_nettle_giant_hogweed.png plantlike 2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
333 plant_nettle_impatiens Plant - Impatiens lib_ecology_plant_nettle_impatiens.png plantlike 1.4 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
334 plant_nettle_nettle Plant - Nettle lib_ecology_plant_nettle_nettle.png plantlike 1.4 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
335 plant_nettle_scotch_broom Plant - Scotch Broom lib_ecology_plant_nettle_scotch_broom.png mesh light FALSE 1 TRUE choppy 2,oddly_breakable_by_hand 1,flora 1,flammable 1 leaves nettle_scotch_broom.obj TRUE
336 plant_palmetto_01 Plant - Palmetto 01 lib_ecology_plant_palmetto_01.png plantlike 1.2 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
337 plant_papyrus Plant - Papyrus lib_ecology_plant_papyrus.png^(lib_ecology_plant_papyrus.png^[transformFX),lib_ecology_plant_papyrus.png^(lib_ecology_plant_papyrus.png^[transformFX),lib_ecology_plant_papyrus.png,lib_ecology_plant_papyrus.png^[transformFX,lib_ecology_plant_papyrus.png^[transformFX,lib_ecology_plant_papyrus.png nodebox light facedir TRUE TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 leaves -0.4375,-0.5,-0.1875,-0.3125,0.5,-0.0625;-0.1875,-0.5,0.3125,-0.0625,0.5,0.4375;0.0625,-0.5,-0.4375,0.1875,0.5,-0.3125;0.3125,-0.5,0.0625,0.4375,0.5,0.1875;-0.5,0.1875,-0.1875,-0.4375,0.3125,-0.0625;-0.0625,-0.3125,0.3125,0,-0.1875,0.4375;0,-0.0625,-0.4375,0.0625,0.0625,-0.3125;0.4375,0.25,0.0625,0.5,0.4375,0.1875;0.0625,0.1875,-0.5,0.1875,0.375,-0.4375;-0.4375,-0.3125,-0.0625,-0.3125,-0.1875,0;0.3125,-0.0625,0,0.4375,0.0625,0.0625;-0.1875,0.25,0.4375,-0.0625,0.4375,0.5
338 plant_pineapple_plant Plant - Pineapple lib_ecology_plant_pineapple_plant.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE plant_pineapple_plant snappy 3,flammable 2,plant 1,attached_node 1,growing 1 lib_ecology:fruit_pineapple leaves
339 plant_pineapple_plant_growing Plant - Pineapple (Growing) lib_ecology_plant_pineapple_plant_growing.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE plant_pineapple_plant snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
340 plant_potato_1 Plant - Potato 1 lib_ecology_plant_potato_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_potato_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
341 plant_potato_2 Plant - Potato 2 lib_ecology_plant_potato_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_potato_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
342 plant_potato_3 Plant - Potato 3 lib_ecology_plant_potato_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_potato_4 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
343 plant_potato_4 Plant - Potato 4 lib_ecology_plant_potato_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 lib_ecology:fruit_potato leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
344 plant_reedmace Plant - Reedmace lib_ecology_plant_reedmace.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
345 plant_reedmace_1 Plant - Reedmace 1 lib_ecology_plant_reedmace_1.png plantlike 4 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE plant_reedmace_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
346 plant_reedmace_2 Plant - Reedmace 2 lib_ecology_plant_reedmace_2.png plantlike 4 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE plant_reedmace_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
347 plant_reedmace_3 Plant - Reedmace 3 lib_ecology_plant_reedmace_3.png plantlike 4 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
348 plant_reedmace_bottom Plant - Reedmace Bottom lib_ecology_plant_reedmace_bottom.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
349 plant_reedmace_sapling Plant - Reedmace Sapling lib_ecology_plant_reedmace_sapling.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
350 plant_reedmace_spikes Plant - Reedmace Spikes lib_ecology_plant_reedmace_spikes.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
351 plant_reedmace_top Plant - Reedmace Top lib_ecology_plant_reedmace_top.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
352 plant_reedmace_water Plant - Reedmace Water lib_materials_dirt_mud_01.png lib_ecology_plant_reedmace_water.png true lib_ecology_plant_reedmace_water.png lib_ecology_plant_reedmace_water.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_ecology:plant_reedmace_water lib_ecology:plant_reedmace_water
353 plant_reedmace_sapling_water Plant - Reedmace Water lib_materials_dirt_mud_01.png lib_ecology_plant_reedmace_sapling.png true lib_ecology_plant_reedmace_sapling.png lib_ecology_plant_reedmace_sapling.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_ecology:plant_reedmace_water lib_ecology:plant_reedmace_water
354 plant_seaweed Plant - Seaweed lib_materials_sand_default.png lib_ecology_plant_seaweed.png true lib_ecology_plant_seaweed.png lib_ecology_plant_seaweed.png plantlike_rooted light leveled FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_materials:sand
355 plant_seaweed2 Plant - Seaweed2 lib_materials_sand_default.png lib_ecology_plant_seaweed.png true lib_ecology_plant_seaweed.png lib_ecology_plant_seaweed.png plantlike_rooted light leveled FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_materials:sand
356 plant_seaweed3 Plant - Seaweed3 lib_materials_sand_default.png lib_ecology_plant_seaweed.png true lib_ecology_plant_seaweed.png lib_ecology_plant_seaweed.png plantlike_rooted light leveled FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_materials:sand
357 plant_strawberry_1 Plant - Strawberry 1 lib_ecology_plant_strawberry_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_strawberry_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
358 plant_strawberry_2 Plant - Strawberry 2 lib_ecology_plant_strawberry_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_strawberry_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
359 plant_strawberry_3 Plant - Strawberry 3 lib_ecology_plant_strawberry_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_strawberry_4 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
360 plant_strawberry_4 Plant - Strawberry 4 lib_ecology_plant_strawberry_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_strawberry_5 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
361 plant_strawberry_5 Plant - Strawberry 5 lib_ecology_plant_strawberry_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_strawberry_6 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
362 plant_strawberry_6 Plant - Strawberry 6 lib_ecology_plant_strawberry_6.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_strawberry_7 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
363 plant_strawberry_7 Plant - Strawberry 7 lib_ecology_plant_strawberry_7.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_strawberry_8 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
364 plant_strawberry_8 Plant - Strawberry 8 lib_ecology_plant_strawberry_8.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 lib_ecology:fruit_strawberry leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
365 plant_umbrella Plant - Umbrella Weed lib_ecology_plant_umbrella.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
366 plant_vine_01 Vine 01 lib_ecology_plant_vine_01.png lib_ecology_plant_vine_01.png lib_ecology_plant_vine_01.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
367 plant_vine_02 Vine 02 lib_ecology_plant_vine_02.png lib_ecology_plant_vine_02.png lib_ecology_plant_vine_02.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
368 plant_vine_03 Vine 03 lib_ecology_plant_vine_03.png lib_ecology_plant_vine_03.png lib_ecology_plant_vine_03.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
369 plant_vine_ebony Vine - Ebony lib_ecology_plant_vine_ebony.png lib_ecology_plant_vine_ebony.png lib_ecology_plant_vine_ebony.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
370 plant_vine_ebony_leaves Vine - Ebony with Leaves lib_ecology_plant_vine_ebony_leaves.png lib_ecology_plant_vine_ebony_leaves.png lib_ecology_plant_vine_ebony_leaves.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
371 plant_vine_ebony_liana Vine - Ebony Liana lib_ecology_plant_vine_ebony_liana.png lib_ecology_plant_vine_ebony_liana.png lib_ecology_plant_vine_ebony_liana.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
372 plant_vine_mahogany Vine - Mahogany lib_ecology_plant_vine_mahogany.png lib_ecology_plant_vine_mahogany.png lib_ecology_plant_vine_mahogany.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
373 plant_vine_mahogany_flowers Vine - Mahogany Flowers lib_ecology_plant_vine_mahogany_flowers.png lib_ecology_plant_vine_mahogany_flowers.png lib_ecology_plant_vine_mahogany_flowers.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
374 plant_vine_mahogany_hanging Vine - Mahogany Hanging lib_ecology_plant_vine_mahogany_hanging.png lib_ecology_plant_vine_mahogany_hanging.png lib_ecology_plant_vine_mahogany_hanging.png signlike light wallmounted FALSE TRUE TRUE 1 TRUE FALSE TRUE choppy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves wallmounted
375 plant_waterlily_pink Waterlily with Pink Flower (no flower) lib_ecology_plant_waterlily_pink_noflower.png lib_ecology_plant_waterlily_item.png lib_ecology_plant_waterlily_item.png mesh 0.5 light FALSE TRUE TRUE 1 TRUE TRUE plant_waterlily_pink_with_flower snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1 leaves lib_ecology:plant_waterlily_pink lib_ecology:plant_waterlily_pink -0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375
376 plant_waterlily_pink_with_flower Waterlily with Pink Flower lib_ecology_plant_waterlily_pink.png lib_ecology_plant_waterlily_item.png lib_ecology_plant_waterlily_item.png mesh 0.5 light FALSE TRUE TRUE 1 TRUE TRUE snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1 leaves lib_ecology:plant_waterlily_pink_with_flower lib_ecology:plant_waterlily_pink_with_flower -0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375
377 plant_waterlily_yellow Waterlily with Yellow Flower (no flower) lib_ecology_plant_waterlily_yellow_noflower.png lib_ecology_plant_waterlily_item.png lib_ecology_plant_waterlily_item.png mesh 0.5 light facedir FALSE TRUE TRUE 1 TRUE TRUE plant_waterlily_yellow_with_flower snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1 leaves lib_ecology:plant_waterlily_yellow lib_ecology:plant_waterlily_yellow -0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375
378 plant_waterlily_yellow_with_flower Waterlily with Yellow Flower lib_ecology_plant_waterlily_yellow.png lib_ecology_plant_waterlily_item.png lib_ecology_plant_waterlily_item.png mesh 0.5 light facedir FALSE TRUE TRUE 1 TRUE TRUE snappy 3,flower 1,flammable 1,plant 1,attached_node 1,growing 1 leaves lib_ecology:plant_waterlily_yellow_with_flower lib_ecology:plant_waterlily_yellow_with_flower -0.4375,-0.5,-0.4375,0.4375,-0.46875,0.4375
379 plant_weed Plant - Weed lib_ecology_plant_weed.png plantlike 1.1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
380 plant_weed_dead Plant - Dead Weed lib_ecology_plant_weed_dead.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
381 plant_weed_eye Plant - Eye Weed lib_ecology_plant_weed_eye.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 lib_ecology:fruit_eye leaves -0.3,-0.5,-0.3,0.3,0,0.3
382 plant_wheat_1 Plant - Wheat 1 lib_ecology_plant_wheat_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wheat_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
383 plant_wheat_2 Plant - Wheat 2 lib_ecology_plant_wheat_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wheat_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
384 plant_wheat_3 Plant - Wheat 3 lib_ecology_plant_wheat_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wheat_4 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
385 plant_wheat_4 Plant - Wheat 4 lib_ecology_plant_wheat_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wheat_5 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
386 plant_wheat_5 Plant - Wheat 5 lib_ecology_plant_wheat_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wheat_6 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
387 plant_wheat_6 Plant - Wheat 6 lib_ecology_plant_wheat_6.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wheat_7 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
388 plant_wheat_7 Plant - Wheat 7 lib_ecology_plant_wheat_7.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wheat_8 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
389 plant_wheat_8 Plant - Wheat 8 lib_ecology_plant_wheat_8.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 lib_ecology:fruit_wheat leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
390 plant_wild_oat Plant - Wild Oat lib_ecology_plant_wild_oat.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
391 plant_wild_oat_dry Plant - Dry Wild Oat lib_ecology_plant_wild_oat_dry.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
392 plant_wild_onion_1 Wild Onion 1 lib_ecology_plant_wild_onion_1.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wild_onion_2 snappy 3,flammable 2,plant 1,attached_node 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
393 plant_wild_onion_2 Wild Onion 2 lib_ecology_plant_wild_onion_2.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wild_onion_3 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
394 plant_wild_onion_3 Wild Onion 3 lib_ecology_plant_wild_onion_3.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wild_onion_4 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
395 plant_wild_onion_4 Wild Onion 4 lib_ecology_plant_wild_onion_4.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE plant_wild_onion_5 snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 1 leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
396 plant_wild_onion_5 Wild Onion 5 lib_ecology_plant_wild_onion_5.png plantlike light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,flammable 2,plant 1,attached_node 1,not_in_creative_inventory 1,growing 0 lib_ecology:fruit_wild_onion leaves -0.375,-0.5,-0.375,0.375,-0.3125,0.375
397 plant_willow_01 Plant - Willow 01 lib_ecology_plant_willow_01.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
398 plant_willow_02 Plant - Willow 02 lib_ecology_plant_willow_01.png^[transformFY plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
399 #SEEDLING MOUND
400 #river_water_flowing default_river_water.png
401 #river_water_source default_river_water_source_animated.png
402 #seedling_mound lib_seedling_dirt.png
403 #SHRUBS
404 shrub_crystal Shrub - Crystal lib_ecology_shrub_crystal.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
405 shrub_deciduous Shrub - Deciduous lib_ecology_shrub_deciduous.png mesh 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3 shrub.obj TRUE
406 shrub_dry Shrub - Dry lib_ecology_shrub_dry.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
407 shrub_fiery Shrub - Fiery lib_ecology_shrub_fiery.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
408 shrub_hog_peanut Shrub - Hog Peanut lib_ecology_shrub_hog_peanut.png mesh 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3 shrub.obj TRUE
409 shrub_jungle Shrub - Jungle lib_ecology_shrub_jungle.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
410 shrub_lush_01 Shrub - Lush 01 lib_ecology_shrub_lush_01.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
411 shrub_lush_02 Shrub - Lush 02 lib_ecology_shrub_lush_02.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
412 shrub_scorched Shrub - Scorched lib_ecology_shrub_scorched.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
413 shrub_snowy Shrub - Snowy lib_ecology_shrub_snowy.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
414 shrub_taiga Shrub - Taiga lib_ecology_shrub_taiga.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
415 #ROCKS, CAVE, OTHER
416 #small_rocks default_stone.png
417 #small_rocks1 default_desert_stone.png
418 #small_rocks2 default_sandstone.png
419 #small_rocks3 default_stone.png
420 #small_rocks4 default_desert_stone.png
421 #small_rocks5 default_sandstone.png
422 #small_rocks6 default_stone.png
423 #stalactite default_stone.png
424 #stalactite_mossy default_stone.png
425 #stalactite_slimy default_stone.png
426 #stalagmite default_stone.png
427 #stalagmite_mossy default_stone.png
428 #stalagmite_slimy default_stone.png
429 #stone_ladder stone_ladder.png
430 #stone_with_algae default_stone.png
431 #stone_with_lichen default_stone.png
432 #stone_with_moss default_stone.png
433 #stone_with_salt caverealms_salty2.png
434 #thin_ice caverealms_thin_ice.png
435 #Node_Name Description Alias_Mod Alias_Node Tile_String Special_Tiles Inv_Image Wield_Image Draw_Type Vis_Scale Wld_Scale Param_Type ParamType2 Place_Param2 LightSource Walkable Pointable Climbable Diggable Buildable Floodable Waving Use_Alpha Sun_Prop Liquid_Point Damage_Per_Second Grnd_Cnt Leg_wall MaxLight Grow Eat Groups Max_Drops Drops Sounds Dig_Predict Place_Predict NodeBox SelBox ColBox Mesh LiquidType LiquidViscosity LiquidRange LiquidRenew LiquidAltSource LiquidAltFlow OnConstruct OnTimer TimerTrig TimerAct AfterPlace OnPlace
436 #TREES
437 tree_acacia_leaves Acacia Leaves lib_ecology_tree_acacia_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
438 tree_acacia_sapling Acacia Sapling lib_ecology_tree_acacia_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves -0.25,-0.5,-0.25,0.25,0.4375,0.25
439 tree_acacia_trunk Acacia Trunk lib_ecology_tree_acacia_trunk_top.png,lib_ecology_tree_acacia_trunk_top.png,lib_ecology_tree_acacia_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
440 tree_acacia_trunk_allface_side Acacia Block Side lib_ecology_tree_acacia_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
441 tree_acacia_trunk_allface_top Acacia Block Top lib_ecology_tree_acacia_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
442 tree_acacia_wood Acacia Wood lib_ecology_tree_acacia_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
443 tree_apple_leaves Apple Leaves lib_ecology_tree_apple_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
444 tree_apple_sapling Apple Sapling lib_ecology_tree_apple_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
445 tree_apple_trunk Apple Trunk lib_ecology_tree_apple_trunk_top.png,lib_ecology_tree_apple_trunk_top.png,lib_ecology_tree_apple_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
446 tree_apple_trunk_allface_side Apple Block Side lib_ecology_tree_apple_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
447 tree_apple_trunk_allface_top Apple Block Top lib_ecology_tree_apple_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
448 tree_apple_wood Apple Wood lib_ecology_tree_apple_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
449 tree_ash_leaves Ash Leaves lib_ecology_tree_ash_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
450 tree_ash_sapling Ash Sapling lib_ecology_tree_ash_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
451 tree_ash_trunk Ash Trunk lib_ecology_tree_ash_trunk_top.png,lib_ecology_tree_ash_trunk_top.png,lib_ecology_tree_ash_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
452 tree_ash_trunk_allface_side Ash Block Side lib_ecology_tree_ash_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
453 tree_ash_trunk_allface_top Ash Block Top lib_ecology_tree_ash_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
454 tree_ash_wood Ash Wood lib_ecology_tree_ash_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
455 tree_aspen_leaves Aspen Leaves lib_ecology_tree_aspen_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
456 tree_aspen_sapling Aspen Sapling lib_ecology_tree_aspen_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
457 tree_aspen_trunk Aspen Trunk lib_ecology_tree_aspen_trunk_top.png,lib_ecology_tree_aspen_trunk_top.png,lib_ecology_tree_aspen_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
458 tree_aspen_trunk_allface_side Aspen Block Side lib_ecology_tree_aspen_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
459 tree_aspen_trunk_allface_top Aspen Block Top lib_ecology_tree_aspen_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
460 tree_aspen_wood Aspen Wood lib_ecology_tree_aspen_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
461 tree_bamboo_01_leaves Bamboo 01 Leaves lib_ecology_tree_bamboo_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
462 tree_bamboo_01_sapling Bamboo 01 Sapling lib_ecology_tree_bamboo_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
463 tree_bamboo_01_trunk Bamboo 01 Trunk lib_ecology_tree_bamboo_01_trunk.png^[transformR90^lib_ecology_tree_bamboo_01_trunk.png,lib_ecology_tree_bamboo_01_trunk.png^[transformR90^lib_ecology_tree_bamboo_01_trunk.png,lib_ecology_tree_bamboo_01_trunk.png,lib_ecology_tree_bamboo_01_trunk.png^[transformFX,lib_ecology_tree_bamboo_01_trunk.png^[transformFX,lib_ecology_tree_bamboo_01_trunk.png nodebox light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood -0.1875,-0.5,-0.1875,0.25,0.5,0.25;-0.25,0.3125,-0.0625,-0.1875,0.4375,0.125;-0.0625,0.3125,-0.25,0.125,0.4375,-0.1875;0.25,0.125,-0.0625,0.3125,0.4375,0.125;-0.0625,0.125,0.25,0.125,0.4375,0.3125;-0.25,-0.4375,-0.0625,-0.1875,-0.3125,0.125;-0.0625,-0.4375,-0.25,0.125,-0.3125,-0.1875;-0.375,-0.375,-0.0625,-0.25,-0.3125,0.125;-0.0625,-0.375,-0.375,0.125,-0.3125,-0.25;0.3125,0.1875,-0.0625,0.375,0.25,0.125;0.375,0.25,-0.0625,0.4375,0.3125,0.125;-0.0625,0.1875,0.3125,0.125,0.25,0.375;-0.0625,0.25,0.375,0.125,0.3125,0.4375
464 tree_bamboo_01_wood Bamboo 01 Wood lib_ecology_tree_bamboo_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
465 tree_bamboo_02_leaves Bamboo 02 Leaves lib_ecology_tree_bamboo_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
466 tree_bamboo_02_sapling Bamboo 02 Sapling lib_ecology_tree_bamboo_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
467 tree_bamboo_02_trunk Bamboo 02 Trunk lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk.png nodebox light facedir TRUE TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood -0.1875,-0.5,-0.1875,0.1875,0.5,0.1875;-0.5,-0.5,0,0.5,0.5,0;0.00470524,-0.5,-0.5,0.00470524,0.5,0.5
468 tree_bamboo_02_trunk_with_leaves Bamboo 02 Trunk with Leaves lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk.png nodebox light facedir TRUE TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood -0.1875,-0.5,-0.1875,0.1875,0.5,0.1875;-0.5,-0.5,0,0.5,0.5,0;0.00470524,-0.5,-0.5,0.00470524,0.5,0.5
469 tree_bamboo_02_wood Bamboo 02 Wood lib_ecology_tree_bamboo_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood -0.1875,-0.5,-0.1875,0.1875,0.5,0.1875;-0.5,-0.5,0,0.5,0.5,0;0.00470524,-0.5,-0.5,0.00470524,0.5,0.5
470 tree_bamboo_small Small Bamboo lib_ecology_plant_bamboo_small.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
471 tree_bamboo_small_top Small Bamboo Top lib_ecology_plant_bamboo_small_top.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
472 tree_bamboo_with_leaves Bamboo with Leaves lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk_top.png,lib_ecology_tree_bamboo_02_trunk.png^lib_ecology_tree_bamboo_02_trunk.png nodebox light facedir TRUE TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
473 tree_banana_01_leaves Banana 01 Leaves lib_ecology_tree_banana_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
474 tree_banana_01_sapling Banana 01 Sapling lib_ecology_tree_banana_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
475 tree_banana_01_trunk Banana 01 Trunk lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk_top.png,lib_ecology_tree_banana_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
476 tree_banana_01_trunk_allface_side Banana 01 Block Side lib_ecology_tree_banana_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
477 tree_banana_01_trunk_allface_top Banana 01 Block Top lib_ecology_tree_banana_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
478 tree_banana_01_wood Banana 01 Wood lib_ecology_tree_banana_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
479 tree_baobab_leaves Baobab Leaves lib_ecology_tree_baobab_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
480 tree_baobab_sapling Baobab Sapling lib_ecology_tree_baobab_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
481 tree_baobab_trunk Baobab Trunk lib_ecology_tree_baobab_trunk_top.png,lib_ecology_tree_baobab_trunk_top.png,lib_ecology_tree_baobab_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
482 tree_baobab_trunk_allface_side Baobab Block Side lib_ecology_tree_baobab_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
483 tree_baobab_trunk_allface_top Baobab Block Top lib_ecology_tree_baobab_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
484 tree_baobab_wood Baobab Wood lib_ecology_tree_baobab_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
485 tree_beech_leaves Beech Leaves lib_ecology_tree_beech_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
486 tree_beech_sapling Beech Sapling lib_ecology_tree_beech_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
487 tree_beech_southern_leaves Southern Beech Leaves lib_ecology_tree_beech_southern_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
488 tree_beech_southern_sapling Southern Beech Sapling lib_ecology_tree_beech_southern_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
489 tree_beech_southern_trunk Southern Beech Trunk lib_ecology_tree_beech_southern_trunk_top.png,lib_ecology_tree_beech_southern_trunk_top.png,lib_ecology_tree_beech_southern_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
490 tree_beech_southern_trunk_allface_side Southern Beech Block Side lib_ecology_tree_beech_southern_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
491 tree_beech_southern_trunk_allface_top Southern Beech Block Top lib_ecology_tree_beech_southern_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
492 tree_beech_southern_wood Southern Beech Wood lib_ecology_tree_beech_southern_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
493 tree_beech_trunk Beech Trunk lib_ecology_tree_beech_trunk_top.png,lib_ecology_tree_beech_trunk_top.png,lib_ecology_tree_beech_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
494 tree_beech_trunk_allface_side Beech Block Side lib_ecology_tree_beech_trunk.png light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
495 tree_beech_trunk_allface_top Beech Block Top lib_ecology_tree_beech_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
496 tree_beech_wood Beech Wood lib_ecology_tree_beech_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
497 tree_birch_01_leaves Birch 01 Leaves lib_ecology_tree_birch_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
498 tree_birch_01_sapling Birch 01 Sapling lib_ecology_tree_birch_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
499 tree_birch_01_trunk Birch 01 Trunk lib_ecology_tree_birch_01_trunk_top.png,lib_ecology_tree_birch_01_trunk_top.png,lib_ecology_tree_birch_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
500 tree_birch_01_trunk_allface_side Birch 01 Block Side lib_ecology_tree_birch_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
501 tree_birch_01_trunk_allface_top Birch 01 Block Top lib_ecology_tree_birch_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
502 tree_birch_01_wood Birch 01 Wood lib_ecology_tree_birch_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
503 tree_birch_02_leaves Birch 02 Leaves lib_ecology_tree_birch_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
504 tree_birch_02_sapling Birch 02 Sapling lib_ecology_tree_birch_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
505 tree_birch_02_trunk Birch 02 Trunk lib_ecology_tree_cedar_leaves.png,lib_ecology_tree_cedar_leaves.png,lib_ecology_tree_birch_02_wood.png nodebox light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood -0.25,-0.5,-0.25,0.25,0.5,0.25 -0.25,-0.5,-0.25,0.25,0.5,0.25
506 tree_birch_02_wood Birch 02 Wood lib_ecology_tree_birch_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
507 tree_cedar_leaves Cedar Leaves lib_ecology_tree_cedar_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
508 tree_cedar_sapling Cedar Sapling lib_ecology_tree_cedar_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
509 tree_cedar_trunk Cedar Trunk lib_ecology_tree_cedar_trunk_top.png,lib_ecology_tree_cedar_trunk_top.png,lib_ecology_tree_cedar_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
510 tree_cedar_trunk_allface_side Cedar Block Side lib_ecology_tree_cedar_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
511 tree_cedar_trunk_allface_top Cedar Block Top lib_ecology_tree_cedar_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
512 tree_cedar_wood Cedar Wood lib_ecology_tree_cedar_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
513 tree_cherry_blossom_leaves Cherry Blossom Leaves lib_ecology_tree_cherry_blossom_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
514 tree_cherry_blossom_sapling Cherry Blossom Sapling lib_ecology_tree_cherry_blossom_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
515 tree_cherry_blossom_trunk Cherry Blossom Trunk lib_ecology_tree_cherry_blossom_trunk_top.png,lib_ecology_tree_cherry_blossom_trunk_top.png,lib_ecology_tree_cherry_blossom_trunk.png nodebox light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood -0.25,-0.5,-0.25,0.25,0.5,0.25 -0.25,-0.5,-0.25,0.25,0.5,0.25
516 tree_cherry_blossom_wood Cherry Blossom Wood lib_ecology_tree_cherry_blossom_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
517 tree_cherry_leaves Cherry Leaves lib_ecology_tree_cherry_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
518 tree_cherry_sapling Cherry Sapling lib_ecology_tree_cherry_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
519 tree_cherry_trunk Cherry Trunk lib_ecology_tree_cherry_trunk_top.png,lib_ecology_tree_cherry_trunk_top.png,lib_ecology_tree_cherry_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
520 tree_cherry_trunk_allface_side Cherry Block Side lib_ecology_tree_cherry_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
521 tree_cherry_trunk_allface_top Cherry Block Top lib_ecology_tree_cherry_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
522 tree_cherry_wood Cherry Wood lib_ecology_tree_cherry_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
523 tree_chestnut_leaves Chestnut Leaves lib_ecology_tree_chestnut_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
524 tree_chestnut_sapling Chestnut Sapling lib_ecology_tree_chestnut_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
525 tree_chestnut_trunk Chestnut Trunk lib_ecology_tree_chestnut_trunk_top.png,lib_ecology_tree_chestnut_trunk_top.png,lib_ecology_tree_chestnut_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
526 tree_chestnut_trunk_allface_side Chestnut Block Side lib_ecology_tree_chestnut_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
527 tree_chestnut_trunk_allface_top Chestnut Block Top lib_ecology_tree_chestnut_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
528 tree_chestnut_wood Chestnut Wood lib_ecology_tree_chestnut_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
529 tree_chestnut_american_leaves American Chestnut Leaves lib_ecology_tree_chestnut_american_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
530 tree_chestnut_american_sapling American Chestnut Sapling lib_ecology_tree_chestnut_american_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
531 tree_chestnut_american_trunk American Chestnut Trunk lib_ecology_tree_chestnut_american_trunk_top.png,lib_ecology_tree_chestnut_american_trunk_top.png,lib_ecology_tree_chestnut_american_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
532 tree_chestnut_american_trunk_allface_side American Chestnut Block Side lib_ecology_tree_chestnut_american_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
533 tree_chestnut_american_trunk_allface_top American Chestnut Block Top lib_ecology_tree_chestnut_american_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
534 tree_chestnut_american_wood American Chestnut Wood lib_ecology_tree_chestnut_american_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
535 tree_chestnut_american_burr American Chestnut Burr lib_ecology_tree_chestnut_american_burr.png plantlike 1 light FALSE TRUE FALSE fleshy 3,dig_immediate 3,flammable 2,leafdecay 1,leafdecay_drop 1 leaves -0.35,-0.5,-0.35,0.35,0.5,0.35
536 tree_clementine_leaves Clementine Leaves lib_ecology_tree_clementine_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
537 tree_clementine_sapling Clementine Sapling lib_ecology_tree_clementine_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
538 tree_clementine_trunk Clementine Trunk lib_ecology_tree_clementine_trunk_top.png,lib_ecology_tree_clementine_trunk_top.png,lib_ecology_tree_clementine_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
539 tree_clementine_trunk_allface_side Clementine Block Side lib_ecology_tree_clementine_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
540 tree_clementine_trunk_allface_top Clementine Block Top lib_ecology_tree_clementine_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
541 tree_clementine_wood Clementine Wood lib_ecology_tree_clementine_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
542 tree_conifers_leaves Conifers Leaves lib_ecology_tree_conifers_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
543 tree_conifers_sapling Conifers Sapling lib_ecology_tree_conifers_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
544 tree_conifers_trunk Conifers Trunk lib_ecology_tree_conifers_trunk_top.png,lib_ecology_tree_conifers_trunk_top.png,lib_ecology_tree_conifers_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
545 tree_conifers_trunk_allface_side Conifers Block Side lib_ecology_tree_conifers_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
546 tree_conifers_trunk_allface_top Conifers Block Top lib_ecology_tree_conifers_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
547 tree_conifers_wood Conifers Wood lib_ecology_tree_conifers_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
548 tree_cypress_leaves Cypress Leaves lib_ecology_tree_cypress_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
549 tree_cypress_sapling Cypress Sapling lib_ecology_tree_cypress_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
550 tree_cypress_trunk Cypress Trunk lib_ecology_tree_cypress_trunk_top.png,lib_ecology_tree_cypress_trunk_top.png,lib_ecology_tree_cypress_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
551 tree_cypress_trunk_allface_side Cypress Block Side lib_ecology_tree_cypress_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
552 tree_cypress_trunk_allface_top Cypress Block Top lib_ecology_tree_cypress_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
553 tree_cypress_wood Cypress Wood lib_ecology_tree_cypress_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
554 tree_default_leaves Default Leaves lib_ecology_tree_default_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
555 tree_default_sapling Default Sapling lib_ecology_tree_default_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
556 tree_default_trunk Default Trunk lib_ecology_tree_default_trunk_top.png,lib_ecology_tree_default_trunk_top.png,lib_ecology_tree_default_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
557 tree_default_trunk_allface_side Default Block Side lib_ecology_tree_default_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
558 tree_default_trunk_allface_top Default Block Top lib_ecology_tree_default_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
559 tree_default_wood Default Wood lib_ecology_tree_default_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
560 tree_desert_palm Desert Palm lib_ecology_plant_desert_palm.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
561 tree_dry_leaves Dry Leaves lib_ecology_tree_dry_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
562 tree_dry_sapling Dry Sapling lib_ecology_tree_dry_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
563 tree_dry_trunk Dry Trunk lib_ecology_tree_dry_trunk_top.png,lib_ecology_tree_dry_trunk_top.png,lib_ecology_tree_dry_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
564 tree_dry_trunk_allface_side Dry Block Side lib_ecology_tree_dry_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
565 tree_dry_trunk_allface_top Dry Block Top lib_ecology_tree_dry_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
566 tree_dry_wood Dry Wood lib_ecology_tree_dry_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
567 tree_ebony_leaves Ebony Leaves lib_ecology_tree_ebony_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
568 tree_ebony_sapling Ebony Sapling lib_ecology_tree_ebony_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
569 tree_ebony_trunk Ebony Trunk lib_ecology_tree_ebony_trunk_top.png,lib_ecology_tree_ebony_trunk_top.png,lib_ecology_tree_ebony_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
570 tree_ebony_trunk_allface_side Ebony Block Side lib_ecology_tree_ebony_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
571 tree_ebony_trunk_allface_top Ebony Block Top lib_ecology_tree_ebony_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
572 tree_ebony_wood Ebony Wood lib_ecology_tree_ebony_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
573 tree_eucalyptus_leaves Eucalyptus Leaves lib_ecology_tree_eucalyptus_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
574 tree_eucalyptus_sapling Eucalyptus Sapling lib_ecology_tree_eucalyptus_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE schem_tree_eucalyptus_01,schem_tree_eucalyptus_large_01 snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
575 tree_eucalyptus_trunk Eucalyptus Trunk lib_ecology_tree_eucalyptus_trunk_top.png,lib_ecology_tree_eucalyptus_trunk_top.png,lib_ecology_tree_eucalyptus_trunk.png light facedir TRUE FALSE choppy = 1, flammable = 2, tree = 1, lib_ecology_tree = 1 wood
576 tree_eucalyptus_trunk_allface_side Eucalyptus Block Side lib_ecology_tree_eucalyptus_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
577 tree_eucalyptus_trunk_allface_top Eucalyptus Block Top lib_ecology_tree_eucalyptus_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
578 tree_eucalyptus_wood Eucalyptus Wood lib_ecology_tree_eucalyptus_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
579 tree_fern_giant_crown Giant Fern Crown lib_ecology_tree_fern_giant_crown.png
580 tree_fern_giant_leaves Giant Fern Leaves lib_ecology_tree_fern_giant_leaves.png
581 tree_fern_giant_leaves_big Giant Fern Leaves Big lib_ecology_tree_fern_giant_leaves.png
582 tree_fern_giant_leaves_end Giant Fern Leaves End lib_ecology_tree_fern_giant_leaves_end.png
583 tree_fern_giant_sapling Giant Fern Sapling lib_ecology_tree_fern_giant_sapling.png
584 tree_fern_giant_trunk Giant Fern Trunk lib_ecology_tree_fern_giant_trunk_top.png,lib_ecology_tree_fern_giant_trunk_top.png,lib_ecology_tree_fern_giant_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
585 tree_fern_giant_trunk_top Gian Fern Trunk Top lib_ecology_tree_fern_giant_leaves_cross.png,lib_ecology_tree_fern_giant_trunk_top.png,lib_ecology_tree_fern_giant_trunk.png
586 tree_fern_giant2_crown Giant Fern2 Crown lib_ecology_fern_giant_tree_crown2.png
587 tree_fern_giant2_leaves Giant Fern2 Leaves lib_ecology_fern_giant_tree_leaves2.png
588 tree_fern_giant2_leaves_end Giant Fern2 Leaves End lib_ecology_fern_giant_tree_leaves_end2.png
589 tree_fern_giant2_trunk_top Giant Fern2 Trunk Top lib_ecology_fern_giant_tree_leaves_cross2.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
590 tree_fern_small_leaves_01 Small Fern Leaves 01 lib_ecology_tree_fern_small_01_leaves.png
591 tree_fern_small_leaves_02 Small Fern Leaves 02 lib_ecology_tree_fern_small_02_leaves.png
592 tree_fern_small_sapling Small Fern Sapling lib_ecology_tree_fern_small_sapling.png
593 tree_fern_small_trunk Small Fern Trunk lib_ecology_tree_fern_small_trunk_top.png,lib_ecology_tree_fern_small_trunk_top.png,lib_ecology_tree_fern_small_trunk.png nodebox light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood -0.5,0.5,-0.5,0.5,0.5,0.5;-0.125,-0.5,-0.125,0.125,0.5,0.125 -0.125,-0.5,-0.125,0.125,0.5,0.125 0.142857142857143
594 tree_fir_coast_leaves Coast Fir Leaves lib_ecology_tree_fir_coast_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves 0.125
595 tree_fir_coast_sapling Coast Fir Sapling lib_ecology_tree_fir_coast_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
596 tree_fir_coast_trunk Coast Fir Trunk lib_ecology_tree_fir_coast_trunk_top.png,lib_ecology_tree_fir_coast_trunk_top.png,lib_ecology_tree_fir_coast_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
597 tree_fir_coast_trunk_allface_side Coast Fir Block Side lib_ecology_tree_fir_coast_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
598 tree_fir_coast_trunk_allface_top Coast Fir Block Top lib_ecology_tree_fir_coast_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
599 tree_fir_coast_wood Coast Fir Wood lib_ecology_tree_fir_coast_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
600 tree_fir_doug_leaves Douglas Fir Leaves lib_ecology_tree_fir_doug_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
601 tree_fir_doug_sapling Douglas Fir Sapling lib_ecology_tree_fir_doug_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
602 tree_fir_doug_trunk Douglas Fir Trunk lib_ecology_tree_fir_doug_trunk_top.png,lib_ecology_tree_fir_doug_trunk_top.png,lib_ecology_tree_fir_doug_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
603 tree_fir_doug_trunk_allface_side Douglas Fir Block Side lib_ecology_tree_fir_doug_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
604 tree_fir_doug_trunk_allface_top Douglas Fir Block Top lib_ecology_tree_fir_doug_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
605 tree_fir_doug_wood Douglas Fir Wood lib_ecology_tree_fir_doug_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
606 tree_fir_leaves Fir Leaves lib_ecology_tree_fir_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
607 tree_fir_sapling Fir Sapling lib_ecology_tree_fir_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
608 tree_fir_trunk Fir Trunk lib_ecology_tree_fir_trunk_top.png,lib_ecology_tree_fir_trunk_top.png,lib_ecology_tree_fir_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
609 tree_fir_trunk_allface_side Fir Block Side lib_ecology_tree_fir_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
610 tree_fir_trunk_allface_top Fir Block Top lib_ecology_tree_fir_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
611 tree_fir_wood Fir Wood lib_ecology_tree_fir_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
612 tree_frost_leaves Frost Leaves lib_ecology_tree_frost_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
613 tree_frost_sapling Frost Sapling lib_ecology_tree_frost_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
614 tree_frost_trunk Frost Trunk lib_ecology_tree_frost_trunk_top.png,lib_ecology_tree_frost_trunk_top.png,lib_ecology_tree_frost_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
615 tree_frost_trunk_allface_side Frost Block Side lib_ecology_tree_frost_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
616 tree_frost_trunk_allface_top Frost Block Top lib_ecology_tree_frost_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
617 tree_frost_wood Frost Wood lib_ecology_tree_frost_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
618 tree_generic_brown_trunk Generic Brown Trunk lib_ecology_tree_generic_brown_trunk_top.png,lib_ecology_tree_generic_brown_trunk_top.png,lib_ecology_tree_generic_brown_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
619 tree_generic_green_trunk Generic Green Trunk lib_ecology_tree_generic_green_trunk_top.png,lib_ecology_tree_generic_green_trunk_top.png,lib_ecology_tree_generic_green_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
620 tree_generic_grey_trunk Generic Grey Trunk lib_ecology_tree_generic_grey_trunk_top.png,lib_ecology_tree_generic_grey_trunk_top.png,lib_ecology_tree_generic_grey_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
621 tree_generic_jungle_02_trunk Generic Jungle 02 Trunk lib_ecology_tree_generic_jungle_02_trunk_top.png,lib_ecology_tree_generic_jungle_02_trunk_top.png,lib_ecology_tree_generic_jungle_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
622 tree_generic_jungle_03_trunk Generic Jungle 03 Trunk lib_ecology_tree_generic_jungle_03_trunk_top.png,lib_ecology_tree_generic_jungle_03_trunk_top.png,lib_ecology_tree_generic_jungle_03_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
623 tree_ginkgo_leaves Ginkgo Leaves lib_ecology_tree_ginkgo_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
624 tree_ginkgo_sapling Ginkgo Sapling lib_ecology_tree_ginkgo_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
625 tree_ginkgo_trunk Ginkgo Trunk lib_ecology_tree_ginkgo_trunk_top.png,lib_ecology_tree_ginkgo_trunk_top.png,lib_ecology_tree_ginkgo_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
626 tree_ginkgo_trunk_allface_side Ginkgo Block Side lib_ecology_tree_ginkgo_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
627 tree_ginkgo_trunk_allface_top Ginkgo Block Top lib_ecology_tree_ginkgo_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
628 tree_ginkgo_wood Ginkgo Wood lib_ecology_tree_ginkgo_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
629 tree_ipe_yellow_leaves Yellow Ipe Leaves lib_ecology_tree_ipe_yellow_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
630 tree_ipe_yellow_sapling Yellow Ipe Sapling lib_ecology_tree_ipe_yellow_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
631 tree_ipe_yellow_trunk Yellow Ipe Trunk lib_ecology_tree_ipe_yellow_trunk_top.png,lib_ecology_tree_ipe_yellow_trunk_top.png,lib_ecology_tree_ipe_yellow_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
632 tree_ipe_yellow_trunk_allface_side Yellow Ipe Block Side lib_ecology_tree_ipe_yellow_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
633 tree_ipe_yellow_trunk_allface_top Yellow Ipe Block Top lib_ecology_tree_ipe_yellow_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
634 tree_ipe_yellow_wood Yellow Ipe Wood lib_ecology_tree_ipe_yellow_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
635 tree_jungle_01_leaves Jungle 01 Leaves lib_ecology_tree_jungle_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
636 tree_jungle_01_sapling Jungle 01 Sapling lib_ecology_tree_jungle_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
637 tree_jungle_01_trunk Jungle 01 Trunk lib_ecology_tree_jungle_01_trunk_top.png,lib_ecology_tree_jungle_01_trunk_top.png,lib_ecology_tree_jungle_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
638 tree_jungle_01_trunk_allface_side Jungle 01 Block Side lib_ecology_tree_jungle_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
639 tree_jungle_01_trunk_allface_top Jungle 01 Block Top lib_ecology_tree_jungle_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
640 tree_jungle_01_wood Jungle 01 Wood lib_ecology_tree_jungle_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
641 tree_jungle_02_leaves Jungle 02 Leaves lib_ecology_tree_jungle_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
642 tree_jungle_02_sapling Jungle 02 Sapling lib_ecology_tree_jungle_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
643 tree_jungle_02_trunk Jungle 02 Trunk lib_ecology_tree_jungle_02_trunk_top.png,lib_ecology_tree_jungle_02_trunk_top.png,lib_ecology_tree_jungle_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
644 tree_jungle_02_trunk_allface_side Jungle 02 Block Side lib_ecology_tree_jungle_02_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
645 tree_jungle_02_trunk_allface_top Jungle 02 Block Top lib_ecology_tree_jungle_02_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
646 tree_jungle_02_wood Jungle 02 Wood lib_ecology_tree_jungle_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
647 tree_jungle_03_leaves Jungle 03 Leaves lib_ecology_tree_jungle_03_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
648 tree_jungle_03_sapling Jungle 03 Sapling lib_ecology_tree_jungle_03_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
649 tree_jungle_03_trunk Jungle 03 Trunk lib_ecology_tree_jungle_03_trunk_top.png,lib_ecology_tree_jungle_03_trunk_top.png,lib_ecology_tree_jungle_03_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
650 tree_jungle_03_trunk_allface_side Jungle 03 Block Side lib_ecology_tree_jungle_03_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
651 tree_jungle_03_trunk_allface_top Jungle 03 Block Top lib_ecology_tree_jungle_03_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
652 tree_jungle_03_wood Jungle 03 Wood lib_ecology_tree_jungle_03_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
653 #tree_jungle_palm_01_leaves Jungle 01 Palm Leaves lib_ecology_tree_jungle_palm_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
654 #tree_jungle_palm_01_sapling Jungle 01 Palm Sapling lib_ecology_tree_jungle_palm_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
655 #tree_jungle_palm_01_trunk Jungle 01 Palm Trunk lib_ecology_tree_jungle_palm_01_trunk_top.png,lib_ecology_tree_jungle_palm_01_trunk_top.png,lib_ecology_tree_jungle_palm_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
656 #tree_jungle_palm_01_trunk_allface_side Jungle 01 Palm Block Side lib_ecology_tree_jungle_palm_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
657 #tree_jungle_palm_01_trunk_allface_top Jungle 01 Palm Block Top lib_ecology_tree_jungle_palm_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
658 #tree_jungle_palm_01_wood Jungle 01 Palm Wood lib_ecology_tree_jungle_palm_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
659 #tree_jungle_palm_02_leaves Jungle 02 Palm Leaves lib_ecology_tree_jungle_palm_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
660 #tree_jungle_palm_02_sapling Jungle 02 Palm Sapling lib_ecology_tree_jungle_palm_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
661 #tree_jungle_palm_02_trunk Jungle 02 Palm Trunk lib_ecology_tree_jungle_palm_02_trunk_top.png,lib_ecology_tree_jungle_palm_02_trunk_top.png,lib_ecology_tree_jungle_palm_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
662 #tree_jungle_palm_02_trunk_allface_side Jungle 02 Palm Block Side lib_ecology_tree_jungle_palm_02_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
663 #tree_jungle_palm_02_trunk_allface_top Jungle 02 Palm Block Top lib_ecology_tree_jungle_palm_02_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
664 #tree_jungle_palm_02_wood Jungle 02 Palm Wood lib_ecology_tree_jungle_palm_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
665 #tree_jungle_palm_03_leaves Jungle 03 Palm Leaves lib_ecology_tree_jungle_palm_03_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
666 #tree_jungle_palm_03_sapling Jungle 03 Palm Sapling lib_ecology_tree_jungle_palm_03_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
667 #tree_jungle_palm_03_trunk Jungle 03 Palm Trunk lib_ecology_tree_jungle_palm_03_trunk_top.png,lib_ecology_tree_jungle_palm_03_trunk_top.png,lib_ecology_tree_jungle_palm_03_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
668 #tree_jungle_palm_03_trunk_allface_side Jungle 03 Palm Block Side lib_ecology_tree_jungle_palm_03_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
669 #tree_jungle_palm_03_trunk_allface_top Jungle 03 Palm Block Top lib_ecology_tree_jungle_palm_03_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
670 #tree_jungle_palm_03_wood Jungle 03 Palm Wood lib_ecology_tree_jungle_palm_03_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
671 tree_larch_leaves Larch Leaves lib_ecology_tree_larch_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
672 tree_larch_sapling Larch Sapling lib_ecology_tree_larch_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
673 tree_larch_trunk Larch Trunk lib_ecology_tree_larch_trunk_top.png,lib_ecology_tree_larch_trunk_top.png,lib_ecology_tree_larch_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
674 tree_larch_trunk_allface_side Larch Block Side lib_ecology_tree_larch_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
675 tree_larch_trunk_allface_top Larch Block Top lib_ecology_tree_larch_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
676 tree_larch_wood Larch Wood lib_ecology_tree_larch_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
677 tree_larch_moss Larch Wood lib_ecology_tree_larch_moss.png nodebox facedir 0 FALSE snappy = 2,flammable = 3,oddly_breakable_by_hand = 3,choppy = 2,carpet = 1,leafdecay = 3,leaves = 1,falling_node = 1 wood -0.5,-0.5,0.49,0.5,0.5,0.5
678 tree_lavender_leaves Lavender Leaves lib_ecology_tree_lavender_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
679 tree_lavender_sapling Lavender Sapling lib_ecology_tree_lavender_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
680 tree_lavender_trunk Lavender Trunk lib_ecology_tree_lavender_trunk_top.png,lib_ecology_tree_lavender_trunk_top.png,lib_ecology_tree_lavender_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
681 tree_lavender_trunk_allface_side Lavender Block Side lib_ecology_tree_lavender_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
682 tree_lavender_trunk_allface_top Lavender Block Top lib_ecology_tree_lavender_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
683 tree_lavender_wood Lavender Wood lib_ecology_tree_lavender_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
684 tree_leaves_autumn Generic Autumn Leaves lib_ecology_tree_leaves_autumn.png allfaces_optional
685 tree_leaves_dk_green Generic Dark Green Leaves lib_ecology_tree_leaves_dk_green.png allfaces_optional
686 tree_leaves_dk_green_2 Generic Dark Green 2 Leaves lib_ecology_tree_leaves_dk_green.png allfaces_optional
687 tree_leaves_dk_green_3 Generic Dark Green 3 Leaves lib_ecology_tree_leaves_dk_green.png allfaces_optional
688 tree_leaves_dk_green_simple Generic Dark Green Simple Leaves lib_ecology_tree_leaves_dk_green_simple.png allfaces_optional
689 tree_leaves_dk_green_simple_2 Generic Dark Green 2 Simple Leaves lib_ecology_tree_leaves_dk_green_simple.png allfaces_optional
690 tree_leaves_dk_green_simple_3 Generic Dark Green 3 Simple Leaves lib_ecology_tree_leaves_dk_green_simple.png allfaces_optional
691 tree_leaves_dry Generic Dry Leaves lib_ecology_tree_leaves_dry.png allfaces_optional
692 tree_leaves_green Generic Green Leaves lib_ecology_tree_leaves_green.png allfaces_optional
693 tree_leaves_green_2 Generic Green 2 Leaves lib_ecology_tree_leaves_green.png allfaces_optional
694 tree_leaves_green_3 Generic Green 3 Leaves lib_ecology_tree_leaves_green.png allfaces_optional
695 tree_leaves_purple Generic Purple Leaves lib_ecology_tree_leaves_purple.png allfaces_optional
696 tree_leaves_red Generic Red Leaves lib_ecology_tree_leaves_red.png allfaces_optional
697 tree_leaves_white Generic White Leaves lib_ecology_tree_leaves_white.png allfaces_optional
698 tree_leaves_yellow Generic Yellow Leaves lib_ecology_tree_leaves_yellow.png allfaces_optional
699 tree_lemon_leaves Lemon Leaves lib_ecology_tree_lemon_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
700 tree_lemon_sapling Lemon Sapling lib_ecology_tree_lemon_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
701 tree_lemon_trunk Lemon Trunk lib_ecology_tree_lemon_trunk_top.png,lib_ecology_tree_lemon_trunk_top.png,lib_ecology_tree_lemon_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
702 tree_lemon_trunk_allface_side Lemon Block Side lib_ecology_tree_lemon_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
703 tree_lemon_trunk_allface_top Lemon Block Top lib_ecology_tree_lemon_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
704 tree_lemon_wood Lemon Wood lib_ecology_tree_lemon_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
705 tree_mahogany_leaves Mahogany Leaves lib_ecology_tree_mahogany_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
706 tree_mahogany_sapling Mahogany Sapling lib_ecology_tree_mahogany_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
707 tree_mahogany_trunk Mahogany Trunk lib_ecology_tree_mahogany_trunk_top.png,lib_ecology_tree_mahogany_trunk_top.png,lib_ecology_tree_mahogany_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
708 tree_mahogany_trunk_allface_side Mahogany Block Side lib_ecology_tree_mahogany_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
709 tree_mahogany_trunk_allface_top Mahogany Block Top lib_ecology_tree_mahogany_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
710 tree_mahogany_wood Mahogany Wood lib_ecology_tree_mahogany_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
711 tree_mangrove_leaves Mangrove Leaves lib_ecology_tree_mangrove_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
712 tree_mangrove_root Mangrove Root aus_mangrove_mud.png lib_ecology_tree_mangrove_roots.png false lib_ecology_tree_mangrove_roots.png lib_ecology_tree_mangrove_roots.png plantlike_rooted light FALSE FALSE 1 TRUE FALSE snappy 3,sea 1 dirt lib_ecology:tree_mangrove_root lib_ecology:tree_mangrove_root
713 tree_mangrove_sapling Mangrove Sapling lib_ecology_tree_mangrove_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
714 tree_mangrove_trunk Mangrove Trunk lib_ecology_tree_mangrove_trunk_top.png,lib_ecology_tree_mangrove_trunk_top.png,lib_ecology_tree_mangrove_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
715 tree_mangrove_trunk_allface_side Mangrove Block Side lib_ecology_tree_mangrove_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
716 tree_mangrove_trunk_allface_top Mangrove Block Top lib_ecology_tree_mangrove_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
717 tree_mangrove_wood Mangrove Wood lib_ecology_tree_mangrove_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
718 tree_maple_leaves Maple Leaves lib_ecology_tree_maple_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
719 tree_maple_sapling Maple Sapling lib_ecology_tree_maple_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
720 tree_maple_trunk Maple Trunk lib_ecology_tree_maple_trunk_top.png,lib_ecology_tree_maple_trunk_top.png,lib_ecology_tree_maple_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
721 tree_maple_trunk_allface_side Maple Block Side lib_ecology_tree_maple_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
722 tree_maple_trunk_allface_top Maple Block Top lib_ecology_tree_maple_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
723 tree_maple_wood Maple Wood lib_ecology_tree_maple_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
724 tree_maple_sugar_leaves Sugar Maple Leaves lib_ecology_tree_maple_sugar_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
725 tree_maple_sugar_sapling Sugar Maple Sapling lib_ecology_tree_maple_sugar_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
726 tree_maple_sugar_trunk Sugar Maple Trunk lib_ecology_tree_maple_sugar_trunk_top.png,lib_ecology_tree_maple_sugar_trunk_top.png,lib_ecology_tree_maple_sugar_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
727 tree_maple_sugar_trunk_allface_side Sugar Maple Block Side lib_ecology_tree_maple_sugar_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
728 tree_maple_sugar_trunk_allface_top Sugar Maple Block Top lib_ecology_tree_maple_sugar_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
729 tree_maple_sugar_wood Sugar Maple Wood lib_ecology_tree_maple_sugar_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
730 tree_mirabelle_leaves Mirabelle Leaves lib_ecology_tree_mirabelle_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
731 tree_mirabelle_sapling Mirabelle Sapling lib_ecology_tree_mirabelle_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
732 tree_mirabelle_trunk Mirabelle Trunk lib_ecology_tree_mirabelle_trunk_top.png,lib_ecology_tree_mirabelle_trunk_top.png,lib_ecology_tree_mirabelle_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
733 tree_mirabelle_trunk_allface_side Mirabelle Block Side lib_ecology_tree_mirabelle_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
734 tree_mirabelle_trunk_allface_top Mirabelle Block Top lib_ecology_tree_mirabelle_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
735 tree_mirabelle_wood Mirabelle Wood lib_ecology_tree_mirabelle_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
736 tree_oak_leaves Oak Leaves lib_ecology_tree_oak_leaves.png allfaces_optional
737 tree_oak_red_leaves Red Oak Leaves lib_ecology_tree_oak_red_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
738 tree_oak_red_sapling Red Oak Sapling lib_ecology_tree_oak_red_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
739 tree_oak_red_trunk Red Oak Trunk lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
740 tree_oak_red_trunk_allface_side Red Oak Block Side lib_ecology_tree_oak_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
741 tree_oak_red_trunk_allface_top Red Oak Block Top lib_ecology_tree_oak_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
742 tree_oak_red_wood Red Oak Wood lib_ecology_tree_oak_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
743 tree_oak_sapling Oak Sapling lib_ecology_tree_oak_sapling.png
744 tree_oak_southern_leaves Southern Oak Leaves lib_ecology_tree_oak_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
745 tree_oak_southern_sapling Southern Oak Sapling lib_ecology_tree_oak_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
746 tree_oak_southern_trunk Southern Oak Trunk lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
747 tree_oak_southern_trunk_allface_side Southern Oak Block Side lib_ecology_tree_oak_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
748 tree_oak_southern_trunk_allface_top Southern Oak Block Top lib_ecology_tree_oak_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
749 tree_oak_southern_wood Southern Oak Wood lib_ecology_tree_oak_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
750 tree_oak_trunk Oak Trunk lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk_top.png,lib_ecology_tree_oak_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
751 tree_oak_trunk_allface_side Oak Block Side lib_ecology_tree_oak_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
752 tree_oak_trunk_allface_top Oak Block Top lib_ecology_tree_oak_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
753 tree_oak_wood Oak Wood lib_ecology_tree_oak_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
754 tree_orange_leaves Orange Leaves lib_ecology_tree_orange_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
755 tree_orange_sapling Orange Sapling lib_ecology_tree_orange_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
756 tree_orange_trunk Orange Trunk lib_ecology_tree_orange_trunk_top.png,lib_ecology_tree_orange_trunk_top.png,lib_ecology_tree_orange_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
757 tree_orange_trunk_allface_side Orange Block Side lib_ecology_tree_orange_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
758 tree_orange_trunk_allface_top Orange Block Top lib_ecology_tree_orange_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
759 tree_orange_wood Orange Wood lib_ecology_tree_orange_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
760 #tree_palm_01_leaves Palm 01 Leaves lib_ecology_tree_palm_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
761 #tree_palm_01_sapling Palm 01 Sapling lib_ecology_tree_palm_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
762 #tree_palm_01_trunk Palm 01 Trunk lib_ecology_tree_palm_01_trunk_top.png,lib_ecology_tree_palm_01_trunk_top.png,lib_ecology_tree_palm_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
763 #tree_palm_01_trunk_allface_side Palm 01 Block Side lib_ecology_tree_palm_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
764 #tree_palm_01_trunk_allface_top Palm 01 Block Top lib_ecology_tree_palm_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
765 #tree_palm_01_wood Palm 01 Wood lib_ecology_tree_palm_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
766 #tree_palm_02_leaves Palm 02 Leaves lib_ecology_tree_palm_02_leaves.png allfaces_optional
767 #tree_palm_02_leaves2 Palm 02 Leaves2 lib_ecology_tree_palm_02_leaves.png allfaces_optional
768 #tree_palm_02_sapling Palm 02 Sapling lib_ecology_tree_palm_02_sapling.png
769 #tree_palm_02_trunk Palm 02 Trunk lib_ecology_tree_palm_02_trunk_top.png,lib_ecology_tree_palm_02_trunk_top.png,lib_ecology_tree_palm_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
770 #tree_palm_02_wood Palm 02 Wood lib_ecology_tree_palm_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
771 tree_palm_coconut_leaves Coconut Palm Leaves lib_ecology_tree_palm_coconut_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
772 tree_palm_coconut_sapling Coconut Palm Sapling lib_ecology_tree_palm_coconut_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
773 tree_palm_coconut_trunk Coconut Palm Trunk lib_ecology_tree_palm_coconut_trunk_top.png,lib_ecology_tree_palm_coconut_trunk_top.png,lib_ecology_tree_palm_coconut_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
774 tree_palm_coconut_trunk_allface_side Coconut Palm Block Side lib_ecology_tree_palm_coconut_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
775 tree_palm_coconut_trunk_allface_top Coconut Palm Block Top lib_ecology_tree_palm_coconut_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
776 tree_palm_coconut_wood Coconut Palm Wood lib_ecology_tree_palm_coconut_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
777 tree_palm_date_leaves Date Palm Leaves lib_ecology_tree_palm_date_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
778 tree_palm_date_sapling Date Palm Sapling lib_ecology_tree_palm_date_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
779 tree_palm_date_trunk Date Palm Trunk lib_ecology_tree_palm_date_trunk_top.png,lib_ecology_tree_palm_date_trunk_top.png,lib_ecology_tree_palm_date_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
780 tree_palm_date_trunk_allface_side Date Palm Block Side lib_ecology_tree_palm_date_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
781 tree_palm_date_trunk_allface_top Date Palm Block Top lib_ecology_tree_palm_date_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
782 tree_palm_date_wood Date Palm Wood lib_ecology_tree_palm_date_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
783 tree_palm_desert_01_leaves Desert Palm 01 Leaves lib_ecology_tree_palm_desert_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
784 tree_palm_desert_01_sapling Desert Palm 01 Sapling lib_ecology_tree_palm_desert_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
785 tree_palm_desert_01_trunk Desert Palm 01 Trunk lib_ecology_tree_palm_desert_01_trunk_top.png,lib_ecology_tree_palm_desert_01_trunk_top.png,lib_ecology_tree_palm_desert_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
786 tree_palm_desert_01_trunk_allface_side Desert Palm 01 Block Side lib_ecology_tree_palm_desert_01_trunk.png light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
787 tree_palm_desert_01_trunk_allface_top Desert Palm 01 Block Top lib_ecology_tree_palm_desert_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
788 tree_palm_desert_01_wood Desert Palm 01 Wood lib_ecology_tree_palm_desert_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
789 tree_palm_desert_02_leaves Desert Palm 02 Leaves lib_ecology_tree_palm_desert_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
790 tree_palm_desert_02_sapling Desert Palm 02 Sapling lib_ecology_tree_palm_desert_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
791 tree_palm_desert_02_trunk Desert Palm 02 Trunk lib_ecology_tree_palm_desert_02_trunk_top.png,lib_ecology_tree_palm_desert_02_trunk_top.png,lib_ecology_tree_palm_desert_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
792 tree_palm_desert_02_trunk_allface_side Desert Palm 02 Block Side lib_ecology_tree_palm_desert_02_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
793 tree_palm_desert_02_trunk_allface_top Desert Palm 02 Block Top lib_ecology_tree_palm_desert_02_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
794 tree_palm_desert_02_wood Desert Palm 02 Wood lib_ecology_tree_palm_desert_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
795 tree_palm_desert_03_leaves Desert Palm 03 Leaves lib_ecology_tree_palm_desert_03_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
796 tree_palm_desert_03_sapling Desert Palm 03 Sapling lib_ecology_tree_palm_desert_03_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
797 tree_palm_desert_03_trunk Desert Palm 03 Trunk lib_ecology_tree_palm_desert_03_trunk_top.png,lib_ecology_tree_palm_desert_03_trunk_top.png,lib_ecology_tree_palm_desert_03_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
798 tree_palm_desert_03_trunk_allface_side Desert Palm 03 Block Side lib_ecology_tree_palm_desert_03_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
799 tree_palm_desert_03_trunk_allface_top Desert Palm 03 Block Top lib_ecology_tree_palm_desert_03_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
800 tree_palm_desert_03_wood Desert Palm 03 Wood lib_ecology_tree_palm_desert_03_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
801 tree_palmetto lib_ecology_tree_palmetto_trunk_top.png
802 tree_palmetto_leaves lib_ecology_tree_palmetto_leaves.png plantlike 1 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
803 tree_palmetto_leaves2 lib_ecology_tree_palmetto_leaves2.png
804 tree_palmetto_trunk lib_ecology_tree_palmetto_trunk_top.png,lib_ecology_tree_palmetto_trunk_top.png,lib_ecology_tree_palmetto_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
805 tree_palm_jungle_01_leaves Jungle Palm 01 Leaves lib_ecology_tree_palm_jungle_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
806 tree_palm_jungle_01_sapling Jungle Palm 01 Sapling lib_ecology_tree_palm_jungle_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
807 tree_palm_jungle_01_trunk Jungle Palm 01 Trunk lib_ecology_tree_palm_jungle_01_trunk_top.png,lib_ecology_tree_palm_jungle_01_trunk_top.png,lib_ecology_tree_palm_jungle_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
808 tree_palm_jungle_01_trunk_allface_side Jungle Palm 01 Block Side lib_ecology_tree_palm_jungle_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
809 tree_palm_jungle_01_trunk_allface_top Jungle Palm 01 Block Top lib_ecology_tree_palm_jungle_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
810 tree_palm_jungle_01_wood Jungle Palm 01 Wood lib_ecology_tree_palm_jungle_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
811 tree_palm_jungle_02_leaves Jungle Palm 02 Leaves lib_ecology_tree_palm_jungle_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
812 tree_palm_jungle_02_sapling Jungle Palm 02 Sapling lib_ecology_tree_palm_jungle_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
813 tree_palm_jungle_02_trunk Jungle Palm 02 Trunk lib_ecology_tree_palm_jungle_02_trunk_top.png,lib_ecology_tree_palm_jungle_02_trunk_top.png,lib_ecology_tree_palm_jungle_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
814 tree_palm_jungle_02_trunk_allface_side Jungle Palm 02 Block Side lib_ecology_tree_palm_jungle_02_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
815 tree_palm_jungle_02_trunk_allface_top Jungle Palm 02 Block Top lib_ecology_tree_palm_jungle_02_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
816 tree_palm_jungle_02_wood Jungle Palm 02 Wood lib_ecology_tree_palm_jungle_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
817 tree_palm_jungle_03_leaves Jungle Palm 03 Leaves lib_ecology_tree_palm_jungle_03_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
818 tree_palm_jungle_03_sapling Jungle Palm 03 Sapling lib_ecology_tree_palm_jungle_03_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
819 tree_palm_jungle_03_trunk Jungle Palm 03 Trunk lib_ecology_tree_palm_jungle_03_trunk_top.png,lib_ecology_tree_palm_jungle_03_trunk_top.png,lib_ecology_tree_palm_jungle_03_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
820 tree_palm_jungle_03_trunk_allface_side Jungle Palm 03 Block Side lib_ecology_tree_palm_jungle_03_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
821 tree_palm_jungle_03_trunk_allface_top Jungle Palm 03 Block Top lib_ecology_tree_palm_jungle_03_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
822 tree_palm_jungle_03_wood Jungle Palm 03 Wood lib_ecology_tree_palm_jungle_03_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
823 tree_pine_01_leaves Pine 01 Leaves lib_ecology_tree_pine_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
824 tree_pine_01_sapling Pine 01 Sapling lib_ecology_tree_pine_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
825 tree_pine_01_trunk Pine 01 Trunk lib_ecology_tree_pine_01_trunk_top.png,lib_ecology_tree_pine_01_trunk_top.png,lib_ecology_tree_pine_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
826 tree_pine_01_trunk_allface_side Pine 01 Block Side lib_ecology_tree_pine_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
827 tree_pine_01_trunk_allface_top Pine 01 Block Top lib_ecology_tree_pine_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
828 tree_pine_01_wood Pine 01 Wood lib_ecology_tree_pine_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
829 tree_pine_02_leaves Pine 02 Leaves lib_ecology_tree_pine_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
830 tree_pine_02_sapling Pine 02 Sapling lib_ecology_tree_pine_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
831 tree_pine_02_trunk Pine 02 Trunk lib_ecology_tree_pine_02_trunk_top.png,lib_ecology_tree_pine_02_trunk_top.png,lib_ecology_tree_pine_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
832 tree_pine_02_trunk_allface_side Pine 02 Block Side lib_ecology_tree_pine_02_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
833 tree_pine_02_trunk_allface_top Pine 02 Block Top lib_ecology_tree_pine_02_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
834 tree_pine_02_wood Pine 02 Wood lib_ecology_tree_pine_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
835 tree_pine_03_leaves Pine 03 Leaves lib_ecology_tree_pine_03_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
836 tree_pine_03_sapling Pine 03 Sapling lib_ecology_tree_pine_03_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
837 tree_pine_03_trunk Pine 03 Trunk lib_ecology_tree_pine_03_trunk_top.png,lib_ecology_tree_pine_03_trunk_top.png,lib_ecology_tree_pine_03_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
838 tree_pine_03_trunk_allface_side Pine 03 Block Side lib_ecology_tree_pine_03_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
839 tree_pine_03_trunk_allface_top Pine 03 Block Top lib_ecology_tree_pine_03_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
840 tree_pine_03_wood Pine 03 Wood lib_ecology_tree_pine_03_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
841 tree_poplar_leaves Poplar Leaves lib_ecology_tree_poplar_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
842 tree_poplar_sapling Poplar Sapling lib_ecology_tree_poplar_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
843 #tree_poplar_small_leaves Small Poplar Leaves lib_ecology_tree_poplar_small_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
844 #tree_poplar_small_sapling Small Poplar Sapling lib_ecology_tree_poplar_small_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
845 #tree_poplar_small_trunk Small Poplar Trunk lib_ecology_tree_poplar_small_trunk_top.png,lib_ecology_tree_poplar_small_trunk_top.png,lib_ecology_tree_poplar_small_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
846 #tree_poplar_small_trunk_allface_side Small Poplar Block Side lib_ecology_tree_poplar_small_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
847 #tree_poplar_small_trunk_allface_top Small Poplar Block Top lib_ecology_tree_poplar_small_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
848 #tree_poplar_small_wood Small Poplar Wood lib_ecology_tree_poplar_small_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
849 tree_poplar_trunk Poplar Trunk lib_ecology_tree_poplar_trunk_top.png,lib_ecology_tree_poplar_trunk_top.png,lib_ecology_tree_poplar_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
850 tree_poplar_trunk_allface_side Poplar Block Side lib_ecology_tree_poplar_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
851 tree_poplar_trunk_allface_top Poplar Block Top lib_ecology_tree_poplar_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
852 tree_poplar_wood Poplar Wood lib_ecology_tree_poplar_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
853 #tree_redwood_coast_leaves Coast Redwood Leaves lib_ecology_tree_redwood_coast_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
854 #tree_redwood_coast_sapling Coast Redwood Sapling lib_ecology_tree_redwood_coast_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
855 #tree_redwood_coast_trunk Coast Redwood Trunk lib_ecology_tree_redwood_coast_trunk_top.png,lib_ecology_tree_redwood_coast_trunk_top.png,lib_ecology_tree_redwood_coast_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
856 #tree_redwood_coast_trunk_allface_side Coast Redwood Block Side lib_ecology_tree_redwood_coast_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
857 #tree_redwood_coast_trunk_allface_top Coast Redwood Block Top lib_ecology_tree_redwood_coast_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
858 #tree_redwood_coast_wood Coast Redwood Wood lib_ecology_tree_redwood_coast_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
859 tree_redwood_leaves Redwood Leaves lib_ecology_tree_redwood_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
860 tree_redwood_sapling Redwood Sapling lib_ecology_tree_redwood_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
861 tree_redwood_trunk Redwood Trunk lib_ecology_tree_redwood_trunk_top.png,lib_ecology_tree_redwood_trunk_top.png,lib_ecology_tree_redwood_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
862 tree_redwood_trunk_allface_side Redwood Block Side lib_ecology_tree_redwood_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
863 tree_redwood_trunk_allface_top Redwood Block Top lib_ecology_tree_redwood_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
864 tree_redwood_wood Redwood Wood lib_ecology_tree_redwood_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
865 tree_rubber_leaves Rubber Leaves lib_ecology_tree_rubber_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
866 tree_rubber_sapling Rubber Sapling lib_ecology_tree_rubber_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
867 tree_rubber_trunk Rubber Trunk lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
868 tree_rubber_trunk_allface_side Rubber Block Side lib_ecology_tree_rubber_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
869 tree_rubber_trunk_allface_top Rubber Block Top lib_ecology_tree_rubber_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
870 tree_rubber_trunk_empty Rubber Trunk Empty lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk_top.png,lib_ecology_tree_rubber_trunk_empty.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
871 tree_rubber_wood Rubber Wood lib_ecology_tree_rubber_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
872 tree_sakura_leaves Sakura Leaves lib_ecology_tree_sakura_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
873 tree_sakura_sapling Sakura Sapling lib_ecology_tree_sakura_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
874 tree_sakura_trunk Sakura Trunk lib_ecology_tree_sakura_trunk_top.png,lib_ecology_tree_sakura_trunk_top.png,lib_ecology_tree_sakura_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
875 tree_sakura_trunk_allface_side Sakura Block Side lib_ecology_tree_sakura_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
876 tree_sakura_trunk_allface_top Sakura Block Top lib_ecology_tree_sakura_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
877 tree_sakura_wood Sakura Wood lib_ecology_tree_sakura_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
878 tree_scorched_trunk Scorched Trunk lib_ecology_tree_scorched_trunk_top.png,lib_ecology_tree_scorched_trunk_top.png,lib_ecology_tree_scorched_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
879 tree_scorched_wood Scorched Wood lib_ecology_tree_scorched_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
880 tree_sequoia_leaves Sequoia Leaves lib_ecology_tree_sequoia_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
881 tree_sequoia_sapling Sequoia Sapling lib_ecology_tree_sequoia_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
882 tree_sequoia_trunk Sequoia Trunk lib_ecology_tree_sequoia_trunk_top.png,lib_ecology_tree_sequoia_trunk_top.png,lib_ecology_tree_sequoia_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
883 tree_sequoia_trunk_allface_side Sequoia Block Side lib_ecology_tree_sequoia_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
884 tree_sequoia_trunk_allface_top Sequoia Block Top lib_ecology_tree_sequoia_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
885 tree_sequoia_wood Sequoia Wood lib_ecology_tree_sequoia_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
886 tree_small_jungle Small Jungle Tree lib_ecology_plant_jungletree.png plantlike 2 0.5,0.5,0.5 light FALSE FALSE TRUE 1 TRUE FALSE snappy 3,oddly_breakable_by_hand 1,flammable 1,leaves 1,attached_node 1,flora 1,lib_ecology_plant 1 leaves -0.3,-0.5,-0.3,0.3,0,0.3
887 tree_spruce_leaves Spruce Leaves lib_ecology_tree_spruce_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
888 tree_spruce_sapling Spruce Sapling lib_ecology_tree_spruce_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
889 #tree_spruce_sitka_leaves Sitka Spruce Leaves lib_ecology_tree_spruce_sitka_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
890 #tree_spruce_sitka_sapling Sitka Spruce Sapling lib_ecology_tree_spruce_sitka_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
891 #tree_spruce_sitka_trunk Sitka Spruce Trunk lib_ecology_tree_spruce_sitka_trunk_top.png,lib_ecology_tree_spruce_sitka_trunk_top.png,lib_ecology_tree_spruce_sitka_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
892 #tree_spruce_sitka_trunk_allface_side Sitka Spruce Block Side lib_ecology_tree_spruce_sitka_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
893 #tree_spruce_sitka_trunk_allface_top Sitka Spruce Block Top lib_ecology_tree_spruce_sitka_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
894 #tree_spruce_sitka_wood Sitka Spruce Wood lib_ecology_tree_spruce_sitka_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
895 tree_spruce_trunk Spruce Trunk lib_ecology_tree_spruce_trunk_top.png,lib_ecology_tree_spruce_trunk_top.png,lib_ecology_tree_spruce_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
896 tree_spruce_trunk_allface_side Spruce Block Side lib_ecology_tree_spruce_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
897 tree_spruce_trunk_allface_top Spruce Block Top lib_ecology_tree_spruce_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
898 tree_spruce_wood Spruce Wood lib_ecology_tree_spruce_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
899 tree_teak_leaves Teak Leaves lib_ecology_tree_teak_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
900 tree_teak_sapling Teak Sapling lib_ecology_tree_teak_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
901 tree_teak_trunk Teak Trunk lib_ecology_tree_teak_trunk_top.png,lib_ecology_tree_teak_trunk_top.png,lib_ecology_tree_teak_trunk.png
902 tree_teak_trunk_allface_side Teak Block Side lib_ecology_tree_teak_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
903 tree_teak_trunk_allface_top Teak Block Top lib_ecology_tree_teak_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
904 tree_teak_wood Teak Wood lib_ecology_tree_teak_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
905 tree_willow_01_leaves Willow 01 Leaves lib_ecology_tree_willow_01_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
906 tree_willow_01_sapling Willow 01 Sapling lib_ecology_tree_willow_01_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
907 tree_willow_01_trunk Willow 01 Trunk lib_ecology_tree_willow_01_trunk_top.png,lib_ecology_tree_willow_01_trunk_top.png,lib_ecology_tree_willow_01_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
908 tree_willow_01_trunk_allface_side Willow 01 Block Side lib_ecology_tree_willow_01_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
909 tree_willow_01_trunk_allface_top Willow 01 Block Top lib_ecology_tree_willow_01_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
910 tree_willow_01_wood Willow 01 Wood lib_ecology_tree_willow_01_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
911 tree_willow_02_leaves Willow 02 Leaves lib_ecology_tree_willow_02_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
912 tree_willow_02_sapling Willow 02 Sapling lib_ecology_tree_willow_02_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE schem_tree_willow_02_01,schem_tree_willow_02_02,schem_tree_willow_02_03 snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
913 tree_willow_02_trunk Willow 02 Trunk lib_ecology_tree_willow_02_trunk_top.png,lib_ecology_tree_willow_02_trunk_top.png,lib_ecology_tree_willow_02_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
914 tree_willow_02_trunk_allface_side Willow 02 Block Side lib_ecology_tree_willow_02_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
915 tree_willow_02_trunk_allface_top Willow 02 Block Top lib_ecology_tree_willow_02_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
916 tree_willow_02_wood Willow 02 Wood lib_ecology_tree_willow_02_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
917 tree_willow_03_leaves Willow 03 Leaves lib_ecology_tree_willow_03_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
918 tree_willow_03_sapling Willow 03 Sapling lib_ecology_tree_willow_03_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
919 tree_willow_03_trunk Willow 03 Trunk lib_ecology_tree_willow_03_trunk_top.png,lib_ecology_tree_willow_03_trunk_top.png,lib_ecology_tree_willow_03_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
920 tree_willow_03_trunk_allface_side Willow 03 Block Side lib_ecology_tree_willow_03_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
921 tree_willow_03_trunk_allface_top Willow 03 Block Top lib_ecology_tree_willow_03_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
922 tree_willow_03_wood Willow 03 Wood lib_ecology_tree_willow_03_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood
923 tree_yellow_healing_leaves Yellow Healing Leaves lib_ecology_tree_yellow_healing_leaves.png allfaces_optional light facedir FALSE 1 FALSE snappy 3,leafdecay 3,flammable 2,leaves 1,lib_ecology_leaves 1 1 leaves
924 tree_yellow_healing_sapling Yellow Healing Sapling lib_ecology_tree_yellow_healing_sapling.png plantlike light FALSE FALSE TRUE 1 TRUE snappy 2,dig_immediate 3,flammable 2,attached_node 1,sapling 1,lib_ecology_sapling 1 leaves
925 tree_yellow_healing_trunk Yellow Healing Trunk lib_ecology_tree_yellow_healing_trunk_top.png,lib_ecology_tree_yellow_healing_trunk_top.png,lib_ecology_tree_yellow_healing_trunk.png light facedir TRUE FALSE choppy 1,flammable 2,tree 1,lib_ecology_tree 1 wood
926 tree_yellow_healing_trunk_allface_side Yellow Healing Block Side lib_ecology_tree_yellow_healing_trunk.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
927 tree_yellow_healing_trunk_allface_top Yellow Healing Block Top lib_ecology_tree_yellow_healing_trunk_top.png allfaces_optional light facedir TRUE FALSE choppy 1,oddly_breakable_by_hand 1,flammable 2,tree 1 wood
928 tree_yellow_healing_wood Yellow Healing Wood lib_ecology_tree_yellow_healing_wood.png facedir 0 FALSE choppy 2,oddly_breakable_by_hand 2,flammable 2,wood 1 wood

View File

@ -3,4 +3,4 @@
#[Noise Set ID (Integer 1 - 10) - Defines which predefined Noise Set to use]
#Selects which Noise Set to utilize for mapgen. A Noise Set is a predefined selection of noise values used in generating the map.
noise_set_id (Maximum altitude to generate these clouds) int 2
noise_set_id (Noise Set ID - Which set of noise params to use for the voxelmanip) int 3

93
useful_code_samples.lua Normal file
View File

@ -0,0 +1,93 @@
-- Modify a node to add a group
function minetest.add_group(node, groups)
local def = minetest.registered_items[node]
if not def then
return false
end
local def_groups = def.groups or {}
for group, value in pairs(groups) do
if value ~= 0 then
def_groups[group] = value
else
def_groups[group] = nil
end
end
minetest.override_item(node, {groups = def_groups})
return true
end
-- Check if the table contains an element.
function table.contains(table, element)
for key, value in pairs(table) do
if value == element then
if key then
return key
else
return true
end
end
end
return false
end
-- This isn't already in the math library? Really?
function math.round(i)
return math.floor(i + 0.5)
end
-- Push an element onto a stack (table).
function push(t, x)
t[#t+1] = x
end
function lib_ecology.clone_node(name)
local node = minetest.registered_nodes[name]
local node2 = table.copy(node)
return node2
end
--NOTES
--[[
Code below taken from Valleys_c deco.lua, and deco_trees.lua
Sections are delineated due to execution timing.
--]]
--[[
-- Create and initialize a table for a schematic.
function lib_ecology.schematic_array(width, height, depth)
-- Dimensions of data array.
local s = {size={x=width, y=height, z=depth}}
s.data = {}
for z = 0,depth-1 do
for y = 0,height-1 do
for x = 0,width-1 do
local i = z*width*height + y*width + x + 1
s.data[i] = {}
s.data[i].name = "air"
s.data[i].param1 = 000
end
end
end
s.yslice_prob = {}
return s
end
-- Clear all decorations, so I can place the new trees.
--minetest.clear_registered_decorations()
-- A list of all schematics, for re-use.
lib_ecology.schematics = {}
--]]