From d0432282ca654417b92dc3d28dcf7545c5adac69 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 25 Sep 2023 00:24:09 +0300 Subject: [PATCH] Refactoring: `lottmobs`: reformat drops. Relates to #1162 --- mods/lord/Entities/lottmobs/animals.lua | 20 +- mods/lord/Entities/lottmobs/dwarfs.lua | 46 +- mods/lord/Entities/lottmobs/elves.lua | 62 +-- mods/lord/Entities/lottmobs/fishes.lua | 4 +- mods/lord/Entities/lottmobs/init.lua | 689 +++++++----------------- mods/lord/Entities/lottmobs/traders.lua | 2 +- 6 files changed, 249 insertions(+), 574 deletions(-) diff --git a/mods/lord/Entities/lottmobs/animals.lua b/mods/lord/Entities/lottmobs/animals.lua index 21d614f5d..d0237d418 100644 --- a/mods/lord/Entities/lottmobs/animals.lua +++ b/mods/lord/Entities/lottmobs/animals.lua @@ -35,7 +35,7 @@ mobs:register_mob("lottmobs:kitten", { runaway = true, jump = true, drops = { - {name = "farming:string", chance = 1, min = 0, max = 1}, + { name = "farming:string", chance = 1, min = 0, max = 1 }, }, water_damage = 0, lava_damage = 5, @@ -189,15 +189,9 @@ mobs:register_mob("lottmobs:chicken", { makes_footstep_sound = true, walk_velocity = 1, armor = 300, - drops = { - {name = "lottmobs:chicken_raw", - chance = 1, - min = 0, - max = 1,}, - {name = "lottmobs:egg", - chance = 1, - min = 0, - max = 1,}, + drops = { + { name = "lottmobs:chicken_raw", chance = 1, min = 0, max = 1, }, + { name = "lottmobs:egg", chance = 1, min = 0, max = 1, }, }, light_resistant = true, drawtype = "front", @@ -247,8 +241,8 @@ mobs:register_mob("lottmobs:sheep", { runaway = true, jump = true, drops = { - {name = "lottmobs:meat_raw", chance = 1, min = 1, max = 2}, - {name = "wool:white", chance = 1, min = 1, max = 1}, + { name = "lottmobs:meat_raw", chance = 1, min = 1, max = 2 }, + { name = "wool:white", chance = 1, min = 1, max = 1 }, }, water_damage = 1, lava_damage = 5, @@ -340,7 +334,7 @@ mobs:register_mob("lottmobs:bunny", { runaway = true, jump = true, drops = { - {name = "lottmobs:rabbit_raw", chance = 1, min = 1, max = 1}, + { name = "lottmobs:rabbit_raw", chance = 1, min = 1, max = 1 }, }, water_damage = 1, lava_damage = 4, diff --git a/mods/lord/Entities/lottmobs/dwarfs.lua b/mods/lord/Entities/lottmobs/dwarfs.lua index 232be8b30..9a40e3efb 100644 --- a/mods/lord/Entities/lottmobs/dwarfs.lua +++ b/mods/lord/Entities/lottmobs/dwarfs.lua @@ -66,13 +66,13 @@ local textures1 = { } local drops1 = { - { name = "default:diamond", chance = 30, min = 1, max = 2, }, - { name = "default:iron_lump", chance = 3, min = 1, max = 7, }, - { name = "default:copper_lump", chance = 4, min = 1, max = 4, }, - { name = "default:iron_ingot", chance = 3, min = 1, max = 7, }, - { name = "lottores:tin_lump", chance = 8, min = 1, max = 2, }, - { name = "default:copper_lump", chance = 8, min = 1, max = 2, }, - { name = "default:bronze_ingot", chance = 5, min = 1, max = 6, }, + { name = "default:diamond", chance = 30, min = 1, max = 2, }, + { name = "default:iron_lump", chance = 3, min = 1, max = 7, }, + { name = "default:copper_lump", chance = 4, min = 1, max = 4, }, + { name = "default:iron_ingot", chance = 3, min = 1, max = 7, }, + { name = "lottores:tin_lump", chance = 8, min = 1, max = 2, }, + { name = "default:copper_lump", chance = 8, min = 1, max = 2, }, + { name = "default:bronze_ingot", chance = 5, min = 1, max = 6, }, { name = "lottores:mithril_lump", chance = 50, min = 1, max = 3, }, } @@ -113,15 +113,15 @@ local textures2 = { } local drops2 = { - { name = "default:obsidian", chance = 90, min = 1, max = 1, }, - { name = "default:diamond", chance = 30, min = 1, max = 2, }, - { name = "default:iron_lump", chance = 3, min = 1, max = 7, }, - { name = "default:copper_lump", chance = 4, min = 1, max = 4, }, - { name = "default:iron_ingot", chance = 3, min = 1, max = 7, }, - { name = "lottores:tin_lump", chance = 8, min = 1, max = 2, }, - { name = "default:copper_lump", chance = 8, min = 1, max = 2, }, - { name = "default:bronze_ingot", chance = 5, min = 1, max = 6, }, - { name = "lottores:mithril_lump", chance = 50, min = 1, max = 3, }, + { name = "default:obsidian", chance = 90, min = 1, max = 1, }, + { name = "default:diamond", chance = 30, min = 1, max = 2, }, + { name = "default:iron_lump", chance = 3, min = 1, max = 7, }, + { name = "default:copper_lump", chance = 4, min = 1, max = 4, }, + { name = "default:iron_ingot", chance = 3, min = 1, max = 7, }, + { name = "lottores:tin_lump", chance = 8, min = 1, max = 2, }, + { name = "default:copper_lump", chance = 8, min = 1, max = 2, }, + { name = "default:bronze_ingot", chance = 5, min = 1, max = 6, }, + { name = "lottores:mithril_lump", chance = 50, min = 1, max = 3, }, } lottmobs.register_dwarf("1", 30, 40, textures2, 2.75, 3.5, 13, 75, drops2) @@ -161,13 +161,13 @@ local textures3 = { } local drops3 = { - { name = "default:diamond", chance = 30, min = 1, max = 2, }, - { name = "default:iron_lump", chance = 3, min = 1, max = 7, }, - { name = "default:copper_lump", chance = 4, min = 1, max = 4, }, - { name = "default:iron_ingot", chance = 3, min = 1, max = 7, }, - { name = "lottores:tin_lump", chance = 8, min = 1, max = 2, }, - { name = "default:copper_lump", chance = 8, min = 1, max = 2, }, - { name = "default:bronze_ingot", chance = 5, min = 1, max = 6, }, + { name = "default:diamond", chance = 30, min = 1, max = 2, }, + { name = "default:iron_lump", chance = 3, min = 1, max = 7, }, + { name = "default:copper_lump", chance = 4, min = 1, max = 4, }, + { name = "default:iron_ingot", chance = 3, min = 1, max = 7, }, + { name = "lottores:tin_lump", chance = 8, min = 1, max = 2, }, + { name = "default:copper_lump", chance = 8, min = 1, max = 2, }, + { name = "default:bronze_ingot", chance = 5, min = 1, max = 6, }, { name = "lottores:mithril_lump", chance = 50, min = 1, max = 3, }, } diff --git a/mods/lord/Entities/lottmobs/elves.lua b/mods/lord/Entities/lottmobs/elves.lua index df27e27c2..cbb14c7a2 100644 --- a/mods/lord/Entities/lottmobs/elves.lua +++ b/mods/lord/Entities/lottmobs/elves.lua @@ -117,16 +117,16 @@ local textures1 = { } local drops1 = { - { name = "lottplants:mallornsapling", chance = 5, min = 1, max = 3, }, - { name = "lottplants:mallornwood", chance = 5, min = 1, max = 6, }, - { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, - { name = "tools:sword_silver", chance = 20, min = 1, max = 1 }, - { name = "lottarmor:helmet_silver", chance = 30, min = 1, max = 1 }, - { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, - { name = "tools:spear_silver", chance = 25, min = 1, max = 1, }, - { name = "lottores:blue_gem", chance = 200, min = 1, max = 1, }, + { name = "lottplants:mallornsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:mallornwood", chance = 5, min = 1, max = 6, }, + { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, + { name = "tools:sword_silver", chance = 20, min = 1, max = 1 }, + { name = "lottarmor:helmet_silver", chance = 30, min = 1, max = 1 }, + { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, + { name = "tools:spear_silver", chance = 25, min = 1, max = 1, }, + { name = "lottores:blue_gem", chance = 200, min = 1, max = 1, }, { name = "lottplants:yavannamiresapling", chance = 250, min = 1, max = 1, }, - { name = "lottores:mithril_lump", chance = 100, min = 1, max = 2, }, + { name = "lottores:mithril_lump", chance = 100, min = 1, max = 2, }, } lottmobs.register_elf("", 20, 35, textures1, 2.5, 5, 4, 200, drops1) @@ -166,16 +166,16 @@ local textures2 = { } local drops2 = { - { name = "lottplants:mallornsapling", chance = 5, min = 1, max = 3, }, - { name = "lottplants:mallornwood", chance = 5, min = 1, max = 6, }, - { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, - { name = "tools:sword_silver", chance = 20, min = 1, max = 1 }, - { name = "lottarmor:helmet_silver", chance = 30, min = 1, max = 1 }, - { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, - { name = "tools:spear_silver", chance = 25, min = 1, max = 1, }, - { name = "lottores:blue_gem", chance = 200, min = 1, max = 1, }, + { name = "lottplants:mallornsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:mallornwood", chance = 5, min = 1, max = 6, }, + { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, + { name = "tools:sword_silver", chance = 20, min = 1, max = 1 }, + { name = "lottarmor:helmet_silver", chance = 30, min = 1, max = 1 }, + { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, + { name = "tools:spear_silver", chance = 25, min = 1, max = 1, }, + { name = "lottores:blue_gem", chance = 200, min = 1, max = 1, }, { name = "lottplants:yavannamiresapling", chance = 250, min = 1, max = 1, }, - { name = "lottores:mithril_lump", chance = 100, min = 1, max = 2, }, + { name = "lottores:mithril_lump", chance = 100, min = 1, max = 2, }, } lottmobs.register_elf(1, 20, 35, textures2, 2, 4.5, 6, 100, drops2) @@ -204,16 +204,16 @@ local textures3 = { } local drops3 = { - { name = "lottplants:mallornsapling", chance = 5, min = 1, max = 3, }, - { name = "lottplants:mallornwood", chance = 5, min = 1, max = 6, }, - { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, - { name = "tools:sword_silver", chance = 20, min = 1, max = 1 }, - { name = "lottarmor:helmet_silver", chance = 30, min = 1, max = 1 }, - { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, - { name = "tools:spear_silver", chance = 25, min = 1, max = 1, }, - { name = "lottores:blue_gem", chance = 200, min = 1, max = 1, }, + { name = "lottplants:mallornsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:mallornwood", chance = 5, min = 1, max = 6, }, + { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, + { name = "tools:sword_silver", chance = 20, min = 1, max = 1 }, + { name = "lottarmor:helmet_silver", chance = 30, min = 1, max = 1 }, + { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, + { name = "tools:spear_silver", chance = 25, min = 1, max = 1, }, + { name = "lottores:blue_gem", chance = 200, min = 1, max = 1, }, { name = "lottplants:yavannamiresapling", chance = 250, min = 1, max = 1, }, - { name = "lottores:mithril_lump", chance = 100, min = 1, max = 2, }, + { name = "lottores:mithril_lump", chance = 100, min = 1, max = 2, }, } lottmobs.register_elf(2, 20, 35, textures3, 2.25, 4.75, 8, 150, drops3) @@ -242,10 +242,10 @@ local textures4 = { } local drops4 = { - { name = "arrows:arrow", chance = 30, min = 1, max = 10, }, - { name = "lottthrowing:bow_wood_mallord", chance = 5, min = 1, max = 1, }, - { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, - { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, + { name = "arrows:arrow", chance = 30, min = 1, max = 10, }, + { name = "lottthrowing:bow_wood_mallord", chance = 5, min = 1, max = 1, }, + { name = "lottores:silveringot", chance = 20, min = 1, max = 7 }, + { name = "lottarmor:chestplate_silver", chance = 30, min = 1, max = 1 }, } lottmobs.register_elf_archer("", 20, 35, textures4, 2.25, 4.75, 8, 150, drops4) diff --git a/mods/lord/Entities/lottmobs/fishes.lua b/mods/lord/Entities/lottmobs/fishes.lua index aac121fbf..f333afb4e 100644 --- a/mods/lord/Entities/lottmobs/fishes.lua +++ b/mods/lord/Entities/lottmobs/fishes.lua @@ -61,7 +61,7 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me view_range = 8, water_damage = 0, drops = { - {name = "lottmobs:fish_raw", chance = 1, min = 1, max = 1}, + { name = "lottmobs:fish_raw", chance = 1, min = 1, max = 1 }, }, lava_damage = 5, light_damage = 0, @@ -96,7 +96,7 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me fall_speed = 0, view_range = 8, drops = { - {name = "lottmobs:fish_raw", chance = 1, min = 1, max = 1}, + { name = "lottmobs:fish_raw", chance = 1, min = 1, max = 1 }, }, water_damage = 0, lava_damage = 5, diff --git a/mods/lord/Entities/lottmobs/init.lua b/mods/lord/Entities/lottmobs/init.lua index 06d07d29f..a2436b504 100644 --- a/mods/lord/Entities/lottmobs/init.lua +++ b/mods/lord/Entities/lottmobs/init.lua @@ -73,50 +73,17 @@ mobs:register_mob("lottmobs:ent", { armor = 100, damage = 5, drops = { - {name = "default:sapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:aldersapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:applesapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:birchsapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:beechsapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:culumaldasapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:elmsapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:lebethronsapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:plumsapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:rowansapling", - chance = 5, - min = 1, - max = 3,}, - {name = "lottplants:yavannamiresapling", - chance = 250, - min = 1, - max = 1,}, + { name = "default:sapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:aldersapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:applesapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:birchsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:beechsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:culumaldasapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:elmsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:lebethronsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:plumsapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:rowansapling", chance = 5, min = 1, max = 3, }, + { name = "lottplants:yavannamiresapling", chance = 250, min = 1, max = 1, }, }, light_resistant = true, drawtype = "front", @@ -169,22 +136,10 @@ mobs:register_mob("lottmobs:spider", { armor = 200, damage = 3, drops = { - {name = "farming:string", - chance = 3, - min = 1, - max = 6,}, - {name = "lottmobs:spiderpoison", - chance = 7, - min = 1, - max = 5,}, - {name = "wool:white", - chance = 10, - min = 1, - max = 3,}, - {name = "lottmobs:meat_raw", - chance = 5, - min = 1, - max = 2,}, + { name = "farming:string", chance = 3, min = 1, max = 6, }, + { name = "lottmobs:spiderpoison", chance = 7, min = 1, max = 5, }, + { name = "wool:white", chance = 10, min = 1, max = 3, }, + { name = "lottmobs:meat_raw", chance = 5, min = 1, max = 2, }, }, light_resistant = true, drawtype = "front", @@ -235,50 +190,17 @@ mobs:register_mob("lottmobs:rohan_guard", { armor = 100, damage = 5, drops = { - {name = "lottmobs:horseh1", - chance = 15, - min = 1, - max = 1,}, - {name = "default:bronze_ingot", - chance = 7, - min = 1, - max = 5,}, - {name = "lottmobs:horsepeg1", - chance = 15, - min = 1, - max = 1,}, - {name = "lottmobs:horsearah1", - chance = 15, - min = 1, - max = 1,}, - {name = "default:steel_sword", - chance = 10, - min = 1, - max = 1,}, - {name = "lottores:galvornsword", - chance = 35, - min = 1, - max = 1,}, - {name = "lottweapons:steel_spear", - chance = 10, - min = 1, - max = 1,}, - {name = "lottarmor:helmet_bronze", - chance = 30, - min = 1, - max = 1,}, - {name = "lottarmor:chestplate_steel", - chance = 27, - min = 1, - max = 1,}, - {name = "lottarmor:leggings_tin", - chance = 25, - min = 1, - max = 1,}, - {name = "lottarmor:boots_bronze", - chance = 30, - min = 1, - max = 1,}, + { name = "lottmobs:horseh1", chance = 15, min = 1, max = 1, }, + { name = "default:bronze_ingot", chance = 7, min = 1, max = 5, }, + { name = "lottmobs:horsepeg1", chance = 15, min = 1, max = 1, }, + { name = "lottmobs:horsearah1", chance = 15, min = 1, max = 1, }, + { name = "default:steel_sword", chance = 10, min = 1, max = 1, }, + { name = "lottores:galvornsword", chance = 35, min = 1, max = 1, }, + { name = "lottweapons:steel_spear", chance = 10, min = 1, max = 1, }, + { name = "lottarmor:helmet_bronze", chance = 30, min = 1, max = 1, }, + { name = "lottarmor:chestplate_steel", chance = 27, min = 1, max = 1, }, + { name = "lottarmor:leggings_tin", chance = 25, min = 1, max = 1, }, + { name = "lottarmor:boots_bronze", chance = 30, min = 1, max = 1, }, }, light_resistant = true, drawtype = "front", @@ -334,66 +256,21 @@ mobs:register_mob("lottmobs:gondor_guard", { armor = 100, damage = 5, drops = { - {name = "lottweapons:galvorn_warhammer", - chance = 35, - min = 1, - max = 1,}, - {name = "default:steel_ingot", - chance = 10, - min = 2, - max = 5,}, - {name = "lottweapons:galvorn_battleaxe", - chance = 35, - min = 1, - max = 1,}, - {name = "default:steel_sword", - chance = 10, - min = 1, - max = 1,}, - {name = "lottplants:whitesapling", - chance = 250, - min = 1, - max = 1,}, - {name = "lottweapons:steel_battleaxe", - chance = 10, - min = 1, - max = 1,}, - {name = "lottweapons:steel_warhammer", - chance = 10, - min = 1, - max = 1,}, - {name = "lottarmor:helmet_steel", - chance = 20, - min = 1, - max = 1,}, - {name = "lottarmor:chestplate_steel", - chance = 20, - min = 1, - max = 1,}, - {name = "lottarmor:leggings_steel", - chance = 20, - min = 1, - max = 1,}, - {name = "lottarmor:boots_steel", - chance = 20, - min = 1, - max = 1,}, - {name = "lottarmor:helmet_galvorn", - chance = 50, - min = 1, - max = 1,}, - {name = "lottarmor:chestplate_galvorn", - chance = 50, - min = 1, - max = 1,}, - {name = "lottarmor:leggings_galvorn", - chance = 50, - min = 1, - max = 1,}, - {name = "lottarmor:boots_galvorn", - chance = 50, - min = 1, - max = 1,}, + { name = "lottweapons:galvorn_warhammer", chance = 35, min = 1, max = 1, }, + { name = "default:steel_ingot", chance = 10, min = 2, max = 5, }, + { name = "lottweapons:galvorn_battleaxe", chance = 35, min = 1, max = 1, }, + { name = "default:steel_sword", chance = 10, min = 1, max = 1, }, + { name = "lottplants:whitesapling", chance = 250, min = 1, max = 1, }, + { name = "lottweapons:steel_battleaxe", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:steel_warhammer", chance = 10, min = 1, max = 1, }, + { name = "lottarmor:helmet_steel", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:chestplate_steel", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:leggings_steel", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:boots_steel", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:helmet_galvorn", chance = 50, min = 1, max = 1, }, + { name = "lottarmor:chestplate_galvorn", chance = 50, min = 1, max = 1, }, + { name = "lottarmor:leggings_galvorn", chance = 50, min = 1, max = 1, }, + { name = "lottarmor:boots_galvorn", chance = 50, min = 1, max = 1, }, }, light_resistant = true, drawtype = "front", @@ -449,46 +326,16 @@ mobs:register_mob("lottmobs:ithilien_ranger", { armor = 100, damage = 6, drops = { - {name = "default:steel_ingot", - chance = 10, - min = 2, - max = 5,}, - {name = "lottweapons:galvorn_battleaxe", - chance = 50, - min = 1, - max = 1,}, - {name = "default:steel_sword", - chance = 10, - min = 1, - max = 1,}, - {name = "lottweapons:steel_spear", - chance = 10, - min = 1, - max = 1,}, - {name = "lottweapons:steel_dagger", - chance = 10, - min = 1, - max = 1,}, - {name = "lottclothes:cloak_ranger", - chance = 15, - min = 1, - max = 1,}, - {name = "lottclothes:cap_chetwood", - chance = 20, - min = 1, - max = 1,}, - {name = "lottclothes:jacket_chetwood", - chance = 20, - min = 1, - max = 1,}, - {name = "lottclothes:pants_chetwood", - chance = 20, - min = 1, - max = 1,}, - {name = "lottclothes:boots_chetwood", - chance = 20, - min = 1, - max = 1,}, + { name = "default:steel_ingot", chance = 10, min = 2, max = 5, }, + { name = "lottweapons:galvorn_battleaxe", chance = 50, min = 1, max = 1, }, + { name = "default:steel_sword", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:steel_spear", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:steel_dagger", chance = 10, min = 1, max = 1, }, + { name = "lottclothes:cloak_ranger", chance = 15, min = 1, max = 1, }, + { name = "lottclothes:cap_chetwood", chance = 20, min = 1, max = 1, }, + { name = "lottclothes:jacket_chetwood", chance = 20, min = 1, max = 1, }, + { name = "lottclothes:pants_chetwood", chance = 20, min = 1, max = 1, }, + { name = "lottclothes:boots_chetwood", chance = 20, min = 1, max = 1, }, }, light_resistant = true, drawtype = "front", @@ -544,62 +391,20 @@ mobs:register_mob("lottmobs:dunlending", { run_velocity = 3, damage = 3, drops = { - {name = "lottores:tinpick", - chance = 10, - min = 1, - max = 1,}, - {name = "lottores:tinaxe", - chance = 10, - min = 1, - max = 1,}, - {name = "lottores:tinshovel", - chance = 10, - min = 1, - max = 1,}, - {name = "lottores:tinspear", - chance = 10, - min = 1, - max = 1,}, - {name = "lottweapons:tin_battleaxe", - chance = 15, - min = 1, - max = 1,}, - {name = "lottweapons:tin_spear", - chance = 15, - min = 1, - max = 1,}, - {name = "lottweapons:tin_warhammer", - chance = 15, - min = 1, - max = 1,}, - {name = "lottweapons:tin_dagger", - chance = 15, - min = 1, - max = 1,}, - {name = "lottarmor:helmet_tin", - chance = 20, - min = 1, - max = 1,}, - {name = "lottarmor:chestplate_tin", - chance = 20, - min = 1, - max = 1,}, - {name = "lottarmor:leggings_tin", - chance = 20, - min = 1, - max = 1,}, - {name = "lottarmor:boots_tin", - chance = 20, - min = 1, - max = 1,}, - {name = "lottmobs:dirty_trousers", - chance = 10, - min = 1, - max = 1,}, - {name = "lottmobs:dirty_shirt", - chance = 10, - min = 1, - max = 1,}, + { name = "lottores:tinpick", chance = 10, min = 1, max = 1, }, + { name = "lottores:tinaxe", chance = 10, min = 1, max = 1, }, + { name = "lottores:tinshovel", chance = 10, min = 1, max = 1, }, + { name = "lottores:tinspear", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:tin_battleaxe", chance = 15, min = 1, max = 1, }, + { name = "lottweapons:tin_spear", chance = 15, min = 1, max = 1, }, + { name = "lottweapons:tin_warhammer", chance = 15, min = 1, max = 1, }, + { name = "lottweapons:tin_dagger", chance = 15, min = 1, max = 1, }, + { name = "lottarmor:helmet_tin", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:chestplate_tin", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:leggings_tin", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:boots_tin", chance = 20, min = 1, max = 1, }, + { name = "lottmobs:dirty_trousers", chance = 10, min = 1, max = 1, }, + { name = "lottmobs:dirty_shirt", chance = 10, min = 1, max = 1, }, }, light_resistant = true, drawtype = "front", @@ -650,62 +455,20 @@ mobs:register_mob("lottmobs:hobbit", { armor = 300, damage = 3, drops = { - {name = "lottfarming:corn_seed", - chance = 5, - min = 3, - max = 10,}, - {name = "lottfarming:berries_seed", - chance = 5, - min = 3, - max = 10,}, - {name = "lottfarming:barley_seed", - chance = 5, - min = 3, - max = 10,}, - {name = "lottfarming:pipeweed_seed", - chance = 5, - min = 3, - max = 10,}, - {name = "lottfarming:potato_seed", - chance = 5, - min = 3, - max = 10,}, - {name = "lottfarming:pipeweed", - chance = 10, - min = 1, - max = 4,}, - {name = "lottfarming:pipe", - chance = 10, - min = 1, - max = 1,}, - {name = "lottfarming:tomatoes_cooked", - chance = 15, - min = 1, - max = 7,}, - {name = "lottfarming:turnip_cooked", - chance = 15, - min = 1, - max = 7,}, - {name = "lottfarming:melon", - chance = 15, - min = 1, - max = 7,}, - {name = "lottpotion:ale", - chance = 20, - min = 1, - max = 5,}, - {name = "lottpotion:wine", - chance = 20, - min = 1, - max = 5,}, - {name = "lottpotion:beer", - chance = 20, - min = 1, - max = 5,}, - {name = "lottpotion:cider", - chance = 20, - min = 1, - max = 5,}, + { name = "lottfarming:corn_seed", chance = 5, min = 3, max = 10, }, + { name = "lottfarming:berries_seed", chance = 5, min = 3, max = 10, }, + { name = "lottfarming:barley_seed", chance = 5, min = 3, max = 10, }, + { name = "lottfarming:pipeweed_seed", chance = 5, min = 3, max = 10, }, + { name = "lottfarming:potato_seed", chance = 5, min = 3, max = 10, }, + { name = "lottfarming:pipeweed", chance = 10, min = 1, max = 4, }, + { name = "lottfarming:pipe", chance = 10, min = 1, max = 1, }, + { name = "lottfarming:tomatoes_cooked", chance = 15, min = 1, max = 7, }, + { name = "lottfarming:turnip_cooked", chance = 15, min = 1, max = 7, }, + { name = "lottfarming:melon", chance = 15, min = 1, max = 7, }, + { name = "lottpotion:ale", chance = 20, min = 1, max = 5, }, + { name = "lottpotion:wine", chance = 20, min = 1, max = 5, }, + { name = "lottpotion:beer", chance = 20, min = 1, max = 5, }, + { name = "lottpotion:cider", chance = 20, min = 1, max = 5, }, }, light_resistant = true, drawtype = "front", @@ -770,42 +533,15 @@ mobs:register_mob("lottmobs:orc", { run_velocity = 3, damage = 2, drops = { - {name = "bones:bone", - chance = 5, - min = 1, - max = 2,}, - {name = "lottmobs:rotten_meat", - chance = 7, - min = 1, - max = 3,}, - {name = "lottfarming:orc_food", - chance = 17, - min = 1, - max = 3,}, - {name = "lottfarming:orc_medicine", - chance = 17, - min = 1, - max = 3,}, - {name = "lottfarming:potato", - chance = 14, - min = 1, - max = 2,}, - {name = "lottfarming:turnip", - chance = 14, - min = 1, - max = 2,}, - {name = "lottfarming:red_mushroom", - chance = 10, - min = 1, - max = 8,}, - {name = "lottclothes:cloak_mordor", - chance = 17, - min = 1, - max = 1,}, - {name = "lottpotion:wine", - chance = 26, - min = 1, - max = 2,}, + { name = "bones:bone", chance = 5, min = 1, max = 2, }, + { name = "lottmobs:rotten_meat", chance = 7, min = 1, max = 3, }, + { name = "lottfarming:orc_food", chance = 17, min = 1, max = 3, }, + { name = "lottfarming:orc_medicine", chance = 17, min = 1, max = 3, }, + { name = "lottfarming:potato", chance = 14, min = 1, max = 2, }, + { name = "lottfarming:turnip", chance = 14, min = 1, max = 2, }, + { name = "lottfarming:red_mushroom", chance = 10, min = 1, max = 8, }, + { name = "lottclothes:cloak_mordor", chance = 17, min = 1, max = 1, }, + { name = "lottpotion:wine", chance = 26, min = 1, max = 2, }, }, light_resistant = true, drawtype = "front", @@ -863,42 +599,15 @@ mobs:register_mob("lottmobs:orc_crossbowman", { run_velocity = 3, damage = 2, drops = { - {name = "bones:bone", - chance = 5, - min = 1, - max = 2,}, - {name = "lottmobs:rotten_meat", - chance = 7, - min = 1, - max = 3,}, - {name = "lottfarming:orc_food", - chance = 17, - min = 1, - max = 3,}, - {name = "lottfarming:orc_medicine", - chance = 17, - min = 1, - max = 3,}, - {name = "lottfarming:potato", - chance = 14, - min = 1, - max = 2,}, - {name = "lottfarming:turnip", - chance = 14, - min = 1, - max = 2,}, - {name = "lottfarming:red_mushroom", - chance = 10, - min = 1, - max = 8,}, - {name = "lottclothes:cloak_mordor", - chance = 17, - min = 1, - max = 1,}, - {name = "lottpotion:wine", - chance = 26, - min = 1, - max = 2,}, + { name = "bones:bone", chance = 5, min = 1, max = 2, }, + { name = "lottmobs:rotten_meat", chance = 7, min = 1, max = 3, }, + { name = "lottfarming:orc_food", chance = 17, min = 1, max = 3, }, + { name = "lottfarming:orc_medicine", chance = 17, min = 1, max = 3, }, + { name = "lottfarming:potato", chance = 14, min = 1, max = 2, }, + { name = "lottfarming:turnip", chance = 14, min = 1, max = 2, }, + { name = "lottfarming:red_mushroom", chance = 10, min = 1, max = 8, }, + { name = "lottclothes:cloak_mordor", chance = 17, min = 1, max = 1, }, + { name = "lottpotion:wine", chance = 26, min = 1, max = 2, }, }, light_resistant = true, drawtype = "front", @@ -963,42 +672,15 @@ mobs:register_mob("lottmobs:orc_archer", { run_velocity = 3, damage = 2, drops = { - {name = "bones:bone", - chance = 5, - min = 1, - max = 2,}, - {name = "lottmobs:rotten_meat", - chance = 7, - min = 1, - max = 3,}, - {name = "lottfarming:orc_food", - chance = 17, - min = 1, - max = 3,}, - {name = "lottfarming:orc_medicine", - chance = 17, - min = 1, - max = 3,}, - {name = "lottfarming:potato", - chance = 14, - min = 1, - max = 2,}, - {name = "lottfarming:turnip", - chance = 14, - min = 1, - max = 2,}, - {name = "lottfarming:red_mushroom", - chance = 10, - min = 1, - max = 8,}, - {name = "lottclothes:cloak_mordor", - chance = 17, - min = 1, - max = 1,}, - {name = "lottpotion:wine", - chance = 26, - min = 1, - max = 2,}, + { name = "bones:bone", chance = 5, min = 1, max = 2, }, + { name = "lottmobs:rotten_meat", chance = 7, min = 1, max = 3, }, + { name = "lottfarming:orc_food", chance = 17, min = 1, max = 3, }, + { name = "lottfarming:orc_medicine", chance = 17, min = 1, max = 3, }, + { name = "lottfarming:potato", chance = 14, min = 1, max = 2, }, + { name = "lottfarming:turnip", chance = 14, min = 1, max = 2, }, + { name = "lottfarming:red_mushroom", chance = 10, min = 1, max = 8, }, + { name = "lottclothes:cloak_mordor", chance = 17, min = 1, max = 1, }, + { name = "lottpotion:wine", chance = 26, min = 1, max = 2, }, }, light_resistant = true, drawtype = "front", @@ -1047,7 +729,7 @@ mobs:register_mob("lottmobs:raiding_orc", { visual = "mesh", mesh = "lottarmor_character_old.b3d", textures = { - {"lottmobs_orc.png", orc_armor, "tools_sword_orc.png", "lottarmor_trans.png"}, + {"lottmobs_orc.png", orc_armor, "tools_sword_orc.png", "lottarmor_trans.png"}, {"lottmobs_orc_1.png", orc_armor, "tools_sword_orc.png", "lottarmor_trans.png"}, {"lottmobs_orc_2.png", orc_armor, "tools_sword_orc.png", "lottarmor_trans.png"}, }, @@ -1058,17 +740,17 @@ mobs:register_mob("lottmobs:raiding_orc", { run_velocity = 3, damage = 3, drops = { - {name = "default:sword_steel", chance = 5, min = 1, max = 1,}, - {name = "lottarmor:helmet_steel", chance = 12, min = 1, max = 1,}, - {name = "lottarmor:chestplate_steel", chance = 12, min = 1, max = 1,}, - {name = "lottarmor:leggings_steel", chance = 12, min = 1, max = 1,}, - {name = "lottarmor:boots_steel", chance = 12, min = 1, max = 1,}, - {name = "lottarmor:shield_steel", chance = 12, min = 1, max = 1,}, - {name = "lottmobs:rotten_meat", chance = 5, min = 1, max = 3,}, - {name = "lottfarming:orc_food", chance = 15, min = 1, max = 3,}, - {name = "farming:bread", chance = 5, min = 1, max = 3,}, - {name = "lottpotion:wine", chance = 20, min = 1, max = 5,}, - {name = "lottfarming:potato", chance = 5, min = 1, max = 5,}, + { name = "default:sword_steel", chance = 5, min = 1, max = 1, }, + { name = "lottarmor:helmet_steel", chance = 12, min = 1, max = 1, }, + { name = "lottarmor:chestplate_steel", chance = 12, min = 1, max = 1, }, + { name = "lottarmor:leggings_steel", chance = 12, min = 1, max = 1, }, + { name = "lottarmor:boots_steel", chance = 12, min = 1, max = 1, }, + { name = "lottarmor:shield_steel", chance = 12, min = 1, max = 1, }, + { name = "lottmobs:rotten_meat", chance = 5, min = 1, max = 3, }, + { name = "lottfarming:orc_food", chance = 15, min = 1, max = 3, }, + { name = "farming:bread", chance = 5, min = 1, max = 3, }, + { name = "lottpotion:wine", chance = 20, min = 1, max = 5, }, + { name = "lottfarming:potato", chance = 5, min = 1, max = 5, }, }, light_resistant = true, drawtype = "front", @@ -1121,16 +803,16 @@ mobs:register_mob("lottmobs:uruk_hai", { run_velocity = 3, damage = 4, drops = { - {name = "default:bronze_sword", chance = 10, min = 1, max = 1,}, - {name = "lottarmor:helmet_bronze", chance = 20, min = 1, max = 1,}, - {name = "lottarmor:chestplate_bronze", chance = 20, min = 1, max = 1,}, - {name = "lottarmor:leggings_bronze", chance = 20, min = 1, max = 1,}, - {name = "lottarmor:boots_bronze", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:bronze_warhammer", chance = 15, min = 1, max = 1,}, - {name = "lottweapons:bronze_battleaxe", chance = 15, min = 1, max = 1,}, - {name = "lottweapons:bronze_spear", chance = 15, min = 1, max = 1,}, - {name = "lottfarming:potato", chance = 5, min = 1, max = 5,}, - {name = "lottmobs:rotten_meat", chance = 5, min = 1, max = 3,}, + { name = "default:bronze_sword", chance = 10, min = 1, max = 1, }, + { name = "lottarmor:helmet_bronze", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:chestplate_bronze", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:leggings_bronze", chance = 20, min = 1, max = 1, }, + { name = "lottarmor:boots_bronze", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:bronze_warhammer", chance = 15, min = 1, max = 1, }, + { name = "lottweapons:bronze_battleaxe", chance = 15, min = 1, max = 1, }, + { name = "lottweapons:bronze_spear", chance = 15, min = 1, max = 1, }, + { name = "lottfarming:potato", chance = 5, min = 1, max = 5, }, + { name = "lottmobs:rotten_meat", chance = 5, min = 1, max = 3, }, }, light_resistant = true, drawtype = "front", @@ -1180,13 +862,13 @@ mobs:register_mob("lottmobs:battle_troll", { run_velocity = 1, damage = 6, drops = { - {name = "bones:bone", chance = 5, min = 1, max = 5,}, - {name = "lottmobs:rotten_meat", chance = 5, min = 1, max = 5,}, - {name = "lottweapons:steel_warhammer", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:bronze_warhammer", chance = 10, min = 1, max = 5,}, - {name = "lottweapons:silver_warhammer", chance = 10, min = 1, max = 5,}, - {name = "lottweapons:tin_warhammer", chance = 10, min = 1, max = 5,}, - {name = "lottweapons:copper_warhammer", chance = 10, min = 1, max = 5,}, + { name = "bones:bone", chance = 5, min = 1, max = 5, }, + { name = "lottmobs:rotten_meat", chance = 5, min = 1, max = 5, }, + { name = "lottweapons:steel_warhammer", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:bronze_warhammer", chance = 10, min = 1, max = 5, }, + { name = "lottweapons:silver_warhammer", chance = 10, min = 1, max = 5, }, + { name = "lottweapons:tin_warhammer", chance = 10, min = 1, max = 5, }, + { name = "lottweapons:copper_warhammer", chance = 10, min = 1, max = 5, }, }, light_resistant = true, armor = 100, @@ -1235,16 +917,15 @@ mobs:register_mob("lottmobs:half_troll", { damage = 4, armor = 100, drops = { - {name = "default:sword_steel", chance = 10, min = 1, max = 1,}, - {name = "default:sword_bronze", chance = 10, min = 1, max = 1,}, - {name = "lottores:coppersword", chance = 10, min = 1, max = 5,}, - {name = "lottores:tinsword", chance = 10, min = 1, max = 5,}, - {name = "lottores:goldsword", chance = 10, min = 1, max = 1,}, - {name = "lottfarming:potato", chance = 10, min = 1, max = 2,}, - {name = "lottfarming:turnip", chance = 10, min = 1, max = 2,}, - {name = "lottfarming:red_mushroom", chance = 7, min = 1, max = 8,}, - {name = "lottpotion:wine", chance = 20, min = 1, max = 2,}, - + { name = "default:sword_steel", chance = 10, min = 1, max = 1, }, + { name = "default:sword_bronze", chance = 10, min = 1, max = 1, }, + { name = "lottores:coppersword", chance = 10, min = 1, max = 5, }, + { name = "lottores:tinsword", chance = 10, min = 1, max = 5, }, + { name = "lottores:goldsword", chance = 10, min = 1, max = 1, }, + { name = "lottfarming:potato", chance = 10, min = 1, max = 2, }, + { name = "lottfarming:turnip", chance = 10, min = 1, max = 2, }, + { name = "lottfarming:red_mushroom", chance = 7, min = 1, max = 8, }, + { name = "lottpotion:wine", chance = 20, min = 1, max = 2, }, }, light_resistant = true, drawtype = "front", @@ -1294,13 +975,13 @@ mobs:register_mob("lottmobs:nazgul", { run_velocity = 3, damage = 10, drops = { - {name = "lottores:mithril_ingot", chance = 1, min = 5, max = 15,}, - {name = "lottarmor:chestplate_gold", chance = 3, min = 1, max = 11,}, - {name = "lottarmor:leggings_gold", chance = 3, min = 1, max = 1,}, - {name = "lottarmor:helmet_gold", chance = 3, min = 1, max = 1,}, - {name = "lottarmor:boots_gold", chance = 3, min = 1, max = 1,}, - {name = "lottweapons:gold_spear", chance = 3, min = 1, max = 1,}, - {name = "lottores:goldsword", chance = 3, min = 1, max = 1,}, + { name = "lottores:mithril_ingot", chance = 1, min = 5, max = 15, }, + { name = "lottarmor:chestplate_gold", chance = 3, min = 1, max = 11, }, + { name = "lottarmor:leggings_gold", chance = 3, min = 1, max = 1, }, + { name = "lottarmor:helmet_gold", chance = 3, min = 1, max = 1, }, + { name = "lottarmor:boots_gold", chance = 3, min = 1, max = 1, }, + { name = "lottweapons:gold_spear", chance = 3, min = 1, max = 1, }, + { name = "lottores:goldsword", chance = 3, min = 1, max = 1, }, }, drawtype = "front", armor = 100, @@ -1350,13 +1031,13 @@ mobs:register_mob("lottmobs:witch_king", { run_velocity = 3, damage = 12, drops = { - {name = "lottores:mithril_ingot", chance = 1, min = 20, max = 40,}, - {name = "lottarmor:chestplate_mithril", chance = 3, min = 1, max = 11,}, - {name = "lottarmor:leggings_mithril", chance = 3, min = 1, max = 1,}, - {name = "lottarmor:helmet_mithril", chance = 3, min = 1, max = 1,}, - {name = "lottarmor:boots_mithril", chance = 3, min = 1, max = 1,}, - {name = "lottweapons:mithril_spear", chance = 3, min = 1, max = 1,}, - {name = "lottores:mithrilsword", chance = 3, min = 1, max = 1,}, + { name = "lottores:mithril_ingot", chance = 1, min = 20, max = 40, }, + { name = "lottarmor:chestplate_mithril", chance = 3, min = 1, max = 11, }, + { name = "lottarmor:leggings_mithril", chance = 3, min = 1, max = 1, }, + { name = "lottarmor:helmet_mithril", chance = 3, min = 1, max = 1, }, + { name = "lottarmor:boots_mithril", chance = 3, min = 1, max = 1, }, + { name = "lottweapons:mithril_spear", chance = 3, min = 1, max = 1, }, + { name = "lottores:mithrilsword", chance = 3, min = 1, max = 1, }, }, drawtype = "front", water_damage = 1, @@ -1407,21 +1088,21 @@ mobs:register_mob("lottmobs:balrog", { run_velocity = 3, damage = 30, drops = { - {name = "lottores:mithril_ingot", chance = 5, min = 10, max = 50,}, - {name = "lottores:mithrilsword", chance = 5, min = 1, max = 1,}, - {name = "lottores:mithrilpickaxe", chance = 5, min = 1, max = 1,}, - {name = "lottweapons:mithril_battleaxe", chance = 5, min = 1, max = 1,}, - {name = "lottweapons:mithril_spear", chance = 5, min = 1, max = 1,}, - {name = "lottweapons:mithril_battleaxe", chance = 5, min = 1, max = 1,}, - {name = "lottweapons:mithril_warhammer", chance = 5, min = 1, max = 1,}, - {name = "lottweapons:mithril_dagger", chance = 5, min = 1, max = 1,}, - {name = "lottthrowing:crossbow_mithril", chance = 5, min = 1, max = 1,}, - {name = "lottthrowing:bolt_mithril", chance = 5, min = 10, max = 50,}, - {name = "lottarmor:helmet_mithril", chance = 5, min = 1, max = 1,}, - {name = "lottarmor:chestplate_mithril", chance = 5, min = 1, max = 1,}, - {name = "lottarmor:leggings_mithril", chance = 5, min = 1, max = 1,}, - {name = "lottarmor:boots_mithril", chance = 5, min = 1, max = 1,}, - {name = "lottarmor:shield_mithril", chance = 5, min = 1, max = 1,}, + { name = "lottores:mithril_ingot", chance = 5, min = 10, max = 50, }, + { name = "lottores:mithrilsword", chance = 5, min = 1, max = 1, }, + { name = "lottores:mithrilpickaxe", chance = 5, min = 1, max = 1, }, + { name = "lottweapons:mithril_battleaxe", chance = 5, min = 1, max = 1, }, + { name = "lottweapons:mithril_spear", chance = 5, min = 1, max = 1, }, + { name = "lottweapons:mithril_battleaxe", chance = 5, min = 1, max = 1, }, + { name = "lottweapons:mithril_warhammer", chance = 5, min = 1, max = 1, }, + { name = "lottweapons:mithril_dagger", chance = 5, min = 1, max = 1, }, + { name = "lottthrowing:crossbow_mithril", chance = 5, min = 1, max = 1, }, + { name = "lottthrowing:bolt_mithril", chance = 5, min = 10, max = 50, }, + { name = "lottarmor:helmet_mithril", chance = 5, min = 1, max = 1, }, + { name = "lottarmor:chestplate_mithril", chance = 5, min = 1, max = 1, }, + { name = "lottarmor:leggings_mithril", chance = 5, min = 1, max = 1, }, + { name = "lottarmor:boots_mithril", chance = 5, min = 1, max = 1, }, + { name = "lottarmor:shield_mithril", chance = 5, min = 1, max = 1, }, }, drawtype = "front", water_damage = 0, @@ -1525,18 +1206,18 @@ mobs:register_mob("lottmobs:troll", { damage = 10, armor = 100, drops = { - {name = "default:stone", chance = 5, min = 1, max = 7,}, - {name = "default:stone_with_coal", chance = 15, min = 1, max = 4,}, - {name = "lottweapons:steel_battleaxe", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:steel_warhammer", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:bronze_battleaxe", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:bronze_warhammer", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:tin_battleaxe", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:tin_warhammer", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:copper_battleaxe", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:copper_warhammer", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:silver_battleaxe", chance = 10, min = 1, max = 1,}, - {name = "lottweapons:silver_warhammer", chance = 10, min = 1, max = 1,}, + { name = "default:stone", chance = 5, min = 1, max = 7, }, + { name = "default:stone_with_coal", chance = 15, min = 1, max = 4, }, + { name = "lottweapons:steel_battleaxe", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:steel_warhammer", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:bronze_battleaxe", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:bronze_warhammer", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:tin_battleaxe", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:tin_warhammer", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:copper_battleaxe", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:copper_warhammer", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:silver_battleaxe", chance = 10, min = 1, max = 1, }, + { name = "lottweapons:silver_warhammer", chance = 10, min = 1, max = 1, }, }, drawtype = "front", water_damage = 0, diff --git a/mods/lord/Entities/lottmobs/traders.lua b/mods/lord/Entities/lottmobs/traders.lua index ad8203439..7834cb600 100644 --- a/mods/lord/Entities/lottmobs/traders.lua +++ b/mods/lord/Entities/lottmobs/traders.lua @@ -26,7 +26,7 @@ local common_trader_definition = { drops = { { name = "lord_money:copper_coin", chance = 2, min = 1, max = 30, }, { name = "lord_money:silver_coin", chance = 6, min = 1, max = 9, }, - { name = "lord_money:gold_coin", chance = 9, min = 1, max = 3, }, + { name = "lord_money:gold_coin", chance = 9, min = 1, max = 3, }, }, attacks_monsters = true, -- except hobbits group_attack = true, -- except hobbits