zen-flow 7.1.0 → 7.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.
@@ -0,0 +1,1646 @@
1
+ type Stack = {
2
+ id: string;
3
+ n: number;
4
+ };
5
+ type Ingredient = string | Stack;
6
+ type Bonus = {
7
+ id: string;
8
+ chance: number;
9
+ };
10
+ type Cast = {
11
+ id: string;
12
+ consume?: boolean;
13
+ };
14
+ type Shaped = Partial<{
15
+ 1: string;
16
+ 2: string;
17
+ 3: string;
18
+ 4: string;
19
+ 5: string;
20
+ 6: string;
21
+ 7: string;
22
+ 8: string;
23
+ 9: string;
24
+ corner: string;
25
+ edge: string;
26
+ ring: string;
27
+ square: string;
28
+ center: string;
29
+ }>;
30
+ type Shapeless = string[];
31
+ type Recipe = Shaped | Shapeless;
32
+ declare const COLOR: {
33
+ readonly black: "\\u00A70";
34
+ readonly darkBlue: "\\u00A71";
35
+ readonly darkGreen: "\\u00A72";
36
+ readonly darkAqua: "\\u00A73";
37
+ readonly darkRed: "\\u00A74";
38
+ readonly darkPurple: "\\u00A75";
39
+ readonly gold: "\\u00A76";
40
+ readonly gray: "\\u00A77";
41
+ readonly darkGray: "\\u00A78";
42
+ readonly blue: "\\u00A79";
43
+ readonly green: "\\u00A7a";
44
+ readonly aqua: "\\u00A7b";
45
+ readonly red: "\\u00A7c";
46
+ readonly lightPurple: "\\u00A7d";
47
+ readonly yellow: "\\u00A7e";
48
+ readonly white: "\\u00A7f";
49
+ };
50
+ declare const STYLE: {
51
+ readonly obfuscated: "\\u00A7k";
52
+ readonly bold: "\\u00A7l";
53
+ readonly strikethrough: "\\u00A7m";
54
+ readonly underline: "\\u00A7n";
55
+ readonly italic: "\\u00A7o";
56
+ };
57
+ type TextRich = {
58
+ text: string;
59
+ color?: keyof typeof COLOR;
60
+ style?: keyof typeof STYLE;
61
+ };
62
+ type Text = string | TextRich;
63
+
64
+ type RecipeGrinder = {
65
+ input: string;
66
+ turns: number;
67
+ bonus?: {
68
+ primary: Bonus;
69
+ secondary?: Bonus;
70
+ };
71
+ };
72
+ /**
73
+ * Add [Quartz Grindstone](https://appliedenergistics.org/ae2-site-archive/Quartz-Grindstone/) recipe
74
+ *
75
+ * Common values:
76
+ * - Ingot: `2 turns`
77
+ * - Ore: `4 turns`
78
+ *
79
+ * Bonus `n` must be between 0 and 1
80
+ *
81
+ * Turns must be larger than 0
82
+ *
83
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Applied_Energistics_2_Support
84
+ */
85
+ declare const addGrinder: (id: Ingredient, recipe: RecipeGrinder) => string;
86
+ /**
87
+ * Removes [Quartz Grindstone](https://appliedenergistics.org/ae2-site-archive/Quartz-Grindstone/) recipe
88
+ *
89
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Applied_Energistics_2_Support
90
+ */
91
+ declare const removeGrinder: (id: string) => string;
92
+ type RecipeInscriber = {
93
+ top: string;
94
+ center: string;
95
+ bottom?: string;
96
+ type: 'inscribe' | 'press';
97
+ };
98
+ /**
99
+ * Add [Inscriber](https://appliedenergistics.org/ae2-site-archive/Inscriber/index.html) recipe
100
+ *
101
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Applied_Energistics_2_Support
102
+ */
103
+ declare const addInscriber: (id: Ingredient, recipe: RecipeInscriber) => string;
104
+ /**
105
+ * Remove [Inscriber](https://appliedenergistics.org/ae2-site-archive/Inscriber/index.html) recipe
106
+ *
107
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Applied_Energistics_2_Support
108
+ */
109
+ declare const removeInscriber: (id: string) => string;
110
+
111
+ type RecipeCompressor = {
112
+ input: Stack;
113
+ exact?: boolean;
114
+ };
115
+ /**
116
+ * Add [Neutronium Compressor](https://ftb.fandom.com/wiki/Neutronium_Compressor) recipe
117
+ */
118
+ declare const addCompressor: (id: string, recipe: RecipeCompressor) => string;
119
+ /**
120
+ * Remove [Neutronium Compressor](https://ftb.fandom.com/wiki/Neutronium_Compressor) recipe
121
+ */
122
+ declare const removeCompressor: (id: string) => string;
123
+ type RecipeExtreme = [
124
+ Partial<[string, string, string, string, string, string, string, string, string]>,
125
+ Partial<[string, string, string, string, string, string, string, string, string]>,
126
+ Partial<[string, string, string, string, string, string, string, string, string]>,
127
+ Partial<[string, string, string, string, string, string, string, string, string]>,
128
+ Partial<[string, string, string, string, string, string, string, string, string]>,
129
+ Partial<[string, string, string, string, string, string, string, string, string]>,
130
+ Partial<[string, string, string, string, string, string, string, string, string]>,
131
+ Partial<[string, string, string, string, string, string, string, string, string]>,
132
+ Partial<[string, string, string, string, string, string, string, string, string]>
133
+ ];
134
+ /**
135
+ * Add shaped [Extreme Crafting Table](https://ftb.fandom.com/wiki/Extreme_Crafting_Table) recipe
136
+ */
137
+ declare const addExtreme: (ingredient: Ingredient, recipe: RecipeExtreme) => string;
138
+ /**
139
+ * Remove [Extreme Crafting Table](https://ftb.fandom.com/wiki/Extreme_Crafting_Table) recipe
140
+ */
141
+ declare const removeExtreme: (id: string) => string;
142
+
143
+ type RecipeBlock = {
144
+ id: string;
145
+ material: string;
146
+ texture?: string;
147
+ creativeTab?: string;
148
+ renderType?: number;
149
+ drops?: string[];
150
+ /** If set to `true`, `hardness` is set to `-1` */
151
+ unbreakable?: boolean;
152
+ hardness?: number;
153
+ lightLevel?: number;
154
+ opacity?: number;
155
+ };
156
+ /**
157
+ * Create custom block
158
+ *
159
+ * Textures can be placed in `/config/contenttweaker/icons/blocks/<texture>`
160
+ *
161
+ * Scripts containing `createBlock` must be placed in `/contentScripts`
162
+ *
163
+ * @see https://minetweaker3.aizistral.com/wiki/ContentTweaker:BlockItem_Support
164
+ */
165
+ declare const createBlock: (name: string, recipe: RecipeBlock) => string;
166
+ type RecipeItem = {
167
+ id: string;
168
+ texture?: string;
169
+ creativeTab?: string;
170
+ damage?: number;
171
+ stackSize?: number;
172
+ toolType?: string;
173
+ level?: number;
174
+ is3d?: boolean;
175
+ tooltip?: string[];
176
+ };
177
+ /**
178
+ * Create custom item
179
+ *
180
+ * Scripts containing `createItem` must be placed in `/contentScripts`
181
+ *
182
+ * Textures can be placed in `/config/contenttweaker/icons/items/<texture>`
183
+ *
184
+ * @see https://minetweaker3.aizistral.com/wiki/ContentTweaker:BlockItem_Support
185
+ */
186
+ declare const createItem: (name: string, recipe: RecipeItem) => string;
187
+ type RecipeLiquid = {
188
+ density: number;
189
+ gaseous?: boolean;
190
+ luminosity: number;
191
+ temperature: number;
192
+ viscosity: number;
193
+ color: number;
194
+ setFire?: boolean;
195
+ castingMaterial?: number;
196
+ texture?: {
197
+ still?: string;
198
+ flowing?: string;
199
+ };
200
+ };
201
+ /**
202
+ * Create custom liquid
203
+ *
204
+ * Scripts containing `createLiquid` must be placed in `/contentScripts`
205
+ *
206
+ * Textures can be placed in `/config/contenttweaker/icons/blocks/<texture>`
207
+ *
208
+ * @see https://minetweaker3.aizistral.com/wiki/ContentTweaker:BlockItem_Support
209
+ */
210
+ declare const createLiquid: (id: string, recipe: RecipeLiquid) => string;
211
+ type RecipeMaterial = {
212
+ /** Display name */
213
+ name: string;
214
+ color: {
215
+ /** Display name colour */
216
+ name: keyof typeof COLOR;
217
+ /** Tool part colour */
218
+ tool: number;
219
+ };
220
+ durability: number;
221
+ /** Mining speed */
222
+ speed: number;
223
+ /** Attack damage in heart */
224
+ damage: number;
225
+ /** Mining level */
226
+ level: number;
227
+ resource: string;
228
+ reinforced?: number;
229
+ stonebound?: number;
230
+ modifier: number;
231
+ /** TiC material ID */
232
+ id: number;
233
+ value: number;
234
+ buildParts?: boolean;
235
+ /** Amount of modifiers accepted */
236
+ modifiers: number;
237
+ tooltip: string;
238
+ arrow: {
239
+ mass: number;
240
+ breakChance: number;
241
+ };
242
+ bow: {
243
+ drawSpeed: number;
244
+ speed: number;
245
+ };
246
+ nativeModifiers?: Ingredient[];
247
+ nativeEnchantments?: string[];
248
+ };
249
+ /**
250
+ * Create custom [Tinkers' Construct material](https://tinkers-construct.fandom.com/wiki/Material_Stats)
251
+ *
252
+ * Common values:
253
+ *
254
+ * Mining level:
255
+ * - `1` => Iron
256
+ * - `2` => Redstone
257
+ * - `3` => Obsidian
258
+ * - `4` => Cobalt
259
+ * - `5` => Manyullyn
260
+ *
261
+ * Mining speed:
262
+ * - `1` => Nothing
263
+ * - `2` => Wood
264
+ * - `4` => Stone
265
+ * - `6` => Iron
266
+ * - `8` => Diamond
267
+ * - `9` => Netherite
268
+ * - `12` => Gold
269
+ *
270
+ * Durability:
271
+ * - `33` => Gold
272
+ * - `60` => Wood
273
+ * - `132` => Stone
274
+ * - `251` => Iron
275
+ * - `1562` => Diamond
276
+ * - `2032` => Netherite
277
+ *
278
+ * Damage:
279
+ * - `1` => Wood, Gold
280
+ * - `1.5` => Stone
281
+ * - `2` => Iron
282
+ * - `2.5` => Diamond
283
+ * - `3` => Netherite
284
+ *
285
+ * Scripts containing `createMaterial` must be placed in `/contentScripts`
286
+ *
287
+ * Textures can be placed in `/config/contenttweaker/icons/items/<texture>`
288
+ *
289
+ * @see https://minetweaker3.aizistral.com/wiki/ContentTweaker:TConstruct_Support
290
+ */
291
+ declare const createMaterial: (material: string, recipe: RecipeMaterial) => string;
292
+
293
+ type RecipeComposter = {
294
+ n: number;
295
+ color?: string;
296
+ };
297
+ /**
298
+ * Add [Composter](https://ftb.fandom.com/wiki/Barrel_(Ex_Nihilo)) recipe
299
+ *
300
+ * @param recipe.n Must be between 0 and 1
301
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
302
+ */
303
+ declare const addComposter: (id: string, recipe: RecipeComposter) => string;
304
+ /**
305
+ * Remove [Composter](https://ftb.fandom.com/wiki/Barrel_(Ex_Nihilo)) recipe
306
+ *
307
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
308
+ */
309
+ declare const removeComposter: (id: string) => string;
310
+ /**
311
+ * Add [Crucible](https://ftb.fandom.com/wiki/Crucible_(Ex_Nihilo)) recipe
312
+ *
313
+ * Common recipes:
314
+ * - Stone => Lava (`250mb`)
315
+ * - Gravel => Lava (`250mb`)
316
+ * - Netherrack => Lava (`1000mb`)
317
+ * - Leaves => Water (`100mb`)
318
+ * - Snow => Water (`500mb`)
319
+ * - Ice => Water (`1000mb`)
320
+ *
321
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
322
+ */
323
+ declare const addCrucible: (liquid: Stack, id: string) => string;
324
+ /**
325
+ * Remove [Crucible](https://ftb.fandom.com/wiki/Crucible_(Ex_Nihilo)) recipe
326
+ *
327
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
328
+ */
329
+ declare const removeCrucible: (id: string) => string;
330
+ /**
331
+ * Add [Crucible](https://ftb.fandom.com/wiki/Crucible_(Ex_Nihilo)) fuel source
332
+ *
333
+ * Common values:
334
+ * - Torch: `0.1`
335
+ * - Lava (Flowing): `0.1`
336
+ * - Lava (Still): `0.2`
337
+ * - Fire: `0.3`
338
+ * - Blazing Pyrotheum: `0.7`
339
+ * - Uranium Block: `2.0`
340
+ *
341
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
342
+ */
343
+ declare const addCrucibleFuel: (id: string, n: number) => string;
344
+ /**
345
+ * Remove [Crucible](https://ftb.fandom.com/wiki/Crucible_(Ex_Nihilo)) fuel source
346
+ *
347
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
348
+ */
349
+ declare const removeCrucibleFuel: (id: string) => string;
350
+ type RecipeHammer = Record<string, number | {
351
+ n: number;
352
+ modifier: number;
353
+ }>;
354
+ /**
355
+ * Add [Hammer](https://ftb.fandom.com/wiki/Hammer_(Ex_Nihilo)) recipe
356
+ *
357
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
358
+ */
359
+ declare const addHammer: (id: string, recipe: RecipeHammer) => string;
360
+ /**
361
+ * Remove [Hammer](https://ftb.fandom.com/wiki/Hammer_(Ex_Nihilo)) recipe
362
+ *
363
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
364
+ */
365
+ declare const removeHammer: (id: string) => string;
366
+ type RecipeSieve = Record<string, number>;
367
+ /**
368
+ * Add [Sieve](https://ftb.fandom.com/wiki/Sieve_(Ex_Nihilo)) recipe
369
+ *
370
+ * Chance is calculated as `1 / chance`
371
+ *
372
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
373
+ */
374
+ declare const addSieve: (id: string, recipe: RecipeSieve) => string;
375
+ /**
376
+ * Remove [Sieve](https://ftb.fandom.com/wiki/Sieve_(Ex_Nihilo)) recipe
377
+ *
378
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Ex_Nihilo_Support
379
+ */
380
+ declare const removeSieve: (id: string) => string;
381
+
382
+ /**
383
+ * Adds [QED](https://ftb.fandom.com/wiki/QED) recipe
384
+ *
385
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Extra_Utilities_Support
386
+ */
387
+ declare const addQED: (ingredient: Ingredient, recipe: Shaped) => string;
388
+ /**
389
+ * Remove [QED](https://ftb.fandom.com/wiki/QED) recipe
390
+ *
391
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Extra_Utilities_Support
392
+ */
393
+ declare const removeQED: (id: string) => string;
394
+
395
+ type RecipeCarpenter = {
396
+ recipe: Shaped;
397
+ ticks: number;
398
+ top?: string;
399
+ liquid?: Stack;
400
+ };
401
+ /**
402
+ * Add [Carpenter](https://feed-the-beast.fandom.com/wiki/Carpenter) recipe
403
+ *
404
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
405
+ */
406
+ declare const addCarpenter: (id: Ingredient, recipe: RecipeCarpenter) => string;
407
+ /**
408
+ * Remove [Carpenter](https://feed-the-beast.fandom.com/wiki/Carpenter) recipe
409
+ *
410
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
411
+ */
412
+ declare const removeCarpenter: (id: string, liquid?: string) => string;
413
+ type RecipeCentrifuge = {
414
+ out: Record<string, number>;
415
+ ticks: number;
416
+ };
417
+ /**
418
+ * Add [Centrifuge](https://feed-the-beast.fandom.com/wiki/Centrifuge) recipe
419
+ *
420
+ * @param recipe.out `float`, e.g. `0.8` is 80% chance
421
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
422
+ */
423
+ declare const addCentrifuge: (id: string, recipe: RecipeCentrifuge) => string;
424
+ /**
425
+ * Remove [Centrifuge](https://feed-the-beast.fandom.com/wiki/Centrifuge) recipe
426
+ *
427
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
428
+ */
429
+ declare const removeCentrifuge: (id: string) => string;
430
+ type RecipeFermenter = {
431
+ liquid: Stack;
432
+ catalyst: string;
433
+ };
434
+ /**
435
+ * Add [Fermenter](https://feed-the-beast.fandom.com/wiki/Fermenter) recipe
436
+ *
437
+ * Recipe.liquid + recipe.catalyst => Liquid
438
+ *
439
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
440
+ */
441
+ declare const addFermenter: (liquid: Stack, recipe: RecipeFermenter) => string;
442
+ /**
443
+ * Remove [Fermenter](https://feed-the-beast.fandom.com/wiki/Fermenter) recipe
444
+ *
445
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
446
+ */
447
+ declare const removeFermenter: (id: string) => string;
448
+ type RecipeFermenterFuel = {
449
+ cycles: number;
450
+ burn: number;
451
+ };
452
+ /**
453
+ * Add [Fermenter](https://feed-the-beast.fandom.com/wiki/Fermenter) fuel recipe
454
+ *
455
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
456
+ */
457
+ declare const addFermenterFuel: (id: string, recipe: RecipeFermenterFuel) => string;
458
+ /**
459
+ * Remove [Fermenter](https://feed-the-beast.fandom.com/wiki/Fermenter) fuel recipe
460
+ *
461
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
462
+ */
463
+ declare const removeFermenterFuel: (id: string) => string;
464
+ type RecipeMoistener = {
465
+ input: string;
466
+ ticks: number;
467
+ };
468
+ /**
469
+ * Add [Moistener](https://feed-the-beast.fandom.com/wiki/Moistener) recipe
470
+ *
471
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
472
+ */
473
+ declare const addMoistener: (id: string, recipe: RecipeMoistener) => string;
474
+ /**
475
+ * Remove [Moistener](https://feed-the-beast.fandom.com/wiki/Moistener) recipe
476
+ *
477
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
478
+ */
479
+ declare const removeMoistener: (id: string) => string;
480
+ type RecipeSqueezer = {
481
+ input: Ingredient[];
482
+ ticks: number;
483
+ bonus: Bonus;
484
+ };
485
+ /**
486
+ * Add [Squeezer](https://ftb.fandom.com/wiki/Squeezer_(Forestry)) recipe
487
+ *
488
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
489
+ */
490
+ declare const addSqueezer: (liquid: Stack, recipe: RecipeSqueezer) => string;
491
+ /**
492
+ * Remove [Squeezer](https://ftb.fandom.com/wiki/Squeezer_(Forestry)) recipe
493
+ *
494
+ * - Recipe: `undefined` => Remove all recipes
495
+ * - Recipe: `string[]` => Remove specific recipe
496
+ *
497
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
498
+ */
499
+ declare const removeSqueezer: (id: string, recipe?: string[]) => string;
500
+ type RecipeStill = {
501
+ liquid: Stack;
502
+ ticks: number;
503
+ };
504
+ /**
505
+ * Add [Still](https://ftb.fandom.com/wiki/Still) recipe
506
+ *
507
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
508
+ */
509
+ declare const addStill: (liquid: Stack, recipe: RecipeStill) => string;
510
+ /**
511
+ * Remove [Still](https://ftb.fandom.com/wiki/Still) recipe
512
+ *
513
+ * - Recipe: `undefined` => Remove all recipes
514
+ * - Recipe: `string[]` => Remove specific recipe
515
+ *
516
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
517
+ */
518
+ declare const removeStill: (liquid: string, recipe?: string) => string;
519
+ type RecipeFabricator = {
520
+ recipe: Shaped;
521
+ n: number;
522
+ cast?: string;
523
+ };
524
+ /**
525
+ * Add [Thermionic Fabricator](https://feed-the-beast.fandom.com/wiki/Thermionic_Fabricator) recipe
526
+ *
527
+ * `n` is the amount of liquid glass in mb
528
+ *
529
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
530
+ */
531
+ declare const addFabricator: (id: string, recipe: RecipeFabricator) => string;
532
+ /**
533
+ * Remove [Thermionic Fabricator](https://feed-the-beast.fandom.com/wiki/Thermionic_Fabricator) recipe
534
+ *
535
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
536
+ */
537
+ declare const removeFabricator: (id: string) => string;
538
+ type RecipeFabricatorGlass = {
539
+ n: number;
540
+ temp: number;
541
+ };
542
+ /**
543
+ * Add [Thermionic Fabricator](https://feed-the-beast.fandom.com/wiki/Thermionic_Fabricator) glass recipe
544
+ *
545
+ * Common values:
546
+ * - Glass = 1000mB, 1000C
547
+ * - Sand = 1000mB, 3000C
548
+ * - Glass Pane = 375mB, 1000C
549
+ *
550
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
551
+ */
552
+ declare const addFabricatorGlass: (id: string, recipe: RecipeFabricatorGlass) => string;
553
+ /**
554
+ * Remove [Thermionic Fabricator](https://feed-the-beast.fandom.com/wiki/Thermionic_Fabricator) glass recipe
555
+ *
556
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Forestry_Support
557
+ */
558
+ declare const removeFabricatorGlass: (id: string) => string;
559
+
560
+ type RecipeChestLoot = {
561
+ chest: string;
562
+ n?: number;
563
+ chance?: number;
564
+ };
565
+ /**
566
+ * Add item to dungeon loot
567
+ *
568
+ * Common values:
569
+ * - `dungeonChest`
570
+ * - `mineshaftChest`
571
+ *
572
+ * A loot table can be generated using `/mt loot`
573
+ *
574
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Loot
575
+ */
576
+ declare const addChestLoot: (id: string, recipe: RecipeChestLoot) => string;
577
+ /**
578
+ * Remove item to dungeon loot
579
+ *
580
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Loot
581
+ */
582
+ declare const removeChestLoot: (id: string, chest: string) => string;
583
+ /**
584
+ * Add item to tall grass
585
+ *
586
+ * A loot table can be generated using `/mt seeds`
587
+ *
588
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Loot
589
+ */
590
+ declare const addSeed: (id: string) => string;
591
+ /**
592
+ * Remove item from tall grass
593
+ *
594
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Loot
595
+ */
596
+ declare const removeSeed: (id: string) => string;
597
+
598
+ /**
599
+ * Add shaped crafting recipe
600
+ *
601
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Basic_Recipes
602
+ */
603
+ declare const addShaped: (item: Ingredient, recipe: Shaped) => string;
604
+ /**
605
+ * Remove shaped crafting recipe
606
+ *
607
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Basic_Recipes
608
+ */
609
+ declare const removeShaped: (id: string, recipe?: Shaped) => string;
610
+ /**
611
+ * Add shapeless crafting recipe
612
+ *
613
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Basic_Recipes
614
+ */
615
+ declare const addShapeless: (item: Ingredient, recipe: Shapeless) => string;
616
+ /**
617
+ * Remove shapeless crafting recipe
618
+ *
619
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Basic_Recipes
620
+ */
621
+ declare const removeShapeless: (id: string, recipe?: Shapeless) => string;
622
+ /**
623
+ * Add crafting recipe
624
+ *
625
+ * - Recipe: `{}` => Shaped recipe
626
+ * - Recipe: `[]` => Shapeless recipe
627
+ *
628
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Basic_Recipes
629
+ */
630
+ declare const add: (item: Ingredient, recipe: Recipe) => string;
631
+ /**
632
+ * Remove all crafting recipes (shaped & shapeless)
633
+ *
634
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Basic_Recipes
635
+ */
636
+ declare const remove: (id: string) => string;
637
+ /**
638
+ * Add shaped crafing recipe with mirror
639
+ *
640
+ * @see @see https://minetweaker3.aizistral.com/wiki/Tutorial:Basic_Recipes
641
+ */
642
+ declare const addMirror: (item: Ingredient, recipe: Shaped) => string;
643
+ type RecipeFurnace = {
644
+ input: string;
645
+ xp?: number;
646
+ };
647
+ /**
648
+ * Add furnace recipe
649
+ *
650
+ * Common values:
651
+ * - Coal: `0.1xp`
652
+ * - Blocks: `0.1xp`
653
+ * - Food: `0.35xp`
654
+ * - Iron Ingot: `0.7xp`
655
+ * - Gold Ingot: `1xp`
656
+ * - Gems: `1xp`
657
+ *
658
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Furnace
659
+ */
660
+ declare const addFurnace: (id: string, recipe: RecipeFurnace) => string;
661
+ /**
662
+ * Remove furnace recipe
663
+ *
664
+ * - Recipe: `string` => Remove all recipes that create this ingredient
665
+ * - Recipe `{}` => Remove this specific recipe
666
+ *
667
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Furnace
668
+ */
669
+ declare const removeFurnace: (id: string, recipe?: string) => string;
670
+ /**
671
+ * Add furnace fuel
672
+ *
673
+ * Common values:
674
+ * - Coal: `1600`
675
+ * - Planks: `300`
676
+ * - Stick: `100`
677
+ *
678
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Furnace
679
+ */
680
+ declare const addFurnaceFuel: (id: string, n: number) => string;
681
+ /**
682
+ * Remove furnace fuel, with the exception of vanilla fuels
683
+ *
684
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Furnace
685
+ */
686
+ declare const removeFurnaceFuel: (id: string) => string;
687
+
688
+ /**
689
+ * Add an entity to the [Auto-Spawner](https://feed-the-beast.fandom.com/wiki/Auto-Spawner) blacklist, disabling spawning
690
+ *
691
+ * A list of entities can be generated using `/mt entities`
692
+ *
693
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
694
+ */
695
+ declare const addBlacklistAutospawner: (id: string) => string;
696
+ /**
697
+ * Remove an entity to the [Auto-Spawner](https://feed-the-beast.fandom.com/wiki/Auto-Spawner) blacklist, enabling spawning
698
+ *
699
+ * A list of entities can be generated using `/mt entities`
700
+ *
701
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
702
+ */
703
+ declare const removeBlacklistAutospawner: (id: string) => string;
704
+ declare const HARVESTER_TYPE: {
705
+ tree: string;
706
+ leaf: string;
707
+ block: string;
708
+ column: string;
709
+ treeInverse: string;
710
+ };
711
+ type RecipeHarvester = {
712
+ type: keyof typeof HARVESTER_TYPE;
713
+ bonus?: Array<string | Stack | Bonus>;
714
+ };
715
+ /**
716
+ * Add harvestable blocks to the [Harvester](https://feed-the-beast.fandom.com/wiki/Harvester)
717
+ *
718
+ * Types:
719
+ * - `tree` => Tree cutting algorithm. Leaves first, then logs
720
+ * - `leaf` => Only cut leaves
721
+ * - `block` => Single block, such as pumpkins and melons
722
+ * - `column` => Stacked blocks, such as reeds and cacti
723
+ * - `treeInverse` => Upside-down trees, such as Natura's Bloodwood
724
+ *
725
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
726
+ */
727
+ declare const addHarvester: (id: string, recipe: RecipeHarvester) => string;
728
+ /**
729
+ * Add item to [Laser Drill](https://ftb.fandom.com/wiki/Laser_Drill_(MineFactory_Reloaded))
730
+ *
731
+ * Common values:
732
+ * - Coal => `175`
733
+ * - Iron => `150`
734
+ * - Redstone => `100`
735
+ * - Copper => `90`
736
+ * - Tin => `85`
737
+ * - Glowstone => `80`
738
+ * - Lapis => `80`
739
+ * - Gold => `70`
740
+ * - Lead => `60`
741
+ * - Diamond => `55`
742
+ * - Sulfur => `40`
743
+ * - Salpeter => `40`
744
+ * - Emerald => `35`
745
+ * - Silver => `30`
746
+ * - Platinum => `15`
747
+ *
748
+ * A list of laser ores can be generated using `/mt mfr laserores`
749
+ *
750
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
751
+ */
752
+ declare const addLaserOre: (id: string, weight: number) => string;
753
+ /**
754
+ * Remove item from [Laser Drill](https://ftb.fandom.com/wiki/Laser_Drill_(MineFactory_Reloaded))
755
+ *
756
+ * A list of laser ores can be generated using `/mt mfr laserores`
757
+ *
758
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
759
+ */
760
+ declare const removeLaserOre: (id: string) => string;
761
+ declare const FOCI: {
762
+ readonly white: 0;
763
+ readonly orange: 1;
764
+ readonly magenta: 2;
765
+ readonly lightBlue: 3;
766
+ readonly yellow: 4;
767
+ readonly lime: 5;
768
+ readonly pink: 6;
769
+ readonly gray: 7;
770
+ readonly lightGray: 8;
771
+ readonly cyan: 9;
772
+ readonly purple: 10;
773
+ readonly blue: 11;
774
+ readonly brown: 12;
775
+ readonly green: 13;
776
+ readonly red: 14;
777
+ readonly black: 15;
778
+ };
779
+ /**
780
+ * Add item to [Laser Drill](https://ftb.fandom.com/wiki/Laser_Drill_(MineFactory_Reloaded)) Foci
781
+ *
782
+ * Common values:
783
+ * - Coal => `175 (black)`
784
+ * - Iron => `150 (brown)`
785
+ * - Redstone => `100 (red)`
786
+ * - Copper => `90 (orange)`
787
+ * - Tin => `85 (silver)`
788
+ * - Glowstone => `80 (yellow)`
789
+ * - Lapis => `80 (blue)`
790
+ * - Gold => `70 (yellow)`
791
+ * - Lead => `60 (purple)`
792
+ * - Diamond => `55 (lightBlue)`
793
+ * - Sulfur => `40 (yellow)`
794
+ * - Salpeter => `40 (white)`
795
+ * - Emerald => `35 (lime)`
796
+ * - Silver => `30 (gray)`
797
+ * - Platinum => `15 (lightBlue)`
798
+ *
799
+ * A list of laser ores can be generated using `/mt mfr laserores`
800
+ *
801
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
802
+ */
803
+ declare const addLaserFoci: (id: string, foci: keyof typeof FOCI) => string;
804
+ /**
805
+ * Remove item from [Laser Drill](https://ftb.fandom.com/wiki/Laser_Drill_(MineFactory_Reloaded)) Foci
806
+ *
807
+ * A list of laser ores can be generated using `/mt mfr laserores`
808
+ *
809
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
810
+ */
811
+ declare const removeLaserFoci: (id: string, foci: keyof typeof FOCI) => string;
812
+ type RecipeLaser = {
813
+ foci: keyof typeof FOCI;
814
+ weight: number;
815
+ };
816
+ /**
817
+ * Add item to [Laser Drill](https://ftb.fandom.com/wiki/Laser_Drill_(MineFactory_Reloaded)) and Foci. Combines `addLaserOre` and `addLaserFoci`
818
+ *
819
+ * Common values:
820
+ * - Coal => `175 (black)`
821
+ * - Iron => `150 (brown)`
822
+ * - Redstone => `100 (red)`
823
+ * - Copper => `90 (orange)`
824
+ * - Tin => `85 (silver)`
825
+ * - Glowstone => `80 (yellow)`
826
+ * - Lapis => `80 (blue)`
827
+ * - Gold => `70 (yellow)`
828
+ * - Lead => `60 (purple)`
829
+ * - Diamond => `55 (lightBlue)`
830
+ * - Sulfur => `40 (yellow)`
831
+ * - Salpeter => `40 (white)`
832
+ * - Emerald => `35 (lime)`
833
+ * - Silver => `30 (gray)`
834
+ * - Platinum => `15 (lightBlue)`
835
+ *
836
+ * A list of laser ores can be generated using `/mt mfr laserores`
837
+ *
838
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
839
+ */
840
+ declare const addLaser: (id: string, recipe: RecipeLaser) => string;
841
+ /**
842
+ * Add [Planter](https://ftb.fandom.com/wiki/Planter_(MineFactory_Reloaded)) recipe
843
+ *
844
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
845
+ */
846
+ declare const addPlanter: (id: string) => string;
847
+ /**
848
+ * Add [Rubber Tree](https://ftb.fandom.com/wiki/Rubber_Tree_(MineFactory_Reloaded)) to biome, allowing rubber trees to be generated in that biome
849
+ *
850
+ * A list of biomes can be generated using `/mt biomes`
851
+ *
852
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
853
+ */
854
+ declare const addBiomeRubberTree: (id: string) => string;
855
+ /**
856
+ * Remove [Rubber Tree](https://ftb.fandom.com/wiki/Rubber_Tree_(MineFactory_Reloaded)) from biome, disabling rubber trees from being generated in that biome
857
+ *
858
+ * A list of biomes can be generated using `/mt biomes`
859
+ *
860
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
861
+ */
862
+ declare const removeBiomeRubberTree: (id: string) => string;
863
+ /**
864
+ * Add item to [Sludge Boiler](https://ftb.fandom.com/wiki/Sludge_Boiler)
865
+ *
866
+ * Common values:
867
+ * - Peat => `10`
868
+ * - Decaying Wheat => `20`
869
+ * - Sand => `50`
870
+ * - Clay Block => `30`
871
+ * - Dirt => `10`
872
+ * - Gravel => `10`
873
+ * - Red Sand => `5`
874
+ * - Soul Sand => `5`
875
+ * - Mycelium => `3`
876
+ * - Podzol => `2`
877
+ * - Netherrack => `1`
878
+ *
879
+ * A list of sludge drops can be generated using `/mt mfr sludgedrops`
880
+ *
881
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
882
+ */
883
+ declare const addSludgeBoiler: (id: string, weight: number) => string;
884
+ /**
885
+ * Remove item from [Sludge Boiler](https://ftb.fandom.com/wiki/Sludge_Boiler)
886
+ *
887
+ * A list of sludge drops can be generated using `/mt mfr sludgedrops`
888
+ *
889
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:MFR_Support
890
+ */
891
+ declare const removeSludgeBoiler: (id: string) => string;
892
+
893
+ /**
894
+ * Hide item from NEI
895
+ *
896
+ * Some items may not get hidden depending on when they get added to NEI. For better support, see [INpureCore](https://www.curseforge.com/minecraft/mc-mods/inpurecore)
897
+ *
898
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:NEI_Support
899
+ */
900
+ declare const hide: (id: string) => string;
901
+ /**
902
+ * Add item from NEI
903
+ *
904
+ * Can be used to add items with metadata to NEI
905
+ *
906
+ * @example add('<minecraft:bread>.withTag({ display: { Name: "Tasty bread", Lore: ["Thanks to MineTweaker,", "We can now have tastier bread"] } });')
907
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:NEI_Support
908
+ */
909
+ declare const show: (id: string) => string;
910
+ /**
911
+ * Rename item in NEI
912
+ *
913
+ * @see https://minetweaker3.aizistral.com/wiki/Mods:NEI_Support
914
+ */
915
+ declare const rename: (id: string, name: string) => string;
916
+
917
+ /**
918
+ * Add item to a valid ore dictionary
919
+ *
920
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Ore_Dictionary
921
+ */
922
+ declare const addOreDict: (dict: string) => (id: string) => string;
923
+ /**
924
+ * Remove item from valid ore dictionary
925
+ *
926
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Ore_Dictionary
927
+ */
928
+ declare const removeOreDict: (dict: string) => (id: string) => string;
929
+ /**
930
+ * Add all entries from `b` into `a`
931
+ *
932
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Ore_Dictionary
933
+ */
934
+ declare const joinOreDict: (a: string, b: string) => string;
935
+ /**
936
+ * Mirror all entries from `b` to `a`
937
+ *
938
+ * @see https://minetweaker3.aizistral.com/wiki/Tutorial:Ore_Dictionary
939
+ */
940
+ declare const mirrorOreDict: (a: string, b: string) => string;
941
+
942
+ declare const withName: (name: Text) => (id: string) => string;
943
+ declare const withTag: (tag: Record<string, unknown>) => (id: string) => string;
944
+ declare const ENCHANTMENTS: {
945
+ readonly protection: 0;
946
+ readonly fireProtection: 1;
947
+ readonly featherFalling: 2;
948
+ readonly blastProtection: 3;
949
+ readonly projectileProtection: 4;
950
+ readonly respiration: 5;
951
+ readonly aquaAffinity: 6;
952
+ readonly thorns: 7;
953
+ readonly sharpness: 16;
954
+ readonly smite: 17;
955
+ readonly baneOfAntrophods: 18;
956
+ readonly knockback: 19;
957
+ readonly fireAspect: 20;
958
+ readonly looting: 21;
959
+ readonly efficiency: 32;
960
+ readonly silkTouch: 33;
961
+ readonly unbreaking: 34;
962
+ readonly fortune: 35;
963
+ readonly power: 48;
964
+ readonly punch: 49;
965
+ readonly flame: 50;
966
+ readonly infinity: 51;
967
+ };
968
+ type Enchantment = {
969
+ id: number;
970
+ lvl: number;
971
+ };
972
+ declare const withEnchantment: (...enchantments: Enchantment[]) => (id: string) => string;
973
+ declare const withTooltip: (...tooltip: Text[]) => (id: string) => string;
974
+ declare const withTooltipShift: (...tooltip: Text[]) => (id: string) => string;
975
+
976
+ type RecipeMagmaCrucible = {
977
+ rf: number;
978
+ input: string;
979
+ };
980
+ /**
981
+ * Add [Magma Crucible](https://oldcofh.github.io/docs/thermal-expansion/machines/magma-crucible/) recipe
982
+ *
983
+ * Common values:
984
+ * - Cobblestone => `1000mB`, `320.000 RF`
985
+ * - Stone => `1000mB`, `320.000 RF`
986
+ * - Obsidian => `1000mB`, `320.000 RF`
987
+ * - Netherrack => `1000mB`, `120.000 RF`
988
+ * - Blaze Rod => `250mB`, `20.000 RF`
989
+ * - Snowball => `125mB`, `200 RF`
990
+ * - Snow (block) => `500mB`, `800 RF`
991
+ * - Ice => `1000mB`, `1600 RF`
992
+ * - Redstone (dust) => `100mB`, `8000 RF`
993
+ * - Block of Redstone => `900mB`, `72.000 RF`
994
+ * - Glowstone Dust => `250mB`, `20.000 RF`
995
+ * - Glowstone (block) => `1000mB`, `80.000 RF`
996
+ * - Ender Pearl => `250mB`, `20.000 RF`
997
+ * - Pulverized Coal => `100mB`, `8000 RF`
998
+ * - Pyrotheum Dust => `250mB`, `8000 RF`
999
+ * - Cryotheum Dust => `250mB`, `8000 RF`
1000
+ * - Aerotheum Dust => `250mB`, `8000 RF`
1001
+ * - Petrotheum Dust => `250mB`, `8000 RF`
1002
+ *
1003
+ * A list of recipes can be generated using `/mt thermalexpansion Crucible`
1004
+ *
1005
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1006
+ */
1007
+ declare const addMagmaCrucible: (liquid: Stack, recipe: RecipeMagmaCrucible) => string;
1008
+ /**
1009
+ * Remove [Magma Crucible](https://oldcofh.github.io/docs/thermal-expansion/machines/magma-crucible/) recipe
1010
+ *
1011
+ * A list of recipes can be generated using `/mt thermalexpansion Crucible`
1012
+ *
1013
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1014
+ */
1015
+ declare const removeMagmaCrucible: (id: string) => string;
1016
+ type RecipeRedstoneFurnace = {
1017
+ rf: number;
1018
+ input: string;
1019
+ };
1020
+ /**
1021
+ * Add [Redstone Furnace](https://oldcofh.github.io/docs/thermal-expansion/machines/redstone-furnace/) recipe
1022
+ *
1023
+ * Common values:
1024
+ * - Most Furnace recipes => `1600 RF`
1025
+ * - Pulverized metals (dusts) => `1000 RF`
1026
+ * - Raw food => `800 RF`
1027
+ * - Cactus => `800 RF`
1028
+ * - Redstone Ore => `1600 RF`
1029
+ * - Lapis Lazuli Ore => `1600 RF`
1030
+ * - Hay Bale => `3200 RF`
1031
+ *
1032
+ * A list of recipes can be generated using `/mt thermalexpansion Furnace`
1033
+ *
1034
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1035
+ */
1036
+ declare const addRedstoneFurnace: (item: Ingredient, recipe: RecipeRedstoneFurnace) => string;
1037
+ /**
1038
+ * Remove [Redstone Furnace](https://oldcofh.github.io/docs/thermal-expansion/machines/redstone-furnace/) recipe
1039
+ *
1040
+ * A list of recipes can be generated using `/mt thermalexpansion Furnace`
1041
+ *
1042
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1043
+ */
1044
+ declare const removeRedstoneFurnace: (id: string) => string;
1045
+ type RecipeInsolator = {
1046
+ rf: number;
1047
+ input: {
1048
+ left: Ingredient;
1049
+ right: Ingredient;
1050
+ };
1051
+ bonus?: Bonus;
1052
+ };
1053
+ /**
1054
+ * Add [Phytogenic Insolator](https://oldcofh.github.io/docs/thermal-expansion/machines/phytogenic-insolator/) recipe
1055
+ *
1056
+ * A list of recipes can be generated using `/mt thermalexpansion Insolator`
1057
+ *
1058
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1059
+ */
1060
+ declare const addInsolator: (item: Ingredient, recipe: RecipeInsolator) => string;
1061
+ /**
1062
+ * Remove [Phytogenic Insolator](https://oldcofh.github.io/docs/thermal-expansion/machines/phytogenic-insolator/) recipe
1063
+ *
1064
+ * A list of recipes can be generated using `/mt thermalexpansion Insolator`
1065
+ *
1066
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1067
+ */
1068
+ declare const removeInsolator: (input: {
1069
+ left: string;
1070
+ right: string;
1071
+ }) => string;
1072
+ type RecipePulverizer = {
1073
+ rf: number;
1074
+ input: string;
1075
+ bonus?: Bonus;
1076
+ };
1077
+ /**
1078
+ * Add [Pulverizer](https://oldcofh.github.io/docs/thermal-expansion/machines/pulverizer/) recipe
1079
+ *
1080
+ * Common values:
1081
+ * - Ores => `4000RF`
1082
+ * - Minerals / Gems => `2400RF`
1083
+ * - Redstone => `3200RF`
1084
+ * - Ingots => `2400RF`
1085
+ * - Wood => `1600RF`
1086
+ * - Stone = > `3200RF`
1087
+ * - Rods => `1600RF`
1088
+ * - Wool => `1600RF`
1089
+ *
1090
+ * A list of recipes can be generated using `/mt thermalexpansion Pulverizer`
1091
+ *
1092
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1093
+ */
1094
+ declare const addPulverizer: (item: Ingredient, recipe: RecipePulverizer) => string;
1095
+ /**
1096
+ * Remove [Pulverizer](https://oldcofh.github.io/docs/thermal-expansion/machines/pulverizer/) recipe
1097
+ *
1098
+ * A list of recipes can be generated using `/mt thermalexpansion Pulverizer`
1099
+ *
1100
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1101
+ */
1102
+ declare const removePulverizer: (id: string) => string;
1103
+ type RecipeSawmill = {
1104
+ rf: number;
1105
+ input: string;
1106
+ bonus?: Bonus;
1107
+ };
1108
+ /**
1109
+ * Add [Sawmill](https://oldcofh.github.io/docs/thermal-expansion/machines/sawmill/) recipe
1110
+ *
1111
+ * Common values:
1112
+ * - Log => `800RF`
1113
+ * - Rubber Log => `1200RF`
1114
+ * - Blocks => `2400RF`
1115
+ * - Items => `2400RF`
1116
+ * - Tools => `1600RF`
1117
+ * - Melon => `800RF`
1118
+ *
1119
+ * A list of recipes can be generated using `/mt thermalexpansion Sawmill`
1120
+ *
1121
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1122
+ */
1123
+ declare const addSawmill: (item: Ingredient, recipe: RecipeSawmill) => string;
1124
+ /**
1125
+ * Remove [Sawmill](https://oldcofh.github.io/docs/thermal-expansion/machines/sawmill/) recipe
1126
+ *
1127
+ * A list of recipes can be generated using `/mt thermalexpansion Sawmill`
1128
+ *
1129
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1130
+ */
1131
+ declare const removeSawmill: (id: string) => string;
1132
+ type RecipeInductionSmelter = {
1133
+ rf: number;
1134
+ input: [Ingredient, Ingredient];
1135
+ bonus?: Bonus;
1136
+ };
1137
+ /**
1138
+ * Add [Induction Smelter](https://oldcofh.github.io/docs/thermal-expansion/machines/induction-smelter/) recipe
1139
+ *
1140
+ * Common values:
1141
+ * - Alloys => `1600RF`, `2400RF`
1142
+ * - Sand + Dust => `800RF`
1143
+ * - Sand + Ore => `3200RF`
1144
+ * - Cinnabar + Ore => `4000RF`
1145
+ * - Pyrotheum + Ore => `4000RF`, `8000RF`
1146
+ * - Slag + Ore => `4000RF`
1147
+ *
1148
+ * A list of recipes can be generated using `/mt thermalexpansion Smelter`
1149
+ *
1150
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1151
+ */
1152
+ declare const addInductionSmelter: (item: Ingredient, recipe: RecipeInductionSmelter) => string;
1153
+ /**
1154
+ * Remove [Induction Smelter](https://oldcofh.github.io/docs/thermal-expansion/machines/induction-smelter/) recipe
1155
+ *
1156
+ * A list of recipes can be generated using `/mt thermalexpansion Smelter`
1157
+ *
1158
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1159
+ */
1160
+ declare const removeInductionSmelter: (input: {
1161
+ left: string;
1162
+ right: string;
1163
+ }) => string;
1164
+ type RecipeTransposerFill = {
1165
+ rf: number;
1166
+ input: string;
1167
+ liquid: Stack;
1168
+ };
1169
+ /**
1170
+ * Add [Fluid Transposer](https://oldcofh.github.io/docs/thermal-expansion/machines/fluid-transposer/) fill recipe
1171
+ *
1172
+ * Common values:
1173
+ * - Ducts => `800RF`
1174
+ * - Frame => `16.000RF`
1175
+ * - Blend => `4000RF`
1176
+ * - Powder => `4000RF`
1177
+ * - Stone => `8000RF`
1178
+ *
1179
+ * A list of recipes can be generated using `/mt thermalexpansion Transposer`
1180
+ *
1181
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1182
+ */
1183
+ declare const addTransposerFill: (item: Ingredient, recipe: RecipeTransposerFill) => string;
1184
+ /**
1185
+ * Remove [Fluid Transposer](https://oldcofh.github.io/docs/thermal-expansion/machines/fluid-transposer/) fill recipe
1186
+ *
1187
+ * A list of recipes can be generated using `/mt thermalexpansion Transposer`
1188
+ *
1189
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1190
+ */
1191
+ declare const removeTransposerFill: (input: {
1192
+ id: string;
1193
+ liquid: string;
1194
+ }) => string;
1195
+ type RecipeTransposerExtract = {
1196
+ rf: number;
1197
+ input: string;
1198
+ bonus: Bonus;
1199
+ };
1200
+ /**
1201
+ * Add [Fluid Transposer](https://oldcofh.github.io/docs/thermal-expansion/machines/fluid-transposer/) extract recipe
1202
+ *
1203
+ * Common values:
1204
+ * - Bucket: `800RF, 1000mB`
1205
+ * - Bottle: `1600RF, 1000mB`
1206
+ *
1207
+ * A list of recipes can be generated using `/mt thermalexpansion Transposer`
1208
+ *
1209
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1210
+ */
1211
+ declare const addTransposerExtract: (liquid: Stack, recipe: RecipeTransposerExtract) => string;
1212
+ /**
1213
+ * Remove [Fluid Transposer](https://oldcofh.github.io/docs/thermal-expansion/machines/fluid-transposer/) extract recipe
1214
+ *
1215
+ * A list of recipes can be generated using `/mt thermalexpansion Transposer`
1216
+ *
1217
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:Thermal_Expansion_Support
1218
+ */
1219
+ declare const removeTransposerExtract: (id: string) => string;
1220
+
1221
+ type RecipeCastingBasin = {
1222
+ liquid: Stack;
1223
+ ticks: number;
1224
+ cast?: Cast;
1225
+ };
1226
+ /**
1227
+ * Add [Casting Basin](https://tinkers-construct.fandom.com/wiki/Casting_Basin) recipe
1228
+ *
1229
+ * Common values:
1230
+ * - Ticks => `20`
1231
+ * - Liquid (Block) => `1296`
1232
+ * - Liquid (Ingot) => `144`
1233
+ *
1234
+ * Recipes can be generated using `/mt tconstruct Casting`
1235
+ *
1236
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1237
+ */
1238
+ declare const addCastingBasin: (id: string, recipe: RecipeCastingBasin) => string;
1239
+ /**
1240
+ * Remove [Casting Basin](https://tinkers-construct.fandom.com/wiki/Casting_Basin) recipe
1241
+ *
1242
+ * Recipes can be generated using `/mt tconstruct Casting`
1243
+ *
1244
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1245
+ */
1246
+ declare const removeCastingBasin: (id: string) => string;
1247
+ type RecipeCastingTable = {
1248
+ liquid: Stack;
1249
+ ticks: number;
1250
+ cast?: Cast;
1251
+ };
1252
+ /**
1253
+ * Add [Casting Basin](https://tinkers-construct.fandom.com/wiki/Casting_Basin) recipe
1254
+ *
1255
+ * Common values:
1256
+ * - Ticks => `20`
1257
+ * - Liquid (Ingot) => `144`
1258
+ *
1259
+ * Recipes can be generated using `/mt tconstruct Casting`
1260
+ *
1261
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1262
+ */
1263
+ declare const addCastingTable: (id: string, recipe: RecipeCastingTable) => string;
1264
+ /**
1265
+ * Remove [Casting Basin](https://tinkers-construct.fandom.com/wiki/Casting_Table) recipe
1266
+ *
1267
+ * Recipes can be generated using `/mt tconstruct Casting`
1268
+ *
1269
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1270
+ */
1271
+ declare const removeCastingTable: (id: string) => string;
1272
+ type RecipeDryingRack = {
1273
+ input: string;
1274
+ ticks: number;
1275
+ };
1276
+ /**
1277
+ * Add [Drying Rack](https://tinkers-construct.fandom.com/wiki/Drying_Rack) recipe
1278
+ *
1279
+ * Common values:
1280
+ * - `6000` ticks
1281
+ *
1282
+ * Recipes can be generated using `/mt tconstruct Drying`
1283
+ *
1284
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1285
+ */
1286
+ declare const addDryingRack: (id: string, recipe: RecipeDryingRack) => string;
1287
+ /**
1288
+ * Remove [Drying Rack](https://tinkers-construct.fandom.com/wiki/Drying_Rack) recipe
1289
+ *
1290
+ * Recipes can be generated using `/mt tconstruct Drying`
1291
+ *
1292
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1293
+ */
1294
+ declare const removeDryingRack: (id: string) => string;
1295
+ declare const MODIFIERS: {
1296
+ readonly lvl1: "Tier1Free";
1297
+ readonly lvl2: "Tier1.5Free";
1298
+ readonly lvl3: "Tier2Free";
1299
+ readonly silkTouch: "Silk Touch";
1300
+ readonly luck: "Lapis";
1301
+ readonly fiery: "Blaze";
1302
+ readonly sharpness: "ModAttack";
1303
+ readonly beheading: "Beheading";
1304
+ readonly diamond: "Diamond";
1305
+ readonly reinforced: "Reinforced";
1306
+ readonly haste: "Redstone";
1307
+ readonly necrotic: "Necrotic";
1308
+ readonly emerald: "Emerald";
1309
+ readonly smite: "ModSmite";
1310
+ readonly knockback: "Piston";
1311
+ readonly baneOfAnthropods: "ModAntiSpider";
1312
+ readonly flux: "Flux";
1313
+ };
1314
+ /**
1315
+ * Remove [Modifier](https://tinkers-construct.fandom.com/wiki/Modifiers)
1316
+ *
1317
+ * A list of modifiers can be generated from `/mt modifiers`
1318
+ *
1319
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1320
+ */
1321
+ declare const removeModifier: (id: string) => string;
1322
+ type RecipeSmelteryFluid = {
1323
+ input: string;
1324
+ temperature: number;
1325
+ render?: string;
1326
+ };
1327
+ /**
1328
+ * Add [Smeltery](https://tinkers-construct.fandom.com/wiki/Smeltery) fluid recipe
1329
+ *
1330
+ * Common values:
1331
+ * - Lava => `1000`
1332
+ * - Pyrotheum => `5000`
1333
+ *
1334
+ * A list of recipes can be generated from `/mt tconstruct Smeltery`
1335
+ *
1336
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1337
+ */
1338
+ declare const addSmelteryFluid: (liquid: Stack, recipe: RecipeSmelteryFluid) => string;
1339
+ /**
1340
+ * Remove [Smeltery](https://tinkers-construct.fandom.com/wiki/Smeltery) fluid recipe
1341
+ *
1342
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1343
+ */
1344
+ declare const removeSmelteryFluid: (id: string) => string;
1345
+ /**
1346
+ * Add [Smeltery](https://tinkers-construct.fandom.com/wiki/Smeltery) alloy recipe
1347
+ *
1348
+ * A list of recipes can be generated from `/mt tconstruct Smeltery`
1349
+ *
1350
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1351
+ */
1352
+ declare const addSmelteryAlloy: (alloy: Stack, recipe: Stack[]) => string;
1353
+ /**
1354
+ * Remove [Smeltery](https://tinkers-construct.fandom.com/wiki/Smeltery) alloy recipe
1355
+ *
1356
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1357
+ */
1358
+ declare const removeSmelteryAlloy: (id: string) => string;
1359
+ type RecipeSmelteryFuel = {
1360
+ temperature: number;
1361
+ ticks: number;
1362
+ };
1363
+ /**
1364
+ * Add [Smeltery](https://tinkers-construct.fandom.com/wiki/Smeltery) fuel
1365
+ *
1366
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1367
+ */
1368
+ declare const addSmelteryFuel: (id: string, recipe: RecipeSmelteryFuel) => string;
1369
+ /**
1370
+ * Remove [Smeltery](https://tinkers-construct.fandom.com/wiki/Smeltery) fuel
1371
+ *
1372
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1373
+ */
1374
+ declare const removeSmelteryFuel: (id: string) => string;
1375
+ declare const MATERIALS: {
1376
+ readonly wood: "Wood";
1377
+ readonly stone: "Stone";
1378
+ readonly iron: "Iron";
1379
+ readonly flint: "Flint";
1380
+ readonly cactus: "Cactus";
1381
+ readonly bone: "Bone";
1382
+ readonly obsidian: "Obsidian";
1383
+ readonly alumite: "Alumite";
1384
+ readonly netherrack: "Netherrack";
1385
+ readonly slimeBlue: "Blue Slime";
1386
+ readonly slimeGreen: "Green Slime";
1387
+ readonly paper: "Paper";
1388
+ readonly cobalt: "Cobalt";
1389
+ readonly ardite: "Ardite";
1390
+ readonly manyullyn: "Manyullyn";
1391
+ readonly copper: "Copper";
1392
+ readonly bronze: "Bronze";
1393
+ readonly steel: "Steel";
1394
+ readonly pigIron: "Pig Iron";
1395
+ readonly lead: "Lead";
1396
+ readonly silver: "Silver";
1397
+ readonly ferrous: "Ferrous";
1398
+ readonly shiny: "Shiny";
1399
+ readonly electrum: "Electrum";
1400
+ readonly invar: "Invar";
1401
+ readonly woodMagical: "Magical Wood";
1402
+ readonly bedrock: "Bedrockium";
1403
+ readonly unstable: "Unstable Induced";
1404
+ };
1405
+ type RecipeRepairMaterial = {
1406
+ material: string;
1407
+ n: number;
1408
+ };
1409
+ /**
1410
+ * Add repair [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats)
1411
+ *
1412
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1413
+ */
1414
+ declare const addRepairMaterial: (id: string, recipe: RecipeRepairMaterial) => string;
1415
+ /**
1416
+ * Remove repair [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats)
1417
+ *
1418
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1419
+ */
1420
+ declare const removeRepairMaterial: (id: string, material?: string) => string;
1421
+ type RecipeToolStats = {
1422
+ /** Display name */
1423
+ name: string;
1424
+ color: {
1425
+ /** Display name colour */
1426
+ name: keyof typeof COLOR;
1427
+ /** Tool part colour */
1428
+ tool: number;
1429
+ };
1430
+ durability: number;
1431
+ /** Mining speed */
1432
+ speed: number;
1433
+ /** Attack damage in heart */
1434
+ damage: number;
1435
+ /** Mining level */
1436
+ level: number;
1437
+ reinforced?: number;
1438
+ stonebound?: number;
1439
+ /** Handle modifier */
1440
+ modifier: number;
1441
+ };
1442
+ /**
1443
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) stats
1444
+ *
1445
+ * Common values:
1446
+ *
1447
+ * Level:
1448
+ * - `1` => Iron
1449
+ * - `2` => Redstone
1450
+ * - `3` => Obsidian
1451
+ * - `4` => Cobalt
1452
+ * - `5` => Manyullyn
1453
+ *
1454
+ * Speed:
1455
+ * - `1` => Nothing
1456
+ * - `2` => Wood
1457
+ * - `4` => Stone
1458
+ * - `6` => Iron
1459
+ * - `8` => Diamond
1460
+ * - `9` => Netherite
1461
+ * - `12` => Gold
1462
+ *
1463
+ * Durability:
1464
+ * - `33` => Gold
1465
+ * - `60` => Wood
1466
+ * - `132` => Stone
1467
+ * - `251` => Iron
1468
+ * - `1562` => Diamond
1469
+ * - `2032` => Netherite
1470
+ *
1471
+ * Damage:
1472
+ * - `1` => Wood, Gold
1473
+ * - `1.5` => Stone
1474
+ * - `2` => Iron
1475
+ * - `2.5` => Diamond
1476
+ * - `3` => Netherite
1477
+ *
1478
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1479
+ */
1480
+ declare const setMaterialStats: (material: string, recipe: RecipeToolStats) => string;
1481
+ /**
1482
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) display name
1483
+ *
1484
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1485
+ */
1486
+ declare const setMaterialName: (material: string, name: string) => string;
1487
+ /**
1488
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) mining level
1489
+ *
1490
+ * Common values:
1491
+ * - `0` => Stone
1492
+ * - `1` => Iron
1493
+ * - `2` => Redstone
1494
+ * - `3` => Obsidian
1495
+ * - `4` => Cobalt
1496
+ * - `5` => Manyullyn
1497
+ * - `7` => Bedrockium
1498
+ *
1499
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1500
+ */
1501
+ declare const setMaterialMiningLevel: (material: string, n: number) => string;
1502
+ /**
1503
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) durability
1504
+ *
1505
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1506
+ */
1507
+ declare const setMaterialDurability: (material: string, n: number) => string;
1508
+ /**
1509
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) mining speed
1510
+ *
1511
+ * Common values:
1512
+ * - `1.5` => Blue / Green Slime
1513
+ * - `2.0` => Paper
1514
+ * - `3.5` => Wood
1515
+ * - `4.0` => Stone
1516
+ * - `5.0` => Cactus
1517
+ * - `6.0` => Iron
1518
+ * - `7.0` => Obsidian
1519
+ * - `8.0` => Alumite
1520
+ * - `9.0` => Manyullyn
1521
+ * - `14.0` => Cobalt
1522
+ *
1523
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1524
+ */
1525
+ declare const setMaterialSpeed: (material: string, n: number) => string;
1526
+ /**
1527
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) damage
1528
+ *
1529
+ * Common values:
1530
+ * - `0` => Wood, Blue / Green Slime, Paper
1531
+ * - `0.5` => Stone, Bone, Netherrack
1532
+ * - `1` => Iron, Flint, Cactus
1533
+ * - `1.5` => Alumite, Cobalt, Ardite
1534
+ * - `2` => Manyullyn
1535
+ *
1536
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1537
+ */
1538
+ declare const setMaterialDamage: (material: string, n: number) => string;
1539
+ /**
1540
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) handle modifier
1541
+ *
1542
+ * Common values:
1543
+ * - `0.3` => Paper
1544
+ * - `0.5` => Stone
1545
+ * - `0.7` => Flint
1546
+ * - `0.8` => Obsidian
1547
+ * - `1` => Wood, Cactus, Bone
1548
+ * - `1.2` => Netherrack
1549
+ * - `1.3` => Iron, Alumite
1550
+ * - `1.5` => Green Slime
1551
+ * - `1.75` => Cobalt
1552
+ * - `2` => Blue Slime, Ardite
1553
+ * - `2.5` => Manyullyn
1554
+ *
1555
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1556
+ */
1557
+ declare const setMaterialHandleModifier: (material: string, n: number) => string;
1558
+ /**
1559
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) reinforced level
1560
+ *
1561
+ * Common values:
1562
+ * - `1` => Iron
1563
+ * - `2` => Alumite, Cobalt
1564
+ * - `3` => Obsidian
1565
+ *
1566
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1567
+ */
1568
+ declare const setMaterialReinforcedLevel: (material: string, n: number) => string;
1569
+ /**
1570
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) stonebound level
1571
+ *
1572
+ * Common values:
1573
+ * - `1` => Stone, Netherrack
1574
+ * - `2` => Ardite
1575
+ *
1576
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1577
+ */
1578
+ declare const setMaterialLevelStonebound: (material: string, n: number) => string;
1579
+ /**
1580
+ * Set [Material](https://tinkers-construct.fandom.com/wiki/Material_Stats) display name colour
1581
+ *
1582
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1583
+ */
1584
+ declare const setMaterialStyle: (material: string, style: keyof typeof COLOR) => string;
1585
+ type RecipeBowStats = {
1586
+ durability: number;
1587
+ drawSpeed: number;
1588
+ flightSpeed: number;
1589
+ };
1590
+ /**
1591
+ * Set bow [Material](https://github.com/SlimeKnights/TinkersConstruct/blob/9ea7a0e60fe180aff591701b12c89da21da99289/src/main/java/tconstruct/weaponry/TinkerWeaponry.java#L312) stats
1592
+ *
1593
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1594
+ */
1595
+ declare const setBowMaterialStats: (material: string, recipe: RecipeBowStats) => string;
1596
+ /**
1597
+ * Set bow [Material](https://tinkers-construct.fandom.com/wiki/Shortbow) durability
1598
+ *
1599
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1600
+ */
1601
+ declare const setBowMaterialDurability: (material: string, durability: number) => string;
1602
+ /**
1603
+ * Set bow [Material](https://tinkers-construct.fandom.com/wiki/Shortbow) draw speed
1604
+ *
1605
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1606
+ */
1607
+ declare const setBowMaterialDrawspeed: (material: string, drawspeed: number) => string;
1608
+ /**
1609
+ * Set bow [Material](https://tinkers-construct.fandom.com/wiki/Shortbow) flight speed
1610
+ *
1611
+ * Vanilla bow speed is `3`
1612
+ *
1613
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1614
+ */
1615
+ declare const setBowMaterialFlightSpeed: (material: string, flightSpeed: number) => string;
1616
+ type RecipeArrowStats = {
1617
+ mass: number;
1618
+ breakChance: number;
1619
+ accuracy: number;
1620
+ };
1621
+ /**
1622
+ * Set arrow [Material](https://github.com/SlimeKnights/TinkersConstruct/blob/9ea7a0e60fe180aff591701b12c89da21da99289/src/main/java/tconstruct/weaponry/TinkerWeaponry.java#L335) stats
1623
+ *
1624
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1625
+ */
1626
+ declare const setArrowStats: (material: string, recipe: RecipeArrowStats) => string;
1627
+ /**
1628
+ * Set arrow [Material](https://github.com/SlimeKnights/TinkersConstruct/blob/9ea7a0e60fe180aff591701b12c89da21da99289/src/main/java/tconstruct/weaponry/TinkerWeaponry.java#L335) mass
1629
+ *
1630
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1631
+ */
1632
+ declare const setArrowMass: (material: string, mass: number) => string;
1633
+ /**
1634
+ * Set arrow [Material](https://github.com/SlimeKnights/TinkersConstruct/blob/9ea7a0e60fe180aff591701b12c89da21da99289/src/main/java/tconstruct/weaponry/TinkerWeaponry.java#L335) break chance
1635
+ *
1636
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1637
+ */
1638
+ declare const setArrowBreakChance: (material: string, breakChance: number) => string;
1639
+ /**
1640
+ * Set arrow [Material](https://github.com/SlimeKnights/TinkersConstruct/blob/9ea7a0e60fe180aff591701b12c89da21da99289/src/main/java/tconstruct/weaponry/TinkerWeaponry.java#L335) accuracy
1641
+ *
1642
+ * @see https://minetweaker3.aizistral.com/wiki/ModTweaker:TConstruct_Support
1643
+ */
1644
+ declare const setArrowAccuracy: (material: string, accuracy: number) => string;
1645
+
1646
+ export { type Bonus, COLOR, type Cast, ENCHANTMENTS, type Enchantment, FOCI, HARVESTER_TYPE, type Ingredient, MATERIALS, MODIFIERS, type Recipe, type RecipeArrowStats, type RecipeBlock, type RecipeBowStats, type RecipeCarpenter, type RecipeCastingBasin, type RecipeCastingTable, type RecipeCentrifuge, type RecipeChestLoot, type RecipeComposter, type RecipeCompressor, type RecipeDryingRack, type RecipeExtreme, type RecipeFabricator, type RecipeFabricatorGlass, type RecipeFermenter, type RecipeFermenterFuel, type RecipeFurnace, type RecipeGrinder, type RecipeHammer, type RecipeHarvester, type RecipeInductionSmelter, type RecipeInscriber, type RecipeInsolator, type RecipeItem, type RecipeLaser, type RecipeLiquid, type RecipeMagmaCrucible, type RecipeMaterial, type RecipeMoistener, type RecipePulverizer, type RecipeRedstoneFurnace, type RecipeRepairMaterial, type RecipeSawmill, type RecipeSieve, type RecipeSmelteryFluid, type RecipeSmelteryFuel, type RecipeSqueezer, type RecipeStill, type RecipeToolStats, type RecipeTransposerExtract, type RecipeTransposerFill, STYLE, type Shaped, type Shapeless, type Stack, type Text, type TextRich, add, addBiomeRubberTree, addBlacklistAutospawner, addCarpenter, addCastingBasin, addCastingTable, addCentrifuge, addChestLoot, addComposter, addCompressor, addCrucible, addCrucibleFuel, addDryingRack, addExtreme, addFabricator, addFabricatorGlass, addFermenter, addFermenterFuel, addFurnace, addFurnaceFuel, addGrinder, addHammer, addHarvester, addInductionSmelter, addInscriber, addInsolator, addLaser, addLaserFoci, addLaserOre, addMagmaCrucible, addMirror, addMoistener, addOreDict, addPlanter, addPulverizer, addQED, addRedstoneFurnace, addRepairMaterial, addSawmill, addSeed, addShaped, addShapeless, addSieve, addSludgeBoiler, addSmelteryAlloy, addSmelteryFluid, addSmelteryFuel, addSqueezer, addStill, addTransposerExtract, addTransposerFill, createBlock, createItem, createLiquid, createMaterial, hide, joinOreDict, mirrorOreDict, remove, removeBiomeRubberTree, removeBlacklistAutospawner, removeCarpenter, removeCastingBasin, removeCastingTable, removeCentrifuge, removeChestLoot, removeComposter, removeCompressor, removeCrucible, removeCrucibleFuel, removeDryingRack, removeExtreme, removeFabricator, removeFabricatorGlass, removeFermenter, removeFermenterFuel, removeFurnace, removeFurnaceFuel, removeGrinder, removeHammer, removeInductionSmelter, removeInscriber, removeInsolator, removeLaserFoci, removeLaserOre, removeMagmaCrucible, removeModifier, removeMoistener, removeOreDict, removePulverizer, removeQED, removeRedstoneFurnace, removeRepairMaterial, removeSawmill, removeSeed, removeShaped, removeShapeless, removeSieve, removeSludgeBoiler, removeSmelteryAlloy, removeSmelteryFluid, removeSmelteryFuel, removeSqueezer, removeStill, removeTransposerExtract, removeTransposerFill, rename, setArrowAccuracy, setArrowBreakChance, setArrowMass, setArrowStats, setBowMaterialDrawspeed, setBowMaterialDurability, setBowMaterialFlightSpeed, setBowMaterialStats, setMaterialDamage, setMaterialDurability, setMaterialHandleModifier, setMaterialLevelStonebound, setMaterialMiningLevel, setMaterialName, setMaterialReinforcedLevel, setMaterialSpeed, setMaterialStats, setMaterialStyle, show, withEnchantment, withName, withTag, withTooltip, withTooltipShift };