This commit is contained in:
Simon Brodtmann 2024-12-09 01:12:01 +01:00
parent f189de9500
commit 22b4a9b661
14 changed files with 14 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -48,7 +48,16 @@ local tree_seed = data.raw.item["tree-seed"]
tree_seed.fuel_category = nil tree_seed.fuel_category = nil
tree_seed.fuel_value = 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 -- Disable iron recipes

View file

@ -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.icon = "__lignumis__/graphics/icons/wood-transport-belt.png"
transport_belt.corpse = "wood-transport-belt-remnants" transport_belt.corpse = "wood-transport-belt-remnants"
transport_belt.belt_animation_set.animation_set.filename = "__lignumis__/graphics/entity/wood-transport-belt.png" 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"] local splitter = data.raw["splitter"]["wood-splitter"]
splitter.icon = "__lignumis__/graphics/icons/wood-splitter.png" 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.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.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.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"] local underground_belt = data.raw["underground-belt"]["wood-underground-belt"]
underground_belt.icon = "__lignumis__/graphics/icons/wood-underground-belt.png" 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_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_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.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-transport-belt"].icon = "__lignumis__/graphics/icons/wood-transport-belt.png"
data.raw.item["wood-splitter"].icon = "__lignumis__/graphics/icons/wood-splitter.png" data.raw.item["wood-splitter"].icon = "__lignumis__/graphics/icons/wood-splitter.png"