mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-06-27 13:56:20 +09:00
.
This commit is contained in:
@@ -225,12 +225,12 @@ local items = {
|
||||
['turbo-loader'] = {
|
||||
category = 'crafting',
|
||||
},
|
||||
['molten-iron'] = {
|
||||
['iron-ore-melting'] = {
|
||||
energy_required = 1.6,
|
||||
ingredients = {{type = 'item', name = 'iron-ore', amount = 1}},
|
||||
results = {{type = 'fluid', name = 'molten-iron', amount = 10}}
|
||||
},
|
||||
['molten-copper'] = {
|
||||
['copper-ore-melting'] = {
|
||||
energy_required = 1.6,
|
||||
ingredients = {{type = 'item', name = 'copper-ore', amount = 1}},
|
||||
results = {{type = 'fluid', name = 'molten-copper', amount = 10}}
|
||||
@@ -532,6 +532,7 @@ local items = {
|
||||
['spoilage'] = true,
|
||||
['thruster'] = true,
|
||||
['calcite'] = true,
|
||||
['promethium-science-pack'] = true,
|
||||
},
|
||||
['tips_and_tricks_item'] = {
|
||||
['quality'] = true,
|
||||
@@ -696,8 +697,6 @@ local items = {
|
||||
['empty-space'] = 'tile',
|
||||
['space-platform-foundation'] = 'tile',
|
||||
['foundation'] = 'tile',
|
||||
-- SPACE_AGE TOOL 0
|
||||
['promethium-science-pack'] = 'tool',
|
||||
},
|
||||
['technology_productivity'] = {
|
||||
-- BASE 0
|
||||
|
||||
@@ -281,7 +281,6 @@ end
|
||||
-- GM-VP H 2 SPACE_AGE ITEM
|
||||
-- GM-VP H 17 SPACE_AGE MAP_GENERATION
|
||||
-- GM-VP H 3 SPACE_AGE TILE
|
||||
-- GM-VP H 1 SPACE_AGE TOOL
|
||||
if items['hidden'] then
|
||||
for k, v in pairs(items['hidden']) do
|
||||
if data.raw[v] and data.raw[v][k] then
|
||||
@@ -445,7 +444,7 @@ if settings.startup['PHI-MB-MACHINE'].value and settings.startup['PHI-MB-MACHINE
|
||||
end
|
||||
|
||||
-- GM-VP H 1 QUALITY ITEM
|
||||
-- GM-VP H 23 SPACE_AGE ITEM
|
||||
-- GM-VP H 24 SPACE_AGE ITEM
|
||||
for _, v in pairs(data.raw.item) do
|
||||
v.auto_recycle = false
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ do
|
||||
local spoil_set = (settings.startup['PHI-SA'].value and not settings.startup['PHI-SA-SPOIL'].value) or (settings.startup['PHI-GM'].value and settings.startup['PHI-GM'].value ~= '')
|
||||
local spoil_freeze_set = settings.startup['PHI-SA'].value and settings.startup['PHI-SA-SPOIL'].value and settings.startup['PHI-SA-SPOIL-FREEZE-MULTIPLIER'].value and settings.startup['PHI-SA-SPOIL-FREEZE-MULTIPLIER'].value > 0
|
||||
|
||||
for _, v in pairs({'nutrients', 'captive-biter-spawner', 'biter-egg', 'pentapod-egg'}) do
|
||||
for _, v in pairs({'nutrients', 'captive-biter-spawner', 'biter-egg', 'pentapod-egg', 'agricultural-science-pack'}) do
|
||||
if spoil_set then
|
||||
spoil_handle(data.raw['item'][v])
|
||||
end
|
||||
@@ -80,14 +80,6 @@ do
|
||||
spoil_freeze_handle(data.raw['capsule'][v])
|
||||
end
|
||||
end
|
||||
|
||||
if spoil_set then
|
||||
spoil_handle(data.raw['tool']['agricultural-science-pack'])
|
||||
end
|
||||
|
||||
if spoil_freeze_set then
|
||||
spoil_freeze_handle(data.raw['tool']['agricultural-science-pack'])
|
||||
end
|
||||
end
|
||||
|
||||
-- SA A 1 SPACE_AGE RECIPE
|
||||
|
||||
Reference in New Issue
Block a user