From 05c78126859231a68e199dc34613689bd0978e2f Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Mon, 11 Apr 2016 19:44:54 +0300 Subject: Initial commit --- assets/ihl/config/adress.xsd | 20 +++++ assets/ihl/config/ihl-guidebook.xml | 148 ++++++++++++++++++++++++++++++++++++ assets/ihl/config/ihl-recipe.cfg | 58 ++++++++++++++ 3 files changed, 226 insertions(+) create mode 100644 assets/ihl/config/adress.xsd create mode 100644 assets/ihl/config/ihl-guidebook.xml create mode 100644 assets/ihl/config/ihl-recipe.cfg (limited to 'assets/ihl/config') diff --git a/assets/ihl/config/adress.xsd b/assets/ihl/config/adress.xsd new file mode 100644 index 0000000..f778362 --- /dev/null +++ b/assets/ihl/config/adress.xsd @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/assets/ihl/config/ihl-guidebook.xml b/assets/ihl/config/ihl-guidebook.xml new file mode 100644 index 0000000..1b81f23 --- /dev/null +++ b/assets/ihl/config/ihl-guidebook.xml @@ -0,0 +1,148 @@ + + +
+ + ihl.guidebook.title01 + + + ihl:ironWorkbench + + + ihl.guidebook.section01.1 + + + textures/guidebook/iron_workbench_gui.png + + + ihl.guidebook.section01.2 + +
+
+ + ihl.guidebook.title02 + + + ihl:fractionatorBottom + + + ihl:fractionatorSection + + + ihl:fractionatorCover + + + ihl:refluxCondenser + + + ihl.guidebook.section02.1 + + + textures/guidebook/distillation_column.png + + + ihl.guidebook.section02.2 + +
+
+ + ihl.guidebook.title03 + + + ihl:wireMill + + + ihl:vulcanizationExtrudingMold + + + ihl:extruder + + + ihl:coiler + + + ihl.guidebook.section03.1 + + + textures/guidebook/cable_production.png + + + ihl.guidebook.section03.2 + +
+
+ + ihl.guidebook.title04 + + + ihl:batterySwitchUnit + + + ihl:rectifierTransformerUnit + + + ihl:frequencyGenerator + + + ihl.guidebook.section04.1 + + + textures/guidebook/hvdc_line.png + + + ihl.guidebook.section04.2 + +
+
+ + ihl.guidebook.title05 + + + ihl:goldChimneyKnee + + + ihl:leadOven + + + ihl:goldPrecipitatorCondenser + + + ihl.guidebook.section05.1 + + + textures/guidebook/sulphuric_acid.png + + + ihl.guidebook.section05.2 + +
+
+ + ihl.guidebook.title06 + + + ihl:sackBlock + + + ihl:evaporatorBlock + + + ihl:item.ihlSimpleItem + + + ihl:item.ihlSimpleItem + + + ihl.guidebook.section06.1 + + + textures/guidebook/sap_gathering.png + + + ihl.guidebook.section06.2 + +
+
+ diff --git a/assets/ihl/config/ihl-recipe.cfg b/assets/ihl/config/ihl-recipe.cfg new file mode 100644 index 0000000..44df9e0 --- /dev/null +++ b/assets/ihl/config/ihl-recipe.cfg @@ -0,0 +1,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)) +//) -- cgit v1.2.3