Conversation
| SINTERING_OVEN = recipemap('sintering_oven') | ||
|
|
||
| MIXER.recipeBuilder() | ||
| .inputs(ore('dustTungsten')*11) |
| REACTION_FURNACE.recipeBuilder() | ||
| .inputs(ore('dustUnprocessedThoriatedTungsten') * 2) | ||
| .inputs(fluid('hydrogen') * 24000) | ||
| .outputs('dustUnsinteredThoriatedTungsten' * 2) |
| .inputs(ore('dustTungsten')*11) | ||
| .inputs(ore('dustTinyThoriumDioxide')*2) | ||
| .inputs(ore('dustTinyRhenium')) | ||
| .outputs(ore('dustUnprocessedThoriatedTungsten')*12) |
There was a problem hiding this comment.
would rename this to thoriated tungsten mixture
| REACTION_FURNACE.recipeBuilder() | ||
| .inputs(ore('dustUnprocessedThoriatedTungsten') * 2) | ||
| .inputs(fluid('hydrogen') * 24000) | ||
| .outputs('dustUnsinteredThoriatedTungsten' * 2) |
There was a problem hiding this comment.
rename to just thoriated tungsten and remove smelting processes using flags
There was a problem hiding this comment.
see how treated neodymium magnet uses flags
|
|
||
| ZincHydroxide = new Material.Builder(8764, SuSyUtility.susyId('zinc_hydroxide')) | ||
| YttriumAluminiumGarnet = new Material.Builder(8747, SuSyUtility.susyId('yag')) |
There was a problem hiding this comment.
these materials should be doped with Nd.
| .buildAndRegister() | ||
|
|
||
| BR.recipeBuilder() | ||
| .inputs(ore('dustYttriumOxide') * 1) |
| REACTION_FURNACE.recipeBuilder() | ||
| .inputs(ore('dustThoriatedTungstenMixture') * 2) | ||
| .inputs(fluid('hydrogen') * 24000) | ||
| .outputs('dustUnsinteredThoriatedTungsten' * 2) |
There was a problem hiding this comment.
again, no need to use a material. you can just call this dustThoriatedTungsten and then remove the smelting recipe to ingot using flags and use the press instead.
|
|
||
| REACTION_FURNACE.recipeBuilder() | ||
| .inputs(ore('dustThoriatedTungstenMixture') * 2) | ||
| .inputs(fluid('hydrogen') * 24000) |
|
|
||
| YttriumNitrate.setFormula('Y(NO3)3', true) | ||
|
|
||
| YttriumNitrateSolution = new Material.Builder(8771, SuSyUtility.susyId('yttrium_nitrate_solution')) |
There was a problem hiding this comment.
move this to SecondDegreeMats
| import gregtech.api.unification.ore.OrePrefix; | ||
| import gregtech.api.unification.stack.UnificationEntry; | ||
|
|
||
| ISOSTATIC_PRESS = recipemap('hot_isostatic_press') |
There was a problem hiding this comment.
no need for manual registering of machines, import the recipe map instread
Implements Groovy recipes for creating a tungsten welding electrode. This still requires a commit to Susy-Core for the electrode metaitem.