1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

Merge pull request #972 from grilledham/crashsite/oil_change

0.17.60 oil changes
This commit is contained in:
grilledham 2019-07-30 17:37:39 +01:00 committed by GitHub
commit 26447fb6c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 7 deletions

View File

@ -41,7 +41,7 @@ local factory = {
recipe = 'advanced-oil-processing',
keep_active = true,
output = {
{min_rate = 1.25 / 60, distance_factor = 1.25 / 60 / 512, item = 'heavy-oil', fluidbox_index = 3},
{min_rate = 3.125 / 60, distance_factor = 3.125 / 60 / 512, item = 'heavy-oil', fluidbox_index = 3},
{min_rate = 5.625/ 60, distance_factor = 5.625 / 60 / 512, item = 'light-oil', fluidbox_index = 4},
{min_rate = 6.875 / 60, distance_factor = 6.875 / 60 / 512, item = 'petroleum-gas', fluidbox_index = 5}
}

View File

@ -41,7 +41,7 @@ local factory = {
recipe = 'advanced-oil-processing',
keep_active = true,
output = {
{min_rate = 1.25 / 60, distance_factor = 1.25 / 60 / 512, item = 'heavy-oil', fluidbox_index = 3},
{min_rate = 3.125 / 60, distance_factor = 3.125 / 60 / 512, item = 'heavy-oil', fluidbox_index = 3},
{min_rate = 5.625 / 60, distance_factor = 5.625 / 60 / 512, item = 'light-oil', fluidbox_index = 4},
{min_rate = 6.875 / 60, distance_factor = 6.875 / 60 / 512, item = 'petroleum-gas', fluidbox_index = 5}
}

View File

@ -4,10 +4,10 @@ local Token = require 'utils.token'
local loot = {
{weight = 10},
{stack = {name = 'coin', count = 50, distance_factor = 1 / 20}, weight = 5},
{stack = {name = 'crude-oil-barrel', count = 100, distance_factor = 1 / 20}, weight = 2},
{stack = {name = 'crude-oil-barrel', count = 100, distance_factor = 1 / 20}, weight = 5},
{stack = {name = 'heavy-oil-barrel', count = 100, distance_factor = 1 / 20}, weight = 2},
{stack = {name = 'light-oil-barrel', count = 100, distance_factor = 1 / 20}, weight = 2},
{stack = {name = 'petroleum-gas-barrel', count = 100, distance_factor = 1 / 20}, weight = 2},
{stack = {name = 'petroleum-gas-barrel', count = 100, distance_factor = 1 / 20}, weight = 5},
{stack = {name = 'lubricant-barrel', count = 100, distance_factor = 1 / 20}, weight = 1},
{stack = {name = 'sulfuric-acid-barrel', count = 100, distance_factor = 1 / 20}, weight = 1}
}
@ -41,9 +41,7 @@ local factory = {
recipe = 'basic-oil-processing',
keep_active = true,
output = {
{min_rate = 3.75 / 60, distance_factor = 3.75 / 60 / 512, item = 'heavy-oil', fluidbox_index = 2},
{min_rate = 3.75 / 60, distance_factor = 3.75 / 60 / 512, item = 'light-oil', fluidbox_index = 3},
{min_rate = 5 / 60, distance_factor = 5 / 60 / 512, item = 'petroleum-gas', fluidbox_index = 4}
{min_rate = 4.5 / 60, distance_factor = 4.5 / 60 / 512, item = 'petroleum-gas', fluidbox_index = 2}
}
}
}