I added new functionality to OXCE nightly:
For many list like `requires` or `requiresBuy` you can use new syntax like:
Base mod:
items:
- type: STR_PISTOL
requiresBuy:
- STR_X
- STR_Y
- type: STR_PSI_AMP
requires:
- STR_X
- STR_Y
Another mod:
items:
- type: STR_PISTOL
requiresBuy: !add
- STR_Z
- type: STR_PSI_AMP
requires: !remove
- STR_Y
Now `STR_PISTOL` need have additionally need `STR_Z` AND `STR_X`, `STR_Y` to buy
But `STR_PSI_AMP` need only `STR_X` from research.
With this you can easier add or remove some positions from list without know full lists.
This reduce many cases where mods extension could easy break by small change in main mod.
For now only two `!add` and `!remove` basic operations are supported but in future it will be more complex too available (like `!replace`).
As some list have very strick order I could not add for now way to override them but in future depending on demand I could add ways to override them too.