Update 'mods/dungeon_loot/loot.lua'

This commit is contained in:
thunderdog1138 2020-05-17 20:40:41 +00:00
parent 034a92332f
commit c24eb9aac7
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ dungeon_loot.registered_loot = {
-- farming / consumable
{name = "farming:string", chance = 0.5, count = {1, 8}},
{name = "farming:wheat", chance = 0.5, count = {2, 5}},
{name = "default:joganfruit", chance = 0.4, count = {1, 4}},
{name = "default:jogan_fruit", chance = 0.4, count = {1, 4}},
{name = "farming:seed_cotton", chance = 0.4, count = {1, 4},
types = {"normal"}},
{name = "default:cactus", chance = 0.4, count = {1, 4},
@ -28,7 +28,7 @@ dungeon_loot.registered_loot = {
{name = "default:coal_lump", chance = 0.9, count = {1, 12}},
{name = "default:gold_ingot", chance = 0.5},
{name = "default:durasteel_ingot", chance = 0.4, count = {1, 6}},
{name = "default:mese_crystal", chance = 0.1, count = {2, 3}},
{name = "default:beskar_ingot", chance = 0.1, count = {2, 3}},
-- tools
{name = "default:sword_wood", chance = 0.6},
@ -47,7 +47,7 @@ dungeon_loot.registered_loot = {
{name = "default:dirt", chance = 0.6, count = {2, 16}, y = {-64, 32768},
types = {"normal", "sandstone", "desert"}},
{name = "default:obsidian", chance = 0.25, count = {1, 3}, y = {-32768, -512}},
{name = "default:mese", chance = 0.15, y = {-32768, -512}},
{name = "default:beskar_block", chance = 0.15, y = {-32768, -512}},
}
function dungeon_loot.register(t)