Add mod support for x_farming and x_tumbleweed

This commit is contained in:
Juraj Vajda 2023-02-23 09:05:29 -05:00
parent aef135c7ae
commit acb2c6357b
5 changed files with 83 additions and 1 deletions

View File

@ -73,4 +73,5 @@ read_globals = {
"walls",
"doors",
"xpanes",
"XTumbleweed",
}

View File

@ -107,7 +107,8 @@
"skins",
"Everness",
"walls",
"stairs"
"stairs",
"XTumbleweed"
]
}
}

View File

@ -170,6 +170,18 @@ if Everness.settings.features.everness_feature_sneak_pickup then
dofile(path .. '/sneak_pickup.lua')
end
--
-- Mod Support
--
if minetest.get_modpath('x_farming') then
dofile(path .. '/mod_support_x_farming.lua')
end
if minetest.get_modpath('x_tumbleweed') and minetest.global_exists('XTumbleweed') then
dofile(path .. '/mod_support_x_tumbleweed.lua')
end
local mod_end_time = (minetest.get_us_time() - mod_start_time) / 1000000
print('[Mod] everness loaded.. [' .. mod_end_time .. 's]')

28
mod_support_x_farming.lua Normal file
View File

@ -0,0 +1,28 @@
--[[
Everness. Never ending discovery in Everness mapgen.
Copyright (C) 2023 SaKeL <juraj.vajda@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to juraj.vajda@gmail.com
--]]
--
-- Recipes
--
minetest.register_craft({
output = 'x_farming:bonemeal 4',
recipe = {
{ 'everness:bone' }
}
})

View File

@ -0,0 +1,40 @@
--[[
Everness. Never ending discovery in Everness mapgen.
Copyright (C) 2023 SaKeL <juraj.vajda@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to juraj.vajda@gmail.com
--]]
local allowed_biomes = {}
if Everness.settings.biomes.everness_forsaken_desert.enabled then
table.insert(allowed_biomes, 'everness_forsaken_desert')
end
if Everness.settings.biomes.everness_forsaken_desert_ocean.enabled then
table.insert(allowed_biomes, 'everness_forsaken_desert_ocean')
end
if Everness.settings.biomes.everness_forsaken_desert_under.enabled then
table.insert(allowed_biomes, 'everness_forsaken_desert_under')
end
if Everness.settings.biomes.everness_baobab_savanna.enabled then
table.insert(allowed_biomes, 'everness_baobab_savanna')
end
if #allowed_biomes > 0 then
XTumbleweed:add_allowed_biome(allowed_biomes)
end