33 lines
749 B
Lua
Raw Normal View History

2023-03-10 17:27:01 -06:00
-- LUALOCALS < ---------------------------------------------------------
local include, nodecore
= include, nodecore
-- LUALOCALS > ---------------------------------------------------------
2024-09-30 09:23:15 -05:00
local modname = minetest.get_current_modname()
--<>--
2023-03-10 17:27:01 -06:00
include("oceanfix")
--<>--
include("corals")
include("anemones")
2023-03-21 16:33:21 -05:00
include("mollusks")
include("urchins")
2023-03-10 17:27:01 -06:00
--include("seastars")
include("seajellies")
--include("bobbits")
--<>--
include("kelp")
--<>--
include("jellied")
--<>--
2023-03-10 17:27:01 -06:00
include("cultivate_coral")
--<>--
2024-09-30 09:23:15 -05:00
if minetest.settings:get_bool(modname .. ".foodweb", true) then
include("predation")
end
--<>--
if minetest.get_modpath("ncshark") then
include("sharks")
end
--<>--
2024-10-03 19:10:32 -05:00
include("seament")
--<>--
include("bubbly")