I've been trying to add a new manufacturing project via a custom Mod.
What I've done so far is create a directory called "./Test/" and place inside it a directory called "./Ruleset/".
In that directory I created two .rul files:
extraStrings_US_MR.rul <---(Holds the new STR variables and their assigned values, in this case the name of the item to be manufactured.)
manufacture_MR.rul <---(Holds the new manufacturing project.)
Contents of extraStrings_US_MR.rul:extraStrings:
- type: en-US
strings:
STR_TEST: "Test"
Contents of manufacture_MR.rul:
manufacture:
- name: STR_TEST
category: STR_HEAVY_WEAPONS_PLATFORM
space: 25
time: 1
cost: 10
listOrder: 50500
producedItems:
- STR_TANK_LASER_CANNON
When I toggled the Mod on in the OpenXcom options menu the following error was displayed:
Loading OpenXcom 1.0.132671d50 (2017-11-02 21:30) . . .
ERROR: failed to load 'test' mod disabled for next startup
/home/___/local/share/openxcom/mods/Test/Ruleset/extraStrings_US_MR.rul: error at line 4, column 4: end of sequence not found
Trying to debug my failure I've looked at the code in a few other user mods and as far as I can tell they're use of extraStrings: is basically identical in structure.
Could someone please point out the formatting mistake I'm making?