Within Manufacture.rul
I would like to add a way to “scrap” or break items down. In other words, I would like to be able to take, for example, a Sonic Pistol Clip, and use it as an ingredient to then manufacture one unit of zrbite. The below works for that:
- name: STR_ZRBITE #Zrbite#
category: STR_UFO_COMPONENT
requires:
- STR_ZRBITE
space: 0.1
time: 400
cost: 1000
requiredItems:
STR_PISTOL_POWER_CLIP
1) Is there a way to add multiple required items and have them function as “or” statements, as opposed to “and” statements? For example:
- name: STR_ZRBITE #Zrbite#
category: STR_UFO_COMPONENT
requires:
- STR_ZRBITE
space: 0.1
time: 400
cost: 1000
requiredItems:
STR_PISTOL_POWER_CLIP
STR_BLASTA_POWER_CLIP
I would like to be able to use EITHER the pistol clip OR the blasta clip to create one unit of zrbite. I feel like to do this I should be using the “breakDownItems” value, but I am not sure how to go about it.
Thank you.