zen-flow 2.3.2 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -1
- package/dist/zenflow.cjs +1 -1
- package/dist/zenflow.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ $ npm i zen-flow -D
|
|
|
23
23
|
|
|
24
24
|
- Easy to use API, written in <b>TypeScript</b>.
|
|
25
25
|
- <b>Polymorphic</b> and <b>variadic</b>; do more with less code.
|
|
26
|
-
- Supports both [MineTweaker3](
|
|
26
|
+
- Supports both [MineTweaker3](https://minetweaker3.aizistral.com/wiki/Main_Page) and [ModTweaker](https://web.archive.org/web/20200219174745/http://minetweaker3.powerofbytes.com/wiki/ModTweaker#Currently_Supported_Mods_1.7.10).
|
|
27
27
|
- <b>Formatted output</b>; makes debugging easier.
|
|
28
28
|
|
|
29
29
|
## Getting started
|
|
@@ -92,6 +92,7 @@ Array.from({ length: 11 })
|
|
|
92
92
|
- [Items](#items)
|
|
93
93
|
- [Formatting](#formatting)
|
|
94
94
|
- [Vanilla](#vanilla)
|
|
95
|
+
- [Forestry](#forestry)
|
|
95
96
|
- [Applied Energistics 2](#appliedenergistics2)
|
|
96
97
|
- [Avaritia](#avaritia)
|
|
97
98
|
- [ExNihilo](#exnihilo)
|
|
@@ -197,6 +198,27 @@ withName('<minecraft:bread>', [
|
|
|
197
198
|
- `addFurnace` - Adds furnace recipe
|
|
198
199
|
- `removeFurnace` - Removes furnace recipe
|
|
199
200
|
|
|
201
|
+
#### Forestry
|
|
202
|
+
|
|
203
|
+
- `addCarpenter` - Add Carpenter recipe
|
|
204
|
+
- `removeCarpenter` - Remove Carpenter recipe
|
|
205
|
+
- `addCentrifuge` - Add Centrifuge recipe
|
|
206
|
+
- `removeCentrifuge` - Remove Centrifuge recipe
|
|
207
|
+
- `addFermenter` - Add Fermenter recipe
|
|
208
|
+
- `removeFermenter` - Remove Fermenter recipe
|
|
209
|
+
- `addFermenterFuel` - Add Fermenter fuel
|
|
210
|
+
- `removeFermenterFuel` - Remove Fermenter fuel
|
|
211
|
+
- `addMoistener` - Add Moistener recipe
|
|
212
|
+
- `removeMoistener` - Remove Moistener recipe
|
|
213
|
+
- `addSqueezer` - Add Squeezer recipe
|
|
214
|
+
- `removeSqueezer` - Remove Squeezer recipe
|
|
215
|
+
- `addStill` - Add Still recipe
|
|
216
|
+
- `removeStill` - Remove Still recipe
|
|
217
|
+
- `addFabricator` - Add Thermionic Fabricator recipe
|
|
218
|
+
- `removeFabricator` - Remove Thermionic Fabricator recipe
|
|
219
|
+
- `addFabricatorFuel` - Add Thermionic Fabricator glass source
|
|
220
|
+
- `removeFabricatorFuel` - Remove Thermionic Fabricator glass source
|
|
221
|
+
|
|
200
222
|
#### Applied Energistics 2
|
|
201
223
|
|
|
202
224
|
- `addGrinder` - Add Quartz Grindstone recipe
|
package/dist/zenflow.cjs
CHANGED
|
@@ -168,7 +168,7 @@ const addGrinder = (recipe) => {
|
|
|
168
168
|
const out = formatArgs(formatIngredient(recipe.in), formatIngredient(recipe.out), recipe.turns, recipe.bonus && formatBonus(recipe.bonus.primary), recipe.bonus?.secondary && formatBonus(recipe.bonus.secondary));
|
|
169
169
|
return `mods.appeng.Grinder.addRecipe(${out});`;
|
|
170
170
|
};
|
|
171
|
-
const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id})
|
|
171
|
+
const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id});`;
|
|
172
172
|
const addInscriber = (recipe) => {
|
|
173
173
|
const out = formatArgs([formatIngredient(recipe.in)], recipe.plate.top, recipe.plate.bottom, formatIngredient(recipe.out), capitalize(recipe.type));
|
|
174
174
|
return `mods.appeng.Inscriber.addRecipe(${out});`;
|
package/dist/zenflow.mjs
CHANGED
|
@@ -164,7 +164,7 @@ const addGrinder = (recipe) => {
|
|
|
164
164
|
const out = formatArgs(formatIngredient(recipe.in), formatIngredient(recipe.out), recipe.turns, recipe.bonus && formatBonus(recipe.bonus.primary), recipe.bonus?.secondary && formatBonus(recipe.bonus.secondary));
|
|
165
165
|
return `mods.appeng.Grinder.addRecipe(${out});`;
|
|
166
166
|
};
|
|
167
|
-
const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id})
|
|
167
|
+
const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id});`;
|
|
168
168
|
const addInscriber = (recipe) => {
|
|
169
169
|
const out = formatArgs([formatIngredient(recipe.in)], recipe.plate.top, recipe.plate.bottom, formatIngredient(recipe.out), capitalize(recipe.type));
|
|
170
170
|
return `mods.appeng.Inscriber.addRecipe(${out});`;
|