Finally a GIT!
This commit is contained in:
@@ -0,0 +1,115 @@
|
||||
<!-->
|
||||
IMPORTANT NOTICE TO MODPACK MAKERS!!!!
|
||||
|
||||
XML recipes are being DEPRECATED soon.
|
||||
This means that recipes registered via the XML for MACHINES will no longer work
|
||||
To avoid issues that may arise from this, please either distribute a RESOURCE PACK
|
||||
with relevant JSON recipes OR user Craft tweaker + Advanced rocketry tweaker (3rd party)
|
||||
https://minecraft.curseforge.com/projects/advanced-rocketry-tweaker
|
||||
|
||||
IMPORTANT NOTICE TO MODPACK MAKERS!!!!
|
||||
|
||||
|
||||
<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="80" power ="10">
|
||||
<input>
|
||||
<itemStack>advancedrocketry:alienwood</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>advancedrocketry:planks;6</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="300" power ="100">
|
||||
<input>
|
||||
<itemStack>advancedrocketry:itemcircuitplate;1;1</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>advancedrocketry:ic;4;2</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="300" power ="100">
|
||||
<input>
|
||||
<itemStack>advancedrocketry:itemcircuitplate</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>advancedrocketry:ic;4</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="300" power ="100">
|
||||
<input>
|
||||
<itemStack>libvulpes:productboule;1;3</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>advancedrocketry:wafer;4</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="80" power ="10">
|
||||
<input>
|
||||
<itemStack>minecraft:log</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>minecraft:planks;6</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="80" power ="10">
|
||||
<input>
|
||||
<itemStack>minecraft:log;1;1</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>minecraft:planks;6;1</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="80" power ="10">
|
||||
<input>
|
||||
<itemStack>minecraft:log;1;2</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>minecraft:planks;6;2</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="80" power ="10">
|
||||
<input>
|
||||
<itemStack>minecraft:log;1;3</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>minecraft:planks;6;3</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="80" power ="10">
|
||||
<input>
|
||||
<itemStack>minecraft:log2</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>minecraft:planks;6;4</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
<Recipe timeRequired="80" power ="10">
|
||||
<input>
|
||||
<itemStack>minecraft:log2;1;1</itemStack>
|
||||
</input>
|
||||
<output>
|
||||
<itemStack>minecraft:planks;6;5</itemStack>
|
||||
</output>
|
||||
</Recipe>
|
||||
</Recipes>
|
||||
Reference in New Issue
Block a user