mobs: add and adjust drops of livingnether mobs

master
Dirk 2021-08-08 10:17:48 +02:00
parent 2d4fe1f456
commit 34ab5a15d2
1 changed files with 47 additions and 10 deletions

View File

@ -2,34 +2,71 @@ 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
local def = minetest.registered_entities["livingnether:flyingrod"]
def.drops = {
{name = "default:mese_crystal_fragment", chance = 2, min = 1, max = 5},
{name = "nether:nether_lump", chance = 20, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:tardigrade"]
def.drops = {
{name = "nether:glowstone", chance = 2, min = 1, max = 2},
{name = "nether:nether_lump", chance = 10, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:cyst"]
def.drops = {
{name = "default:coal_lump", chance = 1, min = 1, max = 5},
{name = "nether:nether_lump", chance = 15, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:whip"]
def.drops = {
{name = "nether:glowstone", chance = 2, min = 1, max = 2},
{name = "nether:nether_lump", chance = 7, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:razorback"]
def.drops = {
{name = "default:copper_ingot", chance = 1, min = 1, max = 1},
{name = "nether:nether_lump", chance = 5, min = 0, max = 1},
{name = "nether:brick_compressed", chance = 2, min = 1, max = 2},
{name = "nether:glowstone", chance = 3, min = 1, max = 2},
{name = "nether:nether_lump", chance = 5, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:lavawalker"]
def.drops = {
{name = "default:steel_ingot", chance = 1, min = 1, max = 2},
{name = "nether:glowstone_deep", chance = 2, min = 1, max = 2},
{name = "nether:basalt", chance = 1, min = 1, max = 2},
{name = "default:mese_crystal", chance = 1, min = 1, max = 3},
{name = "nether:nether_lump", chance = 3, min = 1, max = 2},
}
local def = minetest.registered_entities["livingnether:sokaarcher"]
def.drops = {
{name = "default:gold_lump", chance = 1, min = 1, max = 1},
{name = "nether:nether_lump", chance = 7, min = 0, max = 1},
{name = "default:gold_lump", chance = 1, min = 1, max = 2},
{name = "obsidianstuff:sword", chance = 10, min = 1, max = 1},
{name = "nether:sword_nether", chance = 20, min = 1, max = 1},
{name = "nether:nether_lump", chance = 7, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:sokameele"]
def.drops = {
{name = "default:gold_lump", chance = 1, min = 1, max = 1},
{name = "nether:nether_lump", chance = 7, min = 0, max = 1},
{name = "default:gold_lump", chance = 1, min = 1, max = 2},
{name = "obsidianstuff:sword", chance = 10, min = 1, max = 1},
{name = "nether:sword_nether", chance = 20, min = 1, max = 1},
{name = "nether:nether_lump", chance = 7, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:noodlemaster"]
def.drops = {
{name = "default:mese_crystal", chance = 1, min = 1, max = 3},
{name = "nether:nether_lump", chance = 1, min = 1, max = 5},
{name = "faming:spaghetti", chance = 1, min = 1, max = 2}, -- because "noodle" - idea from dotti
{name = "nether:glowstone_deep", chance = 1, min = 1, max = 5},
{name = "default:mese_crystal", chance = 1, min = 1, max = 5},
{name = "nether:nether_lump", chance = 1, min = 1, max = 7},
{name = "default:diamond", chance = 1, min = 1, max = 3},
{name = "default:diamondblock", chance = 3, min = 0, max = 2},
{name = "default:diamondblock", chance = 2, min = 1, max = 2},
{name = "default:mese", chance = 2, min = 1, max = 3},
}