-
Notifications
You must be signed in to change notification settings - Fork 0
/
CraftTweaker_scripts.zs
39 lines (32 loc) · 1.43 KB
/
CraftTweaker_scripts.zs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//----------------------------------
//----------Drying Pallet-----------
//----------------------------------
//Parameters = input, output
//input = the input itemstack
//output = the output itemstack
mods.rockhounding_oretiers.DryingPallet.add(<minecraft:rotten_flesh>, <minecraft:leather>);
//Parameters = input
//input = the input itemstack
mods.rockhounding_oretiers.DryingPallet.remove(<rockhounding_oretiers:tiersItems:3>);
//----------------------------------
//-----------Coal Refiner------------
//----------------------------------
//Parameters = input, output
//input = the input itemstack
//output = the refined output itemstack
mods.rockhounding_oretiers.CoalRefiner.add(<rockhounding_oretiers:tiersItems:1>, <rockhounding_oretiers:tiersItems:0>);
//Parameters = input
//input = the itemstack representing the input to remove
mods.rockhounding_oretiers.CoalRefiner.remove(<minecraft:coal:0>);
//----------------------------------
//------------Bloomery--------------
//----------------------------------
//Parameters = ore, molten, output
//ore = the itemstack being smelted
//molten = the molten fluidstack
//moltenAmount = the resulting amount of molten
//output = the casted output itemstack
mods.rockhounding_oretiers.Bloomery.add(<minecraft:slime_ball>, <liquid:lava>, 500, <minecraft:magma>);
//Parameters = input
//input = the itemstack representing the input to remove
mods.rockhounding_oretiers.Bloomery.remove(<minecraft:iron_ore>);