-- ministry_of_transportation.lua local MinistryOfTransportation = {} MinistryOfTransportation.name = "Ministry of Transportation" MinistryOfTransportation.perk = "logistic_cost_reduction" function MinistryOfTransportation.apply_perks(player) -- Add 100 stack inserters to the player's inventory player.insert {name = "stack-inserter", count = 100} -- You can add more perks or actions related to the Ministry of Transportation here end return MinistryOfTransportation