notex2/src/overrides/config/advRocketry/Electrolyser.xml
2022-05-26 13:08:46 +02:00

33 lines
939 B
XML

<!-->
<Recipe timeRequired="NUMBER" power="NUMBER">
<input>
<fluidStack>FLUID NAME SIZE</fluidStack>
<itemStack>ITEM_NAME SIZE META</itemStack>
<oreDict>OREDICT_NAME SIZE</oreDict>
</input>
<output>
<fluidStack>FLUID_NAME SIZE</fluidStack>
<itemStack>ITEM_NAME SIZE META</itemStack>
<oreDict>OREDICT_NAME SIZE</oreDict>
</output>
</Recipe>
Can have Multiple In/Outputs
Some Machines can only Accept either Fluids or Items
timeRequired="NUMBER" how long a Recipe takes, Unit is in Ticks.
power="NUMBER" how much Power the Recipes takes per Tick. Unit is in RF.
The "useDefault" attribute will prevent loading of recipes if set to "false"
<!-->
<Recipes useDefault="true">
<Recipe timeRequired="100" power ="20">
<input>
<fluidStack>water 10</fluidStack>
</input>
<output>
<fluidStack>hydrogen 100</fluidStack>
<fluidStack>oxygen 100</fluidStack>
</output>
</Recipe>
</Recipes>