Add Alina's Map Mod

https://railroader.alinanova.dev/
This commit is contained in:
2025-08-10 11:14:16 -05:00
parent ebb9ae3242
commit d9c2529c38
7 changed files with 947 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
# Pax stations
Industry:
```json
{
"barkers": {
"industries": {
"barkers-station": {
"name": "Barkers Station",
"localPosition": { "x": 0, "y": 0, "z": 0},
"usesContract": false,
"components": {
"ammBarkersStation": {
"name": "Barkers Station",
"type": "AlinasMapMod.PaxStationComponent",
"timetableCode": "BC",
// Reference values: Whittier: 30, Ela: 25, Bryson: 50
"basePopulation": 10,
"loadId": "passengers",
"trackSpans": [ // Spans for loading/unloading
"PAN_Test_Mod_00"
],
// Future support for custom branches, currently supported is "Main" and "Alarka Branch"
"branch": "Main",
// List of ids of other passenger stations.
// Unsure of exact impact
"neighborIds": [],
"carTypeFilter": "*",
"sharedStorage": true
}
}
}
}
}
}
```