From bd2f497742d0c44e44039b1d1062d321e0688538 Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 13 Dec 2023 01:13:22 +0300 Subject: [PATCH] MapGen: add `lottmapgen:dwarf_chest_spawner`. Relates to #1141 --- .../World/Generation/lottmapgen/chests.lua | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/mods/lord/World/Generation/lottmapgen/chests.lua b/mods/lord/World/Generation/lottmapgen/chests.lua index 9995e0cb9..e41079d0f 100644 --- a/mods/lord/World/Generation/lottmapgen/chests.lua +++ b/mods/lord/World/Generation/lottmapgen/chests.lua @@ -296,3 +296,43 @@ register_chest_spawner("lottblocks:angmar_chest", { { "lottfarming:orc_food", 4 }, { "lottfarming:orc_medicine", 2 }, }) + +register_chest_spawner("lottblocks:dwarf_chest", { + { "lottpotion:beer", 1, 10 }, + { "lottpotion:wine", 2, 6 }, + { "lottpotion:mead", 2, 4 }, + { "lottpotion:ale", 1, 15 }, + { "lottores:mithril_lump", 2 }, + { "lottores:galvorn_ingot", 3 }, + { "default:iron_lump", 10, 20 }, + { "default:steel_ingot", 5, 15 }, + { "lottores:tin_lump", 5, 10 }, + { "default:copper_lump", 5, 10 }, + { "lottplants:alderwood", 13 }, + { "lottores:ithildin_stone_1", 2, 4 }, + { "lottores:ithildin_stonelamp_1", 4, 6 }, + { "arrows:axe_dwarf", 1, 4 }, + { "arrows:axe_steel", 1, 6 }, + { "lottthrowing:bow_wood_alder" }, + { "arrows:arrow_steel", 5, 20 }, + { "tools:sword_gold" }, + { "tools:spear_gold" }, + { "lottarmor:chestplate_gold" }, + { "lottarmor:helmet_gold" }, + { "lottarmor:leggings_gold" }, + { "lottarmor:boots_gold" }, + { "lottarmor:shield_gold" }, + { "default:gold_lump", 4, 10 }, + { "default:gold_ingot", 1, 5 }, + { "lottthrowing:crossbow_gold" }, + { "lottthrowing:bolt", 5, 20 }, + { "lottblocks:dwarfstone_black", 10, 20 }, + { "lottblocks:dwarfstone_white", 10, 20 }, + { "lottmobs:meat", 1, 7 }, + { "farming:bread", 2, 10 }, + -- это книги, которые есть в LOTT, но нет у нас: + --{ "lottblocks:deep_depths" }, + --{ "lottblocks:miner_handbook" }, + --{ "lottblocks:miner_handbook_2" }, + --{ "lottblocks:miner_handbook_3" }, +})