forked from CraftTweaker/CraftTweaker-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
730 lines (725 loc) · 44.6 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
# If you add a page, you must add it to the index here
pages:
- 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'
- 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'
- 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'
- IEventPositionable: 'Vanilla/Events/Events/IEventPositionable.md'
- IProcessableEvent: 'Vanilla/Events/Events/IProcessableEvent.md'
- IEntityEvent: 'Vanilla/Events/Events/IEntityEvent.md'
- ILivingEvent: 'Vanilla/Events/Events/ILivingEvent.md'
- IPlayerEvent: 'Vanilla/Events/Events/IPlayerEvent.md'
#Actual Events below here
- BlockBreakEvent: 'Vanilla/Events/Events/BlockBreak.md'
- BlockHarvestDropsEvent: 'Vanilla/Events/Events/BlockHarvestDrops.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'
- EntityStruckByLightningEvent: 'Vanilla/Events/Events/EntityStruckByLightning.md'
- ItemExpireEvent: 'Vanilla/Events/Events/ItemExpire.md'
- ItemTossEvent: 'Vanilla/Events/Events/ItemToss.md'
- LivingEntityUseItemEvent: 'Vanilla/Events/Events/LivingEntityUseItem.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'
- 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'
- 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'
- 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'
- 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'
- 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'
- 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'
- 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'
- Artisan Worktables:
- Artisan Worktables: 'Mods/Artisan_Worktables/Artisan_Worktables.md'
- RecipeBuilder:
- RecipeBuilder: 'Mods/Artisan_Worktables/CraftTweaker_Support/RecipeBuilder.md'
- Usages: 'Mods/Artisan_Worktables/CraftTweaker_Support/Usages.md'
- To Scale Example: 'Mods/Artisan_Worktables/CraftTweaker_Support/To_Scale_Example.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'
- 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'
- 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'
- 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'
- Enchanting Plus:
- Functions: 'Mods/EnchantingPlus/EnchantingPlus.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'
- GregTech Community Edition:
- GregTech Community Edition: 'Mods/GregTechCE/GregTechCE.md'
- Machines: 'Mods/GregTechCE/Machines.md'
- Material: 'Mods/GregTechCE/Material.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'
- 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'
- 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'
- 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'
- 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'
- 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'
- Smelting Bonus: 'Mods/Modtweaker/Thaumcraft/Handlers/SmeltingBonus.md'
- Warp: 'Mods/Modtweaker/Thaumcraft/Handlers/Warp.md'
- Commands: 'Mods/Modtweaker/Thaumcraft/Commands.md'
- Thermal Expansion:
- 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'
- Energetic Infuser: 'Mods/Modtweaker/ThermalExpansion/Energetic_Infuser.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'
- 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'
- Heat Frame Cooling: 'Mods/PneumaticCraft_Repressurized/HeatFrameCooling.md'
- Pressure Chamber: 'Mods/PneumaticCraft_Repressurized/PressureChamber.md'
- Refinery: 'Mods/PneumaticCraft_Repressurized/Refinery.md'
- Thermopneumatic Processing: 'Mods/PneumaticCraft_Repressurized/ThermopneumaticProcessingPlant.md'
- Explosion Crafting: 'Mods/PneumaticCraft_Repressurized/ExplosionCrafting.md'
- Liquid Fuels: 'Mods/PneumaticCraft_Repressurized/LiquidFuels.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'
- Rocky Core:
- Rocky Core: 'Mods/RockyCore/RockyCore.md'
- Anvil: 'Mods/RockyCore/Anvil.md'
- Merchant: 'Mods/RockyCore/Merchant.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'
- Survivalist:
- Survivalist: 'Mods/Survivalist/Survivalist.md'
- How to contribute:
- How to fork the project: 'Contribute/SetupGithub.md'
- How to edit files online: 'Contribute/OnlineEditor_Edit.md'
- How to create files online: 'Contribute/OnlineEditor_Create.md'
- How to file a Pull Request: 'Contribute/PullRequest.md'
- Developer Area:
- Using IIngredients: 'Dev_Area/Ingredients.md'
- ZenTokens: 'Dev_Area/ZenTokens.md'
- ZenOperators: 'Dev_Area/ZenOperators.md'
- ZenAnnotations:
- ZenAnnotations Overview: 'Dev_Area/ZenAnnotations/ZenAnnotation.md'
- BracketHandler: 'Dev_Area/ZenAnnotations/Annotation_BracketHandler.md'
- ZenCaster: 'Dev_Area/ZenAnnotations/Annotation_ZenCaster.md'
- ZenClass: 'Dev_Area/ZenAnnotations/Annotation_ZenClass.md'
- ZenExpansion: 'Dev_Area/ZenAnnotations/Annotation_ZenExpansion.md'
- ZenRegister: 'Dev_Area/ZenAnnotations/Annotation_ZenRegister.md'
- ZenMember: 'Dev_Area/ZenAnnotations/ZenMembers.md'
- ModOnly: 'Dev_Area/ZenAnnotations/Annotation_ModOnly.md'
- ZenMethod: 'Dev_Area/ZenAnnotations/Annotation_ZenMethod.md'
- ZenMethodStatic: 'Dev_Area/ZenAnnotations/Annotation_ZenMethodStatic.md'
- ZenOperator: 'Dev_Area/ZenAnnotations/Annotation_ZenOperator.md'
- Optional: 'Dev_Area/ZenAnnotations/Annotation_Optional.md'
- Iterable: 'Dev_Area/ZenAnnotations/Annotation_Iterable.md'
- ZenDoc: 'Dev_Area/ZenAnnotations/Annotation_ZenDoc.md'
- Custom ZenClasses: 'Dev_Area/Custom_ZenClasses.md'
# Do not edit in PRs below here
site_name: Crafttweaker Documentation
site_author: Team CraftTweaker and any Contributors to the CrT Wiki GitHub repository
repo_url: 'https://github.com/CraftTweaker/CraftTweaker-Documentation'
repo_name: 'Visit this wiki on GitHub'
markdown_extensions:
- admonition
- smarty
- sane_lists
theme_dir: 'mkdocs_windmill'
extra:
logo: 'assets/logo.png'
#article_nav_top: true
#artivle_nav_bottom: true
#history_buttons: false
version: 'CrT v4.1.11'