Skip to content

Commit a22ba07

Browse files
author
James Rhoat
authored
Merge pull request #30 from Vanderscycle/example-popular-mods
2 parents 50b9b9d + 886fccd commit a22ba07

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ https://github.com/helm/chart-releaser-action
3333
To read the full documentation check the
3434
chart's [README.md](https://github.com/SQLJames/factorio-server-charts/blob/main/charts/factorio-server-charts/README.md)
3535

36+
## Examples Of Large mods
37+
38+
Values.yaml configuration of large [mods](./examples/):
39+
* [Space-Exploration](https://mods.factorio.com/mod/space-exploration)
40+
3641
## Changelog
3742

3843
### V1.1.0

examples/space-exploration/README.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Space-Exploration
2+
3+
The [Space-Exploration](https://mods.factorio.com/mod/space-exploration) mods requires an extended list of other [mods](https://spaceexploration.miraheze.org/wiki/Recommended_Mods#Required_Dependencies) to run properly. For more in-depth reference to the `values.yaml` check [issue 24](https://github.com/SQLJames/factorio-server-charts/issues/24)
4+
5+
Recommended mod list
6+
7+
```yaml
8+
mods:
9+
enabled: true
10+
# in order to use the mods portal you will need to specify the username and token in the server_settings.
11+
# name is determined by the url, it will be the last part of the url, not the title of the mod.
12+
portal:
13+
# https://spaceexploration.miraheze.org/wiki/Recommended_Mods#Required_Dependencies
14+
# Recommended
15+
- ModuleInserterSimplified
16+
- aai-vehicles-ironclad
17+
- grappling-gun
18+
- bullet-trails
19+
- equipment-gantry
20+
- textplates
21+
- combat-mechanics-overhaul
22+
- RecipeBook
23+
# QOL
24+
- even-distribution
25+
- AutoTrash
26+
- LogisticRequestManager
27+
- BottleneckLite
28+
# - Squeak Through
29+
- LogisticTrainNetwork
30+
# spaceX
31+
- alien-biomes
32+
- alien-biomes-hr-terrain
33+
- space-exploration-graphics
34+
- space-exploration-graphics-2
35+
- space-exploration-graphics-3
36+
- space-exploration-graphics-4
37+
- space-exploration-graphics-5
38+
- space-exploration-menu-simulations
39+
- shield-projector
40+
- aai-containers
41+
- aai-industry
42+
- aai-signal-transmission
43+
- simhelper
44+
- space-exploration-graphics
45+
- robot_attrition
46+
- informatron
47+
- jetpack
48+
- space-exploration-postprocess
49+
- space-exploration
50+
# unofficial section is meant to just allow you to download and place folders into the mods folder.
51+
# we will not check version compatibility automatically with these downloads.
52+
# you can encounter an error if the file names dont match what the mod is expecting for example
53+
#Error Util.cpp:83: Failed to load mod "Squeak-Through": Filename of mod
54+
# /factorio/mods/Squeak-Through.zip doesn't match the expected Squeak Through_1.8.2.zip (case sensitive!)
55+
unofficial:
56+
- url: "https://github.com/Suprcheese/Squeak-Through/archive/refs/tags/1.8.2.zip"
57+
name: "Squeak Through_1.8.2.zip"
58+
```
59+
60+
Space-Exploration requires tweaks to the map settings to function otherwise a crash will occur.
61+
62+
```yaml
63+
map_settings:
64+
pollution:
65+
enemy_attack_pollution_consumption_modifier: 0.5
66+
enemy_evolution:
67+
time_factor: 0.0000005
68+
destroy_factor: 0.0005
69+
pollution_factor: 0.00000025
70+
71+
map_gen_settings:
72+
water: 1.5
73+
starting_area: 2
74+
autoplace_controls:
75+
hot:
76+
size: 0.5
77+
cold:
78+
size: 0.5
79+
property_expression_names:
80+
control-setting:moisture:bias: "0.05"
81+
control-setting:aux:bias: "-0.35"
82+
```

0 commit comments

Comments
 (0)