2017-03-08 07:50:58 +01:00
|
|
|
dfcaverns = {}
|
|
|
|
|
|
|
|
--grab a shorthand for the filepath of the mod
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
--load companion lua files
|
|
|
|
dofile(modpath.."/config.lua")
|
2017-09-10 20:24:22 +02:00
|
|
|
dofile(modpath.."/doc.lua")
|
2017-03-08 07:50:58 +01:00
|
|
|
|
2018-05-18 09:43:56 +02:00
|
|
|
dofile(modpath.."/features/ground_cover.lua")
|
|
|
|
dofile(modpath.."/features/glow_worms.lua")
|
|
|
|
dofile(modpath.."/features/flowstone_nodes.lua")
|
|
|
|
dofile(modpath.."/features/glow_crystals.lua")
|
2018-05-23 10:32:06 +02:00
|
|
|
dofile(modpath.."/features/snareweed.lua")
|
|
|
|
dofile(modpath.."/features/cave_coral.lua")
|
2017-03-16 19:40:49 +01:00
|
|
|
|
2018-05-23 10:32:06 +02:00
|
|
|
-- Farmable Plants
|
2017-03-16 19:40:49 +01:00
|
|
|
dofile(modpath.."/plants.lua") -- general functions
|
|
|
|
dofile(modpath.."/plants/cave_wheat.lua")
|
|
|
|
dofile(modpath.."/plants/dimple_cup.lua")
|
|
|
|
dofile(modpath.."/plants/pig_tail.lua")
|
|
|
|
dofile(modpath.."/plants/plump_helmet.lua")
|
|
|
|
dofile(modpath.."/plants/quarry_bush.lua")
|
|
|
|
dofile(modpath.."/plants/sweet_pod.lua")
|
2017-03-24 07:45:06 +01:00
|
|
|
dofile(modpath.."/plants/cooking.lua")
|
2017-03-08 07:50:58 +01:00
|
|
|
|
|
|
|
-- Trees
|
2017-03-16 09:17:55 +01:00
|
|
|
dofile(modpath.."/trees/blood_thorn.lua")
|
|
|
|
dofile(modpath.."/trees/fungiwood.lua")
|
|
|
|
dofile(modpath.."/trees/tunnel_tube.lua")
|
|
|
|
dofile(modpath.."/trees/spore_tree.lua")
|
|
|
|
dofile(modpath.."/trees/black_cap.lua")
|
|
|
|
dofile(modpath.."/trees/nether_cap.lua")
|
|
|
|
dofile(modpath.."/trees/goblin_cap.lua")
|
|
|
|
dofile(modpath.."/trees/tower_cap.lua")
|
2017-03-15 04:35:08 +01:00
|
|
|
|
2017-03-19 22:54:46 +01:00
|
|
|
-- Biomes
|
2017-03-17 08:54:42 +01:00
|
|
|
dofile(modpath.."/biomes.lua")
|
2017-03-19 22:54:46 +01:00
|
|
|
dofile(modpath.."/biomes/level1.lua")
|
|
|
|
dofile(modpath.."/biomes/level2.lua")
|
|
|
|
dofile(modpath.."/biomes/level3.lua")
|
2018-04-22 16:01:13 +02:00
|
|
|
dofile(modpath.."/biomes/sunless_sea.lua")
|
2017-03-19 22:54:46 +01:00
|
|
|
dofile(modpath.."/biomes/lava_sea.lua")
|