nether sword chance to 30 and add cucumber drop (suggestions from dotti)

master
Dirk 2021-08-08 13:02:42 +02:00
parent 34ab5a15d2
commit 00bbc24101
1 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@ def.drops = {
local def = minetest.registered_entities["livingnether:tardigrade"]
def.drops = {
{name = "faming: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},
}
@ -48,7 +49,7 @@ 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 = 20, min = 1, max = 1},
{name = "nether:sword_nether", chance = 30, min = 1, max = 1},
{name = "nether:nether_lump", chance = 7, min = 1, max = 1},
}
@ -56,7 +57,7 @@ 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 = 20, min = 1, max = 1},
{name = "nether:sword_nether", chance = 30, min = 1, max = 1},
{name = "nether:nether_lump", chance = 7, min = 1, max = 1},
}