switch to dirks nether_mobs fork and cleanup illuna_aestival – closes #41

master
Milan 2022-04-23 21:27:14 +02:00
parent 8180a25e8b
commit 6d8a85ea71
4 changed files with 4 additions and 39 deletions

6
.gitmodules vendored
View File

@ -121,9 +121,6 @@
[submodule "maptools"]
path = maptools
url = https://github.com/minetest-mods/maptools
[submodule "nether_mobs"]
path = nether_mobs
url = https://github.com/rael5/minetest-nether-monsters
[submodule "sickles"]
path = sickles
url = https://github.com/t-affeldt/sickles
@ -223,3 +220,6 @@
[submodule "colored_eggs"]
path = colored_eggs
url = https://github.com/auouymous/colored_eggs
[submodule "nether_mobs"]
path = nether_mobs
url = https://github.com/GreenDirkfried/minetest-nether-monsters

View File

@ -1,7 +1,3 @@
local def = minetest.registered_entities["nether_mobs:netherman"]
def.replace_with = nil
def.replace_what = nil
-- add and adjust drops to all livingnether mobs
-- depends on default, obsidianstuff and farming

View File

@ -300,37 +300,6 @@ for i = 1,33 do
})
end
minetest.register_node(":nether_mobs:permanent_dragon_fire", {
description = "Permanent nether dragon fire",
drawtype = "firelike",
tiles = {{
name = "nether_dragon_fire_animated.png",
animation = {type = "vertical_frames",
aspect_w = 16, aspect_h = 16, length = 1},
}},
inventory_image = "nether_dragon_fire.png",
light_source = 15,
groups = {snappy=1},
walkable = false,
buildable_to = false,
damage_per_second = 4,
})
minetest.override_item("nether_mobs:dragon_scale_block", {
after_destruct = function(pos)
pos.y = pos.y + 1
if minetest.get_node(pos).name == "nether_mobs:permanent_dragon_fire" then
minetest.remove_node(pos)
end
end,
on_ignite = function(pos)
local flame_pos = {x = pos.x, y = pos.y + 1, z = pos.z}
if minetest.get_node(flame_pos).name == "air" then
minetest.set_node(flame_pos, {name = "nether_mobs:permanent_dragon_fire"})
end
end
})
illuna = {}
function illuna.wikiconstruct(pos)

@ -1 +1 @@
Subproject commit 8e7e8b1a2925dc89c60f41a3042005c15012a02c
Subproject commit 6f35843630664b8ae5b2b97b94cee4e5b5274729