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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// <- This is a commentary.
; <- This is also a commentary.
// Syntax are simple as fist. Every recipe modifier must start from new line and keyword.
// Keywords are "addrecipe" and "removerecipe".
// Right after keyword goes parameters. Parameters are machine name (see in bottom of this file),
// recipeinput (with parameters) and recipeoutput (with parameters).
// All parameters are separated with "," symbol.
// For adding recipe add both input and output.
// For removing add any of those.
// Inside "recipeinput" and "recipeoutput" are parameters, separated with ",".
// For "recipeinput" those parameters are:
// itemstack(modname:internal_itemname,stacksize,damage)
// toolitemstack(modname:internal_itemname,stacksize,damage) //For iron workbench only
// machine(modname:internal_itemname) //For iron workbench only
// die(transverseSection)
// fiber(internal_itemname, length)
// wire(material, length, transverseSection)
// cable(material, length, transverseSection, insulationMaterial, insulationThickness, insulationBreakdownVoltage)
// tooloredict(oredict_entry,quantity) //For iron workbench only
// oredict(oredict_entry,quantity)
// fluidstack(fluid,quantity)
// First parameter are string, others are integer.
// For finding modname:internal_itemname, damage or ore dictionary entry use in-game
// "ore dictionary item scanner" from IHL in creative mode.
// For internal fluid names check universal fluid cells tooltip.
// For "recipeoutput" those parameters are:
// itemstack(modname:internal_itemname,stacksize,damage) Stacksize can be float.
// fiber(internal_itemname, length)
// wire(material, length, transverseSection)
// cable(material, length, transverseSection, insulationMaterial, insulationThickness, insulationBreakdownVoltage)
// fluidstack(fluid,quantity)
// Examples:
//addrecipe
//(
//evaporator,
//recipeinput(fluidstack(water,100)),
//recipeoutput(itemstack(minecraft:diamond,1,0))
//)
//addrecipe
//(
//wiremill,
//recipeinput(fluidstack(liquidglass,10),die(150)),
//recipeoutput(wire(Uran,10,100))
//)
//removerecipe
//(
//evaporator,
//recipeinput(fluidstack(saltwater,4000))
//)
//removerecipe
//(
//evaporator,
//recipeoutput(itemstack(ihl:item.ihlSimpleItem,1,144))
//)
|