zen-flow 17.0.0 → 17.1.1
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/dist/zenflow.d.ts +8 -2
- package/dist/zenflow.js +5 -5
- package/package.json +2 -2
package/dist/zenflow.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ type Shaped = Partial<{
|
|
|
32
32
|
square: string;
|
|
33
33
|
center: string;
|
|
34
34
|
fill: string;
|
|
35
|
+
cross: string;
|
|
35
36
|
}>;
|
|
36
37
|
declare const COLOR: {
|
|
37
38
|
readonly black: "§0";
|
|
@@ -1408,6 +1409,11 @@ type RecipeSmelteryFluid = {
|
|
|
1408
1409
|
*
|
|
1409
1410
|
* A list of recipes can be generated from `/mt tconstruct Smeltery`
|
|
1410
1411
|
*
|
|
1412
|
+
* Common temperature values:
|
|
1413
|
+
*
|
|
1414
|
+
* - Lava => `1300`
|
|
1415
|
+
* - Pyrotheum => `5000`
|
|
1416
|
+
*
|
|
1411
1417
|
* @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
|
|
1412
1418
|
*/
|
|
1413
1419
|
declare const addSmelteryFluid: (recipe: RecipeSmelteryFluid) => string;
|
|
@@ -1443,8 +1449,8 @@ type RecipeSmelteryFuel = {
|
|
|
1443
1449
|
* Add [Smeltery](https://tinkers-construct.fandom.com/wiki/Smeltery) fuel
|
|
1444
1450
|
*
|
|
1445
1451
|
* Common values:
|
|
1446
|
-
* - Lava => `
|
|
1447
|
-
* - Pyrotheum => `5000`
|
|
1452
|
+
* - Lava => `1300`, `80` (lasts 4 seconds per 15 mb)
|
|
1453
|
+
* - Pyrotheum => `5000`, `70` (lasts 3.5 seconds per 15 mb)
|
|
1448
1454
|
*
|
|
1449
1455
|
* @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
|
|
1450
1456
|
*/
|
package/dist/zenflow.js
CHANGED
|
@@ -33,15 +33,15 @@ const shaped = (recipe2) => {
|
|
|
33
33
|
};
|
|
34
34
|
const matrix = [[
|
|
35
35
|
f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.corner, recipe2[1]),
|
|
36
|
-
f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.edge, recipe2[2]),
|
|
36
|
+
f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[2]),
|
|
37
37
|
f(recipe2.fill, recipe2.ring, recipe2.corner, recipe2[3])
|
|
38
38
|
], [
|
|
39
|
-
f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.edge, recipe2[4]),
|
|
40
|
-
f(recipe2.fill, recipe2.square, recipe2.center, recipe2[5]),
|
|
41
|
-
f(recipe2.fill, recipe2.ring, recipe2.edge, recipe2[6])
|
|
39
|
+
f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[4]),
|
|
40
|
+
f(recipe2.fill, recipe2.square, recipe2.cross, recipe2.center, recipe2[5]),
|
|
41
|
+
f(recipe2.fill, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[6])
|
|
42
42
|
], [
|
|
43
43
|
f(recipe2.fill, recipe2.ring, recipe2.corner, recipe2[7]),
|
|
44
|
-
f(recipe2.fill, recipe2.ring, recipe2.edge, recipe2[8]),
|
|
44
|
+
f(recipe2.fill, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[8]),
|
|
45
45
|
f(recipe2.fill, recipe2.ring, recipe2.corner, recipe2[9])
|
|
46
46
|
]];
|
|
47
47
|
if (matrix[0][2] === null && matrix[1][2] === null && matrix[2].every((x) => x === null)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zen-flow",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.1.1",
|
|
4
4
|
"description": "MineTweaker ZenScript made easy.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"postversion": "git add -A && git commit -m \"Updated docs\""
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@chronocide/eslint-config": "
|
|
39
|
+
"@chronocide/eslint-config": "^0.7.11",
|
|
40
40
|
"eslint": "^9.9.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|