forked from CraftTweaker/CraftTweaker-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
1030 lines (1030 loc) · 63.5 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# If you add a page, you must add it to the index here
nav:
- Home: 'index.md'
- Getting Started With Scripts: 'Getting_Started.md'
- Using this wiki: 'UsingThisWiki.md'
- Commands: 'Vanilla/Commands.md'
- CTGUI: 'Vanilla/CTGUI.md'
- Global functions: 'Vanilla/Global_Functions.md'
- Bracket Handlers: 'Brackets/Brackets.md'
- Advanced Functions:
- Arrays and Loops: 'AdvancedFunctions/Arrays_and_Loops.md'
- Associative Arrays (Maps): 'AdvancedFunctions/Associative_Arrays.md'
- Calculations: 'AdvancedFunctions/Calculations.md'
- Conditional Statements: 'AdvancedFunctions/Conditional_Statements.md'
- Cross-Script Reference: 'AdvancedFunctions/Cross-Script_Reference.md'
- Custom Functions: 'AdvancedFunctions/Custom_Functions.md'
- Global and Static Variables: 'AdvancedFunctions/Global_Static_Variables.md'
- Import: 'AdvancedFunctions/Import.md'
- Preprocessors:
- On Preprocessors: 'AdvancedFunctions/Preprocessors/On_Preprocessors.md'
- Debug: 'AdvancedFunctions/Preprocessors/DebugPreprocessor.md'
- Ignore Bracket Errors: 'AdvancedFunctions/Preprocessors/IgnoreBracketErrorPreprocessor.md'
- Loader: 'AdvancedFunctions/Preprocessors/LoaderPreprocessor.md'
- Mod Loaded: 'AdvancedFunctions/Preprocessors/ModLoadedPreprocessor.md'
- No Run: 'AdvancedFunctions/Preprocessors/NoRunPreprocessor.md'
- Priority: 'AdvancedFunctions/Preprocessors/PriorityPreprocessor.md'
- Tips and Tricks:
- Foreword: 'Tips_Tricks/Foreword.md'
- Items:
- Using IItemDefinitions for meta ranges: 'Tips_Tricks/Items/IItemDefinition_Metas.md'
- General Tips:
- Split your scripts into multiple files: 'Tips_Tricks/General/Split_Files.md'
- Use Loops to make your scripts easier to read: 'Tips_Tricks/General/Loops_Readability.md'
- Vanilla:
- Biomes:
- IBiome: 'Vanilla/Biomes/IBiome.md'
- Blocks:
- IBlock: 'Vanilla/Blocks/IBlock.md'
- IBlockDefinition: 'Vanilla/Blocks/IBlockDefinition.md'
- IBlockPattern: 'Vanilla/Blocks/IBlockPattern.md'
- IBlockProperties: 'Vanilla/Blocks/IBlockProperties.md'
- IBlockState: 'Vanilla/Blocks/IBlockState.md'
- IBlockStateMatcher: 'Vanilla/Blocks/IBlockStateMatcher.md'
- IMaterial: 'Vanilla/Blocks/IMaterial.md'
- IMobilityFlag: 'Vanilla/Blocks/IMobilityFlag.md'
- Brackets:
- Creative Tabs: 'Vanilla/Brackets/Bracket_CreativeTab.md'
- Damage Source: 'Vanilla/Brackets/Bracket_DamageSource.md'
- Enchantments: 'Vanilla/Brackets/Bracket_Enchantment.md'
- Items: 'Vanilla/Brackets/Bracket_Item.md'
- BlockStates: 'Vanilla/Brackets/Bracket_BlockState.md'
- Entities: 'Vanilla/Brackets/Bracket_Entity.md'
- Liquids: 'Vanilla/Brackets/Bracket_Liquid.md'
- Ores: 'Vanilla/Brackets/Bracket_Ore.md'
- Potions: 'Vanilla/Brackets/Bracket_Potion.md'
- Commands:
- ICommandManager: 'Vanilla/Commands/ICommandManager.md'
- ICommand: 'Vanilla/Commands/ICommand.md'
- ICommandSender: 'Vanilla/Commands/ICommandSender.md'
- Container:
- IContainer: 'Vanilla/Container/IContainer.md'
- Creative Tabs:
- ICreativeTab: 'Vanilla/CreativeTabs/ICreativeTab.md'
- Enchantments:
- IEnchantment: 'Vanilla/Enchantments/IEnchantment.md'
- IEnchantmentDefinition: 'Vanilla/Enchantments/IEnchantmentDefinition.md'
- Data:
- IData: 'Vanilla/Data/IData.md'
- DataMap: 'Vanilla/Data/DataMap.md'
- Damage:
- IDamageSource: 'Vanilla/Damage/IDamageSource.md'
- Entities:
- Attributes:
- IEntityAttribute: 'Vanilla/Entities/Attributes/IEntityAttribute.md'
- IEntityAttributeInstance: 'Vanilla/Entities/Attributes/IEntityAttributeInstance.md'
- IEntityAttributeModifier: 'Vanilla/Entities/Attributes/IEntityAttributeModifier.md'
- IEntity: 'Vanilla/Entities/IEntity.md'
- IEntityAgeable: 'Vanilla/Entities/IEntityAgeable.md'
- IEntityAnimal: 'Vanilla/Entities/IEntityAnimal.md'
- IEntityCreature: 'Vanilla/Entities/IEntityCreature.md'
- IEntityDefinition: 'Vanilla/Entities/IEntityDefinition.md'
- IEntityDrop: 'Vanilla/Entities/IEntityDrop.md'
- IEntityDropFunction: 'Vanilla/Entities/IEntityDropFunction.md'
- IEntityEquipmentSlot: 'Vanilla/Entities/IEntityEquipmentSlot.md'
- IEntityItem: 'Vanilla/Entities/IEntityItem.md'
- IEntityLiving: 'Vanilla/Entities/IEntityLiving.md'
- IEntityLivingBase: 'Vanilla/Entities/IEntityLivingBase.md'
- IEntityMob: 'Vanilla/Entities/IEntityMob.md'
- IEntityXp: 'Vanilla/Entities/IEntityXp.md'
- Events:
- Events: 'Vanilla/Events/Events.md'
- IEventManager: 'Vanilla/Events/IEventManager.md'
- Events:
#Event superinterfaces/Shared stuff
- IBlockEvent: 'Vanilla/Events/Events/IBlockEvent.md'
- IEventCancelable: 'Vanilla/Events/Events/IEventCancelable.md'
- IEventHasResult: 'Vanilla/Events/Events/IEventHasResult.md'
- IEventPositionable: 'Vanilla/Events/Events/IEventPositionable.md'
- IMinecartEvent: 'Vanilla/Events/Events/IMinecartEvent.md'
- IPotionBrewEvent: 'Vanilla/Events/Events/IPotionBrewEvent.md'
- IProcessableEvent: 'Vanilla/Events/Events/IProcessableEvent.md'
- IProjectileImpactEvent: 'Vanilla/Events/Events/IProjectileImpactEvent.md'
- IEntityEvent: 'Vanilla/Events/Events/IEntityEvent.md'
- IExplosionEvent: 'Vanilla/Events/Events/IExplosionEvent.md'
- ILivingEvent: 'Vanilla/Events/Events/ILivingEvent.md'
- IPlayerEvent: 'Vanilla/Events/Events/IPlayerEvent.md'
#Actual Events below here
- AnimalTameEvent: 'Vanilla/Events/Events/AnimalTame.md'
- BlockBreakEvent: 'Vanilla/Events/Events/BlockBreak.md'
- BlockHarvestDropsEvent: 'Vanilla/Events/Events/BlockHarvestDrops.md'
- BlockPlaceEvent: 'Vanilla/Events/Events/BlockPlace.md'
- CommandEvent: 'Vanilla/Events/Events/CommandEvent.md'
- CriticalHitEvent: 'Vanilla/Events/Events/CriticalHit.md'
- CropGrowPostEvent: 'Vanilla/Events/Events/CropGrowPost.md'
- CropGrowPreEvent: 'Vanilla/Events/Events/CropGrowPre.md'
- EnchantmentLevelSetEvent: 'Vanilla/Events/Events/EnchantmentLevelSet.md'
- EnderTeleportEvent: 'Vanilla/Events/Events/EnderTeleport.md'
- EntityLivingAttackedEvent: 'Vanilla/Events/Events/EntityLivingAttacked.md'
- EntityLivingDeathDropsEvent: 'Vanilla/Events/Events/EntityLivingDeathDrops.md'
- EntityLivingDeathEvent: 'Vanilla/Events/Events/EntityLivingDeath.md'
- EntityLivingFallEvent: 'Vanilla/Events/Events/EntityLivingFall.md'
- EntityLivingHurtEvent: 'Vanilla/Events/Events/EntityLivingHurt.md'
- EntityLivingJumpEvent: 'Vanilla/Events/Events/EntityLivingJump.md'
- EntityLivingSpawnEvent: 'Vanilla/Events/Events/EntityLivingSpawn.md'
- EntityMountEvent: 'Vanilla/Events/Events/EntityMount.md'
- EntityStruckByLightningEvent: 'Vanilla/Events/Events/EntityStruckByLightning.md'
- EntityTravelToDimensionEvent: 'Vanilla/Events/Events/EntityTravelToDimension.md'
- ExplosionDetonateEvent: 'Vanilla/Events/Events/ExplosionDetonate.md'
- ExplosionStartEvent: 'Vanilla/Events/Events/ExplosionStart.md'
- FarmlandTrampleEvent: 'Vanilla/Events/Events/FarmlandTrample.md'
- ItemExpireEvent: 'Vanilla/Events/Events/ItemExpire.md'
- ItemFishedEvent: 'Vanilla/Events/Events/ItemFished.md'
- ItemTossEvent: 'Vanilla/Events/Events/ItemToss.md'
- LivingDestroyBlockEvent: 'Vanilla/Events/Events/LivingDestroyBlock.md'
- LivingEntityUseItemEvent: 'Vanilla/Events/Events/LivingEntityUseItem.md'
- LivingExperienceDropEvent: 'Vanilla/Events/Events/LivingExperienceDrop.md'
- LivingKnockBackEvent: 'Vanilla/Events/Events/LivingKnockBack.md'
- LootingLevelEvent: 'Vanilla/Events/Events/LootingLevel.md'
- MinecartCollisionEvent: 'Vanilla/Events/Events/MinecartCollision.md'
- MinecartInteractEvent: 'Vanilla/Events/Events/MinecartInteract.md'
- MobGriefingEvent: 'Vanilla/Events/Events/MobGriefing.md'
- PlayerAdvancementEvent: 'Vanilla/Events/Events/PlayerAdvancement.md'
- PlayerAnvilRepairEvent: 'Vanilla/Events/Events/PlayerAnvilRepair.md'
- PlayerAttackEntityEvent: 'Vanilla/Events/Events/PlayerAttackEntity.md'
- PlayerBonemealEvent: 'Vanilla/Events/Events/PlayerBonemeal.md'
- PlayerBreakSpeedEvent: 'Vanilla/Events/Events/PlayerBreakSpeed.md'
- PlayerBrewedPotionEvent: 'Vanilla/Events/Events/PlayerBrewedPotion.md'
- PlayerChangedDimensionEvent: 'Vanilla/Events/Events/PlayerChangedDimension.md'
- PlayerCloseContainerEvent: 'Vanilla/Events/Events/PlayerCloseContainer.md'
- PlayerCraftedEvent: 'Vanilla/Events/Events/PlayerCrafted.md'
- PlayerDeathDropsEvent: 'Vanilla/Events/Events/PlayerDeathDrops.md'
- PlayerDestroyItemEvent: 'Vanilla/Events/Events/PlayerDestroyItem.md'
- PlayerFillBucketEvent: 'Vanilla/Events/Events/PlayerFillBucket.md'
- PlayerInteractBlockEvent: 'Vanilla/Events/Events/PlayerInteractBlock.md'
- PlayerInteractEntityEvent: 'Vanilla/Events/Events/PlayerInteractEntity.md'
- PlayerInteractEvent: 'Vanilla/Events/Events/PlayerInteract.md'
- PlayerItemPickupEvent: 'Vanilla/Events/Events/PlayerItemPickup.md'
- PlayerLeftClickBlockEvent: 'Vanilla/Events/Events/PlayerLeftClickBlock.md'
- PlayerLoggedInEvent: 'Vanilla/Events/Events/PlayerLoggedIn.md'
- PlayerLoggedOutEvent: 'Vanilla/Events/Events/PlayerLoggedOut.md'
- PlayerOpenContainerEvent: 'Vanilla/Events/Events/PlayerOpenContainer.md'
- PlayerPickupItemEvent: 'Vanilla/Events/Events/PlayerPickupItem.md'
- PlayerPickupXpEvent: 'Vanilla/Events/Events/PlayerPickupXp.md'
- PlayerRespawnEvent: 'Vanilla/Events/Events/PlayerRespawn.md'
- PlayerRightClickItemEvent: 'Vanilla/Events/Events/PlayerRightClickItem.md'
- PlayerSetSpawnEvent: 'Vanilla/Events/Events/PlayerSetSpawn.md'
- PlayerSleepInBedEvent: 'Vanilla/Events/Events/PlayerSleepInBed.md'
- PlayerSmeltedEvent: 'Vanilla/Events/Events/PlayerSmelted.md'
- PlayerTickEvent: 'Vanilla/Events/Events/PlayerTick.md'
- PlayerUseHoeEvent: 'Vanilla/Events/Events/PlayerUseHoe.md'
- PlayerVisibilityEvent: 'Vanilla/Events/Events/PlayerVisibility.md'
- PotionBrewPostEvent: 'Vanilla/Events/Events/PotionBrewPost.md'
- PotionBrewPreEvent: 'Vanilla/Events/Events/PotionBrewPre.md'
- ProjectileImpactArrowEvent: 'Vanilla/Events/Events/ProjectileImpactArrow.md'
- ProjectileImpactFireballEvent: 'Vanilla/Events/Events/ProjectileImpactFireball.md'
- ProjectileImpactThrowableEvent: 'Vanilla/Events/Events/ProjectileImpactThrowable.md'
- SleepingLocationCheckEvent: 'Vanilla/Events/Events/SleepingLocationCheck.md'
- SleepingTimeCheckEvent: 'Vanilla/Events/Events/SleepingTimeCheck.md'
- Game:
- IClient: 'Vanilla/Game/IClient.md'
- IGame: 'Vanilla/Game/IGame.md'
- IServer: 'Vanilla/Game/IServer.md'
- ITeam: 'Vanilla/Game/ITeam.md'
- Mods: 'Vanilla/Game/Mods.md'
- Items:
- IItemDefinition: 'Vanilla/Items/IItemDefinition.md'
- IItemStack: 'Vanilla/Items/IItemStack.md'
- Item Conditions: 'Vanilla/Items/Item_Conditions.md'
- Item Transformers: 'Vanilla/Items/Item_Transformers.md'
- Tooltips: 'Vanilla/Items/Tooltips.md'
- Renaming: 'Vanilla/Items/Renaming.md'
- Weighted ItemStack: 'Vanilla/Items/WeightedItemStack.md'
- Liquids:
- ILiquidStack: 'Vanilla/Liquids/ILiquidStack.md'
- ILiquidDefinition: 'Vanilla/Liquids/ILiquidDefinition.md'
- WeightedLiquidStack: 'Vanilla/Liquids/WeightedLiquidStack.md'
- Ore Dictionary:
- IOreDict: 'Vanilla/OreDict/IOreDict.md'
- IOreDictEntry: 'Vanilla/OreDict/IOreDictEntry.md'
- Players:
- IFoodStats: 'Vanilla/Players/IFoodStats.md'
- IPlayer: 'Vanilla/Players/IPlayer.md'
- IUser: 'Vanilla/Players/IUser.md'
- Potions:
- IPotion: 'Vanilla/Potions/IPotion.md'
- IPotionEffect: 'Vanilla/Potions/IPotionEffect.md'
- Recipes:
- Brewing Recipes: 'Vanilla/Recipes/Recipes_Brewing_Stand.md'
- Crafting Table Recipes:
- Crafting Table Recipes: 'Vanilla/Recipes/Crafting/Recipes_Crafting_Table.md'
- Recipe Functions: 'Vanilla/Recipes/Crafting/Recipe_Functions.md'
- ICraftingRecipe: 'Vanilla/Recipes/Crafting/ICraftingRecipe.md'
- ICraftingInventory: 'Vanilla/Recipes/Crafting/ICraftingInventory.md'
- ICraftingInfo: 'Vanilla/Recipes/Crafting/ICraftingInfo.md'
- Furnace Recipes:
- Furnace Recipes: 'Vanilla/Recipes/Furnace/Recipes_Furnace.md'
- IFurnaceRecipe: 'Vanilla/Recipes/Furnace/IFurnaceRecipe.md'
- Seed Drops: 'Vanilla/Recipes/Seeds.md'
- Tile-Entity:
- IMobSpawnerBaseLogic: 'Vanilla/TileEntity/IMobSpawnerBaseLogic.md'
- Utils:
- IFormattedText: 'Vanilla/Utils/IFormattedText.md'
- IFormatter: 'Vanilla/Utils/IFormatter.md'
- ItemUtils: 'Vanilla/Utils/IItemUtils.md'
- Logger: 'Vanilla/Utils/Logger.md'
- Position3f: 'Vanilla/Utils/Position3f.md'
- Variable Types:
- Types Overview: 'Vanilla/Variable_Types/Variable_Types.md'
- Basic Variable Functions: 'Vanilla/Variable_Types/Basic_Variables_Functions.md'
- IIngredient: 'Vanilla/Variable_Types/IIngredient.md'
- World:
- IBlockAccess: 'Vanilla/World/IBlockAccess.md'
- IBlockPos: 'Vanilla/World/IBlockPos.md'
- IFacing: 'Vanilla/World/IFacing.md'
- IRayTraceResult: 'Vanilla/World/IRayTraceResult.md'
- IVector3d: 'Vanilla/World/IVector3d.md'
- IWorld: 'Vanilla/World/IWorld.md'
- IWorldInfo: 'Vanilla/World/IWorldInfo.md'
- IWorldProvider: 'Vanilla/World/IWorldProvider.md'
- Mods:
- Advanced Mortars:
- Advanced Mortars: 'Mods/Advanced_Mortars/Advanced_Mortars.md'
- CraftTweaker Support: 'Mods/Advanced_Mortars/CraftTweaker_Support/Mortars.md'
- Alchemistry:
- Atomizer: 'Mods/Alchemistry/Atomizer.md'
- Chemical Combiner: 'Mods/Alchemistry/ChemicalCombiner.md'
- Chemical Dissolver: 'Mods/Alchemistry/Dissolver.md'
- Compound Creation: 'Mods/Alchemistry/CreateCompound.md'
- Electrolyzer: 'Mods/Alchemistry/Electrolyzer.md'
- Element Creation: 'Mods/Alchemistry/CreateElement.md'
- Evaporator: 'Mods/Alchemistry/Evaporator.md'
- Liquifier: 'Mods/Alchemistry/Liquifier.md'
- Get Metadata: 'Mods/Alchemistry/MetaGet.md'
- Applied Energistics 2:
- Applied Energistics 2: 'Mods/Applied_Energistics_2/Applied_Energistics_2.md'
- Cannon: 'Mods/Applied_Energistics_2/Cannon.md'
- Grindstone: 'Mods/Applied_Energistics_2/Grindstone.md'
- Inscriber: 'Mods/Applied_Energistics_2/Inscriber.md'
- P2P Attunement: 'Mods/Applied_Energistics_2/P2P_Attunement.md'
- Spatial I/O: 'Mods/Applied_Energistics_2/Spatial.md'
- Arcane Archives:
- Gem Cutter's Table: 'Mods/Arcane_Archives/gct.md'
- Astral Sorcery:
- About Astral Sorcery: 'Mods/Astral_Sorcery/Astral_Sorcery.md'
- Crafting:
- Altar: 'Mods/Astral_Sorcery/Altar.md'
- Grindstone: 'Mods/Astral_Sorcery/Grindstone.md'
- Light-Well: 'Mods/Astral_Sorcery/Well.md'
- Liquid Interaction: 'Mods/Astral_Sorcery/LiquidInteraction.md'
- Starlight Infusion: 'Mods/Astral_Sorcery/Infusion.md'
- Starlight Transmutation: 'Mods/Astral_Sorcery/Transmutation.md'
- Util: 'Mods/Astral_Sorcery/Util.md'
- Boson:
- About Boson: 'Mods/Boson/About.md'
- Names in Boson: 'Mods/Boson/Names.md'
- The ZenScriptX Project: 'Mods/Boson/ZenScriptX.md'
- Loaders:
- Tags: 'Mods/Boson/Loaders/Tags.md'
- Preprocessor Directives:
- Experimental Flags: 'Mods/Boson/Preprocessor/Exp.md'
- Tags:
- The Concept: 'Mods/Boson/Tags/Concept.md'
- The Bracket Handler: 'Mods/Boson/Tags/BracketHandler.md'
- Tag: 'Mods/Boson/Tags/Tag.md'
- TagType: 'Mods/Boson/Tags/TagType.md'
- TagIngredient: 'Mods/Boson/Tags/TagIngredient.md'
- Functional Interfaces:
- A Primer on Functional Interfaces: 'Mods/Boson/Functions/Concept.md'
- Available Interfaces: 'Mods/Boson/Functions/List.md'
- Math Functions:
- The Concept: 'Mods/Boson/Math/Concept.md'
- Math: 'Mods/Boson/Math/Math.md'
- Sequences:
- The Concept: 'Mods/Boson/Sequences/Concept.md'
- Obtaining Sequences: 'Mods/Boson/Sequences/Obtaining.md'
- Class Documentation: 'Mods/Boson/Sequences/Docs.md'
- Reflection:
- The Concept: 'Mods/Boson/Reflection/Concept.md'
- Class: 'Mods/Boson/Reflection/Class.md'
- NativeClass: 'Mods/Boson/Reflection/NativeClass.md'
- BuildCraft:
- Home: 'Mods/BuildCraft/index.md'
- Crafting:
- AssemblyTable: 'Mods/BuildCraft/Crafting/AssemblyTable.md'
- Energy:
- CombustionEngine: 'Mods/BuildCraft/Energy/CombustionEngine.md'
- Calculator:
- Algorithm Seperator: 'Mods/Calculator/Algorithm_Seperator.md'
- Atomic Calculator: 'Mods/Calculator/Atomic_Calculator.md'
- Basic Calculator: 'Mods/Calculator/Basic_Calculator.md'
- Conductor Mast: 'Mods/Calculator/Conductor_Mast.md'
- Extraction Chamber: 'Mods/Calculator/Extraction_Chamber.md'
- Fabrication Chamber: 'Mods/Calculator/Fabrication_Chamber.md'
- Flawless Calculator: 'Mods/Calculator/Flawless_Calculator.md'
- Glowstone Extractor: 'Mods/Calculator/Glowstone_Extractor.md'
- Health Processor: 'Mods/Calculator/Health_Processor.md'
- Precision Chamber: 'Mods/Calculator/Precision_Chamber.md'
- Processing Chamber: 'Mods/Calculator/Processing_Chamber.md'
- Reassembly Chamber: 'Mods/Calculator/Reassembly_Chamber.md'
- Redstone Extractor: 'Mods/Calculator/Redstone_Extractor.md'
- Restoration Chamber: 'Mods/Calculator/Restoration_Chamber.md'
- Scientific Calculator: 'Mods/Calculator/Scientific_Calculator.md'
- Starch Extractor: 'Mods/Calculator/Starch_Extractor.md'
- Stone Seperator: 'Mods/Calculator/Stone_Seperator.md'
- CompatSkills:
- CompatSkills: 'Mods/CompatSkills/CompatSkills.md'
- Requirements:
- Requirements: 'Mods/CompatSkills/Requirements/Requirements.md'
- Requirement Types:
- Advancements: 'Mods/CompatSkills/Requirements/Requirement_Types/Advancements.md'
- Dimensions: 'Mods/CompatSkills/Requirements/Requirement_Types/Dimensions.md'
- Dynamic Sword Skills: 'Mods/CompatSkills/Requirements/Requirement_Types/Dynamic_Sword_Skills.md'
- GameStages: 'Mods/CompatSkills/Requirements/Requirement_Types/GameStages.md'
- Inverted Requirements: 'Mods/CompatSkills/Requirements/Requirement_Types/Inverted_Requirements.md'
- Items: 'Mods/CompatSkills/Requirements/Requirement_Types/Items.md'
- Logic Operators:
- IMPORTANT NOTICE: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/1_READ_ME_FIRST.md'
- AND-Gate: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/AND-Gate.md'
- NAND-Gate: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/NAND-Gate.md'
- NOR-Gate: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/NOR-Gate.md'
- NOT-Gate: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/NOT-Gate.md'
- OR-Gate: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/OR-Gate.md'
- XNOR-Gate: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/XNOR-Gate.md'
- XOR-Gate: 'Mods/CompatSkills/Requirements/Requirement_Types/Logic_Operators/XOR-Gate.md'
- Ore Dictionary: 'Mods/CompatSkills/Requirements/Requirement_Types/Ore_Dictionary.md'
- Skills: 'Mods/CompatSkills/Requirements/Requirement_Types/Skills.md'
- Tool Harvest-Level: 'Mods/CompatSkills/Requirements/Requirement_Types/Tool_Harvest-Level.md'
- Traits: 'Mods/CompatSkills/Requirements/Requirement_Types/Traits.md'
- Skill & Traits: 'Mods/CompatSkills/Requirements/Skills_Traits.md'
- Supports:
- Baubles: 'Mods/CompatSkills/Supports/Baubles.md'
- Blood Magic:
- Blood Magic: 'Mods/CompatSkills/Supports/BloodMagic/Blood_Magic.md'
- Binding Support: 'Mods/CompatSkills/Supports/BloodMagic/Binding_Support.md'
- Ritual Support: 'Mods/CompatSkills/Supports/BloodMagic/Ritual_Support.md'
- GameStages:
- GameStages: 'Mods/CompatSkills/Supports/GameStages/GameStages.md'
- GameStages Locks: 'Mods/CompatSkills/Supports/GameStages/GameStagesLock.md'
- GameStages Unlockables: 'Mods/CompatSkills/Supports/GameStages/GameStagesUnlockables.md'
- Immersive Engineering: 'Mods/CompatSkills/Supports/Immersive_Engineering.md'
- Magneticraft: 'Mods/CompatSkills/Supports/Magneticraft.md'
- Minecraft:
- Armor-Value Locking: 'Mods/CompatSkills/Supports/Minecraft/Armor_Point_Locking.md'
- Attack-Damage Locking: 'Mods/CompatSkills/Supports/Minecraft/Attack_Damage_Locking.md'
- Dimension Locking: 'Mods/CompatSkills/Supports/Minecraft/Dimension_Locking.md'
- Entity Damage Locking: 'Mods/CompatSkills/Supports/Minecraft/Entity_Damage_Locking.md'
- Mounting Locking: 'Mods/CompatSkills/Supports/Minecraft/Mount_Locking.md'
- Tame Locking: 'Mods/CompatSkills/Supports/Minecraft/Tame_Locking.md'
- Tile-Entity Locking: 'Mods/CompatSkills/Supports/Minecraft/TileEntity_Locking.md'
- ProjectE: 'Mods/CompatSkills/Supports/ProjectE/EMC-Locks.md'
- Reskillable:
- Bracket Handlers: 'Mods/CompatSkills/Supports/Reskillable/BracketHandlers.md'
- Level-Lock Support: 'Mods/CompatSkills/Supports/Reskillable/LevelLockHandler.md'
- Custom Skills:
- Custom Skills: 'Mods/CompatSkills/Supports/Reskillable/CustomSkills/Custom_Skills.md'
- Full-Scale example: 'Mods/CompatSkills/Supports/Reskillable/CustomSkills/Full_Scale_Example.md'
- Custom Traits:
- Custom Traits: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Custom_Traits.md'
- Events Info: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events.md'
- Events:
- onAttackMob: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onAttackMob.md'
- onBlockDrops: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onBlockDrops.md'
- onBreakSpeed: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onBreakSpeed.md'
- onEnderTeleport: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onEnderTeleport.md'
- onHurt: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onHurt.md'
- onKillMob: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onKillMob.md'
- onMobDrops: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onMobDrops.md'
- onPlayerTick: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onPlayerTick.md'
- onRightClickBlock: 'Mods/CompatSkills/Supports/Reskillable/CustomTraits/Events/onRightClickBlock.md'
- Mod-Lock Tweaker: 'Mods/CompatSkills/Supports/Reskillable/ModLockTweaker.md'
- NBT-Lock Tweaker: 'Mods/CompatSkills/Supports/Reskillable/NBTLockTweaker.md'
- Requirement Tweaker: 'Mods/CompatSkills/Supports/Reskillable/RequirementTweaker.md'
- Skill Change Tweaker: 'Mods/CompatSkills/Supports/Reskillable/Skill_Change_Tweaker.md'
- Skill Hiding: 'Mods/CompatSkills/Supports/Reskillable/Skill_Hiding.md'
- Transmutation:
- Default Transmutations: 'Mods/CompatSkills/Supports/Reskillable/Transmutations/Default_Transmutations.md'
- Additions: 'Mods/CompatSkills/Supports/Reskillable/Transmutations/Additions_Tweaker.md'
- Removals: 'Mods/CompatSkills/Supports/Reskillable/Transmutations/Removal_Tweaker.md'
- Clear: 'Mods/CompatSkills/Supports/Reskillable/Transmutations/Clear_Tweaker.md'
- Thaumcraft:
- Knowledge Locking: 'Mods/CompatSkills/Supports/Thaumcraft/Knowledge_Locking.md'
- Research Locking: 'Mods/CompatSkills/Supports/Thaumcraft/Research_Locking.md'
- Tinker's Construct:
- Tinker's Construct: 'Mods/CompatSkills/Supports/TConstruct/TConstruct.md'
- Material-Locks:
- Material-Locks: 'Mods/CompatSkills/Supports/TConstruct/MaterialLocks/MaterialLock.md'
- Modifier-Locks:
- Modifier-Locks: 'Mods/CompatSkills/Supports/TConstruct/ModifierLocks/ModifierLock.md'
- PlayerExpansion:
- PlayerExpansion: 'Mods/CompatSkills/Player_Expansion/PlayerExpansion.md'
- Wrapper:
- CTPlayerData: 'Mods/CompatSkills/Player_Expansion/Wrapper/CTPlayerData.md'
- CTPlayerSkillInfo: 'Mods/CompatSkills/Player_Expansion/Wrapper/CTPlayerSkillInfo.md'
- ContentTweaker:
- ContentTweaker: 'Mods/ContentTweaker/ContentTweaker.md'
- Commands: 'Mods/ContentTweaker/Commands.md'
- WalkThrough: 'Mods/ContentTweaker/WalkThrough.md'
- Vanilla:
- Brackets:
- Block Material: 'Mods/ContentTweaker/Vanilla/Brackets/Bracket_Block_Material.md'
- Blocks: 'Mods/ContentTweaker/Vanilla/Brackets/Bracket_Blocks.md'
- Creative Tab: 'Mods/ContentTweaker/Vanilla/Brackets/Bracket_Creative_Tab.md'
- SoundType: 'Mods/ContentTweaker/Vanilla/Brackets/Bracket_Sound_Type.md'
- SoundEvent: 'Mods/ContentTweaker/Vanilla/Brackets/Bracket_Sound_Event.md'
- Creatable Content:
- Vanilla Factory: 'Mods/ContentTweaker/Vanilla/Creatable_Content/VanillaFactory.md'
- Block: 'Mods/ContentTweaker/Vanilla/Creatable_Content/Block.md'
- Creative Tab: 'Mods/ContentTweaker/Vanilla/Creatable_Content/Creative_Tab.md'
- Enchantments: 'Mods/ContentTweaker/Vanilla/Enchantments/EnchantmentBuilder.md'
- Fluid: 'Mods/ContentTweaker/Vanilla/Creatable_Content/Fluid.md'
- Item: 'Mods/ContentTweaker/Vanilla/Creatable_Content/Item.md'
- Food Item: 'Mods/ContentTweaker/Vanilla/Creatable_Content/ItemFood.md'
- Advanced Functionality:
- Commands: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Commands.md'
- Map: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Map.md'
- Functions:
- ActionResult: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/ActionResult.md'
- IBlockAction: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IBlockAction.md'
- IBlockColorSupplier: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IBlockColorSupplier.md'
- IBlockDropHandler: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IBlockDropHandler.md'
- IItemColorSupplier: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemColorSupplier.md'
- IItemDestroyedBlock: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemDestroyedBlock.md'
- IItemDestroySpeed: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemDestroySpeed.md'
- IItemFoodEaten: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemFoodEaten.md'
- IItemGetContainerItem: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemGetContainerItem.md'
- IItemRightClick: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemRightClick.md'
- IItemStackSupplier: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemStackSupplier.md'
- IItemUse: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemUse.md'
- IItemUseFinish: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemUseFinish.md'
- IItemUpdate: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemUpdate.md'
- ILocalizedNameSupplier: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/ILocalizedNameSupplier.md'
- IResourceLocationSupplier: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IResourceLocationSupplier.md'
- Types:
- Block:
- Facing: 'Mods/ContentTweaker/Vanilla/Types/Block/Facing.md'
- ICTBlockState: 'Mods/ContentTweaker/Vanilla/Types/Block/ICTBlockState.md'
- IBlockPos: 'Mods/ContentTweaker/Vanilla/Types/Block/IBlockPos.md'
- IMaterialDefinition: 'Mods/ContentTweaker/Vanilla/Types/Block/IMaterialDefinition.md'
- MCAxisAlignedBB: 'Mods/ContentTweaker/Vanilla/Types/Block/MCAxisAlignedBB.md'
- PushReaction: 'Mods/ContentTweaker/Vanilla/Types/Block/PushReaction.md'
- Color:
- Color: 'Mods/ContentTweaker/Vanilla/Types/Color/Color.md'
- Drops:
- ICTItemList: 'Mods/ContentTweaker/Vanilla/Types/Drops/ICTItemList.md'
- Item:
- IMutableItemStack: 'Mods/ContentTweaker/Vanilla/Types/Item/IMutableItemStack.md'
- Player:
- Hand: 'Mods/ContentTweaker/Vanilla/Types/Player/Hand.md'
- ICTPlayer: 'Mods/ContentTweaker/Vanilla/Types/Player/ICTPlayer.md'
- Resources:
- CTResourceLocation: 'Mods/ContentTweaker/Vanilla/Types/Resources/CTResourceLocation.md'
- Sound:
- ISoundTypeDefinition: 'Mods/ContentTweaker/Vanilla/Types/Sound/ISoundTypeDefinition.md'
- ISoundEventDefinition: 'Mods/ContentTweaker/Vanilla/Types/Sound/ISoundEventDefinition.md'
- World:
- IWorld: 'Mods/ContentTweaker/Vanilla/Types/World/IWorld.md'
- CTRandom: 'Mods/ContentTweaker/Vanilla/Types/World/CTRandom.md'
- Material System:
- Introduction: 'Mods/ContentTweaker/Materials/Introduction.md'
- MaterialSystem: 'Mods/ContentTweaker/Materials/MaterialSystem.md'
- DropTableBuilder: 'Mods/ContentTweaker/Materials/DropTableBuilder.md'
- Brackets:
- Material Part Bracket Handler: 'Mods/ContentTweaker/Materials/Brackets/Bracket_MaterialPart.md'
- Materials:
- Material: 'Mods/ContentTweaker/Materials/Materials/Material.md'
- Material Builder: 'Mods/ContentTweaker/Materials/Materials/Material_Builder.md'
- Material Part: 'Mods/ContentTweaker/Materials/Materials/MaterialPart.md'
- Material Part Data: 'Mods/ContentTweaker/Materials/Materials/MaterialPartData.md'
- Functions:
- IRegisterMaterialPart: 'Mods/ContentTweaker/Materials/Materials/Functions/IRegisterMaterialPart.md'
- MaterialPartColorSupplier: 'Mods/ContentTweaker/Materials/Materials/Functions/MaterialPartColorSupplier.md'
- MaterialPartLocalizedNameSupplier: 'Mods/ContentTweaker/Materials/Materials/Functions/MaterialPartLocalizedNameSupplier.md'
- Parts:
- Part: 'Mods/ContentTweaker/Materials/Parts/Part.md'
- Part Builder: 'Mods/ContentTweaker/Materials/Parts/Part_Builder.md'
- PartType: 'Mods/ContentTweaker/Materials/Parts/PartType.md'
- PartDataPiece: 'Mods/ContentTweaker/Materials/Parts/PartDataPiece.md'
- Chickens:
- ChickenFactory: 'Mods/ContentTweaker/Chickens/ChickenFactory.md'
- ChickenRepresentation: 'Mods/ContentTweaker/Chickens/ChickenRepresentation.md'
- Tinkers' Construct:
- Brackets:
- Materials: 'Mods/ContentTweaker/Tinkers_Construct/Brackets/Bracket_Material.md'
- Traits: 'Mods/ContentTweaker/Tinkers_Construct/Brackets/Bracket_Trait.md'
- Material: 'Mods/ContentTweaker/Tinkers_Construct/Material.md'
- Material Builder: 'Mods/ContentTweaker/Tinkers_Construct/MaterialBuilder.md'
- Trait: 'Mods/ContentTweaker/Tinkers_Construct/Trait.md'
- Trait Builder: 'Mods/ContentTweaker/Tinkers_Construct/TraitBuilder.md'
- Trait Data Representation: 'Mods/ContentTweaker/Tinkers_Construct/TraitDataRepresentation.md'
- Cuisine:
- Cuisine: 'Mods/Cuisine/Cuisine.md'
- Axe Chopping: 'Mods/Cuisine/AxeChopping.md'
- Basin Heating: 'Mods/Cuisine/Heating.md'
- Basin Squeezing: 'Mods/Cuisine/Squeezing.md'
- Basin Throwing: 'Mods/Cuisine/Throw.md'
- Mill: 'Mods/Cuisine/Mill.md'
- Mortar: 'Mods/Cuisine/Mortar.md'
- Vessel: 'Mods/Cuisine/Vessel.md'
- Enchanting Plus:
- Functions: 'Mods/EnchantingPlus/EnchantingPlus.md'
- Ender Tweaker:
- Alloy Smelter: 'Mods/Ender_Tweaker/Alloy_Smelter.md'
- Combustion Generator: 'Mods/Ender_Tweaker/Combustion_Generator.md'
- Enchanter: 'Mods/Ender_Tweaker/Enchanter.md'
- SAG Mill: 'Mods/Ender_Tweaker/SAG_Mill.md'
- Slice n Spice: 'Mods/Ender_Tweaker/Slice_n_Splice.md'
- Soul Binder: 'Mods/Ender_Tweaker/Soul_Binder.md'
- The Vat: 'Mods/Ender_Tweaker/The_Vat.md'
- Ex Nihilo Creatio:
- Composting: 'Mods/Ex_Nihilo_Creatio/Composting.md'
- Crooking: 'Mods/Ex_Nihilo_Creatio/Crooking.md'
- Crucible Heating Sources: 'Mods/Ex_Nihilo_Creatio/Heating_Sources.md'
- Hammering: 'Mods/Ex_Nihilo_Creatio/Hammering.md'
- Ore: 'Mods/Ex_Nihilo_Creatio/Ores.md'
- Sieving: 'Mods/Ex_Nihilo_Creatio/Sieving.md'
- Extra Utilities 2:
- XUTweaker: 'Mods/ExtraUtilities2/XUTweaker.md'
- InterModCommsHandler: 'Mods/ExtraUtilities2/InterModCommsHandler.md'
- Custom Machines:
- IMachine: 'Mods/ExtraUtilities2/CustomMachines/IMachine.md'
- IMachineRegistry: 'Mods/ExtraUtilities2/CustomMachines/IMachineRegistry.md'
- IMachineSlot: 'Mods/ExtraUtilities2/CustomMachines/IMachineSlot.md'
- GameStages:
- Introduction: 'Mods/GameStages/GameStages.md'
- Player features: 'Mods/GameStages/Player_Stages.md'
- DimensionStages: 'Mods/GameStages/DimensionStages/DimensionStages.md'
- ItemStages: 'Mods/GameStages/ItemStages/ItemStages.md'
- MobStages: 'Mods/GameStages/MobStages/MobStages.md'
- RecipeStages: 'Mods/GameStages/RecipeStages/RecipeStages.md'
- Tiered Tooltips: 'Mods/GameStages/Tiered_Tooltips/Tiered_Tooltips.md'
- TinkerStages: 'Mods/GameStages/TinkerStages/TinkerStages.md'
- WailaStages: 'Mods/GameStages/WailaStages/WailaStages.md'
- ZenStages:
- Introduction: 'Mods/GameStages/ZenStages/ZenStages.md'
- ZenStager: 'Mods/GameStages/ZenStages/ZenStager.md'
- Stage: 'Mods/GameStages/ZenStages/Stage.md'
- Custom Type: 'Mods/GameStages/ZenStages/CustomType.md'
- Garden Stuff:
- Introduction: 'Mods/Garden_Stuff/Garden_Stuff.md'
- Composter: 'Mods/Garden_Stuff/Composter.md'
- GregTech Community Edition:
- GregTech Community Edition: 'Mods/GregTechCE/GregTechCE.md'
- Machines: 'Mods/GregTechCE/Machines.md'
- Material: 'Mods/GregTechCE/Material.md'
- IC2 Tweaker:
- Blast Furnace: 'Mods/IC2Tweaker/Blast_Furnace.md'
- Block Cutter: 'Mods/IC2Tweaker/Block_Cutter.md'
- Canner: 'Mods/IC2Tweaker/Canner.md'
- Compressor: 'Mods/IC2Tweaker/Compressor.md'
- Electrolyzer: 'Mods/IC2Tweaker/Electrolyzer.md'
- Extractor: 'Mods/IC2Tweaker/Extractor.md'
- Fermenter: 'Mods/IC2Tweaker/Fermenter.md'
- Heat Exchanger: 'Mods/IC2Tweaker/Heat_Exchanger.md'
- Macerator: 'Mods/IC2Tweaker/Macerator.md'
- Metal Former: 'Mods/IC2Tweaker/Metal_Former.md'
- Ore Washer: 'Mods/IC2Tweaker/Ore_Washer.md'
- Recycler: 'Mods/IC2Tweaker/Recycler.md'
- Scrap Box: 'Mods/IC2Tweaker/Scrap_Box.md'
- Semi-Fluid Generator: 'Mods/IC2Tweaker/Semi-Fluid_Generator.md'
- Thermal Centrifuge: 'Mods/IC2Tweaker/ThermalCentrifuge.md'
- IC2 Classic Tweaker:
- Adv Crafting: 'Mods/IC2ClassicTweaker/AdvCrafting.md'
- Canning Machine: 'Mods/IC2ClassicTweaker/CanningMachine.md'
- Electrolyzer: 'Mods/IC2ClassicTweaker/Electrolyzer.md'
- Liquid Fuel Generator: 'Mods/IC2ClassicTweaker/LiquidFuelGenerator.md'
- Rare Earth Extractor: 'Mods/IC2ClassicTweaker/RareEarthExtractor.md'
- Sawmill: 'Mods/IC2ClassicTweaker/Sawmill.md'
- Scrap Box: 'Mods/IC2ClassicTweaker/Scrap_Box.md'
- Immersive Engineering:
- Immersive Engineering: 'Mods/Immersive_Engineering/Immersive_Engineering.md'
- IE Variables:
- Arc Furnace:
- SpecialRecipeTypes: 'Mods/Immersive_Engineering/Variables/SpecialRecipeTypes.md'
- Blueprint:
- Categories: 'Mods/Immersive_Engineering/Variables/Categories.md'
- CraftTweaker Support:
- Alloy Smelter: 'Mods/Immersive_Engineering/CraftTweaker_Support/Alloy_Smelter.md'
- Arc Furnace: 'Mods/Immersive_Engineering/CraftTweaker_Support/Arc_Furnace.md'
- Blast Furnace: 'Mods/Immersive_Engineering/CraftTweaker_Support/Blast_Furnace.md'
- Blueprint: 'Mods/Immersive_Engineering/CraftTweaker_Support/Blueprint.md'
- Bottling Machine: 'Mods/Immersive_Engineering/CraftTweaker_Support/Bottling_Machine.md'
- Coke Oven: 'Mods/Immersive_Engineering/CraftTweaker_Support/Coke_Oven.md'
- Crusher: 'Mods/Immersive_Engineering/CraftTweaker_Support/Crusher.md'
- Diesel Helper: 'Mods/Immersive_Engineering/CraftTweaker_Support/Diesel_Helper.md'
- Excavator:
- Excavator: 'Mods/Immersive_Engineering/CraftTweaker_Support/Excavator/Excavator.md'
- Mineral Mix: 'Mods/Immersive_Engineering/CraftTweaker_Support/Excavator/Mineral_Mix.md'
- Fermenter: 'Mods/Immersive_Engineering/CraftTweaker_Support/Fermenter.md'
- Metal Press: 'Mods/Immersive_Engineering/CraftTweaker_Support/Metal_Press.md'
- Mixer: 'Mods/Immersive_Engineering/CraftTweaker_Support/Mixer.md'
- Refinery: 'Mods/Immersive_Engineering/CraftTweaker_Support/Refinery.md'
- Squeezer: 'Mods/Immersive_Engineering/CraftTweaker_Support/Squeezer.md'
- Thermoelectric: 'Mods/Immersive_Engineering/CraftTweaker_Support/Thermoelectric.md'
- Immersive Petroleum:
- Immersive Petroleum: 'Mods/Immersive_Petroleum/Immersive_Petroleum.md'
- CraftTweaker Support:
- Distillation: 'Mods/Immersive_Petroleum/CraftTweaker_Support/Distillation.md'
- Fuel Registration: 'Mods/Immersive_Petroleum/CraftTweaker_Support/FuelRegistration.md'
- Lubricant: 'Mods/Immersive_Petroleum/CraftTweaker_Support/Lubricant.md'
- Reservoir: 'Mods/Immersive_Petroleum/CraftTweaker_Support/Reservoir.md'
- Industrial Foregoing:
- Industrial Foregoing: 'Mods/Industrial_Foregoing/IndustrialForegoing.md'
- BioReactor: 'Mods/Industrial_Foregoing/BioReactor.md'
- Fluid Dictionary: 'Mods/Industrial_Foregoing/FluidDictionary.md'
- Laser Drill: 'Mods/Industrial_Foregoing/LaserDrill.md'
- Sludge Refiner: 'Mods/Industrial_Foregoing/SludgeRefiner.md'
- Protein Reactor: 'Mods/Industrial_Foregoing/ProteinReactor.md'
- Tree Fluid Extractor: 'Mods/Industrial_Foregoing/TreeFluidExtractor.md'
- Integrated Dynamics:
- DryingBasin: 'Mods/IntegratedDynamics/DryingBasin.md'
- MechanicalDryingBasin: 'Mods/IntegratedDynamics/MechanicalDryingBasin.md'
- Squeezer: 'Mods/IntegratedDynamics/Squeezer.md'
- MechanicalSqueezer: 'Mods/IntegratedDynamics/MechanicalSqueezer.md'
- InWorldCrafting:
- InWorldCrafting: 'Mods/InWorldCrafting/InWorldCrafting.md'
- JAOPCA:
- JAOPCA: 'Mods/JAOPCA/JAOPCA.md'
- OreEntry: 'Mods/JAOPCA/OreEntry.md'
- Pre-Registered Entries: 'Mods/JAOPCA/RegisteredEntries.md'
- JEI:
- JEI: 'Mods/JEI/JEI.md'
- LootTableTweaker:
- LootTableTweaker: 'Mods/LootTableTweaker/LootTableTweaker.md'
- Mekanism:
- Chemical Crystallizer: 'Mods/Mekanism/Chemical_Crystallizer.md'
- Chemical Dissolution Chamber: 'Mods/Mekanism/Chemical_Dissolution_Chamber.md'
- Chemical Infuser: 'Mods/Mekanism/Chemical_Infuser.md'
- Chemical Injection Chamber: 'Mods/Mekanism/Chemical_Injection_Chamber.md'
- Chemical Oxidizer: 'Mods/Mekanism/Chemical_Oxidizer.md'
- Chemical Washer: 'Mods/Mekanism/Chemical_Washer.md'
- Combiner: 'Mods/Mekanism/Combiner.md'
- Crusher: 'Mods/Mekanism/Crusher.md'
- Electrolytic Separator: 'Mods/Mekanism/Electrolytic_Separator.md'
- Energized Smelter: 'Mods/Mekanism/Energized_Smelter.md'
- Enrichment Chamber: 'Mods/Mekanism/Enrichment_Chamber.md'
- Gas: 'Mods/Mekanism/Gas.md'
- Gas Conversion: 'Mods/Mekanism/Gas_Conversion.md'
- Metallurgic Infuser: 'Mods/Mekanism/Metallurgic_Infuser.md'
- Osmium Compressor: 'Mods/Mekanism/Osmium_Compressor.md'
- Precision Sawmill: 'Mods/Mekanism/Precision_Sawmill.md'
- Pressurised Reaction Chamber: 'Mods/Mekanism/Pressurised_Reaction_Chamber.md'
- Purification Chamber: 'Mods/Mekanism/Purification_Chamber.md'
- Solar Neutron Activator: 'Mods/Mekanism/Solar_Neutron_Activator.md'
- Thermal Evaporation: 'Mods/Mekanism/Thermal_Evaporation.md'
- Modtweaker:
- Modtweaker: 'Mods/Modtweaker/Modtweaker.md'
- Actually Additions:
- Atomic Reconstructor: 'Mods/Modtweaker/ActuallyAdditions/AtomicReconstructor.md'
- Ball of Fur: 'Mods/Modtweaker/ActuallyAdditions/BallOfFur.md'
- Compost: 'Mods/Modtweaker/ActuallyAdditions/Compost.md'
- Crusher: 'Mods/Modtweaker/ActuallyAdditions/Crusher.md'
- Empowerer: 'Mods/Modtweaker/ActuallyAdditions/Empowerer.md'
- Mining Lens: 'Mods/Modtweaker/ActuallyAdditions/Mining_Lens.md'
- Oil Generator: 'Mods/Modtweaker/ActuallyAdditions/Oil_Generator.md'
- Treasure Chest: 'Mods/Modtweaker/ActuallyAdditions/TreasureChest.md'
- BetterWithMods:
- Anvil: 'Mods/Modtweaker/BetterWithMods/Anvil.md'
- Bellows: 'Mods/Modtweaker/BetterWithMods/Bellows.md'
- Buoyancy: 'Mods/Modtweaker/BetterWithMods/Buoyancy.md'
- Cauldron: 'Mods/Modtweaker/BetterWithMods/Cauldron.md'
- Crucible: 'Mods/Modtweaker/BetterWithMods/Crucible.md'
- Filtered Hopper: 'Mods/Modtweaker/BetterWithMods/FilteredHopper.md'
- HeatRegistry: 'Mods/Modtweaker/BetterWithMods/HeatRegistry.md'
- HCFurnace: 'Mods/Modtweaker/BetterWithMods/HCFurnace.md'
- HCMovement: 'Mods/Modtweaker/BetterWithMods/HCMovement.md'
- Kiln: 'Mods/Modtweaker/BetterWithMods/Kiln.md'
- Mill: 'Mods/Modtweaker/BetterWithMods/Mill.md'
- Saw: 'Mods/Modtweaker/BetterWithMods/Saw.md'
- Turntable: 'Mods/Modtweaker/BetterWithMods/Turntable.md'
- MiniBlocks: 'Mods/Modtweaker/BetterWithMods/MiniBlocks.md'
- Blood Magic:
- Alchemy Array: 'Mods/Modtweaker/BloodMagic/AlchemyArray.md'
- Alchemy Table: 'Mods/Modtweaker/BloodMagic/AlchemyTable.md'
- Blood Altar: 'Mods/Modtweaker/BloodMagic/BloodAltar.md'
- Tartaric Forge: 'Mods/Modtweaker/BloodMagic/TartaricForge.md'
- Botania:
- Commands: 'Mods/Modtweaker/Botania/Commands.md'
- Lexica Botania: 'Mods/Modtweaker/Botania/Lexicon.md'
- Recipes:
- Brew: 'Mods/Modtweaker/Botania/Recipes/Brew.md'
- Elven Trade: 'Mods/Modtweaker/Botania/Recipes/ElvenTrade.md'
- Mana Infusions: 'Mods/Modtweaker/Botania/Recipes/ManaInfusion.md'
- Orechid: 'Mods/Modtweaker/Botania/Recipes/Orechid.md'
- Orechid Ignem: 'Mods/Modtweaker/Botania/Recipes/OrechidIgnem.md'
- Petal Apothecary: 'Mods/Modtweaker/Botania/Recipes/Apothecary.md'
- Pure Daisy: 'Mods/Modtweaker/Botania/Recipes/PureDaisy.md'
- Rune Altar: 'Mods/Modtweaker/Botania/Recipes/RuneAltar.md'
- Chisel:
- Carving: 'Mods/Modtweaker/Chisel/Carving.md'
- Extra Utilities 2:
- Crusher: 'Mods/Modtweaker/Extra_Utilities_2/Crusher.md'
- Resonator: 'Mods/Modtweaker/Extra_Utilities_2/Resonator.md'
- Forestry:
- Carpenter: 'Mods/Modtweaker/Forestry/Carpenter.md'
- Centrifuge: 'Mods/Modtweaker/Forestry/Centrifuge.md'
- Charcoal Pile: 'Mods/Modtweaker/Forestry/Charcoal_Pile.md'
- Fermenter: 'Mods/Modtweaker/Forestry/Fermenter.md'
- Moistener: 'Mods/Modtweaker/Forestry/Moistener.md'
- Squeezer: 'Mods/Modtweaker/Forestry/Squeezer.md'
- Still: 'Mods/Modtweaker/Forestry/Still.md'
- Thermionic Fabricator: 'Mods/Modtweaker/Forestry/Thermionic_Fabricator.md'
- Inspirations:
- Inspirations: 'Mods/Modtweaker/Inspirations/Inspirations.md'
- Handlers:
- Cauldron: 'Mods/Modtweaker/Inspirations/Handlers/Cauldron.md'
- Refined Storage:
- Recipes:
- Solderer: 'Mods/Modtweaker/RefinedStorage/Recipes/Solderer.md'
- Tinkers' Construct:
- Commands: 'Mods/Modtweaker/TConstruct/Commands.md'
- Brackets:
- Material Bracket Handler: 'Mods/Modtweaker/TConstruct/Brackets/Bracket_Material.md'
- Alloying: 'Mods/Modtweaker/TConstruct/Alloying.md'
- Casting: 'Mods/Modtweaker/TConstruct/Casting.md'
- Drying: 'Mods/Modtweaker/TConstruct/Drying.md'
- Materials:
- ITICMaterial: 'Mods/Modtweaker/TConstruct/Materials/ITICMaterial.md'
- ITICMaterialDefinition: 'Mods/Modtweaker/TConstruct/Materials/ITICMaterialDefinition.md'
- Melting: 'Mods/Modtweaker/TConstruct/Melting.md'
- Smeltery Fuel: 'Mods/Modtweaker/TConstruct/Fuel.md'
- Tinkers' Complement:
- TComplement: 'Mods/Modtweaker/TComplement/TComplement.md'
- Handlers:
- Blacklist: 'Mods/Modtweaker/TComplement/Handlers/Blacklist.md'
- Overrides: 'Mods/Modtweaker/TComplement/Handlers/Overrides.md'
- High Oven: 'Mods/Modtweaker/TComplement/Handlers/HighOven.md'
- MixRecipeBuilder: 'Mods/Modtweaker/TComplement/Handlers/MixRecipeBuilder.md'
- MixRecipeManager: 'Mods/Modtweaker/TComplement/Handlers/MixRecipeManager.md'
- Thaumcraft:
- Aspects:
- CTAspect: 'Mods/Modtweaker/Thaumcraft/Aspects/CTAspect.md'
- CTAspectStack: 'Mods/Modtweaker/Thaumcraft/Aspects/CTAspectStack.md'
- Entity Aspects: 'Mods/Modtweaker/Thaumcraft/Aspects/Entity_Aspects.md'
- Item Aspects: 'Mods/Modtweaker/Thaumcraft/Aspects/Item_Aspects.md'
- Brackets:
- Aspects: 'Mods/Modtweaker/Thaumcraft/Brackets/Bracket_Aspect.md'
- Handlers:
- Arcane Workbench: 'Mods/Modtweaker/Thaumcraft/Handlers/ArcaneWorkbench.md'
- Crucible: 'Mods/Modtweaker/Thaumcraft/Handlers/Crucible.md'
- Infusion: 'Mods/Modtweaker/Thaumcraft/Handlers/Infusion.md'
- Loot: 'Mods/Modtweaker/Thaumcraft/Handlers/Loot.md'
- Salis Mundus: 'Mods/Modtweaker/Thaumcraft/Handlers/SalisMundus.md'
- Smelting Bonus: 'Mods/Modtweaker/Thaumcraft/Handlers/SmeltingBonus.md'
- Warp: 'Mods/Modtweaker/Thaumcraft/Handlers/Warp.md'
- Commands: 'Mods/Modtweaker/Thaumcraft/Commands.md'
- Thermal Expansion:
- Dynamos:
- Compression Dynamo: 'Mods/Modtweaker/ThermalExpansion/Dynamos/CompressionDynamo.md'
- Enervation Dynamo: 'Mods/Modtweaker/ThermalExpansion/Dynamos/EnervationDynamo.md'
- Magmatic Dynamo: 'Mods/Modtweaker/ThermalExpansion/Dynamos/MagmaticDynamo.md'
- Numistic Dynamo: 'Mods/Modtweaker/ThermalExpansion/Dynamos/NumisticDynamo.md'
- Reactant Dynamo: 'Mods/Modtweaker/ThermalExpansion/Dynamos/ReactantDynamo.md'
- Steam Dynamo: 'Mods/Modtweaker/ThermalExpansion/Dynamos/SteamDynamo.md'
- Alchemical Imbuer: 'Mods/Modtweaker/ThermalExpansion/Imbuer.md'
- Arcane Ensorcellator (Enchanter): 'Mods/Modtweaker/ThermalExpansion/Enchanter.md'
- Centrifugal Seperator: 'Mods/Modtweaker/ThermalExpansion/Centrifugal_Seperator.md'
- Compactor: 'Mods/Modtweaker/ThermalExpansion/Compactor.md'
- Coolant: 'Mods/Modtweaker/ThermalExpansion/Coolant.md'
- Energetic Infuser: 'Mods/Modtweaker/ThermalExpansion/Energetic_Infuser.md'
- Factorizer: 'Mods/Modtweaker/ThermalExpansion/Factorizer.md'
- Fluid Transposer: 'Mods/Modtweaker/ThermalExpansion/Fluid_Transposer.md'
- Fractionating Still (Refinery): 'Mods/Modtweaker/ThermalExpansion/Refinery.md'
- Induction Smelter: 'Mods/Modtweaker/ThermalExpansion/InductionSmelter.md'
- Magma Crucible: 'Mods/Modtweaker/ThermalExpansion/Crucible.md'
- Redstone Furnace: 'Mods/Modtweaker/ThermalExpansion/Redstone_Furnace.md'
- Phytogenic Insolator: 'Mods/Modtweaker/ThermalExpansion/Insolator.md'
- Pulverizer: 'Mods/Modtweaker/ThermalExpansion/Pulverizer.md'
- Sawmill: 'Mods/Modtweaker/ThermalExpansion/Sawmill.md'
- Modular Machinery:
- Modular Machinery: 'Mods/ModularMachinery/ModularMachinery.md'
- Recipes:
- RecipeBuilder: 'Mods/ModularMachinery/Recipes/RecipeBuilder.md'
- RecipePrimer: 'Mods/ModularMachinery/Recipes/RecipePrimer.md'
- MrCrayfish's Furniture Mod:
- MrCrayfish's Furniture Mod: 'Mods/MrCrayfish_s_Furniture_Mod/MrCrayfish_s_Furniture_Mod.md'
- Crafting:
- Blender: 'Mods/MrCrayfish_s_Furniture_Mod/Blender.md'
- Chopping Board: 'Mods/MrCrayfish_s_Furniture_Mod/ChoppingBoard.md'
- Dishwasher: 'Mods/MrCrayfish_s_Furniture_Mod/Dishwasher.md'
- Freezer: 'Mods/MrCrayfish_s_Furniture_Mod/Freezer.md'
- Grill: 'Mods/MrCrayfish_s_Furniture_Mod/Grill.md'
- Microwave: 'Mods/MrCrayfish_s_Furniture_Mod/Microwave.md'
- Mine Bay: 'Mods/MrCrayfish_s_Furniture_Mod/MineBay.md'
- Oven: 'Mods/MrCrayfish_s_Furniture_Mod/Oven.md'
- Printer: 'Mods/MrCrayfish_s_Furniture_Mod/Printer.md'
- Toaster: 'Mods/MrCrayfish_s_Furniture_Mod/Toaster.md'
- Washing Machine: 'Mods/MrCrayfish_s_Furniture_Mod/WashingMachine.md'
- Nature's Aura:
- Altar of Birthing: 'Mods/Natures_Aura/Altar_Of_Birthing.md'
- Natural Altar: 'Mods/Natures_Aura/Natural_Altar.md'
- Offering to the Gods: 'Mods/Natures_Aura/Offering_To_The_Gods.md'
- Ritual of the Forest: 'Mods/Natures_Aura/Ritual_Of_The_Forest.md'
- NuclearCraft:
- Important Info: 'Mods/NuclearCraft/Important_Info.md'
- Radiation: 'Mods/NuclearCraft/Radiation.md'
- Machine Recipes:
- Alloy Furnace: 'Mods/NuclearCraft/Machine_Recipes/Alloy_Furnace.md'
- Centrifuge: 'Mods/NuclearCraft/Machine_Recipes/Centrifuge.md'
- Chemical Reactor: 'Mods/NuclearCraft/Machine_Recipes/Chemical_Reactor.md'
- Condenser: 'Mods/NuclearCraft/Machine_Recipes/Condenser.md'
- Crystallizer: 'Mods/NuclearCraft/Machine_Recipes/Crystallizer.md'
- Decay Generator: 'Mods/NuclearCraft/Machine_Recipes/Decay_Generator.md'
- Decay Hastener: 'Mods/NuclearCraft/Machine_Recipes/Decay_Hastener.md'
- Electrolyzer: 'Mods/NuclearCraft/Machine_Recipes/Electrolyzer.md'
- Fission: 'Mods/NuclearCraft/Machine_Recipes/Fission.md'
- Fluid Enricher: 'Mods/NuclearCraft/Machine_Recipes/Fluid_Enricher.md'
- Fluid Extractor: 'Mods/NuclearCraft/Machine_Recipes/Fluid_Extractor.md'
- Fuel Reprocessor: 'Mods/NuclearCraft/Machine_Recipes/Fuel_Reprocessor.md'
- Fusion: 'Mods/NuclearCraft/Machine_Recipes/Fusion.md'
- Heat Exchanger: 'Mods/NuclearCraft/Machine_Recipes/Heat_Exchanger.md'
- Infuser: 'Mods/NuclearCraft/Machine_Recipes/Infuser.md'
- Ingot Former: 'Mods/NuclearCraft/Machine_Recipes/Ingot_Former.md'
- Irradiator: 'Mods/NuclearCraft/Machine_Recipes/Irradiator.md'
- Isotope Seperator: 'Mods/NuclearCraft/Machine_Recipes/Isotope_Separator.md'
- Manufactory: 'Mods/NuclearCraft/Machine_Recipes/Manufactory.md'
- Melter: 'Mods/NuclearCraft/Machine_Recipes/Melter.md'
- Pressurizer: 'Mods/NuclearCraft/Machine_Recipes/Pressurizer.md'
- Rock Crusher: 'Mods/NuclearCraft/Machine_Recipes/Rock_Crusher.md'
- Salt Fission: 'Mods/NuclearCraft/Machine_Recipes/Salt_Fission.md'
- Salt Mixer: 'Mods/NuclearCraft/Machine_Recipes/Salt_Mixer.md'
- Steam Turbine: 'Mods/NuclearCraft/Machine_Recipes/Steam_Turbine.md'
- Supercooler: 'Mods/NuclearCraft/Machine_Recipes/Supercooler.md'
- NuclearCraft: Overhauled:
- Important Info: 'Mods/NuclearCraft_Overhauled/Important_Info.md'
- Radiation: 'Mods/NuclearCraft_Overhauled/Radiation.md'
- Recipe Info: 'Mods/NuclearCraft_Overhauled/Recipe_Info.md'
- Machine Recipes:
- Alloy Furnace: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Alloy_Furnace.md'
- Assembler: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Assembler.md'
- Centrifuge: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Centrifuge.md'
- Chemical Reactor: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Chemical_Reactor.md'
- Condenser: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Condenser.md'
- Crystallizer: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Crystallizer.md'
- Decay Generator: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Decay_Generator.md'
- Decay Hastener: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Decay_Hastener.md'
- Electrolyzer: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Electrolyzer.md'
- Fission: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Fission.md'
- Fluid Enricher: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Fluid_Enricher.md'
- Fluid Extractor: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Fluid_Extractor.md'
- Fuel Reprocessor: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Fuel_Reprocessor.md'
- Fusion: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Fusion.md'
- Heat Exchanger: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Heat_Exchanger.md'
- Infuser: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Infuser.md'
- Ingot Former: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Ingot_Former.md'
- Isotope Seperator: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Isotope_Separator.md'
- Manufactory: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Manufactory.md'
- Melter: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Melter.md'
- Pressurizer: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Pressurizer.md'
- Rock Crusher: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Rock_Crusher.md'
- Salt Fission: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Salt_Fission.md'
- Salt Mixer: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Salt_Mixer.md'
- Steam Turbine: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Steam_Turbine.md'
- Supercooler: 'Mods/NuclearCraft_Overhauled/Machine_Recipes/Supercooler.md'
- PackMode:
- PackMode: 'Mods/Pack_Mode/Packmode.md'
- Preprocessor: 'Mods/Pack_Mode/Preprocessors/Preprocessor_Packmode.md'
- Command: 'Mods/Pack_Mode/Commands/Packmode_Command.md'
- PneumaticCraft: Repressurized:
- About PneumaticCraft: Repressurized: 'Mods/PneumaticCraft_Repressurized/PneumaticCraft_Repressurized.md'
- Crafting:
- Assembly System: 'Mods/PneumaticCraft_Repressurized/Assembly.md'
- Explosion Crafting: 'Mods/PneumaticCraft_Repressurized/ExplosionCrafting.md'
- Heat Frame Cooling: 'Mods/PneumaticCraft_Repressurized/HeatFrameCooling.md'
- Liquid Fuels: 'Mods/PneumaticCraft_Repressurized/LiquidFuels.md'
- Plastic Mixer: 'Mods/PneumaticCraft_Repressurized/PlasticMixer.md'
- Pressure Chamber: 'Mods/PneumaticCraft_Repressurized/PressureChamber.md'
- Refinery: 'Mods/PneumaticCraft_Repressurized/Refinery.md'
- Thermopneumatic Processing: 'Mods/PneumaticCraft_Repressurized/ThermopneumaticProcessingPlant.md'
- XP Fluids: 'Mods/PneumaticCraft_Repressurized/XPFluids.md'
- Powered Thingies:
- Powered Thingies: 'Mods/PoweredThingies/_PoweredThingies.md'
- Tweaker Static Class: 'Mods/PoweredThingies/_TweakerClass.md'
- Compound Maker: 'Mods/PoweredThingies/CompoundMakerTweaker.md'
- Fluid Burner Coolant: 'Mods/PoweredThingies/FluidBurnerCoolantTweaker.md'
- Fluid Burner Fuel: 'Mods/PoweredThingies/FluidBurnerFuelTweaker.md'
- Fluid Compound Producer: 'Mods/PoweredThingies/FluidCompoundProducerTweaker.md'
- Incinerator: 'Mods/PoweredThingies/IncineratorTweaker.md'
- Item Compound Producer: 'Mods/PoweredThingies/ItemCompoundProducerTweaker.md'
- Item Liquefier: 'Mods/PoweredThingies/ItemLiquefierTweaker.md'
- Powder Maker: 'Mods/PoweredThingies/PowderMakerTweaker.md'
- Powered Kiln: 'Mods/PoweredThingies/PoweredKilnTweaker.md'
- ProjectE:
- Entity Randomizer: 'Mods/ProjectE/EntityRandomizer.md'
- World Transmutation: 'Mods/ProjectE/WorldTransmutation.md'
- Rocky Tweaks:
- Rocky Tweaks: 'Mods/RockyTweaks/RockyTweaks.md'
- Anvil: 'Mods/RockyTweaks/Anvil.md'
- Merchant: 'Mods/RockyTweaks/Merchant.md'
- Roots 3:
- Animal Harvest Ritual: 'Mods/Roots_3/animalharvest.md'
- Bark Creation: 'Mods/Roots_3/bark.md'
- Fey Crafter: 'Mods/Roots_3/fey.md'
- Flower Growth Ritual: 'Mods/Roots_3/flowergrowth.md'
- Mortar: 'Mods/Roots_3/mortar.md'
- Untrue Pacifist Creatures: 'Mods/Roots_3/pacifist.md'
- Pyre Crafting: 'Mods/Roots_3/pyre.md'
- Pyre Ritual Recipes: 'Mods/Roots_3/ritual.md'
- Runic Shears Recipes: 'Mods/Roots_3/runicshears.md'
- Summon Creatures Ritual: 'Mods/Roots_3/summoncreatures.md'
- Transmutation Ritual: 'Mods/Roots_3/transmutation.md'
- Sky Resources 2:
- Sky Resources 2: 'Mods/Sky_Resources_2/Sky_Resources_2.md'
- Recipes:
- Alchemical Fusion: 'Mods/Sky_Resources_2/Recipes/Alchemical_Fusion.md'
- Alchemical Fusion Catalysts: 'Mods/Sky_Resources_2/Recipes/Alchemical_Fusion_Catalysts.md'
- Cauldron Cleaning: 'Mods/Sky_Resources_2/Recipes/Cauldron_Cleaning.md'
- Combustion: 'Mods/Sky_Resources_2/Recipes/Combustion.md'
- Condenser: 'Mods/Sky_Resources_2/Recipes/Condenser.md'
- Crucible: 'Mods/Sky_Resources_2/Recipes/Crucible.md'
- Cutting Knife: 'Mods/Sky_Resources_2/Recipes/Cutting_Knife.md'
- Freezer: 'Mods/Sky_Resources_2/Recipes/Freezer.md'
- Heat Sources: 'Mods/Sky_Resources_2/Recipes/Heat_Sources.md'
- Life Infusion: 'Mods/Sky_Resources_2/Recipes/Life_Infusion.md'
- Rock Grinder: 'Mods/Sky_Resources_2/Recipes/Rock_Grinder.md'
- Water Extractor: 'Mods/Sky_Resources_2/Recipes/Water_Extractor.md'
- SteamAgeRevolution:
- Alloy Forge: 'Mods/SteamAgeRevolution/AlloyForge.md'
- Casting Block: 'Mods/SteamAgeRevolution/CastingBlock.md'
- Crucible: 'Mods/SteamAgeRevolution/Crucible.md'
- Distiller: 'Mods/SteamAgeRevolution/Distiller.md'
- Grinder: 'Mods/SteamAgeRevolution/Grinder.md'
- Steam Furnace: 'Mods/SteamAgeRevolution/SteamFurnace.md'
- Steam Hammer: 'Mods/SteamAgeRevolution/SteamHammer.md'
- Steelworks: 'Mods/SteamAgeRevolution/Steelworks.md'
- Vat: 'Mods/SteamAgeRevolution/Vat.md'
- Survivalist:
- Survivalist: 'Mods/Survivalist/Survivalist.md'
- Tech Reborn:
- Alloy Smelter: 'Mods/Tech_Reborn/Alloy_Smelter.md'
- Assembling Machine: 'Mods/Tech_Reborn/Assembling_Machine.md'
- Centrifuge: 'Mods/Tech_Reborn/Centrifuge.md'
- Chemical Reactor: 'Mods/Tech_Reborn/Chemical_Reactor.md'
- Compressor: 'Mods/Tech_Reborn/Compressor.md'
- Distillation Tower: 'Mods/Tech_Reborn/Distillation_Tower.md'
- Extractor: 'Mods/Tech_Reborn/Extractor.md'
- Fluid Generators: 'Mods/Tech_Reborn/Fluid_Generators.md'
- Fluid Replicator: 'Mods/Tech_Reborn/Fluid_Replicator.md'
- Fusion Reactor: 'Mods/Tech_Reborn/Fusion_Reactor.md'
- Grinder: 'Mods/Tech_Reborn/Grinder.md'
- Implosion Compressor: 'Mods/Tech_Reborn/Implosion_Compressor.md'
- Industrial Blast Furnace: 'Mods/Tech_Reborn/Industrial_Blast_Furnace.md'
- Industrial Electrolyzer: 'Mods/Tech_Reborn/Industrial_Electrolyzer.md'
- Industrial Grinder: 'Mods/Tech_Reborn/Industrial_Grinder.md'
- Industrial Sawmill: 'Mods/Tech_Reborn/Industrial_Sawmill.md'
- Plate Bending Machine: 'Mods/Tech_Reborn/Plate_Bending_Machine.md'
- Rolling Machine: 'Mods/Tech_Reborn/Rolling_Machine.md'
- Scrapbox: 'Mods/Tech_Reborn/Scrapbox.md'
- Solid Canning Machine: 'Mods/Tech_Reborn/Solid_Canning_Machine.md'
- Vacuum Freezer: 'Mods/Tech_Reborn/Vacuum_Freezer.md'
- Wire Mill: 'Mods/Tech_Reborn/Wire_Mill.md'
- TerraFirmaCraft: The Next Generation:
- Terrafirmacraft: 'Mods/Terrafirmacraft/Terrafirmacraft.md'
- Heating: 'Mods/Terrafirmacraft/Heating.md'
- HeatingTemperatures: 'Mods/Terrafirmacraft/HeatingTemperatures.md'
- ItemRegistry: 'Mods/Terrafirmacraft/ItemRegistry.md'
- Metal: 'Mods/Terrafirmacraft/Metal.md'
- Recipes:
- Anvil:
- Anvil: 'Mods/Terrafirmacraft/Recipes/Anvil/Anvil.md'
- Welding: 'Mods/Terrafirmacraft/Recipes/Anvil/Welding.md'
- Barrel: 'Mods/Terrafirmacraft/Recipes/Barrel.md'
- Knapping:
- Clay: 'Mods/Terrafirmacraft/Recipes/Knapping/Clay.md'
- FireClay: 'Mods/Terrafirmacraft/Recipes/Knapping/FireClay.md'
- Leather: 'Mods/Terrafirmacraft/Recipes/Knapping/Leather.md'
- Stone: 'Mods/Terrafirmacraft/Recipes/Knapping/Stone.md'
- Alloy: 'Mods/Terrafirmacraft/Recipes/Alloy.md'
- Chisel: 'Mods/Terrafirmacraft/Recipes/Chisel.md'
- Loom: 'Mods/Terrafirmacraft/Recipes/Loom.md'
- Quern: 'Mods/Terrafirmacraft/Recipes/Quern.md'
- The Aether:
- Accessory: 'Mods/The_Aether/Accessory.md'
- Enchanter: 'Mods/The_Aether/Enchanter.md'
- Freezer: 'Mods/The_Aether/Freezer.md'
- Tree Tweaker:
- Tree Tweaker: 'Mods/Tree_Tweaker/Tree_Tweaker.md'
- VanillaDeathChest:
- Death Chest Defense: 'Mods/VanillaDeathChest/Death_Chest_Defense.md'
- Death Chest Spawning: 'Mods/VanillaDeathChest/Death_Chest_Spawning.md'
- VanillaDeathChest: 'Mods/VanillaDeathChest/VanillaDeathChest.md'