mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-05-12 21:08:43 +09:00
.
This commit is contained in:
@@ -720,38 +720,40 @@ local items = {
|
|||||||
-- SPACE_AGE ENTITY 10
|
-- SPACE_AGE ENTITY 10
|
||||||
['thruster'] = 'thruster',
|
['thruster'] = 'thruster',
|
||||||
['lightning'] = 'lightning',
|
['lightning'] = 'lightning',
|
||||||
-- SPACE_AGE ENTITY_GENERATION 0
|
|
||||||
['small-demolisher'] = 'segmented-unit',
|
['small-demolisher'] = 'segmented-unit',
|
||||||
['medium-demolisher'] = 'segmented-unit',
|
['medium-demolisher'] = 'segmented-unit',
|
||||||
['big-demolisher'] = 'segmented-unit',
|
['big-demolisher'] = 'segmented-unit',
|
||||||
|
-- SPACE_AGE ENTITY 15
|
||||||
['small-wriggler-pentapod-premature'] = 'unit',
|
['small-wriggler-pentapod-premature'] = 'unit',
|
||||||
['medium-wriggler-pentapod-premature'] = 'unit',
|
['medium-wriggler-pentapod-premature'] = 'unit',
|
||||||
-- SPACE_AGE ENTITY_GENERATION 5
|
|
||||||
['big-wriggler-pentapod-premature'] = 'unit',
|
['big-wriggler-pentapod-premature'] = 'unit',
|
||||||
['small-wriggler-pentapod'] = 'unit',
|
['small-wriggler-pentapod'] = 'unit',
|
||||||
['medium-wriggler-pentapod'] = 'unit',
|
['medium-wriggler-pentapod'] = 'unit',
|
||||||
|
-- SPACE_AGE ENTITY 20
|
||||||
['big-wriggler-pentapod'] = 'unit',
|
['big-wriggler-pentapod'] = 'unit',
|
||||||
['small-strafer-pentapod'] = 'spider-unit',
|
['small-strafer-pentapod'] = 'spider-unit',
|
||||||
-- SPACE_AGE ENTITY_GENERATION 10
|
|
||||||
['medium-strafer-pentapod'] = 'spider-unit',
|
['medium-strafer-pentapod'] = 'spider-unit',
|
||||||
['big-strafer-pentapod'] = 'spider-unit',
|
['big-strafer-pentapod'] = 'spider-unit',
|
||||||
['small-stomper-pentapod'] = 'spider-unit',
|
['small-stomper-pentapod'] = 'spider-unit',
|
||||||
|
-- SPACE_AGE ENTITY 25
|
||||||
['medium-stomper-pentapod'] = 'spider-unit',
|
['medium-stomper-pentapod'] = 'spider-unit',
|
||||||
['big-stomper-pentapod'] = 'spider-unit',
|
['big-stomper-pentapod'] = 'spider-unit',
|
||||||
-- SPACE_AGE ENTITY_GENERATION 15
|
['gleba-spawner'] = 'unit-spawner',
|
||||||
|
['gleba-spawner-small'] = 'unit-spawner',
|
||||||
['ashland-lichen-tree'] = 'tree',
|
['ashland-lichen-tree'] = 'tree',
|
||||||
|
-- SPACE_AGE ENTITY 30
|
||||||
['ashland-lichen-tree-flaming'] = 'tree',
|
['ashland-lichen-tree-flaming'] = 'tree',
|
||||||
['slipstack'] = 'tree',
|
['slipstack'] = 'tree',
|
||||||
['funneltrunk'] = 'tree',
|
['funneltrunk'] = 'tree',
|
||||||
['hairyclubnub'] = 'tree',
|
['hairyclubnub'] = 'tree',
|
||||||
-- SPACE_AGE ENTITY_GENERATION 20
|
|
||||||
['teflilly'] = 'tree',
|
['teflilly'] = 'tree',
|
||||||
|
-- SPACE_AGE ENTITY 35
|
||||||
['lickmaw'] = 'tree',
|
['lickmaw'] = 'tree',
|
||||||
['stingfrond'] = 'tree',
|
['stingfrond'] = 'tree',
|
||||||
['boompuff'] = 'tree',
|
['boompuff'] = 'tree',
|
||||||
['sunnycomb'] = 'tree',
|
['sunnycomb'] = 'tree',
|
||||||
-- SPACE_AGE ENTITY_GENERATION 25
|
|
||||||
['cuttlepop'] = 'tree',
|
['cuttlepop'] = 'tree',
|
||||||
|
-- SPACE_AGE ENTITY 40
|
||||||
['water-cane'] = 'tree',
|
['water-cane'] = 'tree',
|
||||||
-- SPACE_AGE ITEM 0
|
-- SPACE_AGE ITEM 0
|
||||||
['bioflux'] = 'capsule',
|
['bioflux'] = 'capsule',
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
--[[
|
--[[
|
||||||
|
裝飾生成 Decoration Generation
|
||||||
|
地磚生成 Tile Generation
|
||||||
|
|
||||||
for _, v in pairs(data.raw['tile']) do
|
for _, v in pairs(data.raw['tile']) do
|
||||||
if v.subgroup and (v.subgroup == 'vulcanus-tiles' or v.subgroup == 'gleba-tiles' or v.subgroup == 'gleba-water-tiles' or v.subgroup == 'fulgora-tiles' or v.subgroup == 'aquilo-tiles') then
|
if v.subgroup and (v.subgroup == 'vulcanus-tiles' or v.subgroup == 'gleba-tiles' or v.subgroup == 'gleba-water-tiles' or v.subgroup == 'fulgora-tiles' or v.subgroup == 'aquilo-tiles') then
|
||||||
v.autoplace = nil
|
v.autoplace = nil
|
||||||
@@ -15,8 +18,6 @@ for _, v in pairs({'gleba-spawner', 'gleba-spawner-small'}) do
|
|||||||
data.raw['unit-spawner'][v].loot = nil
|
data.raw['unit-spawner'][v].loot = nil
|
||||||
data.raw['unit-spawner'][v].collision_mask = nil
|
data.raw['unit-spawner'][v].collision_mask = nil
|
||||||
data.raw['unit-spawner'][v].autoplace = nil
|
data.raw['unit-spawner'][v].autoplace = nil
|
||||||
data.raw['unit-spawner'][v].hidden = true
|
|
||||||
data.raw['unit-spawner'][v].hidden_in_factoriopedia = true
|
|
||||||
end
|
end
|
||||||
|
|
||||||
data.raw['unit']['small-wriggler-pentapod-premature'].absorptions_to_join_attack = {pollution = 0}
|
data.raw['unit']['small-wriggler-pentapod-premature'].absorptions_to_join_attack = {pollution = 0}
|
||||||
@@ -33,10 +34,6 @@ for _, v in pairs({'yumako-tree', 'jellystem'}) do
|
|||||||
data.raw['plant'][v].autoplace = nil
|
data.raw['plant'][v].autoplace = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, v in pairs({'natural-yumako-soil', 'natural-jellynut-soil', 'wetland-yumako', 'wetland-jellynut', 'lowland-brown-blubber', 'lowland-olive-blubber', 'lowland-olive-blubber-2', 'lowland-olive-blubber-3', 'lowland-cream-red', 'lowland-red-vein', 'lowland-red-vein-2', 'lowland-red-vein-3', 'lowland-red-vein-4', 'lowland-red-vein-dead', 'lowland-red-infection', 'ammoniacal-ocean', 'ammoniacal-ocean-2'}) do
|
|
||||||
data.raw['planet']['nauvis'].map_gen_settings.autoplace_settings.tile.settings[v] = nil
|
|
||||||
end
|
|
||||||
|
|
||||||
for _, v in pairs({'small-stomper-shell', 'medium-stomper-shell', 'big-stomper-shell', 'big-volcanic-rock', 'huge-volcanic-rock', 'copper-stromatolite', 'iron-stromatolite', 'vulcanus-chimney-short', 'vulcanus-chimney-truncated', 'vulcanus-chimney', 'vulcanus-chimney-cold', 'vulcanus-chimney-faded', 'big-fulgora-rock', 'fulgurite', 'fulgurite-small', 'fulgoran-ruin-small', 'fulgoran-ruin-medium', 'fulgoran-ruin-stonehenge', 'fulgoran-ruin-big', 'fulgoran-ruin-colossal', 'fulgoran-ruin-huge', 'fulgoran-ruin-vault', 'lithium-iceberg-big', 'lithium-iceberg-huge', 'small-demolisher-corpse', 'medium-demolisher-corpse', 'big-demolisher-corpse'}) do
|
for _, v in pairs({'small-stomper-shell', 'medium-stomper-shell', 'big-stomper-shell', 'big-volcanic-rock', 'huge-volcanic-rock', 'copper-stromatolite', 'iron-stromatolite', 'vulcanus-chimney-short', 'vulcanus-chimney-truncated', 'vulcanus-chimney', 'vulcanus-chimney-cold', 'vulcanus-chimney-faded', 'big-fulgora-rock', 'fulgurite', 'fulgurite-small', 'fulgoran-ruin-small', 'fulgoran-ruin-medium', 'fulgoran-ruin-stonehenge', 'fulgoran-ruin-big', 'fulgoran-ruin-colossal', 'fulgoran-ruin-huge', 'fulgoran-ruin-vault', 'lithium-iceberg-big', 'lithium-iceberg-huge', 'small-demolisher-corpse', 'medium-demolisher-corpse', 'big-demolisher-corpse'}) do
|
||||||
data.raw['simple-entity'][v].autoplace = nil
|
data.raw['simple-entity'][v].autoplace = nil
|
||||||
data.raw['simple-entity'][v].hidden = true
|
data.raw['simple-entity'][v].hidden = true
|
||||||
|
|||||||
@@ -432,8 +432,7 @@ if data.raw.planet then
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- GM-VP H 1 QUALITY ENTITY
|
-- GM-VP H 1 QUALITY ENTITY
|
||||||
-- GM-VP H 12 SPACE_AGE ENTITY
|
-- GM-VP H 41 SPACE_AGE ENTITY
|
||||||
-- GM-VP H 27 SPACE_AGE ENTITY_GENERATION
|
|
||||||
-- GM-VP H 7 SPACE_AGE ITEM
|
-- GM-VP H 7 SPACE_AGE ITEM
|
||||||
-- GM-VP H 21 SPACE_AGE MAP_GENERATION
|
-- GM-VP H 21 SPACE_AGE MAP_GENERATION
|
||||||
-- GM-VP H 3 SPACE_AGE TILE
|
-- GM-VP H 3 SPACE_AGE TILE
|
||||||
|
|||||||
Reference in New Issue
Block a user