This commit is contained in:
2025-03-23 13:22:40 +09:00
parent 34803f6fbd
commit b8699a4855
4 changed files with 26 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 3.0.82
Date: 2025-03-24
Changes:
- [CT] Some changes to original hidden items.
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 3.0.81 Version: 3.0.81
Date: 2025-03-24 Date: 2025-03-24

View File

@@ -50,6 +50,9 @@ if settings.startup['PHI-CT'].value then
force.recipes['super-radar'].enabled = enable force.recipes['super-radar'].enabled = enable
force.recipes['passive-energy-void'].enabled = enable force.recipes['passive-energy-void'].enabled = enable
force.recipes['linked-chest'].enabled = enable force.recipes['linked-chest'].enabled = enable
force.recipes['infinity-chest'].enabled = enable
force.recipes['infinity-cargo-wagon'].enabled = enable
force.recipes['infinity-pipe'].enabled = enable
end end
script.on_event(defines.events.on_player_cheat_mode_enabled, function(e) script.on_event(defines.events.on_player_cheat_mode_enabled, function(e)

View File

@@ -1317,6 +1317,21 @@ if settings.startup['PHI-CT'].value then
data:extend(s) data:extend(s)
for _, v in pairs({'infinity-chest', 'infinity-cargo-wagon', 'infinity-pipe'}) do
data.raw['item'][v].hidden = false
data:extend({{
type = 'recipe',
name = data.raw['item'][v].name,
energy_required = 2,
enabled = false,
ingredients = {},
results = {{type = 'item', name = data.raw['item'][v].name, amount = 1}},
main_product = data.raw['item'][v].name,
localised_name = {'name.' .. data.raw['item'][v].name}
}})
end
local item = table.deepcopy(data.raw['item']['radar']) local item = table.deepcopy(data.raw['item']['radar'])
item.name = 'super-radar' item.name = 'super-radar'
item.place_result = item.name item.place_result = item.name

View File

@@ -1,6 +1,6 @@
{ {
"name": "PHI-CL", "name": "PHI-CL",
"version": "3.0.81", "version": "3.0.82",
"factorio_version": "2.0", "factorio_version": "2.0",
"date": "2025-03-24", "date": "2025-03-24",
"title": "Phidias Collection", "title": "Phidias Collection",