mobf_core/mobf/environments/simple_air.lua
sapier 95ae35100f -rename debug class to avoid naming conflicts
-improve environment definition
-add ride support (experimental no mob using it by now)
2013-01-06 23:25:30 +00:00

39 lines
1011 B
Lua

-------------------------------------------------------------------------------
-- Mob Framework Mod by Sapier
--
-- You may copy, use, modify or do nearly anything except removing this
-- copyright notice.
-- And of course you are NOT allow to pretend you have written it.
--
--! @file simple_air.lua
--! @brief a very basic environment definition
--! @copyright Sapier
--! @author Sapier
--! @date 2012-08-10
--
--! @addtogroup environments
--! @{
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
--! @struct env_simple_air
--! @brief simple environment only checking for air
env_simple_air = {
media = {
"air",
}
}
--!@}
table.foreach(mobf_env_placable_items,
function(index)
table.insert(env_simple_air.media,mobf_env_placable_items[index])
end)
table.foreach(mobf_env_plants,
function(index)
table.insert(env_simple_air.media,mobf_env_plants[index])
end)
environment.register("simple_air", env_simple_air)