diff --git a/lignumis/graphics/entity/burner-long-handed-inserter-hand-base.png b/lignumis/graphics/entity/burner-long-handed-inserter-hand-base.png index 9d6d1f1..dbf9123 100644 Binary files a/lignumis/graphics/entity/burner-long-handed-inserter-hand-base.png and b/lignumis/graphics/entity/burner-long-handed-inserter-hand-base.png differ diff --git a/lignumis/graphics/entity/burner-long-handed-inserter-hand-closed.png b/lignumis/graphics/entity/burner-long-handed-inserter-hand-closed.png index e766d79..964511b 100644 Binary files a/lignumis/graphics/entity/burner-long-handed-inserter-hand-closed.png and b/lignumis/graphics/entity/burner-long-handed-inserter-hand-closed.png differ diff --git a/lignumis/graphics/entity/burner-long-handed-inserter-hand-open.png b/lignumis/graphics/entity/burner-long-handed-inserter-hand-open.png index 2e0ff56..b10dca1 100644 Binary files a/lignumis/graphics/entity/burner-long-handed-inserter-hand-open.png and b/lignumis/graphics/entity/burner-long-handed-inserter-hand-open.png differ diff --git a/lignumis/graphics/entity/burner-long-handed-inserter-platform.png b/lignumis/graphics/entity/burner-long-handed-inserter-platform.png index c937ddd..ca04f2a 100644 Binary files a/lignumis/graphics/entity/burner-long-handed-inserter-platform.png and b/lignumis/graphics/entity/burner-long-handed-inserter-platform.png differ diff --git a/lignumis/graphics/entity/burner-long-handed-inserter-remnants.png b/lignumis/graphics/entity/burner-long-handed-inserter-remnants.png index 36e4ca0..00e85f1 100644 Binary files a/lignumis/graphics/entity/burner-long-handed-inserter-remnants.png and b/lignumis/graphics/entity/burner-long-handed-inserter-remnants.png differ diff --git a/lignumis/graphics/icons/burner-long-handed-inserter.png b/lignumis/graphics/icons/burner-long-handed-inserter.png index d9700e3..dd327ff 100644 Binary files a/lignumis/graphics/icons/burner-long-handed-inserter.png and b/lignumis/graphics/icons/burner-long-handed-inserter.png differ diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 4ab7edf..075da5f 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -48,7 +48,16 @@ local tree_seed = data.raw.item["tree-seed"] tree_seed.fuel_category = nil tree_seed.fuel_value = nil -data.raw.plant["tree-plant"].growth_ticks = 5 * minute +for _, tree in pairs(data.raw.tree) do + tree.minable.result = nil + tree.minable.count = nil + tree.minable.results = { { type = "item", name = "wood", amount_min = 2, amount_max = 10 } } +end + +local tree_plant = data.raw.plant["tree-plant"] +tree_plant.growth_ticks = 5 * minute +tree_plant.minable.results = { { type = "item", name = "wood", amount_min = 4, amount_max = 6 } } +tree_plant.minable.count = nil -- Disable iron recipes @@ -64,6 +73,6 @@ electronics_technology.research_trigger = nil electronics_technology.prerequisites = { "wood-science-pack" } electronics_technology.unit = { count = 10, - ingredients = {{"wood-science-pack", 1}}, + ingredients = { { "wood-science-pack", 1 } }, time = 10 } \ No newline at end of file diff --git a/lignumis/prototypes/integrations/wood-logistics.lua b/lignumis/prototypes/integrations/wood-logistics.lua index 2372d7f..9f3d9a8 100644 --- a/lignumis/prototypes/integrations/wood-logistics.lua +++ b/lignumis/prototypes/integrations/wood-logistics.lua @@ -118,6 +118,7 @@ local transport_belt = data.raw["transport-belt"]["wood-transport-belt"] transport_belt.icon = "__lignumis__/graphics/icons/wood-transport-belt.png" transport_belt.corpse = "wood-transport-belt-remnants" transport_belt.belt_animation_set.animation_set.filename = "__lignumis__/graphics/entity/wood-transport-belt.png" +transport_belt.emissions_per_second = { noise = 0.01 } local splitter = data.raw["splitter"]["wood-splitter"] splitter.icon = "__lignumis__/graphics/icons/wood-splitter.png" @@ -127,6 +128,7 @@ splitter.structure.south.filename = "__lignumis__/graphics/entity/wood-splitter- splitter.structure.west.filename = "__lignumis__/graphics/entity/wood-splitter-west.png" splitter.structure_patch.east.filename = "__lignumis__/graphics/entity/wood-splitter-east-top_patch.png" splitter.structure_patch.west.filename = "__lignumis__/graphics/entity/wood-splitter-west-top_patch.png" +splitter.emissions_per_second = { noise = 1 } local underground_belt = data.raw["underground-belt"]["wood-underground-belt"] underground_belt.icon = "__lignumis__/graphics/icons/wood-underground-belt.png" @@ -135,6 +137,7 @@ underground_belt.structure.direction_in.sheet.filename = "__lignumis__/graphics/ underground_belt.structure.direction_out.sheet.filename = "__lignumis__/graphics/entity/wood-underground-belt-structure.png" underground_belt.structure.direction_in_side_loading.sheet.filename = "__lignumis__/graphics/entity/wood-underground-belt-structure.png" underground_belt.structure.direction_out_side_loading.sheet.filename = "__lignumis__/graphics/entity/wood-underground-belt-structure.png" +underground_belt.emissions_per_second = { noise = 0.1 } data.raw.item["wood-transport-belt"].icon = "__lignumis__/graphics/icons/wood-transport-belt.png" data.raw.item["wood-splitter"].icon = "__lignumis__/graphics/icons/wood-splitter.png" diff --git a/sources/entity/burner-long-handed-inserter-hand-base.afphoto b/sources/entity/burner-long-handed-inserter-hand-base.afphoto index ef6642c..7c4b714 100644 Binary files a/sources/entity/burner-long-handed-inserter-hand-base.afphoto and b/sources/entity/burner-long-handed-inserter-hand-base.afphoto differ diff --git a/sources/entity/burner-long-handed-inserter-hand-closed.afphoto b/sources/entity/burner-long-handed-inserter-hand-closed.afphoto index f380825..c9be707 100644 Binary files a/sources/entity/burner-long-handed-inserter-hand-closed.afphoto and b/sources/entity/burner-long-handed-inserter-hand-closed.afphoto differ diff --git a/sources/entity/burner-long-handed-inserter-hand-open.afphoto b/sources/entity/burner-long-handed-inserter-hand-open.afphoto index ce9314e..2d57991 100644 Binary files a/sources/entity/burner-long-handed-inserter-hand-open.afphoto and b/sources/entity/burner-long-handed-inserter-hand-open.afphoto differ diff --git a/sources/entity/burner-long-handed-inserter-platform.afphoto b/sources/entity/burner-long-handed-inserter-platform.afphoto index f1abd9f..ff52a0c 100644 Binary files a/sources/entity/burner-long-handed-inserter-platform.afphoto and b/sources/entity/burner-long-handed-inserter-platform.afphoto differ diff --git a/sources/entity/burner-long-handed-inserter-remnants.afphoto b/sources/entity/burner-long-handed-inserter-remnants.afphoto index 86f505c..0fb7989 100644 Binary files a/sources/entity/burner-long-handed-inserter-remnants.afphoto and b/sources/entity/burner-long-handed-inserter-remnants.afphoto differ diff --git a/sources/icons/burner-long-handed-inserter.afphoto b/sources/icons/burner-long-handed-inserter.afphoto index 844f71a..8be9253 100644 Binary files a/sources/icons/burner-long-handed-inserter.afphoto and b/sources/icons/burner-long-handed-inserter.afphoto differ