Fix more item weights

This commit is contained in:
Simon Brodtmann 2025-09-10 23:12:06 +02:00
parent 7385751f2d
commit 25b396affc
2 changed files with 11 additions and 2 deletions

View file

@ -84,6 +84,7 @@ local pipe_item = {
place_result = "gold-pipe", place_result = "gold-pipe",
stack_size = 100, stack_size = 100,
weight = 5 * kg, weight = 5 * kg,
default_import_location = "lignumis",
random_tint_color = item_tints.iron_rust random_tint_color = item_tints.iron_rust
} }
@ -159,6 +160,8 @@ local pipe_to_ground_item = {
drop_sound = item_sounds.metal_small_inventory_move, drop_sound = item_sounds.metal_small_inventory_move,
place_result = "gold-pipe-to-ground", place_result = "gold-pipe-to-ground",
stack_size = 50, stack_size = 50,
weight = 5 * kg,
default_import_location = "lignumis",
random_tint_color = item_tints.iron_rust random_tint_color = item_tints.iron_rust
} }
@ -347,7 +350,9 @@ local tank_item = {
pick_sound = item_sounds.metal_large_inventory_pickup, pick_sound = item_sounds.metal_large_inventory_pickup,
drop_sound = item_sounds.metal_large_inventory_move, drop_sound = item_sounds.metal_large_inventory_move,
place_result = "gold-storage-tank", place_result = "gold-storage-tank",
stack_size = 10 stack_size = 10,
weight = 50 * kg,
default_import_location = "lignumis"
} }
local tank_recipe = { local tank_recipe = {

View file

@ -360,3 +360,7 @@ set_default_weight("accumulator", 50)
set_default_weight("steam-engine", 10) set_default_weight("steam-engine", 10)
set_default_weight("substation", 50) set_default_weight("substation", 50)
set_default_weight("radar", 50) set_default_weight("radar", 50)
set_default_weight("storage-tank", 50)
set_default_weight("fast-transport-belt", 100)
set_default_weight("fast-underground-belt", 50)
set_default_weight("fast-splitter", 50)