aestivalserver-mods/illuna_aestival/src/mobs.lua

70 lines
2.8 KiB
Lua
Executable File

-- 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 = "farming:cucumber", chance = 1, min = 1, max = 3}, -- because they look like it? :-D - idea from dotti
{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 = "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 = "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 = 2},
{name = "obsidianstuff:sword", chance = 10, min = 1, max = 1},
{name = "nether:sword_nether", chance = 30, 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 = 2},
{name = "obsidianstuff:sword", chance = 10, min = 1, max = 1},
{name = "nether:sword_nether", chance = 30, min = 1, max = 1},
{name = "nether:nether_lump", chance = 7, min = 1, max = 1},
}
local def = minetest.registered_entities["livingnether:noodlemaster"]
def.drops = {
{name = "farming: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 = 2, min = 1, max = 2},
{name = "default:mese", chance = 2, min = 1, max = 3},
}