There are 4 mods (A-D). Mod A is the target of my mod. Mod D is obsolete (not updated to 0.17), but has been forked to B and C. Both B and C provide an item (same look, different recipes/technology requirements) that I want to base an item from A on.
A is strictly required, so obviously, info.json should contain this line:
Code: Select all
"dependencies": ["A"]
Code: Select all
"dependencies": ["A", "B"]
Code: Select all
"dependencies": ["A", "B", "C"]
Code: Select all
"dependencies": ["A", "?B", "?C"]
Is there no way to do more complex stuff? Actually, I'm looking for something like
Code: Select all
require A and (B or C)
Code: Select all
require A and (B xor C)