Add ice demon.
This commit is contained in:
parent
d8c6550127
commit
ef9e69eb07
4 changed files with 121 additions and 17 deletions
25
mobs.lua
25
mobs.lua
|
@ -404,7 +404,7 @@ if minetest.registered_entities["kpgmobs:horse2"] then
|
|||
end
|
||||
|
||||
if minetest.registered_entities["dmobs:dragon"] then
|
||||
mobs:spawn_specific("dmobs:dragon", {"air"}, {"fun_caves:cloud", "fun_caves:storm_cloud"}, 20, 10, 300, 15000, 2, 4000, 31000)
|
||||
mobs:spawn_specific("dmobs:dragon", {"air"}, {"fun_caves:cloud", "fun_caves:storm_cloud"}, -1, 20, 300, 15000, 2, 4000, 31000)
|
||||
end
|
||||
|
||||
if minetest.registered_entities["kpgmobs:medved"] then
|
||||
|
@ -608,20 +608,11 @@ if minetest.registered_entities["mobs_monster:dirt_monster"] then
|
|||
end
|
||||
|
||||
if minetest.registered_entities["mobs_slimes:green_big"] then
|
||||
mobs:spawn_specific("mobs_slimes:green_big",
|
||||
{"fun_caves:stone_with_moss", "fun_caves:stone_with_algae", 'fun_caves:polluted_dirt'},
|
||||
{"air"},
|
||||
4, 20, 30, 30000, 1, -31000, 31000
|
||||
mobs:spawn_specific("mobs_slimes:green_big", {"fun_caves:stone_with_moss", "fun_caves:stone_with_algae", 'fun_caves:polluted_dirt'}, {"air"}, -1, 20, 30, 30000, 1, -31000, 31000
|
||||
)
|
||||
mobs:spawn_specific("mobs_slimes:green_medium",
|
||||
{"fun_caves:stone_with_moss", "fun_caves:stone_with_algae", 'fun_caves:polluted_dirt'},
|
||||
{"air"},
|
||||
4, 20, 30, 30000, 2, -31000, 31000
|
||||
mobs:spawn_specific("mobs_slimes:green_medium", {"fun_caves:stone_with_moss", "fun_caves:stone_with_algae", 'fun_caves:polluted_dirt'}, {"air"}, -1, 20, 30, 30000, 2, -31000, 31000
|
||||
)
|
||||
mobs:spawn_specific("mobs_slimes:green_small",
|
||||
{"default:dirt_with_grass", "default:junglegrass", "default:mossycobble", "ethereal:green_dirt_top", 'fun_caves:polluted_dirt'},
|
||||
{"air"},
|
||||
4, 20, 30, 30000, 3, -31000, 31000
|
||||
mobs:spawn_specific("mobs_slimes:green_small", {"default:dirt_with_grass", "default:junglegrass", "default:mossycobble", "ethereal:green_dirt_top", 'fun_caves:polluted_dirt'}, {"air"}, -1, 20, 30, 30000, 3, -31000, 31000
|
||||
)
|
||||
end
|
||||
|
||||
|
@ -634,9 +625,9 @@ if minetest.registered_entities["mobs_creeper:creeper"] then
|
|||
end
|
||||
|
||||
if minetest.registered_entities["mobs_sharks:shark_lg"] then
|
||||
mobs:spawn_specific("mobs_sharks:shark_sm", {"default:water_source"}, nil, 5, 20, 30, 60000, 1, 8769, 8798)
|
||||
mobs:spawn_specific("mobs_sharks:shark_md", {"default:water_source"}, nil, 5, 20, 30, 60000, 1, 8769, 8798)
|
||||
mobs:spawn_specific("mobs_sharks:shark_lg", {"default:water_source"}, nil, 5, 20, 30, 60000, 1, 8769, 8798)
|
||||
mobs:spawn_specific("mobs_sharks:shark_sm", {"default:water_source"}, nil, -1, 20, 30, 60000, 1, 8769, 8798)
|
||||
mobs:spawn_specific("mobs_sharks:shark_md", {"default:water_source"}, nil, -1, 20, 30, 60000, 1, 8769, 8798)
|
||||
mobs:spawn_specific("mobs_sharks:shark_lg", {"default:water_source"}, nil, -1, 20, 30, 60000, 1, 8769, 8798)
|
||||
|
||||
local m = table.copy(minetest.registered_entities["mobs_sharks:shark_lg"])
|
||||
local l_spawn_in = {"default:water_flowing","default:water_source"}
|
||||
|
@ -660,6 +651,7 @@ end
|
|||
|
||||
dofile(fun_caves.path.."/zombie.lua")
|
||||
dofile(fun_caves.path.."/goblin.lua")
|
||||
dofile(fun_caves.path.."/demon.lua")
|
||||
|
||||
fun_caves.fortress_spawns = {}
|
||||
local t_mobs = {
|
||||
|
@ -672,6 +664,7 @@ local t_mobs = {
|
|||
"mobs_slimes:green_big",
|
||||
"mobs_slimes:green_medium",
|
||||
"mobs_slimes:green_small",
|
||||
'fun_caves:fire_fox',
|
||||
"fun_caves:goblin_cobble",
|
||||
"fun_caves:goblin_copper",
|
||||
"fun_caves:goblin_coal",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue