@expcluster/legacy 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/dist/browser/package.json +40 -0
- package/dist/browser/tsconfig.browser.tsbuildinfo +1 -0
- package/dist/browser/web/index.d.ts +1 -0
- package/dist/browser/web/index.d.ts.map +1 -0
- package/dist/browser/web/index.js +2 -0
- package/dist/browser/web/index.js.map +1 -0
- package/dist/node/index.d.ts +3 -0
- package/dist/node/index.d.ts.map +1 -0
- package/dist/node/index.js +10 -0
- package/dist/node/index.js.map +1 -0
- package/dist/node/instance.d.ts +4 -0
- package/dist/node/instance.d.ts.map +1 -0
- package/dist/node/instance.js +8 -0
- package/dist/node/instance.js.map +1 -0
- package/dist/node/tsconfig.node.tsbuildinfo +1 -0
- package/dist/web/manifest.json +7 -0
- package/dist/web/static/exp_legacy.9b6538559ed5e689539c.js +355 -0
- package/dist/web/static/index_ts.8f9d451c8d3f7f293da6.js +22 -0
- package/dist/web/static/main.94e1b48804112ca8bdfc.js +118 -0
- package/dist/web/static/package_json.a83729efdb0697b12396.js +22 -0
- package/dist/web/static/web_index_tsx.e5a01ac0e4b0a6f6517f.js +21 -0
- package/index.ts +8 -0
- package/instance.ts +7 -0
- package/module/config/_file_loader.lua +29 -0
- package/module/config/advanced_start.lua +112 -0
- package/module/config/afk_kick.lua +14 -0
- package/module/config/bonus.lua +105 -0
- package/module/config/chat_reply.lua +136 -0
- package/module/config/compilatron.lua +25 -0
- package/module/config/death_logger.lua +15 -0
- package/module/config/deconlog.lua +11 -0
- package/module/config/discord_alerts.lua +25 -0
- package/module/config/expcore/permission_groups.lua +143 -0
- package/module/config/graftorio.lua +7 -0
- package/module/config/gui/autofill.lua +129 -0
- package/module/config/gui/player_list_actions.lua +201 -0
- package/module/config/gui/rockets.lua +47 -0
- package/module/config/gui/science.lua +21 -0
- package/module/config/gui/tasks.lua +13 -0
- package/module/config/gui/warps.lua +52 -0
- package/module/config/inventory_clear.lua +9 -0
- package/module/config/join_messages.lua +8 -0
- package/module/config/lawnmower.lua +6 -0
- package/module/config/logging.lua +30 -0
- package/module/config/miner.lua +8 -0
- package/module/config/module.lua +86 -0
- package/module/config/nukeprotect.lua +30 -0
- package/module/config/pollution_grading.lua +9 -0
- package/module/config/popup_messages.lua +10 -0
- package/module/config/preset_player_colours.lua +33 -0
- package/module/config/preset_player_quickbar.lua +6 -0
- package/module/config/protection.lua +17 -0
- package/module/config/repair.lua +8 -0
- package/module/config/research.lua +179 -0
- package/module/config/scorched_earth.lua +116 -0
- package/module/config/spawn_area.lua +255 -0
- package/module/config/station_auto_name.lua +11 -0
- package/module/config/statistics.lua +46 -0
- package/module/config/vlayer.lua +180 -0
- package/module/config/warnings.lua +38 -0
- package/module/control.lua +46 -0
- package/module/expcore/datastore.lua +884 -0
- package/module/expcore/external.lua +146 -0
- package/module/expcore/permission_groups.lua +355 -0
- package/module/expcore/player_data.lua +152 -0
- package/module/locale/en/addons.cfg +31 -0
- package/module/locale/en/data.cfg +114 -0
- package/module/locale/en/expcore.cfg +16 -0
- package/module/locale/en/gui.cfg +114 -0
- package/module/locale/zh-CN/addons.cfg +31 -0
- package/module/locale/zh-CN/data.cfg +114 -0
- package/module/locale/zh-CN/expcore.cfg +16 -0
- package/module/locale/zh-CN/gui.cfg +122 -0
- package/module/locale/zh-TW/addons.cfg +31 -0
- package/module/locale/zh-TW/data.cfg +114 -0
- package/module/locale/zh-TW/expcore.cfg +16 -0
- package/module/locale/zh-TW/gui.cfg +122 -0
- package/module/module.json +14 -0
- package/module/module_exports.lua +3 -0
- package/module/modules/control/jail.lua +119 -0
- package/module/modules/control/protection.lua +204 -0
- package/module/modules/control/reports.lua +225 -0
- package/module/modules/control/spectate.lua +173 -0
- package/module/modules/control/vlayer.lua +807 -0
- package/module/modules/control/warnings.lua +331 -0
- package/module/modules/control/warps.lua +488 -0
- package/module/modules/data/alt-view.lua +26 -0
- package/module/modules/data/greetings.lua +45 -0
- package/module/modules/data/language.lua +21 -0
- package/module/modules/data/player-colours.lua +63 -0
- package/module/modules/data/quickbar.lua +72 -0
- package/module/modules/data/statistics.lua +181 -0
- package/module/modules/data/tag.lua +82 -0
- package/module/modules/data/toolbar.lua +31 -0
- package/module/modules/graftorio/forcestats.lua +196 -0
- package/module/modules/graftorio/general.lua +63 -0
- package/module/modules/graftorio/require.lua +28 -0
- package/module/modules/graftorio/statics.lua +36 -0
- package/module/modules/gui/vlayer.lua +547 -0
- package/module/modules/gui/warp-list.lua +909 -0
- package/module/utils/event.lua +86 -0
- package/package.json +38 -0
- package/tsconfig.browser.json +4 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +5 -0
- package/web/index.tsx +0 -0
- package/webpack.config.js +29 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
--- A combination of config settings for different popup values like chat and damage
|
|
2
|
+
-- @config Popup-Messages
|
|
3
|
+
|
|
4
|
+
return {
|
|
5
|
+
show_player_messages = true, --- @setting show_player_messages weather a message in chat will make a popup above them
|
|
6
|
+
show_player_mentions = true, --- @setting show_player_mentions weather a mentioned player will have a popup when mentioned in chat
|
|
7
|
+
show_player_damage = true, --- @setting show_player_damage weather to show damage done by players
|
|
8
|
+
show_player_health = true, --- @setting show_player_health weather to show player health when attacked
|
|
9
|
+
damage_location_variance = 0.8, --- @setting damage_location_variance how close to the eade of an entity the popups will appear
|
|
10
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
--- Preset colours that players get when they join the server, if not in the list then will be given a random colour (which isnt disallowed)
|
|
2
|
+
-- @config Preset-Player-Colours
|
|
3
|
+
|
|
4
|
+
return {
|
|
5
|
+
players = { --- @setting players list of all players and the colour in rgb256 that they will recive upon joining
|
|
6
|
+
PHIDIAS0303 = { r = 255, g = 255, b = 255 },
|
|
7
|
+
BADgamerNL = { r = 255, g = 20, b = 147 },
|
|
8
|
+
arty714 = { r = 150, g = 68, b = 161 },
|
|
9
|
+
Cooldude2606 = { r = 57, g = 192, b = 207 },
|
|
10
|
+
mark9064 = { r = 99, g = 0, b = 255 },
|
|
11
|
+
eissturm = { r = 25, g = 25, b = 112 },
|
|
12
|
+
Sakama = { r = 20, g = 213, b = 80 },
|
|
13
|
+
freek18 = { r = 50, g = 0, b = 255 },
|
|
14
|
+
aldldl = { r = 0, g = 131, b = 255 },
|
|
15
|
+
NAD4X4 = { r = 135, g = 206, b = 250 },
|
|
16
|
+
cydes = { r = 82, g = 249, b = 155 },
|
|
17
|
+
UUBlueFire = { r = 0, g = 204, b = 255 },
|
|
18
|
+
CmonMate497 = { r = 103, g = 224, b = 194 },
|
|
19
|
+
s4sh = { r = 255, g = 120, b = 0 },
|
|
20
|
+
ArPiiX = { r = 0, g = 255, b = 0 },
|
|
21
|
+
NextIdea = { r = 255, g = 255, b = 255 },
|
|
22
|
+
hamsterbryan = { r = 0, g = 255, b = 0 },
|
|
23
|
+
XenoCyber = { r = 0, g = 128, b = 255 },
|
|
24
|
+
},
|
|
25
|
+
disallow = { --- @setting disallow colours which will not given to players; the value does not matter it is only the key which is checked
|
|
26
|
+
black = { r = 0, g = 0, b = 0 },
|
|
27
|
+
white = { r = 255, g = 255, b = 255 },
|
|
28
|
+
success = { r = 0, g = 255, b = 0 },
|
|
29
|
+
warning = { r = 255, g = 255, b = 0 },
|
|
30
|
+
fail = { r = 255, g = 0, b = 0 },
|
|
31
|
+
info = { r = 255, g = 255, b = 255 },
|
|
32
|
+
},
|
|
33
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
--- Preset quickbar items that players can load
|
|
2
|
+
-- @config Preset-Player-Quickbar
|
|
3
|
+
|
|
4
|
+
return {
|
|
5
|
+
dangerarea = { "transport-belt", "underground-belt", "splitter", "pipe", "pipe-to-ground", "inserter", "fast-inserter", "long-handed-inserter", "stack-inserter", "roboport", "small-electric-pole", "medium-electric-pole", "big-electric-pole", "substation", nil, "rail", "rail-signal", "rail-chain-signal", "landfill", "cliff-explosives", "fast-transport-belt", "fast-underground-belt", "fast-splitter", "pipe", "pipe-to-ground", "fast-inserter", "long-handed-inserter", "stack-inserter", "stack-filter-inserter", "roboport", [81] = "red-wire", [82] = "green-wire", [83] = "arithmetic-combinator", [84] = "decider-combinator", [85] = "constant-combinator", [86] = "power-switch", [91] = "active-provider-chest", [92] = "passive-provider-chest", [93] = "storage-chest", [94] = "buffer-chest", [95] = "requester-chest", [96] = "roboport" },
|
|
6
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
return {
|
|
2
|
+
ignore_admins = true, --- @setting ignore_admins If admins are ignored by the protection filter
|
|
3
|
+
ignore_permission = "exp_scenario.bypass.entity_protection", --- @setting ignore_permission Players with this permission will be ignored by the protection filter, leave nil to protect against every player
|
|
4
|
+
repeat_count = 5, --- @setting repeat_count Number of protected entities that must be removed within repeat_lifetime in order to trigger repeated removal protection
|
|
5
|
+
repeat_lifetime = 3600 * 20, --- @setting repeat_lifetime The length of time, in ticks, that protected removals will be remembered for
|
|
6
|
+
refresh_rate = 3600 * 5, --- @setting refresh_rate How often the age of protected removals are checked against repeat_lifetime
|
|
7
|
+
always_protected_names = { --- @setting always_protected_names Names of entities which are always protected
|
|
8
|
+
},
|
|
9
|
+
always_protected_types = { --- @setting always_protected_types Types of entities which are always protected
|
|
10
|
+
"boiler", "generator", "offshore-pump", "reactor", "heat-exchanger", "heat-pipe", "fusion-reactor", "fusion-generator", "power-switch", "rocket-silo",
|
|
11
|
+
},
|
|
12
|
+
always_trigger_repeat_names = { --- @setting always_trigger_repeat_names Names of entities which always trigger repeated removal protection
|
|
13
|
+
},
|
|
14
|
+
always_trigger_repeat_types = { --- @setting always_trigger_repeat_types Types of entities which always trigger repeated removal protection
|
|
15
|
+
"reactor", "fusion-reactor", "rocket-silo",
|
|
16
|
+
},
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
--- Config file for the repair command
|
|
2
|
+
-- @config Repair
|
|
3
|
+
|
|
4
|
+
return {
|
|
5
|
+
allow_blueprint_repair = false, --- @setting allow_blueprint_repair when true will allow blueprints (things not destroyed by biters) to be build instantly using the repair command
|
|
6
|
+
allow_ghost_revive = true, --- @setting allow_ghost_revive when true will allow ghosts (things destroyed by biters) to be build instantly using the repair command
|
|
7
|
+
allow_heal_entities = true, --- @setting allow_heal_entities when true will heal entities to full health that are within range
|
|
8
|
+
}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
--- Res Settings
|
|
2
|
+
-- @config Research
|
|
3
|
+
|
|
4
|
+
return {
|
|
5
|
+
enabled = true,
|
|
6
|
+
pollution_ageing_by_research = false,
|
|
7
|
+
queue_amount = 3,
|
|
8
|
+
mod_set = "base",
|
|
9
|
+
mod_set_lookup = {
|
|
10
|
+
"space-age",
|
|
11
|
+
},
|
|
12
|
+
-- this enable 20 more inventory for each mining productivity level up to 4
|
|
13
|
+
bonus_inventory = {
|
|
14
|
+
enabled = true,
|
|
15
|
+
res = {
|
|
16
|
+
-- Mining Productivity
|
|
17
|
+
["mining-productivity"] = true,
|
|
18
|
+
["mining-productivity-2"] = true,
|
|
19
|
+
["mining-productivity-3"] = true,
|
|
20
|
+
["mining-productivity-4"] = true,
|
|
21
|
+
},
|
|
22
|
+
name = "character_inventory_slots_bonus",
|
|
23
|
+
rate = 5,
|
|
24
|
+
limit = 20,
|
|
25
|
+
},
|
|
26
|
+
file = {
|
|
27
|
+
name = "log/research.log",
|
|
28
|
+
final_res = {
|
|
29
|
+
["base"] = {
|
|
30
|
+
["name"] = "mining-productivity-4",
|
|
31
|
+
["level"] = 4
|
|
32
|
+
},
|
|
33
|
+
["space-age"] = {
|
|
34
|
+
["name"] = "mining-productivity-3",
|
|
35
|
+
["level"] = 3
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
milestone = {
|
|
40
|
+
["base"] = {
|
|
41
|
+
["automation"] = 600,
|
|
42
|
+
["logistics"] = 300,
|
|
43
|
+
["steel-processing"] = 300,
|
|
44
|
+
["logistic-science-pack"] = 300,
|
|
45
|
+
["electronics"] = 300,
|
|
46
|
+
["fast-inserter"] = 300,
|
|
47
|
+
["steel-axe"] = 300,
|
|
48
|
+
["automation-2"] = 300,
|
|
49
|
+
["advanced-material-processing"] = 300,
|
|
50
|
+
["engine"] = 300,
|
|
51
|
+
["fluid-handling"] = 300,
|
|
52
|
+
["oil-processing"] = 300,
|
|
53
|
+
["sulfur-processing"] = 300,
|
|
54
|
+
["plastics"] = 300,
|
|
55
|
+
["advanced-circuit"] = 300,
|
|
56
|
+
["chemical-science-pack"] = 300,
|
|
57
|
+
["modules"] = 300,
|
|
58
|
+
["logistics-2"] = 300,
|
|
59
|
+
["railway"] = 300,
|
|
60
|
+
["research-speed-1"] = 300,
|
|
61
|
+
["research-speed-2"] = 300,
|
|
62
|
+
["battery"] = 300,
|
|
63
|
+
["concrete"] = 300,
|
|
64
|
+
["flammables"] = 300,
|
|
65
|
+
["low-density-structure"] = 300,
|
|
66
|
+
["advanced-material-processing-2"] = 300,
|
|
67
|
+
["productivity-module"] = 300,
|
|
68
|
+
["production-science-pack"] = 300,
|
|
69
|
+
["processing-unit"] = 300,
|
|
70
|
+
["advanced-oil-processing"] = 300,
|
|
71
|
+
["electric-engine"] = 300,
|
|
72
|
+
["robotics"] = 300,
|
|
73
|
+
["construction-robotics"] = 300,
|
|
74
|
+
["worker-robots-speed-1"] = 300,
|
|
75
|
+
["worker-robots-speed-2"] = 300,
|
|
76
|
+
["utility-science-pack"] = 300,
|
|
77
|
+
["productivity-module-2"] = 300,
|
|
78
|
+
["speed-module-2"] = 300,
|
|
79
|
+
["rocket-fuel"] = 300,
|
|
80
|
+
["effect-transmission"] = 300,
|
|
81
|
+
["productivity-module-3"] = 300,
|
|
82
|
+
["speed-module-3"] = 300,
|
|
83
|
+
["rocket-silo"] = 300,
|
|
84
|
+
["space-science-pack"] = 300,
|
|
85
|
+
},
|
|
86
|
+
["space-age"] = {
|
|
87
|
+
["logistic-science-pack"] = 3600,
|
|
88
|
+
["military-science-pack"] = 3600,
|
|
89
|
+
["chemical-science-pack"] = 5400,
|
|
90
|
+
["utility-science-pack"] = 7200,
|
|
91
|
+
["production-science-pack"] = 7200,
|
|
92
|
+
["space-science-pack"] = 7200,
|
|
93
|
+
["metallurgic-science-pack"] = 10800,
|
|
94
|
+
["electromagnetic-science-pack"] = 10800,
|
|
95
|
+
["agricultural-science-pack"] = 10800,
|
|
96
|
+
["cryogenic-science-pack"] = 10800,
|
|
97
|
+
["promethium-science-pack"] = 14400,
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
inf_res = {
|
|
101
|
+
["base"] = {
|
|
102
|
+
-- Mining Productivity
|
|
103
|
+
["mining-productivity-4"] = 4,
|
|
104
|
+
-- Robot Speed
|
|
105
|
+
["worker-robots-speed-6"] = 6,
|
|
106
|
+
-- Laser Damage
|
|
107
|
+
["energy-weapons-damage-7"] = 7,
|
|
108
|
+
-- Explosive Damage
|
|
109
|
+
["stronger-explosives-7"] = 7,
|
|
110
|
+
-- Bullet Damage
|
|
111
|
+
["physical-projectile-damage-7"] = 7,
|
|
112
|
+
-- Flame Damage
|
|
113
|
+
["refined-flammables-7"] = 7,
|
|
114
|
+
-- Artillery Range
|
|
115
|
+
["artillery-shell-range-1"] = 1,
|
|
116
|
+
-- Artillery Speed
|
|
117
|
+
["artillery-shell-speed-1"] = 1,
|
|
118
|
+
-- Follower Robot Count
|
|
119
|
+
["follower-robot-count-5"] = 5,
|
|
120
|
+
},
|
|
121
|
+
["space-age"] = {
|
|
122
|
+
-- Mining Productivity
|
|
123
|
+
["mining-productivity-3"] = 3,
|
|
124
|
+
-- Robot Speed
|
|
125
|
+
["worker-robots-speed-7"] = 7,
|
|
126
|
+
-- Laser Damage
|
|
127
|
+
["laser-weapons-damage-7"] = 7,
|
|
128
|
+
-- Electric Damage
|
|
129
|
+
["electric-weapons-damage-4"] = 4,
|
|
130
|
+
-- Explosive Damage
|
|
131
|
+
["stronger-explosives-7"] = 7,
|
|
132
|
+
-- Bullet Damage
|
|
133
|
+
["physical-projectile-damage-7"] = 7,
|
|
134
|
+
-- Flame Damage
|
|
135
|
+
["refined-flammables-7"] = 7,
|
|
136
|
+
-- Artillery Range
|
|
137
|
+
["artillery-shell-range-1"] = 1,
|
|
138
|
+
-- Artillery Speed
|
|
139
|
+
["artillery-shell-speed-1"] = 1,
|
|
140
|
+
-- Artillery Damage
|
|
141
|
+
["artillery-shell-damage-1"] = 1,
|
|
142
|
+
-- Railgun Speed
|
|
143
|
+
["railgun-shooting-speed-1"] = 1,
|
|
144
|
+
-- Railgun Damage
|
|
145
|
+
["railgun-damage-1"] = 1,
|
|
146
|
+
-- Health
|
|
147
|
+
["health"] = 1,
|
|
148
|
+
-- Research Productivity
|
|
149
|
+
["research-productivity"] = 1,
|
|
150
|
+
-- Scrap Recycling Productivity
|
|
151
|
+
["scrap-recycling-productivity"] = 1,
|
|
152
|
+
-- Asteroid Productivity
|
|
153
|
+
["asteroid-productivity"] = 1,
|
|
154
|
+
-- Processing Unit Productivity
|
|
155
|
+
["processing-unit-productivity"] = 1,
|
|
156
|
+
-- Steel Plate Productivity
|
|
157
|
+
["steel-plate-productivity"] = 1,
|
|
158
|
+
-- Low Density Structure Productivity
|
|
159
|
+
["low-density-structure-productivity"] = 1,
|
|
160
|
+
-- Plastic Bar Productivity
|
|
161
|
+
["plastic-bar-productivity"] = 1,
|
|
162
|
+
-- Rocket Fuel Productivity
|
|
163
|
+
["rocket-fuel-productivity"] = 1,
|
|
164
|
+
-- Rocket Part Productivity
|
|
165
|
+
["rocket-part-productivity"] = 1,
|
|
166
|
+
-- Follower Robot Count
|
|
167
|
+
["follower-robot-count-5"] = 5,
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
-- prevent research up to a certain level
|
|
171
|
+
limit_res = {
|
|
172
|
+
-- Artillery Range
|
|
173
|
+
["artillery-shell-range-1"] = 7,
|
|
174
|
+
-- Artillery Speed
|
|
175
|
+
["artillery-shell-speed-1"] = 7,
|
|
176
|
+
-- Atomic Bomb
|
|
177
|
+
-- ["atomic-bomb"] = 1
|
|
178
|
+
},
|
|
179
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
--- This file controls the placement/degrading of tiles as players build and walk
|
|
2
|
+
-- @config Scorched-Earth
|
|
3
|
+
|
|
4
|
+
return {
|
|
5
|
+
weakness_value = 70, --- @setting weakness_value lower value will make tiles more likely to degrade
|
|
6
|
+
strengths = { --- @setting strengths this decides how "strong" a tile is, bigger number means less likely to degrade
|
|
7
|
+
-- debug: /interface require('modules.addons.worn-paths')(player.name,true)
|
|
8
|
+
-- note: tiles are effected by the tiles around them, so player paths will not degrade as fast when made wider
|
|
9
|
+
-- note: values are relative to the tile with the highest value, recommended to keep highest tile as a "nice" number
|
|
10
|
+
-- note: tiles not in list will never degrade under any conditions (which is why some are omitted such as water)
|
|
11
|
+
["refined-concrete"] = 100,
|
|
12
|
+
["refined-hazard-concrete-left"] = 100,
|
|
13
|
+
["refined-hazard-concrete-right"] = 100,
|
|
14
|
+
["concrete"] = 90,
|
|
15
|
+
["hazard-concrete-left"] = 90,
|
|
16
|
+
["hazard-concrete-right"] = 90,
|
|
17
|
+
["stone-path"] = 80,
|
|
18
|
+
["red-desert-0"] = 80,
|
|
19
|
+
["dry-dirt"] = 50,
|
|
20
|
+
-- grass four (main grass tiles)
|
|
21
|
+
["grass-1"] = 50,
|
|
22
|
+
["grass-2"] = 40,
|
|
23
|
+
["grass-3"] = 30,
|
|
24
|
+
["grass-4"] = 25,
|
|
25
|
+
-- red three (main red tiles)
|
|
26
|
+
["red-desert-1"] = 40,
|
|
27
|
+
["red-desert-2"] = 30,
|
|
28
|
+
["red-desert-3"] = 25,
|
|
29
|
+
-- sand three (main sand tiles)
|
|
30
|
+
["sand-1"] = 40,
|
|
31
|
+
["sand-2"] = 30,
|
|
32
|
+
["sand-3"] = 25,
|
|
33
|
+
-- dirt 3 (main dirt tiles)
|
|
34
|
+
["dirt-1"] = 40,
|
|
35
|
+
["dirt-2"] = 30,
|
|
36
|
+
["dirt-3"] = 25,
|
|
37
|
+
-- last three/four (all sets of three merge here)
|
|
38
|
+
["dirt-4"] = 25,
|
|
39
|
+
["dirt-5"] = 30,
|
|
40
|
+
["dirt-6"] = 40,
|
|
41
|
+
-- ["dirt-7"]=0, -- last tile, nothing to degrade to
|
|
42
|
+
-- land fill chain
|
|
43
|
+
-- ["landfill"]=50,
|
|
44
|
+
-- ["water-shallow"]=90,
|
|
45
|
+
-- ["water-mud"]=0, -- last tile, nothing to degrade to
|
|
46
|
+
},
|
|
47
|
+
degrade_order = { --- @setting degrade_order when a tile degrades it will turn into the next tile given here
|
|
48
|
+
["refined-concrete"] = "concrete",
|
|
49
|
+
["refined-hazard-concrete-left"] = "hazard-concrete-left",
|
|
50
|
+
["refined-hazard-concrete-right"] = "hazard-concrete-right",
|
|
51
|
+
["concrete"] = "stone-path",
|
|
52
|
+
["hazard-concrete-left"] = "stone-path",
|
|
53
|
+
["hazard-concrete-right"] = "stone-path",
|
|
54
|
+
["stone-path"] = "dry-dirt",
|
|
55
|
+
["red-desert-0"] = "dry-dirt",
|
|
56
|
+
["dry-dirt"] = "dirt-4",
|
|
57
|
+
-- grass four (main grass tiles)
|
|
58
|
+
["grass-1"] = "grass-2",
|
|
59
|
+
["grass-2"] = "grass-3",
|
|
60
|
+
["grass-3"] = "grass-4",
|
|
61
|
+
["grass-4"] = "dirt-4",
|
|
62
|
+
-- red three (main red tiles)
|
|
63
|
+
["red-desert-1"] = "red-desert-2",
|
|
64
|
+
["red-desert-2"] = "red-desert-3",
|
|
65
|
+
["red-desert-3"] = "dirt-4",
|
|
66
|
+
-- sand three (main sand tiles)
|
|
67
|
+
["sand-1"] = "sand-2",
|
|
68
|
+
["sand-2"] = "sand-3",
|
|
69
|
+
["sand-3"] = "dirt-4",
|
|
70
|
+
-- dirt 3 (main dirt tiles)
|
|
71
|
+
["dirt-1"] = "dirt-2",
|
|
72
|
+
["dirt-2"] = "dirt-3",
|
|
73
|
+
["dirt-3"] = "dirt-4",
|
|
74
|
+
-- last three/four (all sets of three merge here)
|
|
75
|
+
["dirt-4"] = "dirt-5",
|
|
76
|
+
["dirt-5"] = "dirt-6",
|
|
77
|
+
["dirt-6"] = "dirt-7",
|
|
78
|
+
-- ["dirt-7"]=0, -- last tile, nothing to degrade to
|
|
79
|
+
-- land fill chain
|
|
80
|
+
-- ["landfill"]='grass-2', -- 'water-shallow'
|
|
81
|
+
-- ["water-shallow"]='water-mud',
|
|
82
|
+
-- ["water-mud"]=0, -- last tile, nothing to degrade to
|
|
83
|
+
},
|
|
84
|
+
entities = { --- @setting entities entities in this list will degrade the tiles under them when they are placed
|
|
85
|
+
["stone-furnace"] = true,
|
|
86
|
+
["steel-furnace"] = true,
|
|
87
|
+
["electric-furnace"] = true,
|
|
88
|
+
["assembling-machine-1"] = true,
|
|
89
|
+
["assembling-machine-2"] = true,
|
|
90
|
+
["assembling-machine-3"] = true,
|
|
91
|
+
["beacon"] = true,
|
|
92
|
+
["centrifuge"] = true,
|
|
93
|
+
["chemical-plant"] = true,
|
|
94
|
+
["oil-refinery"] = true,
|
|
95
|
+
["storage-tank"] = true,
|
|
96
|
+
["nuclear-reactor"] = true,
|
|
97
|
+
["steam-engine"] = true,
|
|
98
|
+
["steam-turbine"] = true,
|
|
99
|
+
["boiler"] = true,
|
|
100
|
+
["heat-exchanger"] = true,
|
|
101
|
+
["stone-wall"] = true,
|
|
102
|
+
["gate"] = true,
|
|
103
|
+
["gun-turret"] = true,
|
|
104
|
+
["laser-turret"] = true,
|
|
105
|
+
["flamethrower-turret"] = true,
|
|
106
|
+
["radar"] = true,
|
|
107
|
+
["lab"] = true,
|
|
108
|
+
["big-electric-pole"] = true,
|
|
109
|
+
["substation"] = true,
|
|
110
|
+
["rocket-silo"] = true,
|
|
111
|
+
["pumpjack"] = true,
|
|
112
|
+
["electric-mining-drill"] = true,
|
|
113
|
+
["roboport"] = true,
|
|
114
|
+
["accumulator"] = true,
|
|
115
|
+
},
|
|
116
|
+
}
|