User Tools

Site Tools


tutorial:tags

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
tutorial:tags [2021/02/06 11:44] shnupbupstutorial:tags [2022/12/16 02:40] solidblock
Line 1: Line 1:
 ====== Tags ====== ====== Tags ======
-Tags are groups of blocks, items or fluids which share similar properties. They can be used in recipes to allow for multiple items to be used in the same recipe interchangeably. Read more on what tags are on the [[https://minecraft.gamepedia.com/Tag|Minecraft Wiki]]. Tags can also be used to group similar items from different mods, to allow them to be compatible with each other. These are called common tags.+Tags are groups of blocks, itemsfluids, biomes or other registry objects which share similar properties. They can be used in recipes to allow for multiple items to be used in the same recipe interchangeably. Read more on what tags are on the [[https://minecraft.gamepedia.com/Tag|Minecraft Wiki]]. Tags can also be used to group similar items from different mods, to allow them to be compatible with each other. These are called common tags.
  
 ===== Tag Example ===== ===== Tag Example =====
-File Location: ''src/main/resources/data/examplemod/tags/blocks/example_ores.json''+File Location: ''src/main/resources/data/tutorial/tags/blocks/example_ores.json''
 <code javascript> <code javascript>
 { {
     "replace": false,     "replace": false,
     "values": [     "values": [
-        "examplemod:example_ore"+        "tutorial:example_ore"
     ]     ]
 } }
Line 14: Line 14:
 The ''"replace"'' tag determines whether the mod will remove all other items in the tag that are not mentioned in this file. It is not recommended to set this to true, as it may break compatibility with other mods. ''blocks'' in the file path can also be ''items'' or ''fluids''. You should separate words with underscores, and tags should be plural. The ''"replace"'' tag determines whether the mod will remove all other items in the tag that are not mentioned in this file. It is not recommended to set this to true, as it may break compatibility with other mods. ''blocks'' in the file path can also be ''items'' or ''fluids''. You should separate words with underscores, and tags should be plural.
  
 +===== Using tags in code =====
 +
 +For some cases, you might want to have tags as registered objects on code. For example, methods like ''Block#isIn'' require these tag parameters. Besides, the Fabric registries like ''FlammableBlockRegistry'', ''FuelRegistry'' and ''CompostingChanceRegistry'' also accept block tags or item tags.
 +
 +Vanilla tag objects can be found in class ''<yarn class_3481>'' and ''<yarn class_3489>''. To register tag objects in your mod, see the following.
 +
 +=== 1.19.3 and above ===
 +<yarncode java>
 +public class ModBlockTags {
 +  public static final TagKey<class_2248> EXAMPLE_ORES = class_6862.method_40092(class_7924.field_41254, new class_2960("tutorial", "example_ores"));
 +}
 +</yarncode>
 +
 +=== 1.19.2 and below ===
 +<yarncode java>
 +public class ModBlockTags {
 +  public static final TagKey<class_2248> EXAMPLE_ORES = class_6862.method_40092(class_2378.BLOCK_KEY, new class_2960("tutorial", "example_ores"));
 +}
 +</yarncode>
 +
 +=== 1.18.1 and below (Requires Fabric API) ===
 +<yarncode java>
 +public class ModBlockTags {
 +  public static final Tag<class_2248> EXAMPLE_ORES = TagFactory.BLOCK.create(new class_2960("tutorial", "example_ores"));
 +}
 +</yarncode>
 +
 +=== 1.17 and below, not including 1.17.1 (Requires Fabric API) ===
 +<yarncode java>
 +public class ModBlockTags {
 +  public static final Tag<class_2248> EXAMPLE_ORES = TagRegistry.block(new class_2960("tutorial", "example_ores"));
 +}
 +</yarncode>
 +
 +Note that ''TagRegistry'' is deprecated since Fabric API 0.46.0 where ''TagFactory'' is added, and which does not support 1.17.
 ===== Common Tags vs Mod Tags ===== ===== Common Tags vs Mod Tags =====
-If your tag applies ONLY to items in your mod, and no other mod is likely to have similar items, or you specifically want to only include your mod's items in that tag, then use ''yourmodid:yourtaghere'', with the example above. However, if your mod adds items which other mods also add, you can+If your tag applies ONLY to items in your mod, and no other mod is likely to have similar items, or you specifically want to only include your mod's items in that tag, then use ''yourmodid:yourtaghere'', with the example above. However, if your mod adds items which other mods also add, you can:
  
 ======= Creating New Common Tags ======= ======= Creating New Common Tags =======
 Common tags should be named with the syntax ''c:yourtaghere'', with ''c'' standing for common. When making the file, use the file path ''src/main/resources/data/c/tags/'' and then ''blocks'', ''items'' or ''fluids'' You should separate words with underscores, and tags should be plural. Common tags should be named with the syntax ''c:yourtaghere'', with ''c'' standing for common. When making the file, use the file path ''src/main/resources/data/c/tags/'' and then ''blocks'', ''items'' or ''fluids'' You should separate words with underscores, and tags should be plural.
  
-======= Existing Common Tags ======= +====== Existing Common Tags ====== 
-This section was [[https://github.com/shartte/fabric-convention-tags|automatically generated using a script]]. See the end of this page for the list of mods used. If your item fits into one of these tags, then you should add it to that tag instead of defining your own. If you want your mod's recipes to be compatible with other mods, replace the item in the recipe with ''#c:tagname''.+This section was [[https://github.com/fabric-community/fabric-convention-tags|automatically generated using a script]]. See the end of this page for the list of mods used. If your item fits into one of these tags, then you should add it to that tag instead of defining your own. If you want your mod's recipes to be compatible with other mods, replace the item in the recipe with ''#c:tagname''.
  
 ===== Item Tags ===== ===== Item Tags =====
Line 30: Line 65:
 | c:adamantite_nuggets| mythicmetals:adamantite_nugget| mythicmetals | | c:adamantite_nuggets| mythicmetals:adamantite_nugget| mythicmetals |
 | c:adamantite_ores| mythicmetals:adamantite_ore| mythicmetals | | c:adamantite_ores| mythicmetals:adamantite_ore| mythicmetals |
 +| :::| mythicmetals:deepslate_adamantite_ore| mythicmetals |
 | c:advanced_alloy_ingots| techreborn:advanced_alloy_ingot| techreborn | | c:advanced_alloy_ingots| techreborn:advanced_alloy_ingot| techreborn |
 | c:advanced_alloy_plates| techreborn:advanced_alloy_plate| techreborn | | c:advanced_alloy_plates| techreborn:advanced_alloy_plate| techreborn |
Line 39: Line 75:
 | c:almandine_dusts| techreborn:almandine_dust| techreborn | | c:almandine_dusts| techreborn:almandine_dust| techreborn |
 | c:almandine_small_dusts| techreborn:almandine_small_dust| techreborn | | c:almandine_small_dusts| techreborn:almandine_small_dust| techreborn |
 +| c:almond_brittles| croptopia:almond_brittle| croptopia |
 | c:aluminum_blocks| bno:aluminum_block| bno | | c:aluminum_blocks| bno:aluminum_block| bno |
 | :::| c:aluminum_block| cotton-resources | | :::| c:aluminum_block| cotton-resources |
 | :::| techreborn:aluminum_storage_block| techreborn | | :::| techreborn:aluminum_storage_block| techreborn |
 +| :::| modern_industrialization:aluminum_block| modern_industrialization |
 | c:aluminum_dusts| c:aluminum_dust| cotton-resources | | c:aluminum_dusts| c:aluminum_dust| cotton-resources |
 | :::| modern_industrialization:aluminum_dust| modern_industrialization | | :::| modern_industrialization:aluminum_dust| modern_industrialization |
Line 67: Line 105:
 | c:amethyst_blocks| c:amethyst_block| cotton-resources | | c:amethyst_blocks| c:amethyst_block| cotton-resources |
 | c:amethyst_dusts| c:amethyst_dust| cotton-resources | | c:amethyst_dusts| c:amethyst_dust| cotton-resources |
 +| :::| techreborn:amethyst_dust| techreborn |
 | c:amethyst_gears| c:amethyst_gear| cotton-resources | | c:amethyst_gears| c:amethyst_gear| cotton-resources |
 | c:amethyst_ores| c:amethyst_ore| cotton-resources | | c:amethyst_ores| c:amethyst_ore| cotton-resources |
Line 78: Line 117:
 | c:andradite_dusts| techreborn:andradite_dust| techreborn | | c:andradite_dusts| techreborn:andradite_dust| techreborn |
 | c:andradite_small_dusts| techreborn:andradite_small_dust| techreborn | | c:andradite_small_dusts| techreborn:andradite_small_dust| techreborn |
 +| c:annealed_copper_blocks| modern_industrialization:annealed_copper_block| modern_industrialization |
 +| c:annealed_copper_dusts| modern_industrialization:annealed_copper_dust| modern_industrialization |
 +| c:annealed_copper_ingots| modern_industrialization:annealed_copper_ingot| modern_industrialization |
 +| c:annealed_copper_nuggets| modern_industrialization:annealed_copper_nugget| modern_industrialization |
 +| c:annealed_copper_plates| modern_industrialization:annealed_copper_plate| modern_industrialization |
 +| c:annealed_copper_tiny_dusts| modern_industrialization:annealed_copper_tiny_dust| modern_industrialization |
 +| c:antimony_blocks| modern_industrialization:antimony_block| modern_industrialization |
 | c:antimony_dusts| modern_industrialization:antimony_dust| modern_industrialization | | c:antimony_dusts| modern_industrialization:antimony_dust| modern_industrialization |
 | c:antimony_ingots| modern_industrialization:antimony_ingot| modern_industrialization | | c:antimony_ingots| modern_industrialization:antimony_ingot| modern_industrialization |
 | c:antimony_nuggets| modern_industrialization:antimony_nugget| modern_industrialization | | c:antimony_nuggets| modern_industrialization:antimony_nugget| modern_industrialization |
 | c:antimony_ores| modern_industrialization:antimony_ore| modern_industrialization | | c:antimony_ores| modern_industrialization:antimony_ore| modern_industrialization |
 +| :::| modern_industrialization:deepslate_antimony_ore| modern_industrialization |
 | c:antimony_tiny_dusts| modern_industrialization:antimony_tiny_dust| modern_industrialization | | c:antimony_tiny_dusts| modern_industrialization:antimony_tiny_dust| modern_industrialization |
 +| c:apple_pies| croptopia:apple_pie| croptopia |
 | c:aquarium_blocks| mythicmetals:aquarium_block| mythicmetals | | c:aquarium_blocks| mythicmetals:aquarium_block| mythicmetals |
 | c:aquarium_ingots| mythicmetals:aquarium_ingot| mythicmetals | | c:aquarium_ingots| mythicmetals:aquarium_ingot| mythicmetals |
Line 90: Line 138:
 | c:argonium_ingots| mythicmetals:argonium_ingot| mythicmetals | | c:argonium_ingots| mythicmetals:argonium_ingot| mythicmetals |
 | c:argonium_nuggets| mythicmetals:argonium_nugget| mythicmetals | | c:argonium_nuggets| mythicmetals:argonium_nugget| mythicmetals |
 +| c:artichoke_dips| croptopia:artichoke_dip| croptopia |
 | c:ashes_dusts| techreborn:ashes_dust| techreborn | | c:ashes_dusts| techreborn:ashes_dust| techreborn |
 | c:ashes_small_dusts| techreborn:ashes_small_dust| techreborn | | c:ashes_small_dusts| techreborn:ashes_small_dust| techreborn |
Line 129: Line 178:
 | c:asteroid_tin_clusters| {'id': 'astromine:asteroid_tin_cluster', 'required': False}| astromine-discoveries, astromine-foundations | | c:asteroid_tin_clusters| {'id': 'astromine:asteroid_tin_cluster', 'required': False}| astromine-discoveries, astromine-foundations |
 | c:asteroid_tin_ores| {'id': 'astromine:asteroid_tin_ore', 'required': False}| astromine-discoveries, astromine-foundations | | c:asteroid_tin_ores| {'id': 'astromine:asteroid_tin_ore', 'required': False}| astromine-discoveries, astromine-foundations |
 +| c:baked_beans| croptopia:baked_beans| croptopia |
 +| c:banana_cream_pies| croptopia:banana_cream_pie| croptopia |
 +| c:banana_nut_breads| croptopia:banana_nut_bread| croptopia |
 +| c:banana_smoothies| croptopia:banana_smoothie| croptopia |
 | c:banglum_blocks| mythicmetals:banglum_block| mythicmetals | | c:banglum_blocks| mythicmetals:banglum_block| mythicmetals |
 | c:banglum_ingots| mythicmetals:banglum_ingot| mythicmetals | | c:banglum_ingots| mythicmetals:banglum_ingot| mythicmetals |
Line 142: Line 195:
 | :::| packed:warped_barrel_default| packed | | :::| packed:warped_barrel_default| packed |
 | :::| minecraft:barrel| packed | | :::| minecraft:barrel| packed |
 +| :::| betterend:helix_tree_barrel| betterend |
 +| :::| betterend:lucernia_barrel| betterend |
 +| :::| betterend:end_lotus_barrel| betterend |
 +| :::| betterend:umbrella_tree_barrel| betterend |
 +| :::| betterend:dragon_tree_barrel| betterend |
 +| :::| betterend:lacugrove_barrel| betterend |
 +| :::| betterend:jellyshroom_barrel| betterend |
 +| :::| betterend:pythadendron_barrel| betterend |
 +| :::| betterend:tenanea_barrel| betterend |
 +| :::| betterend:mossy_glowshroom_barrel| betterend |
 +| :::| betternether:rubeus_barrel| betternether |
 +| :::| betternether:nether_sakura_barrel| betternether |
 +| :::| betternether:nether_mushroom_barrel| betternether |
 +| :::| betternether:mushroom_fir_barrel| betternether |
 +| :::| betternether:stalagnate_barrel| betternether |
 +| :::| betternether:willow_barrel| betternether |
 +| :::| betternether:wart_barrel| betternether |
 +| :::| betternether:nether_reed_barrel| betternether |
 +| :::| betternether:anchor_tree_barrel| betternether |
 | c:basalt| minecraft:basalt| techreborn | | c:basalt| minecraft:basalt| techreborn |
 | :::| minecraft:polished_basalt| techreborn | | :::| minecraft:polished_basalt| techreborn |
 | c:basalt_dusts| techreborn:basalt_dust| techreborn | | c:basalt_dusts| techreborn:basalt_dust| techreborn |
 | c:basalt_small_dusts| techreborn:basalt_small_dust| techreborn | | c:basalt_small_dusts| techreborn:basalt_small_dust| techreborn |
 +| c:battery_alloy_blocks| modern_industrialization:battery_alloy_block| modern_industrialization |
 | c:battery_alloy_dusts| modern_industrialization:battery_alloy_dust| modern_industrialization | | c:battery_alloy_dusts| modern_industrialization:battery_alloy_dust| modern_industrialization |
 | c:battery_alloy_ingots| modern_industrialization:battery_alloy_ingot| modern_industrialization | | c:battery_alloy_ingots| modern_industrialization:battery_alloy_ingot| modern_industrialization |
Line 151: Line 224:
 | c:battery_alloy_plates| modern_industrialization:battery_alloy_plate| modern_industrialization | | c:battery_alloy_plates| modern_industrialization:battery_alloy_plate| modern_industrialization |
 | c:battery_alloy_tiny_dusts| modern_industrialization:battery_alloy_tiny_dust| modern_industrialization | | c:battery_alloy_tiny_dusts| modern_industrialization:battery_alloy_tiny_dust| modern_industrialization |
 +| c:bauxite_blocks| modern_industrialization:bauxite_block| modern_industrialization |
 | c:bauxite_dusts| modern_industrialization:bauxite_dust| modern_industrialization | | c:bauxite_dusts| modern_industrialization:bauxite_dust| modern_industrialization |
 | :::| techreborn:bauxite_dust| techreborn | | :::| techreborn:bauxite_dust| techreborn |
 | c:bauxite_ores| modern_industrialization:bauxite_ore| modern_industrialization | | c:bauxite_ores| modern_industrialization:bauxite_ore| modern_industrialization |
 | :::| techreborn:bauxite_ore| techreborn | | :::| techreborn:bauxite_ore| techreborn |
 +| :::| modern_industrialization:deepslate_bauxite_ore| modern_industrialization |
 +| :::| techreborn:deepslate_bauxite_ore| techreborn |
 | c:bauxite_small_dusts| techreborn:bauxite_small_dust| techreborn | | c:bauxite_small_dusts| techreborn:bauxite_small_dust| techreborn |
 | c:bauxite_tiny_dusts| modern_industrialization:bauxite_tiny_dust| modern_industrialization | | c:bauxite_tiny_dusts| modern_industrialization:bauxite_tiny_dust| modern_industrialization |
-| c:black_dyes| minecraft:black_dye| appliedenergistics2, computercraft, comforts, icarus | +| c:beef_jerkies| croptopia:beef_jerky| croptopia | 
-| :::| minecraft:ink_sac| icarus | +| c:beef_wellington| croptopia:beef_wellington| croptopia | 
-| c:blue_dyes| minecraft:blue_dye| appliedenergistics2, computercraft, comforts, icarus | +| c:beers| croptopia:beer| croptopia | 
-| :::| minecraft:lapis_lazuli| icarus | +| c:beryllium_blocks| modern_industrialization:beryllium_block| modern_industrialization | 
-| c:blueberriesalaskanativecraft:blueberriesalaskanativecraft |+| c:beryllium_dusts| modern_industrialization:beryllium_dust| modern_industrialization | 
 +| c:beryllium_ingots| modern_industrialization:beryllium_ingot| modern_industrialization | 
 +| c:beryllium_nuggets| modern_industrialization:beryllium_nugget| modern_industrialization | 
 +| c:beryllium_plates| modern_industrialization:beryllium_plate| modern_industrialization | 
 +| c:beryllium_tiny_dusts| modern_industrialization:beryllium_tiny_dust| modern_industrialization | 
 +| c:bitter_berries| valley:bitter_berries| valley | 
 +| c:black_dye| minecraft:black_dye| ae2 | 
 +| c:black_dyes| minecraft:black_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr 
 +| :::| minecraft:ink_sac| icarus, camsbackpacks | 
 +| c:black_sand| byg:black_sand| byg | 
 +| c:blackstone_bricks| minecraft:polished_blackstone_bricks| waystones | 
 +| :::| minecraft:cracked_polished_blackstone_bricks| waystones | 
 +| c:blastproof_alloy_ingots| modern_industrialization:blastproof_alloy_ingot| modern_industrialization | 
 +| c:blastproof_alloy_plates| modern_industrialization:blastproof_alloy_plate| modern_industrialization | 
 +| c:blts| croptopia:blt| croptopia | 
 +| c:blue_dye| minecraft:blue_dye| ae2 
 +| c:blue_dyes| minecraft:blue_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr 
 +| :::| minecraft:lapis_lazuli| icarus, camsbackpacks 
 +| c:blue_sandbyg:blue_sandbyg |
 | c:bone_blocks| minecraft:bone_block| astromine-discoveries, astromine-foundations | | c:bone_blocks| minecraft:bone_block| astromine-discoveries, astromine-foundations |
-| c:bones| minecraft:bone| spatialharvesters | +| c:bones| minecraft:bone| valley, spatialharvesters 
-| c:bookshelves| byg:aspen_bookshelf| byg |+| c:books| minecraft:book| arcanus | 
 +| :::| minecraft:enchanted_book| arcanus | 
 +| :::| minecraft:knowledge_book| arcanus | 
 +| :::| minecraft:writable_book| arcanus | 
 +| :::| minecraft:written_book| arcanus | 
 +| :::| patchouli:guide_book| arcanus 
 +| c:bookshelves| arcanus:fillable_bookshelf| arcanus | 
 +| :::| byg:aspen_bookshelf| byg |
 | :::| byg:baobab_bookshelf| byg | | :::| byg:baobab_bookshelf| byg |
 | :::| byg:blue_enchanted_bookshelf| byg | | :::| byg:blue_enchanted_bookshelf| byg |
Line 208: Line 309:
 | :::| techreborn:brass_plate| techreborn | | :::| techreborn:brass_plate| techreborn |
 | c:brass_small_dusts| techreborn:brass_small_dust| techreborn | | c:brass_small_dusts| techreborn:brass_small_dust| techreborn |
 +| c:brick_dusts| modern_industrialization:brick_dust| modern_industrialization |
 +| c:brick_tiny_dusts| modern_industrialization:brick_tiny_dust| modern_industrialization |
 | c:bronze_blocks| astromine:bronze_block| astromine-discoveries, astromine-foundations | | c:bronze_blocks| astromine:bronze_block| astromine-discoveries, astromine-foundations |
 | :::| c:bronze_block| cotton-resources | | :::| c:bronze_block| cotton-resources |
 +| :::| indrev:bronze_block| indrev |
 | :::| mythicmetals:bronze_block| mythicmetals | | :::| mythicmetals:bronze_block| mythicmetals |
 | :::| techreborn:bronze_storage_block| techreborn | | :::| techreborn:bronze_storage_block| techreborn |
 | :::| texp:bronze_block| texp | | :::| texp:bronze_block| texp |
 +| :::| modern_industrialization:bronze_block| modern_industrialization |
 | c:bronze_dusts| astromine:bronze_dust| astromine-discoveries, astromine-foundations | | c:bronze_dusts| astromine:bronze_dust| astromine-discoveries, astromine-foundations |
 | :::| c:bronze_dust| cotton-resources | | :::| c:bronze_dust| cotton-resources |
 +| :::| indrev:bronze_dust| indrev |
 | :::| modern_industrialization:bronze_dust| modern_industrialization | | :::| modern_industrialization:bronze_dust| modern_industrialization |
 | :::| techreborn:bronze_dust| techreborn | | :::| techreborn:bronze_dust| techreborn |
Line 223: Line 329:
 | c:bronze_ingots| astromine:bronze_ingot| astromine-discoveries, astromine-foundations | | c:bronze_ingots| astromine:bronze_ingot| astromine-discoveries, astromine-foundations |
 | :::| c:bronze_ingot| cotton-resources | | :::| c:bronze_ingot| cotton-resources |
 +| :::| indrev:bronze_ingot| indrev |
 | :::| modern_industrialization:bronze_ingot| modern_industrialization | | :::| modern_industrialization:bronze_ingot| modern_industrialization |
 | :::| mw:bronze_ingot| mw | | :::| mw:bronze_ingot| mw |
Line 230: Line 337:
 | c:bronze_nuggets| astromine:bronze_nugget| astromine-discoveries, astromine-foundations | | c:bronze_nuggets| astromine:bronze_nugget| astromine-discoveries, astromine-foundations |
 | :::| c:bronze_nugget| cotton-resources | | :::| c:bronze_nugget| cotton-resources |
 +| :::| indrev:bronze_nugget| indrev |
 | :::| modern_industrialization:bronze_nugget| modern_industrialization | | :::| modern_industrialization:bronze_nugget| modern_industrialization |
 | :::| mythicmetals:bronze_nugget| mythicmetals | | :::| mythicmetals:bronze_nugget| mythicmetals |
Line 236: Line 344:
 | c:bronze_plates| astromine:bronze_plate| astromine-discoveries, astromine-foundations | | c:bronze_plates| astromine:bronze_plate| astromine-discoveries, astromine-foundations |
 | :::| c:bronze_plate| cotton-resources | | :::| c:bronze_plate| cotton-resources |
 +| :::| indrev:bronze_plate| indrev |
 | :::| modern_industrialization:bronze_plate| modern_industrialization | | :::| modern_industrialization:bronze_plate| modern_industrialization |
 | :::| techreborn:bronze_plate| techreborn | | :::| techreborn:bronze_plate| techreborn |
Line 241: Line 350:
 | c:bronze_tiny_dusts| astromine:bronze_tiny_dust| astromine-discoveries, astromine-foundations | | c:bronze_tiny_dusts| astromine:bronze_tiny_dust| astromine-discoveries, astromine-foundations |
 | :::| modern_industrialization:bronze_tiny_dust| modern_industrialization | | :::| modern_industrialization:bronze_tiny_dust| modern_industrialization |
-| c:brown_dyes| minecraft:brown_dye| appliedenergistics2, computercraft, comforts, icarus | +| c:brown_dye| minecraft:brown_dye| ae2 | 
-| :::| minecraft:cocoa_beans| icarus |+| c:brown_dyes| minecraft:brown_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr 
 +| :::| minecraft:cocoa_beans| icarus, camsbackpacks | 
 +| c:brownies| croptopia:brownies| croptopia | 
 +| c:buckets/honey| the_bumblezone:honey_bucket| the_bumblezone |
 | c:butter| bonappetit:butter| bonappetit | | c:butter| bonappetit:butter| bonappetit |
 +| c:buttered_toasts| croptopia:buttered_toast| croptopia |
 +| c:butters| croptopia:butter| croptopia |
 +| c:cadmium_dusts| modern_industrialization:cadmium_dust| modern_industrialization |
 +| c:cadmium_ingots| modern_industrialization:cadmium_ingot| modern_industrialization |
 +| c:cadmium_plates| modern_industrialization:cadmium_plate| modern_industrialization |
 +| c:cadmium_tiny_dusts| modern_industrialization:cadmium_tiny_dust| modern_industrialization |
 +| c:caesar_salads| croptopia:caesar_salad| croptopia |
 | c:calcite_dusts| techreborn:calcite_dust| techreborn | | c:calcite_dusts| techreborn:calcite_dust| techreborn |
 | c:calcite_small_dusts| techreborn:calcite_small_dust| techreborn | | c:calcite_small_dusts| techreborn:calcite_small_dust| techreborn |
 +| c:candied_nuts| croptopia:candied_nuts| croptopia |
 +| c:candy_corns| croptopia:candy_corn| croptopia |
 +| c:caramel| croptopia:caramel| croptopia |
 | c:carbon_dusts| #c:charcoal_dusts| astromine-foundations | | c:carbon_dusts| #c:charcoal_dusts| astromine-foundations |
 | :::| #c:coal_dusts| astromine-foundations | | :::| #c:coal_dusts| astromine-foundations |
 +| :::| modern_industrialization:carbon_dust| modern_industrialization |
 | c:carbon_plates| techreborn:carbon_plate| techreborn | | c:carbon_plates| techreborn:carbon_plate| techreborn |
 +| :::| modern_industrialization:carbon_plate| modern_industrialization |
 +| c:carbon_tiny_dusts| modern_industrialization:carbon_tiny_dust| modern_industrialization |
 | c:carbonado| more_gems:carbonado| more_gems | | c:carbonado| more_gems:carbonado| more_gems |
 | c:carbs| minecraft:potato| veggie_way | | c:carbs| minecraft:potato| veggie_way |
Line 255: Line 380:
 | c:carmot_nuggets| mythicmetals:carmot_nugget| mythicmetals | | c:carmot_nuggets| mythicmetals:carmot_nugget| mythicmetals |
 | c:carmot_ores| mythicmetals:carmot_ore| mythicmetals | | c:carmot_ores| mythicmetals:carmot_ore| mythicmetals |
 +| c:cashew_chickens| croptopia:cashew_chicken| croptopia |
 | c:celestium_blocks| mythicmetals:celestium_block| mythicmetals | | c:celestium_blocks| mythicmetals:celestium_block| mythicmetals |
 | c:celestium_ingots| mythicmetals:celestium_ingot| mythicmetals | | c:celestium_ingots| mythicmetals:celestium_ingot| mythicmetals |
 | c:celestium_nuggets| mythicmetals:celestium_nugget| mythicmetals | | c:celestium_nuggets| mythicmetals:celestium_nugget| mythicmetals |
 +| c:certus_quartz| ae2:certus_quartz_crystal| ae2 |
 +| :::| ae2:charged_certus_quartz_crystal| ae2 |
 +| c:certus_quartz_blocks| ae2:quartz_block| ae2 |
 | c:certus_quartz_crystals| appliedenergistics2:certus_quartz_crystal| appliedenergistics2 | | c:certus_quartz_crystals| appliedenergistics2:certus_quartz_crystal| appliedenergistics2 |
 | :::| appliedenergistics2:charged_certus_quartz_crystal| appliedenergistics2 | | :::| appliedenergistics2:charged_certus_quartz_crystal| appliedenergistics2 |
 +| c:certus_quartz_dusts| ae2:certus_quartz_dust| ae2 |
 | c:certus_quartz_ores| appliedenergistics2:quartz_ore| appliedenergistics2 | | c:certus_quartz_ores| appliedenergistics2:quartz_ore| appliedenergistics2 |
 | :::| appliedenergistics2:charged_quartz_ore| appliedenergistics2 | | :::| appliedenergistics2:charged_quartz_ore| appliedenergistics2 |
 +| :::| ae2:quartz_ore| ae2 |
 +| :::| ae2:deepslate_quartz_ore| ae2 |
 | c:charcoal| minecraft:charcoal| astromine-discoveries, astromine-foundations | | c:charcoal| minecraft:charcoal| astromine-discoveries, astromine-foundations |
 | c:charcoal_dusts| astromine:charcoal_dust| astromine-discoveries, astromine-foundations | | c:charcoal_dusts| astromine:charcoal_dust| astromine-discoveries, astromine-foundations |
Line 268: Line 400:
 | c:charcoal_tiny_dusts| astromine:charcoal_tiny_dust| astromine-discoveries, astromine-foundations | | c:charcoal_tiny_dusts| astromine:charcoal_tiny_dust| astromine-discoveries, astromine-foundations |
 | c:cheese| bonappetit:cheese| bonappetit | | c:cheese| bonappetit:cheese| bonappetit |
 +| c:cheese_cakes| croptopia:cheese_cake| croptopia |
 +| c:cheese_pizzas| croptopia:cheese_pizza| croptopia |
 +| c:cheeseburgers| croptopia:cheeseburger| croptopia |
 +| c:cheeses| croptopia:cheese| croptopia |
 +| c:cherry_pies| croptopia:cherry_pie| croptopia |
 | c:chest| packed:oak_chest_default| packed | | c:chest| packed:oak_chest_default| packed |
 | :::| packed:spruce_chest_default| packed | | :::| packed:spruce_chest_default| packed |
Line 276: Line 413:
 | :::| packed:crimson_chest_default| packed | | :::| packed:crimson_chest_default| packed |
 | :::| packed:warped_chest_default| packed | | :::| packed:warped_chest_default| packed |
-| :::| minecraft:chest| packed, simple_backpack | +| :::| minecraft:chest| bclib, simple_backpack, packed 
-| :::| minecraft:trapped_chest| packed, simple_backpack | +| :::| minecraft:trapped_chest| simple_backpack, packed 
-c:chestsminecraft:chestalaskanativecraft +| :::betterend:pythadendron_chestbetterend 
-| :::| minecraft:trapped_chestalaskanativecraft +| :::| betterend:lacugrove_chestbetterend 
-| :::| minecraft:ender_chestalaskanativecraft +| :::| betterend:mossy_glowshroom_chestbetterend 
-| :::| minecraft:shulker_boxalaskanativecraft +| :::| betterend:dragon_tree_chestbetterend 
-| :::| minecraft:white_shulker_boxalaskanativecraft +| :::| betterend:lucernia_chestbetterend 
-| :::| minecraft:orange_shulker_boxalaskanativecraft +| :::| betterend:helix_tree_chestbetterend 
-| :::| minecraft:magenta_shulker_boxalaskanativecraft +| :::| betterend:tenanea_chestbetterend 
-| :::| minecraft:light_blue_shulker_boxalaskanativecraft +| :::| betterend:end_lotus_chestbetterend 
-| :::| minecraft:yellow_shulker_boxalaskanativecraft +| :::| betterend:umbrella_tree_chestbetterend 
-| :::| minecraft:lime_shulker_boxalaskanativecraft +| :::| betterend:jellyshroom_chestbetterend 
-| :::| minecraft:pink_shulker_boxalaskanativecraft +| :::| betternether:rubeus_chestbetternether 
-| :::| minecraft:gray_shulker_boxalaskanativecraft +| :::| betternether:nether_sakura_chestbetternether 
-| :::| minecraft:light_gray_shulker_boxalaskanativecraft +| :::| betternether:stalagnate_chestbetternether 
-| :::| minecraft:cyan_shulker_boxalaskanativecraft +| :::| betternether:warped_chestbetternether 
-| :::| minecraft:purple_shulker_boxalaskanativecraft +| :::| betternether:nether_reed_chestbetternether 
-| :::| minecraft:blue_shulker_boxalaskanativecraft +| :::| betternether:mushroom_fir_chestbetternether 
-| :::| minecraft:brown_shulker_boxalaskanativecraft +| :::| betternether:nether_mushroom_chestbetternether 
-| :::| minecraft:green_shulker_boxalaskanativecraft +| :::| betternether:wart_chestbetternether 
-| :::| minecraft:red_shulker_boxalaskanativecraft +| :::| betternether:crimson_chestbetternether 
-| :::| minecraft:black_shulker_boxalaskanativecraft |+| :::| betternether:anchor_tree_chest| betternether | 
 +| :::| betternether:willow_chest| betternether | 
 +| :::| bewitchment:juniper_chest| bewitchment | 
 +| :::| bewitchment:cypress_chest| bewitchment | 
 +| :::| bewitchment:elder_chest| bewitchment | 
 +| :::| bewitchment:dragons_blood_chest| bewitchment | 
 +| c:chicken_and_dumplings| croptopia:chicken_and_dumplings| croptopia | 
 +| c:chicken_and_noodles| croptopia:chicken_and_noodles| croptopia | 
 +| c:chicken_and_rice| croptopia:chicken_and_ricecroptopia |
 | c:chilli| bonappetit:chilli| bonappetit | | c:chilli| bonappetit:chilli| bonappetit |
 +| c:chocolate_milkshakes| croptopia:chocolate_milkshake| croptopia |
 +| c:chocolates| croptopia:chocolate| croptopia |
 | c:chrome_blocks| techreborn:chrome_storage_block| techreborn | | c:chrome_blocks| techreborn:chrome_storage_block| techreborn |
 | c:chrome_dusts| modern_industrialization:chrome_dust| modern_industrialization | | c:chrome_dusts| modern_industrialization:chrome_dust| modern_industrialization |
Line 310: Line 457:
 | c:chrome_small_dusts| techreborn:chrome_small_dust| techreborn | | c:chrome_small_dusts| techreborn:chrome_small_dust| techreborn |
 | c:chrome_tiny_dusts| modern_industrialization:chrome_tiny_dust| modern_industrialization | | c:chrome_tiny_dusts| modern_industrialization:chrome_tiny_dust| modern_industrialization |
 +| c:chromium_blocks| modern_industrialization:chromium_block| modern_industrialization |
 +| c:chromium_dusts| modern_industrialization:chromium_dust| modern_industrialization |
 +| c:chromium_ingots| modern_industrialization:chromium_ingot| modern_industrialization |
 +| c:chromium_nuggets| modern_industrialization:chromium_nugget| modern_industrialization |
 +| c:chromium_plates| modern_industrialization:chromium_plate| modern_industrialization |
 +| c:chromium_tiny_dusts| modern_industrialization:chromium_tiny_dust| modern_industrialization |
 | c:cinnabar_dusts| techreborn:cinnabar_dust| techreborn | | c:cinnabar_dusts| techreborn:cinnabar_dust| techreborn |
 | c:cinnabar_ores| techreborn:cinnabar_ore| techreborn | | c:cinnabar_ores| techreborn:cinnabar_ore| techreborn |
Line 317: Line 470:
 | c:clay_small_dusts| techreborn:clay_small_dust| techreborn | | c:clay_small_dusts| techreborn:clay_small_dust| techreborn |
 | c:coal| minecraft:coal| astromine-discoveries, astromine-foundations, spatialharvesters | | c:coal| minecraft:coal| astromine-discoveries, astromine-foundations, spatialharvesters |
-| c:coal_blocks| minecraft:coal_block| astromine-discoveries, astromine-foundations, spatialharvesters |+| c:coal_blocks| minecraft:coal_block| modern_industrialization, astromine-discoveries, astromine-foundations, spatialharvesters |
 | c:coal_coke_blocks| c:coal_coke_block| cotton-resources | | c:coal_coke_blocks| c:coal_coke_block| cotton-resources |
 | c:coal_cokes| c:coal_coke| cotton-resources | | c:coal_cokes| c:coal_coke| cotton-resources |
Line 327: Line 480:
 | :::| techreborn:coal_dust| techreborn | | :::| techreborn:coal_dust| techreborn |
 | c:coal_gravels| gravel-ores:coal_gravel| gravel-ores | | c:coal_gravels| gravel-ores:coal_gravel| gravel-ores |
-| c:coal_ores| minecraft:coal_ore| randomtech, astromine-discoveries, astromine-foundationsindrev, modern_industrialization, techreborn |+| c:coal_nuggets| dwarfcoal:dwarf_coal| dwarfcoal | 
 +| :::| dwarfcoal:dwarf_charcoal| dwarfcoal | 
 +| c:coal_ores| minecraft:coal_ore| indrev, techreborn, modern_industrialization, astromine-foundations, astromine-discoveriesrandomtech |
 | :::| #c:asteroid_coal_ores| astromine-discoveries | | :::| #c:asteroid_coal_ores| astromine-discoveries |
 | :::| bno:nethercoal_ore| bno | | :::| bno:nethercoal_ore| bno |
 | :::| gravel-ores:coal_gravel| gravel-ores | | :::| gravel-ores:coal_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_coal_oreunearthed +| :::| #minecraft:coal_oresmodern_industrialization 
-| :::| unearthed:gabbro_coal_oreunearthed | +| :::| minecraft:deepslate_coal_oretechreborn |
-| :::| unearthed:pumice_coal_ore| unearthed | +
-| :::| unearthed:kimberlite_coal_ore| unearthed | +
-| :::| unearthed:rhyolite_coal_ore| unearthed | +
-| :::| unearthed:slate_coal_ore| unearthed | +
-| :::| unearthed:marble_coal_ore| unearthed | +
-| :::| unearthed:quartzite_coal_ore| unearthed | +
-| :::| unearthed:phyllite_coal_ore| unearthed | +
-| :::| unearthed:schist_coal_ore| unearthed | +
-| :::| unearthed:limestone_coal_ore| unearthed | +
-| :::| unearthed:lignite_coal_ore| unearthed | +
-| :::| unearthed:siltstone_coal_ore| unearthed | +
-| :::| unearthed:mudstone_coal_ore| unearthed | +
-| :::| unearthed:conglomerate_coal_ore| unearthed |+
 | c:coal_plates| techreborn:coal_plate| techreborn | | c:coal_plates| techreborn:coal_plate| techreborn |
 | c:coal_small_dusts| techreborn:coal_small_dust| techreborn | | c:coal_small_dusts| techreborn:coal_small_dust| techreborn |
Line 368: Line 510:
 | :::| byg:soapstone| byg | | :::| byg:soapstone| byg |
 | :::| byg:ether_stone| byg | | :::| byg:ether_stone| byg |
-| :::| minecraft:cobblestone| spatialharvesters | +| :::| minecraft:cobblestone| ae2, spatialharvesters 
-| c:cobblestones| minecraft:cobblestone| cotton-resources, nafis +| :::| minecraft:infested_cobblestone| ae2 | 
-| c:common_loot| minecraft:leather| gobber2, resourceful_tools | +| :::| minecraft:mossy_cobblestone| ae2 
-| :::| minecraft:rabbit_hide| gobber2, resourceful_tools +| c:cobblestones| minecraft:cobblestone| nafis, cotton-resources 
-| :::| minecraft:feather| gobber2, resourceful_tools | +| c:cocoa_beans| minecraft:cocoa_beans| adorn | 
-| :::| minecraft:slime_ball| gobber2, resourceful_tools | +| c:coffees| croptopia:coffee| croptopia | 
-| :::| minecraft:gunpowder| gobber2, resourceful_tools +| c:coke_blocks| modern_industrialization:coke_block| modern_industrialization | 
-| :::| minecraft:iron_ingot| gobber2, resourceful_tools | +| c:coke_dusts| modern_industrialization:coke_dust| modern_industrialization 
-| :::| minecraft:gold_ingot| gobber2, resourceful_tools | +| c:common_loot| minecraft:leather| resourceful_tools, gobber2 
-| :::| minecraft:ender_pearl| gobber2, resourceful_tools | +| :::| minecraft:rabbit_hide| resourceful_tools, gobber2 | 
-| :::| minecraft:blaze_powder| gobber2, resourceful_tools | +| :::| minecraft:feather| resourceful_tools, gobber2 
-| :::| minecraft:quartz| gobber2, resourceful_tools |+| :::| minecraft:slime_ball| resourceful_tools, gobber2 
 +| :::| minecraft:gunpowder| resourceful_tools, gobber2 | 
 +| :::| minecraft:iron_ingot| resourceful_tools, gobber2 
 +| :::| minecraft:gold_ingot| resourceful_tools, gobber2 
 +| :::| minecraft:ender_pearl| resourceful_tools, gobber2 
 +| :::| minecraft:blaze_powder| resourceful_tools, gobber2 
 +| :::| minecraft:quartz| resourceful_tools, gobber2 |
 | :::| more_gems:citrine_juju| more_gems | | :::| more_gems:citrine_juju| more_gems |
 | :::| more_gems:tourmaline_juju| more_gems | | :::| more_gems:tourmaline_juju| more_gems |
Line 388: Line 536:
 | :::| veggie_way:energy_bar| veggie_way | | :::| veggie_way:energy_bar| veggie_way |
 | c:compressed_diamonds| mechanix:compressed_diamond| mechanix | | c:compressed_diamonds| mechanix:compressed_diamond| mechanix |
 +| c:compressed_dirt| prefab:block_compressed_dirt| prefab |
 +| c:compressed_glow_stone| prefab:block_compressed_glowstone| prefab |
 +| c:compressed_obsidian| prefab:block_compressed_obsidian| prefab |
 +| c:compressed_stone| prefab:block_compressed_stone| prefab |
 | c:concrete| minecraft:white_concrete| artofalchemy | | c:concrete| minecraft:white_concrete| artofalchemy |
 | :::| minecraft:orange_concrete| artofalchemy | | :::| minecraft:orange_concrete| artofalchemy |
Line 420: Line 572:
 | :::| minecraft:red_concrete_powder| artofalchemy | | :::| minecraft:red_concrete_powder| artofalchemy |
 | :::| minecraft:black_concrete_powder| artofalchemy | | :::| minecraft:black_concrete_powder| artofalchemy |
 +| c:concrete_powders| minecraft:black_concrete_powder| mtr |
 +| :::| minecraft:blue_concrete_powder| mtr |
 +| :::| minecraft:brown_concrete_powder| mtr |
 +| :::| minecraft:cyan_concrete_powder| mtr |
 +| :::| minecraft:gray_concrete_powder| mtr |
 +| :::| minecraft:green_concrete_powder| mtr |
 +| :::| minecraft:light_blue_concrete_powder| mtr |
 +| :::| minecraft:light_gray_concrete_powder| mtr |
 +| :::| minecraft:lime_concrete_powder| mtr |
 +| :::| minecraft:magenta_concrete_powder| mtr |
 +| :::| minecraft:orange_concrete_powder| mtr |
 +| :::| minecraft:pink_concrete_powder| mtr |
 +| :::| minecraft:purple_concrete_powder| mtr |
 +| :::| minecraft:red_concrete_powder| mtr |
 +| :::| minecraft:white_concrete_powder| mtr |
 +| :::| minecraft:yellow_concrete_powder| mtr |
 +| c:concretes| minecraft:black_concrete| mtr |
 +| :::| minecraft:blue_concrete| mtr |
 +| :::| minecraft:brown_concrete| mtr |
 +| :::| minecraft:cyan_concrete| mtr |
 +| :::| minecraft:gray_concrete| mtr |
 +| :::| minecraft:green_concrete| mtr |
 +| :::| minecraft:light_blue_concrete| mtr |
 +| :::| minecraft:light_gray_concrete| mtr |
 +| :::| minecraft:lime_concrete| mtr |
 +| :::| minecraft:magenta_concrete| mtr |
 +| :::| minecraft:orange_concrete| mtr |
 +| :::| minecraft:pink_concrete| mtr |
 +| :::| minecraft:purple_concrete| mtr |
 +| :::| minecraft:red_concrete| mtr |
 +| :::| minecraft:white_concrete| mtr |
 +| :::| minecraft:yellow_concrete| mtr |
 +| c:cooked_eggs| betteranimalsplus:fried_egg| betteranimalsplus |
 | c:cooked_meat| epicurean:tofu| epicurean | | c:cooked_meat| epicurean:tofu| epicurean |
-| :::| minecraft:cooked_beef| exnihilofabrico | +| :::| minecraft:cooked_beef| techreborn, exnihilofabrico | 
-| :::| minecraft:cooked_porkchop| exnihilofabrico | +| :::| minecraft:cooked_porkchop| techreborn, exnihilofabrico | 
-| :::| minecraft:cooked_chicken| exnihilofabrico | +| :::| minecraft:cooked_chicken| techreborn, exnihilofabrico | 
-| :::| minecraft:cooked_mutton| exnihilofabrico |+| :::| minecraft:cooked_mutton| techreborn, exnihilofabrico |
 | :::| exnihilofabrico:silkworm_cooked| exnihilofabrico | | :::| exnihilofabrico:silkworm_cooked| exnihilofabrico |
-| c:cooked_venisonalaskanativecraft:cooked_venisonalaskanativecraft |+| :::| betteranimalsplus:venisoncooked| betteranimalsplus | 
 +| :::| betteranimalsplus:pheasantcooked| betteranimalsplus | 
 +| :::| betteranimalsplus:crab_meat_cooked| betteranimalsplus | 
 +| :::| betteranimalsplus:turkey_leg_cooked| betteranimalsplus | 
 +| :::| betteranimalsplus:eel_meat_cooked| betteranimalsplus | 
 +| :::| betteranimalsplus:calamari_cooked| betteranimalsplus | 
 +| :::| minecraft:cooked_cod| techreborn | 
 +| :::| minecraft:cooked_rabbit| techreborn | 
 +| :::| minecraft:cooked_salmon| techreborn | 
 +| c:cooking_potscroptopia:cooking_potcroptopia |
 | c:copper_block| refinedmachinery:copper_block| refinedmachinery | | c:copper_block| refinedmachinery:copper_block| refinedmachinery |
 | c:copper_blocks| astromine:copper_block| astromine-discoveries, astromine-foundations | | c:copper_blocks| astromine:copper_block| astromine-discoveries, astromine-foundations |
Line 436: Line 630:
 | :::| techreborn:copper_storage_block| techreborn | | :::| techreborn:copper_storage_block| techreborn |
 | :::| texp:copper_block| texp | | :::| texp:copper_block| texp |
 +| :::| minecraft:copper_block| modern_industrialization, indrev, mythicmetals |
 +| :::| minecraft:waxed_copper_block| modern_industrialization |
 | c:copper_dust| refinedmachinery:copper_dust| refinedmachinery | | c:copper_dust| refinedmachinery:copper_dust| refinedmachinery |
 | c:copper_dusts| astromine:copper_dust| astromine-discoveries, astromine-foundations | | c:copper_dusts| astromine:copper_dust| astromine-discoveries, astromine-foundations |
Line 450: Line 646:
 | :::| refinedmachinery:copper_ingot| refinedmachinery | | :::| refinedmachinery:copper_ingot| refinedmachinery |
 | :::| tenor:copper_ingot| tenor | | :::| tenor:copper_ingot| tenor |
 +| :::| minecraft:copper_ingot| valley |
 | c:copper_ingots| astromine:copper_ingot| astromine-discoveries, astromine-foundations | | c:copper_ingots| astromine:copper_ingot| astromine-discoveries, astromine-foundations |
 | :::| bno:copper_ingot| bno | | :::| bno:copper_ingot| bno |
Line 462: Line 659:
 | :::| techreborn:copper_ingot| techreborn | | :::| techreborn:copper_ingot| techreborn |
 | :::| texp:copper_ingot| texp | | :::| texp:copper_ingot| texp |
 +| :::| minecraft:copper_ingot| modern_industrialization, ae2, indrev, crookedcrooks, mythicmetals |
 | c:copper_nuggets| astromine:copper_nugget| astromine-discoveries, astromine-foundations | | c:copper_nuggets| astromine:copper_nugget| astromine-discoveries, astromine-foundations |
 | :::| bno:copper_nugget| bno | | :::| bno:copper_nugget| bno |
Line 470: Line 668:
 | :::| techreborn:copper_nugget| techreborn | | :::| techreborn:copper_nugget| techreborn |
 | :::| texp:copper_nugget| texp | | :::| texp:copper_nugget| texp |
 +| :::| valley:copper_nugget| valley |
 | c:copper_ore| mechanized:copper_ore| mechanized | | c:copper_ore| mechanized:copper_ore| mechanized |
 | :::| refinedmachinery:copper_ore| refinedmachinery | | :::| refinedmachinery:copper_ore| refinedmachinery |
Line 483: Line 682:
 | :::| mythicmetals:copper_ore| mythicmetals | | :::| mythicmetals:copper_ore| mythicmetals |
 | :::| nafis:copper_ore| nafis | | :::| nafis:copper_ore| nafis |
 +| :::| minecraft:copper_ore| resourceful_tools, techreborn, mythicmetals |
 | :::| techreborn:copper_ore| techreborn | | :::| techreborn:copper_ore| techreborn |
 | :::| texp:copper_ore| texp | | :::| texp:copper_ore| texp |
 +| :::| #minecraft:copper_ores| modern_industrialization |
 +| :::| minecraft:deepslate_copper_ore| techreborn, mythicmetals |
 | c:copper_plates| astromine:copper_plate| astromine-discoveries, astromine-foundations | | c:copper_plates| astromine:copper_plate| astromine-discoveries, astromine-foundations |
 | :::| c:copper_plate| cotton-resources | | :::| c:copper_plate| cotton-resources |
Line 494: Line 696:
 | :::| modern_industrialization:copper_tiny_dust| modern_industrialization | | :::| modern_industrialization:copper_tiny_dust| modern_industrialization |
 | c:copper_wires| astromine:copper_wire| astromine-discoveries, astromine-foundations | | c:copper_wires| astromine:copper_wire| astromine-discoveries, astromine-foundations |
 +| c:coral_blocks| minecraft:tube_coral_block| oceancraft |
 +| :::| minecraft:brain_coral_block| oceancraft |
 +| :::| minecraft:bubble_coral_block| oceancraft |
 +| :::| minecraft:fire_coral_block| oceancraft |
 +| :::| minecraft:horn_coral_block| oceancraft |
 +| c:coral_plants| minecraft:tube_coral| oceancraft |
 +| :::| minecraft:brain_coral| oceancraft |
 +| :::| minecraft:bubble_coral| oceancraft |
 +| :::| minecraft:fire_coral| oceancraft |
 +| :::| minecraft:horn_coral| oceancraft |
 +| c:corals| #c:coral_plants| oceancraft |
 +| :::| minecraft:tube_coral_fan| oceancraft |
 +| :::| minecraft:brain_coral_fan| oceancraft |
 +| :::| minecraft:bubble_coral_fan| oceancraft |
 +| :::| minecraft:fire_coral_fan| oceancraft |
 +| :::| minecraft:horn_coral_fan| oceancraft |
 | c:corn| veggie_way:corn| veggie_way | | c:corn| veggie_way:corn| veggie_way |
 +| :::| valley:maize_crop| valley |
 +| c:cornish_pasty| croptopia:cornish_pasty| croptopia |
 | c:corundum| more_gems:corundum| more_gems | | c:corundum| more_gems:corundum| more_gems |
-| c:crafting_tables| minecraft:crafting_table| bigbenchtheory | 
-| :::| bigbenchtheory:tiny_bench| bigbenchtheory | 
-| :::| bigbenchtheory:big_bench| bigbenchtheory | 
-| :::| bigbenchtheory:bigger_bench| bigbenchtheory | 
-| :::| bigbenchtheory:biggest_bench| bigbenchtheory | 
 | c:crops| byg:blueberries| byg | | c:crops| byg:blueberries| byg |
 | :::| byg:green_apple| byg | | :::| byg:green_apple| byg |
 | :::| byg:crimson_berries| byg | | :::| byg:crimson_berries| byg |
 +| :::| #c:crops/basil| croptopia |
 +| :::| #c:crops/blackbeans| croptopia |
 +| :::| #c:crops/chile_peppers| croptopia |
 +| :::| #c:crops/coffee_beans| croptopia |
 +| :::| #c:crops/hops| croptopia |
 +| :::| #c:crops/nutmeg| croptopia |
 +| :::| #c:crops/paprika| croptopia |
 +| :::| #c:crops/peanuts| croptopia |
 +| :::| #c:crops/vanilla| croptopia |
 +| :::| #c:fruits| croptopia |
 +| :::| #c:grains| croptopia |
 +| :::| #c:nuts| croptopia |
 +| :::| #c:vegetables| croptopia |
 +| c:crops/basil| croptopia:basil| croptopia |
 +| c:crops/blackbeans| croptopia:blackbean| croptopia |
 +| c:crops/chile_peppers| croptopia:chile_pepper| croptopia |
 +| c:crops/coffee_beans| croptopia:coffee_beans| croptopia |
 +| c:crops/hops| croptopia:hops| croptopia |
 +| c:crops/nutmeg| croptopia:nutmeg| croptopia |
 +| c:crops/paprika| croptopia:paprika| croptopia |
 +| c:crops/peanuts| croptopia:peanut| croptopia |
 +| c:crops/vanilla| croptopia:vanilla| croptopia |
 | c:cucumber| bonappetit:cucumber| bonappetit | | c:cucumber| bonappetit:cucumber| bonappetit |
 +| c:cucumber_salads| croptopia:cucumber_salad| croptopia |
 +| c:cupronickel_blocks| modern_industrialization:cupronickel_block| modern_industrialization |
 | c:cupronickel_dusts| modern_industrialization:cupronickel_dust| modern_industrialization | | c:cupronickel_dusts| modern_industrialization:cupronickel_dust| modern_industrialization |
 | c:cupronickel_ingots| modern_industrialization:cupronickel_ingot| modern_industrialization | | c:cupronickel_ingots| modern_industrialization:cupronickel_ingot| modern_industrialization |
Line 510: Line 749:
 | c:cupronickel_plates| modern_industrialization:cupronickel_plate| modern_industrialization | | c:cupronickel_plates| modern_industrialization:cupronickel_plate| modern_industrialization |
 | c:cupronickel_tiny_dusts| modern_industrialization:cupronickel_tiny_dust| modern_industrialization | | c:cupronickel_tiny_dusts| modern_industrialization:cupronickel_tiny_dust| modern_industrialization |
-| c:cyan_dyes| minecraft:cyan_dye| appliedenergistics2, computercraft, comforts, icarus |+| c:cyan_dye| minecraft:cyan_dye| ae2 | 
 +| c:cyan_dyes| minecraft:cyan_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr |
 | c:dark_ashes_dusts| cinderscapes:ash_pile| cinderscapes | | c:dark_ashes_dusts| cinderscapes:ash_pile| cinderscapes |
 | :::| techreborn:dark_ashes_dust| techreborn | | :::| techreborn:dark_ashes_dust| techreborn |
 | c:dark_ashes_small_dusts| techreborn:dark_ashes_small_dust| techreborn | | c:dark_ashes_small_dusts| techreborn:dark_ashes_small_dust| techreborn |
-| c:diamond_blocks| minecraft:diamond_block| astromine-discoveries, astromine-foundations |+| c:deepslate_bricks| minecraft:deepslate_bricks| waystones | 
 +| :::| minecraft:cracked_deepslate_bricks| waystones | 
 +| c:diamond_blocks| minecraft:diamond_block| modern_industrialization, astromine-discoveries, mtr, astromine-foundations |
 | c:diamond_dust| refinedmachinery:diamond_dust| refinedmachinery | | c:diamond_dust| refinedmachinery:diamond_dust| refinedmachinery |
 | c:diamond_dusts| astromine:diamond_dust| astromine-discoveries, astromine-foundations | | c:diamond_dusts| astromine:diamond_dust| astromine-discoveries, astromine-foundations |
Line 520: Line 762:
 | :::| indrev:diamond_dust| indrev | | :::| indrev:diamond_dust| indrev |
 | :::| techreborn:diamond_dust| techreborn | | :::| techreborn:diamond_dust| techreborn |
 +| :::| modern_industrialization:diamond_dust| modern_industrialization |
 | c:diamond_fragments| astromine:diamond_fragment| astromine-discoveries, astromine-foundations | | c:diamond_fragments| astromine:diamond_fragment| astromine-discoveries, astromine-foundations |
 | c:diamond_gears| c:diamond_gear| cotton-resources | | c:diamond_gears| c:diamond_gear| cotton-resources |
Line 526: Line 769:
 | :::| gobber2:diamond_nugget| gobber2 | | :::| gobber2:diamond_nugget| gobber2 |
 | :::| techreborn:diamond_nugget| techreborn | | :::| techreborn:diamond_nugget| techreborn |
-| c:diamond_ores| minecraft:diamond_ore| randomtech, astromine-discoveries, astromine-foundationstechreborn |+| c:diamond_ores| minecraft:diamond_ore| indrev, techreborn, astromine-foundations, astromine-discoveriesrandomtech |
 | :::| #c:asteroid_diamond_ores| astromine-discoveries | | :::| #c:asteroid_diamond_ores| astromine-discoveries |
 | :::| bno:netherdiamond_ore| bno | | :::| bno:netherdiamond_ore| bno |
 | :::| gravel-ores:diamond_gravel| gravel-ores | | :::| gravel-ores:diamond_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_diamond_oreunearthed +| :::| #minecraft:diamond_oresmodern_industrialization 
-| :::| unearthed:gabbro_diamond_oreunearthed | +| :::| minecraft:deepslate_diamond_oretechreborn |
-| :::| unearthed:pumice_diamond_ore| unearthed | +
-| :::| unearthed:kimberlite_diamond_ore| unearthed | +
-| :::| unearthed:rhyolite_diamond_ore| unearthed | +
-| :::| unearthed:slate_diamond_ore| unearthed | +
-| :::| unearthed:marble_diamond_ore| unearthed | +
-| :::| unearthed:quartzite_diamond_ore| unearthed | +
-| :::| unearthed:phyllite_diamond_ore| unearthed | +
-| :::| unearthed:schist_diamond_ore| unearthed | +
-| :::| unearthed:limestone_diamond_ore| unearthed | +
-| :::| unearthed:lignite_diamond_ore| unearthed | +
-| :::| unearthed:siltstone_diamond_ore| unearthed | +
-| :::| unearthed:mudstone_diamond_ore| unearthed | +
-| :::| unearthed:conglomerate_diamond_ore| unearthed |+
 | c:diamond_plates| c:diamond_plate| cotton-resources | | c:diamond_plates| c:diamond_plate| cotton-resources |
 | :::| techreborn:diamond_plate| techreborn | | :::| techreborn:diamond_plate| techreborn |
 +| :::| modern_industrialization:diamond_plate| modern_industrialization |
 | c:diamond_small_dusts| techreborn:diamond_small_dust| techreborn | | c:diamond_small_dusts| techreborn:diamond_small_dust| techreborn |
 | c:diamond_tiny_dusts| astromine:diamond_tiny_dust| astromine-discoveries, astromine-foundations | | c:diamond_tiny_dusts| astromine:diamond_tiny_dust| astromine-discoveries, astromine-foundations |
-| c:diamonds| minecraft:diamond| appliedenergistics2, astromine-discoveries, astromine-foundations, cotton-resources, crookedcrooksironchest, nafisslotlink, spatialharvesters |+| :::| modern_industrialization:diamond_tiny_dust| modern_industrialization | 
 +| c:diamonds| minecraft:diamond| slotlink, spatialharvesters, nafis, appliedenergistics2, astromine-foundations, ae2, ironchest, cotton-resources, astromine-discoveriesexpandedstoragecrookedcrooks |
 | c:diorite_dusts| techreborn:diorite_dust| techreborn | | c:diorite_dusts| techreborn:diorite_dust| techreborn |
 | c:diorite_small_dusts| techreborn:diorite_small_dust| techreborn | | c:diorite_small_dusts| techreborn:diorite_small_dust| techreborn |
Line 555: Line 787:
 | c:discordium_ingots| mythicmetals:discordium_ingot| mythicmetals | | c:discordium_ingots| mythicmetals:discordium_ingot| mythicmetals |
 | c:discordium_nuggets| mythicmetals:discordium_nugget| mythicmetals | | c:discordium_nuggets| mythicmetals:discordium_nugget| mythicmetals |
 +| c:double_compressed_dirt| prefab:block_double_compressed_dirt| prefab |
 +| c:double_compressed_glow_stone| prefab:block_double_compressed_glowstone| prefab |
 +| c:double_compressed_obsidian| prefab:block_double_compressed_obsidian| prefab |
 +| c:double_compressed_stone| prefab:block_double_compressed_stone| prefab |
 | c:dough| bonappetit:dough| bonappetit | | c:dough| bonappetit:dough| bonappetit |
 +| :::| valley:bread_dough| valley |
 +| c:doughnuts| croptopia:doughnut| croptopia |
 +| c:doughs| croptopia:dough| croptopia |
 | c:durasteel_blocks| mythicmetals:durasteel_block| mythicmetals | | c:durasteel_blocks| mythicmetals:durasteel_block| mythicmetals |
 | c:durasteel_ingots| mythicmetals:durasteel_ingot| mythicmetals | | c:durasteel_ingots| mythicmetals:durasteel_ingot| mythicmetals |
Line 576: Line 815:
 | :::| #c:dye_yellow| flonters | | :::| #c:dye_yellow| flonters |
 | c:dye_black| minecraft:black_dye| flonters | | c:dye_black| minecraft:black_dye| flonters |
-| c:dye_blue| minecraft:blue_dye| flonters |+| c:dye_blue| minecraft:blue_dye| extragenerators, flonters |
 | c:dye_brown| minecraft:brown_dye| flonters | | c:dye_brown| minecraft:brown_dye| flonters |
 | c:dye_cyan| minecraft:cyan_dye| flonters | | c:dye_cyan| minecraft:cyan_dye| flonters |
 | c:dye_gray| minecraft:gray_dye| flonters | | c:dye_gray| minecraft:gray_dye| flonters |
-| c:dye_green| minecraft:green_dye| flonters |+| c:dye_green| minecraft:green_dye| extragenerators, flonters |
 | c:dye_light_blue| minecraft:light_blue_dye| flonters | | c:dye_light_blue| minecraft:light_blue_dye| flonters |
 | c:dye_light_gray| minecraft:light_gray_dye| flonters | | c:dye_light_gray| minecraft:light_gray_dye| flonters |
Line 588: Line 827:
 | c:dye_pink| minecraft:pink_dye| flonters | | c:dye_pink| minecraft:pink_dye| flonters |
 | c:dye_purple| minecraft:purple_dye| flonters | | c:dye_purple| minecraft:purple_dye| flonters |
-| c:dye_red| minecraft:red_dye| flonters |+| c:dye_red| minecraft:red_dye| extragenerators, flonters |
 | c:dye_white| minecraft:white_dye| flonters | | c:dye_white| minecraft:white_dye| flonters |
 | c:dye_yellow| minecraft:yellow_dye| flonters | | c:dye_yellow| minecraft:yellow_dye| flonters |
-| c:dyes| minecraft:white_dye| exnihilofabrico, spatialharvesters | +| c:dyes| minecraft:white_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:orange_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:orange_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:magenta_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:magenta_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:light_blue_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:light_blue_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:yellow_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:yellow_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:lime_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:lime_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:pink_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:pink_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:gray_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:gray_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:light_gray_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:light_gray_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:cyan_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:cyan_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:purple_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:purple_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:blue_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:blue_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:brown_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:brown_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:green_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:green_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:red_dye| exnihilofabrico, spatialharvesters | +| :::| minecraft:red_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | 
-| :::| minecraft:black_dye| exnihilofabrico, spatialharvesters |+| :::| minecraft:black_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters 
 +| c:egg_rolls| croptopia:egg_roll| croptopia | 
 +| c:eggplants| valley:eggplant| valley |
 | c:eggs| flamingo_ooo:flamingo_egg| flamingo_ooo | | c:eggs| flamingo_ooo:flamingo_egg| flamingo_ooo |
-| :::| minecraft:egg| spatialharvesters |+| :::| minecraft:egg| valley, spatialharvesters 
 +| :::| betteranimalsplus:pheasant_egg| betteranimalsplus | 
 +| :::| betteranimalsplus:turkey_egg| betteranimalsplus | 
 +| :::| betteranimalsplus:goose_egg| betteranimalsplus | 
 +| :::| valley:duck_egg| valley |
 | c:electrum_blocks| astromine:electrum_block| astromine-discoveries, astromine-foundations | | c:electrum_blocks| astromine:electrum_block| astromine-discoveries, astromine-foundations |
 | :::| c:electrum_block| cotton-resources | | :::| c:electrum_block| cotton-resources |
 +| :::| indrev:electrum_block| indrev |
 | :::| mythicmetals:electrum_block| mythicmetals | | :::| mythicmetals:electrum_block| mythicmetals |
 | :::| techreborn:electrum_storage_block| techreborn | | :::| techreborn:electrum_storage_block| techreborn |
 | :::| texp:electrum_block| texp | | :::| texp:electrum_block| texp |
 +| :::| modern_industrialization:electrum_block| modern_industrialization |
 | c:electrum_dusts| astromine:electrum_dust| astromine-discoveries, astromine-foundations | | c:electrum_dusts| astromine:electrum_dust| astromine-discoveries, astromine-foundations |
 | :::| c:electrum_dust| cotton-resources | | :::| c:electrum_dust| cotton-resources |
 +| :::| indrev:electrum_dust| indrev |
 | :::| modern_industrialization:electrum_dust| modern_industrialization | | :::| modern_industrialization:electrum_dust| modern_industrialization |
 | :::| techreborn:electrum_dust| techreborn | | :::| techreborn:electrum_dust| techreborn |
Line 623: Line 871:
 | c:electrum_ingots| astromine:electrum_ingot| astromine-discoveries, astromine-foundations | | c:electrum_ingots| astromine:electrum_ingot| astromine-discoveries, astromine-foundations |
 | :::| c:electrum_ingot| cotton-resources | | :::| c:electrum_ingot| cotton-resources |
 +| :::| indrev:electrum_ingot| indrev |
 | :::| modern_industrialization:electrum_ingot| modern_industrialization | | :::| modern_industrialization:electrum_ingot| modern_industrialization |
 | :::| mw:electrum_ingot| mw | | :::| mw:electrum_ingot| mw |
Line 630: Line 879:
 | c:electrum_nuggets| astromine:electrum_nugget| astromine-discoveries, astromine-foundations | | c:electrum_nuggets| astromine:electrum_nugget| astromine-discoveries, astromine-foundations |
 | :::| c:electrum_nugget| cotton-resources | | :::| c:electrum_nugget| cotton-resources |
 +| :::| indrev:electrum_nugget| indrev |
 | :::| modern_industrialization:electrum_nugget| modern_industrialization | | :::| modern_industrialization:electrum_nugget| modern_industrialization |
 | :::| mythicmetals:electrum_nugget| mythicmetals | | :::| mythicmetals:electrum_nugget| mythicmetals |
Line 636: Line 886:
 | c:electrum_plates| astromine:electrum_plate| astromine-discoveries, astromine-foundations | | c:electrum_plates| astromine:electrum_plate| astromine-discoveries, astromine-foundations |
 | :::| c:electrum_plate| cotton-resources | | :::| c:electrum_plate| cotton-resources |
 +| :::| indrev:electrum_plate| indrev |
 | :::| modern_industrialization:electrum_plate| modern_industrialization | | :::| modern_industrialization:electrum_plate| modern_industrialization |
 | :::| techreborn:electrum_plate| techreborn | | :::| techreborn:electrum_plate| techreborn |
Line 642: Line 893:
 | :::| modern_industrialization:electrum_tiny_dust| modern_industrialization | | :::| modern_industrialization:electrum_tiny_dust| modern_industrialization |
 | c:electrum_wires| astromine:electrum_wire| astromine-discoveries, astromine-foundations | | c:electrum_wires| astromine:electrum_wire| astromine-discoveries, astromine-foundations |
-| c:emerald_blocks| minecraft:emerald_block| astromine-discoveries, astromine-foundations |+| c:emerald_blocks| minecraft:emerald_block| modern_industrialization, astromine-discoveries, astromine-foundations |
 | c:emerald_dusts| astromine:emerald_dust| astromine-discoveries, astromine-foundations | | c:emerald_dusts| astromine:emerald_dust| astromine-discoveries, astromine-foundations |
 | :::| c:emerald_dust| cotton-resources | | :::| c:emerald_dust| cotton-resources |
 | :::| techreborn:emerald_dust| techreborn | | :::| techreborn:emerald_dust| techreborn |
 +| :::| modern_industrialization:emerald_dust| modern_industrialization |
 | c:emerald_fragments| astromine:emerald_fragment| astromine-discoveries, astromine-foundations | | c:emerald_fragments| astromine:emerald_fragment| astromine-discoveries, astromine-foundations |
 | c:emerald_gears| c:emerald_gear| cotton-resources | | c:emerald_gears| c:emerald_gear| cotton-resources |
Line 651: Line 903:
 | c:emerald_nuggets| #c:emerald_fragments| astromine-foundations | | c:emerald_nuggets| #c:emerald_fragments| astromine-foundations |
 | :::| techreborn:emerald_nugget| techreborn | | :::| techreborn:emerald_nugget| techreborn |
-| c:emerald_ores| minecraft:emerald_ore| randomtech, astromine-discoveries, astromine-foundationstechreborn |+| c:emerald_ores| minecraft:emerald_ore| techreborn, astromine-foundations, astromine-discoveriesrandomtech |
 | :::| #c:asteroid_emerald_ores| astromine-discoveries | | :::| #c:asteroid_emerald_ores| astromine-discoveries |
 | :::| bno:netheremerald_ore| bno | | :::| bno:netheremerald_ore| bno |
 | :::| gravel-ores:emerald_gravel| gravel-ores | | :::| gravel-ores:emerald_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_emerald_oreunearthed +| :::| #minecraft:emerald_oresmodern_industrialization 
-| :::| unearthed:gabbro_emerald_oreunearthed | +| :::| minecraft:deepslate_emerald_oretechreborn |
-| :::| unearthed:pumice_emerald_ore| unearthed | +
-| :::| unearthed:kimberlite_emerald_ore| unearthed | +
-| :::| unearthed:rhyolite_emerald_ore| unearthed | +
-| :::| unearthed:slate_emerald_ore| unearthed | +
-| :::| unearthed:marble_emerald_ore| unearthed | +
-| :::| unearthed:quartzite_emerald_ore| unearthed | +
-| :::| unearthed:phyllite_emerald_ore| unearthed | +
-| :::| unearthed:schist_emerald_ore| unearthed | +
-| :::| unearthed:limestone_emerald_ore| unearthed | +
-| :::| unearthed:lignite_emerald_ore| unearthed | +
-| :::| unearthed:siltstone_emerald_ore| unearthed | +
-| :::| unearthed:mudstone_emerald_ore| unearthed | +
-| :::| unearthed:conglomerate_emerald_ore| unearthed |+
 | c:emerald_plates| c:emerald_plate| cotton-resources | | c:emerald_plates| c:emerald_plate| cotton-resources |
 | :::| techreborn:emerald_plate| techreborn | | :::| techreborn:emerald_plate| techreborn |
 +| :::| modern_industrialization:emerald_plate| modern_industrialization |
 | c:emerald_small_dusts| techreborn:emerald_small_dust| techreborn | | c:emerald_small_dusts| techreborn:emerald_small_dust| techreborn |
 | c:emerald_tiny_dusts| astromine:emerald_tiny_dust| astromine-discoveries, astromine-foundations | | c:emerald_tiny_dusts| astromine:emerald_tiny_dust| astromine-discoveries, astromine-foundations |
-| c:emeralds| minecraft:emerald| astromine-discoveries, astromine-foundations, cotton-resources |+| :::| modern_industrialization:emerald_tiny_dust| modern_industrialization | 
 +| c:emeralds| minecraft:emerald| astromine-foundations, adorn, cotton-resources, astromine-discoveries, basicshields |
 | c:end_stones| minecraft:end_stone| spatialharvesters | | c:end_stones| minecraft:end_stone| spatialharvesters |
 | c:endalum_dusts| mechanix:endalum_dust| mechanix | | c:endalum_dusts| mechanix:endalum_dust| mechanix |
Line 682: Line 923:
 | c:ender_pearl_dusts| appliedenergistics2:ender_dust| appliedenergistics2 | | c:ender_pearl_dusts| appliedenergistics2:ender_dust| appliedenergistics2 |
 | :::| techreborn:ender_pearl_dust| techreborn | | :::| techreborn:ender_pearl_dust| techreborn |
 +| :::| ae2:ender_dust| ae2 |
 | c:ender_pearl_small_dusts| techreborn:ender_pearl_small_dust| techreborn | | c:ender_pearl_small_dusts| techreborn:ender_pearl_small_dust| techreborn |
-| c:ender_pearls| minecraft:ender_pearl| appliedenergistics2, computercraft |+| c:ender_pearls| minecraft:ender_pearl| ae2, appliedenergistics2, computercraft |
 | c:endstone_dusts| techreborn:endstone_dust| techreborn | | c:endstone_dusts| techreborn:endstone_dust| techreborn |
 | c:endstone_small_dusts| techreborn:endstone_small_dust| techreborn | | c:endstone_small_dusts| techreborn:endstone_small_dust| techreborn |
Line 689: Line 931:
 | c:etherite_ingots| mythicmetals:etherite_ingot| mythicmetals | | c:etherite_ingots| mythicmetals:etherite_ingot| mythicmetals |
 | c:etherite_nuggets| mythicmetals:etherite_nugget| mythicmetals | | c:etherite_nuggets| mythicmetals:etherite_nugget| mythicmetals |
 +| c:eton_mess| croptopia:eton_mess| croptopia |
 | c:feathers| flamingo_ooo:pink_feather| flamingo_ooo | | c:feathers| flamingo_ooo:pink_feather| flamingo_ooo |
 | :::| minecraft:feather| icarus, spatialharvesters | | :::| minecraft:feather| icarus, spatialharvesters |
Line 716: Line 959:
 | :::| byg:palm_fence_gate| byg | | :::| byg:palm_fence_gate| byg |
 | :::| byg:lament_fence_gate| byg | | :::| byg:lament_fence_gate| byg |
 +| :::| minecraft:acacia_fence_gate| prefab |
 +| :::| minecraft:birch_fence_gate| prefab |
 +| :::| minecraft:dark_oak_fence_gate| prefab |
 +| :::| minecraft:jungle_fence_gate| prefab |
 +| :::| minecraft:oak_fence_gate| prefab |
 +| :::| minecraft:spruce_fence_gate| prefab |
 +| :::| minecraft:crimson_fence_gate| prefab |
 +| :::| minecraft:warped_fence_gate| prefab |
 | c:ferrite_blocks| mythicmetals:ferrite_block| mythicmetals | | c:ferrite_blocks| mythicmetals:ferrite_block| mythicmetals |
 | c:ferrite_ingots| mythicmetals:ferrite_ingot| mythicmetals | | c:ferrite_ingots| mythicmetals:ferrite_ingot| mythicmetals |
 | c:ferrite_nuggets| mythicmetals:ferrite_nugget| mythicmetals | | c:ferrite_nuggets| mythicmetals:ferrite_nugget| mythicmetals |
 +| c:figgy_pudding| croptopia:figgy_pudding| croptopia |
 +| c:fire_clay_dusts| modern_industrialization:fire_clay_dust| modern_industrialization |
 +| c:fish_and_chips| croptopia:fish_and_chips| croptopia |
 | c:flint_dusts| techreborn:flint_dust| techreborn | | c:flint_dusts| techreborn:flint_dust| techreborn |
 | c:flint_small_dusts| techreborn:flint_small_dust| techreborn | | c:flint_small_dusts| techreborn:flint_small_dust| techreborn |
 | c:flour| bonappetit:flour| bonappetit | | c:flour| bonappetit:flour| bonappetit |
 | :::| veggie_way:flour| veggie_way | | :::| veggie_way:flour| veggie_way |
 +| :::| croptopia:flour| croptopia |
 +| :::| valley:flour_bag| valley |
 +| c:fluix| ae2:fluix_crystal| ae2 |
 +| c:fluix_dusts| ae2:fluix_dust| ae2 |
 +| c:food_press| croptopia:food_press| croptopia |
 | c:fools_gold_apples| astromine:fools_gold_apple| astromine-discoveries, astromine-foundations | | c:fools_gold_apples| astromine:fools_gold_apple| astromine-discoveries, astromine-foundations |
 | c:fools_gold_blocks| astromine:fools_gold_block| astromine-discoveries, astromine-foundations | | c:fools_gold_blocks| astromine:fools_gold_block| astromine-discoveries, astromine-foundations |
Line 731: Line 990:
 | c:fools_gold_plates| astromine:fools_gold_plate| astromine-discoveries, astromine-foundations | | c:fools_gold_plates| astromine:fools_gold_plate| astromine-discoveries, astromine-foundations |
 | c:fools_gold_tiny_dusts| astromine:fools_gold_tiny_dust| astromine-discoveries, astromine-foundations | | c:fools_gold_tiny_dusts| astromine:fools_gold_tiny_dust| astromine-discoveries, astromine-foundations |
 +| c:french_fries| croptopia:french_fries| croptopia |
 +| c:fried_chickens| croptopia:fried_chicken| croptopia |
 +| c:fruit_salads| croptopia:fruit_salad| croptopia |
 +| c:fruit_smoothies| croptopia:fruit_smoothie| croptopia |
 | c:fruits| byg:blueberries| byg | | c:fruits| byg:blueberries| byg |
 | :::| byg:green_apple| byg | | :::| byg:green_apple| byg |
 | :::| byg:crimson_berries| byg | | :::| byg:crimson_berries| byg |
-| :::| minecraft:apple| exnihilofabrico, spatialharvesters, veggie_way |+| :::| byg:baobab_fruit| byg | 
 +| :::| byg:joshua_fruit| byg | 
 +| :::| minecraft:apple| exnihilofabrico, spatialharvesters, croptopia, veggie_way, valley |
 | :::| minecraft:chorus_fruit| exnihilofabrico | | :::| minecraft:chorus_fruit| exnihilofabrico |
-| :::| minecraft:beetroot| spatialharvesters, veggie_way | +| :::| minecraft:beetroot| veggie_way, spatialharvesters 
-| :::| minecraft:honeycomb| spatialharvesters, veggie_way | +| :::| minecraft:honeycomb| veggie_way, spatialharvesters 
-| :::| minecraft:melon_slice| spatialharvesters, veggie_way | +| :::| minecraft:melon_slice| croptopia, valley, veggie_way, spatialharvesters 
-| :::| minecraft:sugar_cane| spatialharvesters, veggie_way | +| :::| minecraft:sugar_cane| veggie_way, spatialharvesters 
-| :::| minecraft:sweet_berries| spatialharvesters, veggie_way |+| :::| minecraft:sweet_berries| valley, veggie_way, spatialharvesters |
 | :::| veggie_way:cactus_chunk| veggie_way | | :::| veggie_way:cactus_chunk| veggie_way |
 +| :::| #c:fruits/almonds| croptopia |
 +| :::| #c:fruits/apricots| croptopia |
 +| :::| #c:fruits/avocados| croptopia |
 +| :::| #c:fruits/bananas| croptopia |
 +| :::| #c:fruits/bellpeppers| croptopia |
 +| :::| #c:fruits/blackberries| croptopia |
 +| :::| #c:fruits/blueberries| croptopia |
 +| :::| #c:fruits/cantaloupes| croptopia |
 +| :::| #c:fruits/cashews| croptopia |
 +| :::| #c:fruits/cherries| croptopia |
 +| :::| #c:fruits/coconuts| croptopia |
 +| :::| #c:fruits/cranberries| croptopia |
 +| :::| #c:fruits/currants| croptopia |
 +| :::| #c:fruits/dates| croptopia |
 +| :::| #c:fruits/dragonfruits| croptopia |
 +| :::| #c:fruits/elderberries| croptopia |
 +| :::| #c:fruits/figs| croptopia |
 +| :::| #c:fruits/grapefruits| croptopia |
 +| :::| #c:fruits/grapes| croptopia |
 +| :::| #c:fruits/honeydew| croptopia |
 +| :::| #c:fruits/kiwis| croptopia |
 +| :::| #c:fruits/kumquat| croptopia |
 +| :::| #c:fruits/lemons| croptopia |
 +| :::| #c:fruits/limes| croptopia |
 +| :::| #c:fruits/mangos| croptopia |
 +| :::| #c:fruits/nectarines| croptopia |
 +| :::| #c:fruits/olives| croptopia |
 +| :::| #c:fruits/oranges| croptopia |
 +| :::| #c:fruits/peaches| croptopia |
 +| :::| #c:fruits/pears| croptopia |
 +| :::| #c:fruits/pecans| croptopia |
 +| :::| #c:fruits/persimmons| croptopia |
 +| :::| #c:fruits/pineapples| croptopia |
 +| :::| #c:fruits/plums| croptopia |
 +| :::| #c:fruits/raspberries| croptopia |
 +| :::| #c:fruits/starfruits| croptopia |
 +| :::| #c:fruits/strawberries| croptopia |
 +| :::| #c:fruits/walnuts| croptopia |
 +| :::| valley:spicy_berries| valley |
 +| :::| valley:bitter_berries| valley |
 +| :::| minecraft:glow_berries| valley |
 +| c:fruits/almonds| croptopia:almond| croptopia |
 +| c:fruits/apricots| croptopia:apricot| croptopia |
 +| c:fruits/avocados| croptopia:avocado| croptopia |
 +| c:fruits/bananas| croptopia:banana| croptopia |
 +| c:fruits/bellpeppers| croptopia:bellpepper| croptopia |
 +| c:fruits/blackberries| croptopia:blackberry| croptopia |
 +| c:fruits/blueberries| croptopia:blueberry| croptopia |
 +| c:fruits/cantaloupes| croptopia:cantaloupe| croptopia |
 +| c:fruits/cashews| croptopia:cashew| croptopia |
 +| c:fruits/cherries| croptopia:cherry| croptopia |
 +| c:fruits/coconuts| croptopia:coconut| croptopia |
 +| c:fruits/cranberries| croptopia:cranberry| croptopia |
 +| c:fruits/currants| croptopia:currant| croptopia |
 +| c:fruits/dates| croptopia:date| croptopia |
 +| c:fruits/dragonfruits| croptopia:dragonfruit| croptopia |
 +| c:fruits/elderberries| croptopia:elderberry| croptopia |
 +| c:fruits/figs| croptopia:fig| croptopia |
 +| c:fruits/grapefruits| croptopia:grapefruit| croptopia |
 +| c:fruits/grapes| croptopia:grape| croptopia |
 +| c:fruits/honeydew| croptopia:honeydew| croptopia |
 +| c:fruits/kiwis| croptopia:kiwi| croptopia |
 +| c:fruits/kumquat| croptopia:kumquat| croptopia |
 +| c:fruits/lemons| croptopia:lemon| croptopia |
 +| c:fruits/limes| croptopia:lime| croptopia |
 +| c:fruits/mangos| croptopia:mango| croptopia |
 +| c:fruits/nectarines| croptopia:nectarine| croptopia |
 +| c:fruits/olives| croptopia:olive| croptopia |
 +| c:fruits/oranges| croptopia:orange| croptopia |
 +| c:fruits/peaches| croptopia:peach| croptopia |
 +| c:fruits/pears| croptopia:pear| croptopia |
 +| c:fruits/pecans| croptopia:pecan| croptopia |
 +| c:fruits/persimmons| croptopia:persimmon| croptopia |
 +| c:fruits/pineapples| croptopia:pineapple| croptopia |
 +| c:fruits/plums| croptopia:plum| croptopia |
 +| c:fruits/raspberries| croptopia:raspberry| croptopia |
 +| c:fruits/starfruits| croptopia:starfruit| croptopia |
 +| c:fruits/strawberries| croptopia:strawberry| croptopia |
 +| c:fruits/walnuts| croptopia:walnut| croptopia |
 +| c:frying_pans| croptopia:frying_pan| croptopia |
 +| c:furnaces| minecraft:furnace| bclib |
 +| :::| betterend:flavolite_furnace| betterend |
 +| :::| betterend:umbralith_furnace| betterend |
 +| :::| betterend:sandy_jadestone_furnace| betterend |
 +| :::| betterend:azure_jadestone_furnace| betterend |
 +| :::| betterend:violecite_furnace| betterend |
 +| :::| betterend:virid_jadestone_furnace| betterend |
 +| :::| betterend:sulphuric_rock_furnace| betterend |
 | c:galaxium_blocks| astromine:galaxium_block| astromine-discoveries, astromine-foundations | | c:galaxium_blocks| astromine:galaxium_block| astromine-discoveries, astromine-foundations |
 | c:galaxium_dusts| astromine:galaxium_dust| astromine-discoveries, astromine-foundations | | c:galaxium_dusts| astromine:galaxium_dust| astromine-discoveries, astromine-foundations |
Line 751: Line 1104:
 | c:galena_dusts| techreborn:galena_dust| techreborn | | c:galena_dusts| techreborn:galena_dust| techreborn |
 | c:galena_ores| techreborn:galena_ore| techreborn | | c:galena_ores| techreborn:galena_ore| techreborn |
 +| :::| techreborn:deepslate_galena_ore| techreborn |
 | c:galena_small_dusts| techreborn:galena_small_dust| techreborn | | c:galena_small_dusts| techreborn:galena_small_dust| techreborn |
 | c:garlic| bonappetit:garlic| bonappetit | | c:garlic| bonappetit:garlic| bonappetit |
Line 765: Line 1119:
 | :::| more_gems:amethyst| more_gems | | :::| more_gems:amethyst| more_gems |
 | :::| more_gems:ruby| more_gems | | :::| more_gems:ruby| more_gems |
-| c:glass| minecraft:glass| artofalchemy, refinedmachinery +| c:glass| minecraft:glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:white_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:white_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:orange_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:orange_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:magenta_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:magenta_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:light_blue_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:light_blue_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:yellow_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:yellow_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:lime_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:lime_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:pink_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:pink_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:gray_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:gray_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:light_gray_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:light_gray_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:cyan_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:cyan_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:purple_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:purple_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:blue_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:blue_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:brown_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:brown_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:green_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:green_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:red_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:red_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:black_stained_glass| artofalchemy, refinedmachinery |+| :::| minecraft:black_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab |
 | :::| refinedmachinery:glass_block| refinedmachinery | | :::| refinedmachinery:glass_block| refinedmachinery |
 | :::| refinedmachinery:black_glass_block| refinedmachinery | | :::| refinedmachinery:black_glass_block| refinedmachinery |
-| c:glass_blocks| minecraft:glass| appliedenergistics2 | +| c:glass_blocks| minecraft:glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:white_stained_glass| appliedenergistics2 | +| :::| minecraft:white_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:orange_stained_glass| appliedenergistics2 | +| :::| minecraft:orange_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:magenta_stained_glass| appliedenergistics2 | +| :::| minecraft:magenta_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:light_blue_stained_glass| appliedenergistics2 | +| :::| minecraft:light_blue_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:yellow_stained_glass| appliedenergistics2 | +| :::| minecraft:yellow_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:lime_stained_glass| appliedenergistics2 | +| :::| minecraft:lime_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:pink_stained_glass| appliedenergistics2 | +| :::| minecraft:pink_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:gray_stained_glass| appliedenergistics2 | +| :::| minecraft:gray_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:light_gray_stained_glass| appliedenergistics2 | +| :::| minecraft:light_gray_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:cyan_stained_glass| appliedenergistics2 | +| :::| minecraft:cyan_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:purple_stained_glass| appliedenergistics2 | +| :::| minecraft:purple_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:blue_stained_glass| appliedenergistics2 | +| :::| minecraft:blue_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:brown_stained_glass| appliedenergistics2 | +| :::| minecraft:brown_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:green_stained_glass| appliedenergistics2 | +| :::| minecraft:green_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:red_stained_glass| appliedenergistics2 | +| :::| minecraft:red_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:black_stained_glass| appliedenergistics2 |+| :::| minecraft:black_stained_glass| appliedenergistics2, expandedstorage |
 | :::| xb:g| xb | | :::| xb:g| xb |
 | :::| xb:gk| xb | | :::| xb:gk| xb |
 | :::| xb:gb| xb | | :::| xb:gb| xb |
-| :::| xb:gw| xb, xb |+| :::| xb:gw| xb |
 | :::| xb:gc| xb | | :::| xb:gc| xb |
 | :::| xb:gn| xb | | :::| xb:gn| xb |
Line 834: Line 1188:
 | :::| {'id': 'minecraft:red_stained_glass', 'required': True}| expandedstorage | | :::| {'id': 'minecraft:red_stained_glass', 'required': True}| expandedstorage |
 | :::| {'id': 'minecraft:black_stained_glass', 'required': True}| expandedstorage | | :::| {'id': 'minecraft:black_stained_glass', 'required': True}| expandedstorage |
-| c:glass_panes| minecraft:glass_pane| adorn, computercraft |+| :::| minecraft:tinted_glass| expandedstorage | 
 +| c:glass_pane| minecraft:glass_pane| modern_industrialization | 
 +| :::| minecraft:white_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:orange_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:magenta_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:light_blue_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:yellow_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:lime_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:pink_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:gray_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:light_gray_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:cyan_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:purple_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:blue_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:brown_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:green_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:red_stained_glass_pane| modern_industrialization | 
 +| :::| minecraft:black_stained_glass_pane| modern_industrialization | 
 +| c:glass_panes| minecraft:glass_pane| adorn, computercraft, spatialharvesters |
 | :::| minecraft:black_stained_glass_pane| adorn, computercraft | | :::| minecraft:black_stained_glass_pane| adorn, computercraft |
 | :::| minecraft:white_stained_glass_pane| adorn, computercraft | | :::| minecraft:white_stained_glass_pane| adorn, computercraft |
Line 851: Line 1223:
 | :::| minecraft:purple_stained_glass_pane| adorn, computercraft | | :::| minecraft:purple_stained_glass_pane| adorn, computercraft |
 | :::| minecraft:pink_stained_glass_pane| adorn, computercraft | | :::| minecraft:pink_stained_glass_pane| adorn, computercraft |
 +| c:glow_berries| minecraft:glow_berries| adorn |
 | c:glowstone_blocks| minecraft:glowstone| astromine-discoveries, astromine-foundations | | c:glowstone_blocks| minecraft:glowstone| astromine-discoveries, astromine-foundations |
-| c:glowstone_dusts| minecraft:glowstone_dust| appliedenergistics2, astromine-discoveries, astromine-foundations |+| c:glowstone_dusts| minecraft:glowstone_dust| appliedenergistics2, astromine-foundations, ae2, mtr, astromine-discoveries |
 | c:glowstone_small_dusts| techreborn:glowstone_small_dust| techreborn | | c:glowstone_small_dusts| techreborn:glowstone_small_dust| techreborn |
 | c:glowstone_tiny_dusts| astromine:glowstone_tiny_dust| astromine-discoveries, astromine-foundations | | c:glowstone_tiny_dusts| astromine:glowstone_tiny_dust| astromine-discoveries, astromine-foundations |
-| c:gold_blocks| minecraft:gold_block| astromine-discoveries, astromine-foundations, computercraftspatialharvesters |+| c:gold_blocks| minecraft:gold_block| computercraft, modern_industrialization, spatialharvesters, astromine-foundations, mtrastromine-discoveries, mythicmetals |
 | c:gold_dust| refinedmachinery:gold_dust| refinedmachinery | | c:gold_dust| refinedmachinery:gold_dust| refinedmachinery |
 | :::| simplequern:gold_dust| simplequern | | :::| simplequern:gold_dust| simplequern |
Line 869: Line 1242:
 | c:gold_gears| astromine:gold_gear| astromine-discoveries, astromine-foundations | | c:gold_gears| astromine:gold_gear| astromine-discoveries, astromine-foundations |
 | :::| c:gold_gear| cotton-resources | | :::| c:gold_gear| cotton-resources |
 +| :::| modern_industrialization:gold_gear| modern_industrialization |
 | c:gold_gravels| gravel-ores:gold_gravel| gravel-ores | | c:gold_gravels| gravel-ores:gold_gravel| gravel-ores |
-| c:gold_ingots| minecraft:gold_ingot| appliedenergistics2, astromine-discoveries, astromine-foundations, computercraft, cotton-resources, crookedcrooksironchest, nafis, slotlink, spatialharvesters |+| c:gold_ingots| minecraft:gold_ingot| computercraft, astromine-discoveries, crookedcrooks, indrev, nafis, astromine-foundations, cotton-resources, basicshieldsexpandedstorage, slotlink, spatialharvesters, ae2, ironchest, adorn, mythicmetals, modern_industrialization, appliedenergistics2 |
 | :::| mythicmetals:midas_gold_ingot| mythicmetals | | :::| mythicmetals:midas_gold_ingot| mythicmetals |
-| c:gold_nuggets| minecraft:gold_nugget| astromine-discoveries, astromine-foundations +| c:gold_nuggets| minecraft:gold_nugget| modern_industrialization, astromine-foundations, ae2, astromine-discoveries, mythicmetals 
-| c:gold_ores| minecraft:gold_ore| randomtech, appliedenergistics2, astromine-discoveries, astromine-foundationsindrev, modern_industrializationtechreborn +| c:gold_ores| minecraft:gold_ore| indrev, techreborn, modern_industrialization, appliedenergistics2, astromine-foundations, astromine-discoveriesmythicmetalsrandomtech 
-| :::| minecraft:nether_gold_ore| randomtech, astromine-foundations, indrev |+| :::| minecraft:nether_gold_ore| astromine-foundations, indrev, randomtech |
 | :::| #c:asteroid_gold_ores| astromine-discoveries | | :::| #c:asteroid_gold_ores| astromine-discoveries |
 | :::| gravel-ores:gold_gravel| gravel-ores | | :::| gravel-ores:gold_gravel| gravel-ores |
 | :::| #minecraft:gold_ores| modern_industrialization | | :::| #minecraft:gold_ores| modern_industrialization |
 | :::| mythicmetals:midas_gold_ore| mythicmetals | | :::| mythicmetals:midas_gold_ore| mythicmetals |
 +| :::| {'id': '#minecraft:gold_ores', 'required': False}| ae2 |
 +| :::| minecraft:deepslate_gold_ore| techreborn, mythicmetals |
 | c:gold_plates| astromine:gold_plate| astromine-discoveries, astromine-foundations | | c:gold_plates| astromine:gold_plate| astromine-discoveries, astromine-foundations |
 | :::| c:gold_plate| cotton-resources | | :::| c:gold_plate| cotton-resources |
Line 891: Line 1267:
 | :::| minecraft:enchanted_golden_apple| astromine-foundations | | :::| minecraft:enchanted_golden_apple| astromine-foundations |
 | c:grain| minecraft:wheat| veggie_way | | c:grain| minecraft:wheat| veggie_way |
 +| c:grains| #c:grains/barley| croptopia |
 +| :::| #c:grains/corn| croptopia |
 +| :::| #c:grains/oats| croptopia |
 +| :::| #c:grains/rice| croptopia |
 +| c:grains/barley| croptopia:barley| croptopia |
 +| c:grains/corn| croptopia:corn| croptopia |
 +| c:grains/oats| croptopia:oat| croptopia |
 +| c:grains/rice| croptopia:rice| croptopia |
 | c:granite_dusts| techreborn:granite_dust| techreborn | | c:granite_dusts| techreborn:granite_dust| techreborn |
 | c:granite_small_dusts| techreborn:granite_small_dust| techreborn | | c:granite_small_dusts| techreborn:granite_small_dust| techreborn |
-| c:gray_dyes| minecraft:gray_dye| appliedenergistics2, computercraft, comforts, icarus | +| c:gravel| unearthed:pyroxene| unearthed | 
-| c:green_dyes| minecraft:green_dye| appliedenergistics2, computercraft, comforts, icarus |+| :::| minecraft:gravel| mythicmetals | 
 +| c:gray_dye| minecraft:gray_dye| ae2 | 
 +| c:gray_dyes| minecraft:gray_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | 
 +| c:green_dye| minecraft:green_dye| ae2 
 +| c:green_dyes| minecraft:green_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | 
 +| c:grilled_cheeses| croptopia:grilled_cheese| croptopia |
 | c:grossular_dusts| techreborn:grossular_dust| techreborn | | c:grossular_dusts| techreborn:grossular_dust| techreborn |
 | c:grossular_small_dusts| techreborn:grossular_small_dust| techreborn | | c:grossular_small_dusts| techreborn:grossular_small_dust| techreborn |
 +| c:ham_sandwiches| croptopia:ham_sandwich| croptopia |
 +| c:hamburgers| croptopia:hamburger| croptopia |
 +| c:hammers| betterend:thallasium_hammer| betterend |
 +| :::| betterend:terminite_hammer| betterend |
 +| :::| betterend:aeternium_hammer| betterend |
 +| c:he_mox_blocks| modern_industrialization:he_mox_block| modern_industrialization |
 +| c:he_mox_dusts| modern_industrialization:he_mox_dust| modern_industrialization |
 +| c:he_mox_ingots| modern_industrialization:he_mox_ingot| modern_industrialization |
 +| c:he_mox_nuggets| modern_industrialization:he_mox_nugget| modern_industrialization |
 +| c:he_mox_tiny_dusts| modern_industrialization:he_mox_tiny_dust| modern_industrialization |
 +| c:he_uranium_blocks| modern_industrialization:he_uranium_block| modern_industrialization |
 +| c:he_uranium_dusts| modern_industrialization:he_uranium_dust| modern_industrialization |
 +| c:he_uranium_ingots| modern_industrialization:he_uranium_ingot| modern_industrialization |
 +| c:he_uranium_nuggets| modern_industrialization:he_uranium_nugget| modern_industrialization |
 +| c:he_uranium_tiny_dusts| modern_industrialization:he_uranium_tiny_dust| modern_industrialization |
 +| c:holly| valley:holly| valley |
 | c:hoppers| minecraft:hopper| slotlink | | c:hoppers| minecraft:hopper| slotlink |
 | c:hot_tungstensteel_ingots| techreborn:hot_tungstensteel_ingot| techreborn | | c:hot_tungstensteel_ingots| techreborn:hot_tungstensteel_ingot| techreborn |
 | c:hot_tungstensteel_nuggets| techreborn:hot_tungstensteel_nugget| techreborn | | c:hot_tungstensteel_nuggets| techreborn:hot_tungstensteel_nugget| techreborn |
 | c:invar_blocks| techreborn:invar_storage_block| techreborn | | c:invar_blocks| techreborn:invar_storage_block| techreborn |
 +| :::| modern_industrialization:invar_block| modern_industrialization |
 | c:invar_dusts| modern_industrialization:invar_dust| modern_industrialization | | c:invar_dusts| modern_industrialization:invar_dust| modern_industrialization |
 | :::| techreborn:invar_dust| techreborn | | :::| techreborn:invar_dust| techreborn |
Line 917: Line 1323:
 | c:iridium_blocks| c:iridium_block| cotton-resources | | c:iridium_blocks| c:iridium_block| cotton-resources |
 | :::| techreborn:iridium_storage_block| techreborn | | :::| techreborn:iridium_storage_block| techreborn |
 +| :::| modern_industrialization:iridium_block| modern_industrialization |
 | c:iridium_dusts| c:iridium_dust| cotton-resources | | c:iridium_dusts| c:iridium_dust| cotton-resources |
 +| :::| modern_industrialization:iridium_dust| modern_industrialization |
 | c:iridium_gears| c:iridium_gear| cotton-resources | | c:iridium_gears| c:iridium_gear| cotton-resources |
 | c:iridium_ingots| c:iridium_ingot| cotton-resources | | c:iridium_ingots| c:iridium_ingot| cotton-resources |
 | :::| techreborn:iridium_ingot| techreborn | | :::| techreborn:iridium_ingot| techreborn |
 +| :::| modern_industrialization:iridium_ingot| modern_industrialization |
 | c:iridium_nuggets| c:iridium_nugget| cotton-resources | | c:iridium_nuggets| c:iridium_nugget| cotton-resources |
 | :::| techreborn:iridium_nugget| techreborn | | :::| techreborn:iridium_nugget| techreborn |
 +| :::| modern_industrialization:iridium_nugget| modern_industrialization |
 | c:iridium_ores| c:iridium_ore| cotton-resources | | c:iridium_ores| c:iridium_ore| cotton-resources |
 | :::| c:iridium_nether_ore| cotton-resources | | :::| c:iridium_nether_ore| cotton-resources |
 | :::| c:iridium_end_ore| cotton-resources | | :::| c:iridium_end_ore| cotton-resources |
 | :::| techreborn:iridium_ore| techreborn | | :::| techreborn:iridium_ore| techreborn |
 +| :::| modern_industrialization:iridium_ore| modern_industrialization |
 +| :::| modern_industrialization:deepslate_iridium_ore| modern_industrialization |
 +| :::| techreborn:deepslate_iridium_ore| techreborn |
 | c:iridium_plates| c:iridium_plate| cotton-resources | | c:iridium_plates| c:iridium_plate| cotton-resources |
 | :::| techreborn:iridium_plate| techreborn | | :::| techreborn:iridium_plate| techreborn |
 +| :::| modern_industrialization:iridium_plate| modern_industrialization |
 | c:iridium_reinforced_stone_blocks| techreborn:iridium_reinforced_stone_storage_block| techreborn | | c:iridium_reinforced_stone_blocks| techreborn:iridium_reinforced_stone_storage_block| techreborn |
 | c:iridium_reinforced_tungstensteel_blocks| techreborn:iridium_reinforced_tungstensteel_storage_block| techreborn | | c:iridium_reinforced_tungstensteel_blocks| techreborn:iridium_reinforced_tungstensteel_storage_block| techreborn |
-| c:iron_blocks| minecraft:iron_block| astromine-discoveries, astromine-foundations |+| c:iridium_tiny_dusts| modern_industrialization:iridium_tiny_dust| modern_industrialization | 
 +| c:iron_blocks| minecraft:iron_block| spatialharvesters, modern_industrialization, extragenerators, astromine-foundations, mtr, catwalksinc, astromine-discoveries |
 | c:iron_dust| refinedmachinery:iron_dust| refinedmachinery | | c:iron_dust| refinedmachinery:iron_dust| refinedmachinery |
 | :::| simplequern:iron_dust| simplequern | | :::| simplequern:iron_dust| simplequern |
Line 945: Line 1360:
 | c:iron_gears| astromine:iron_gear| astromine-discoveries, astromine-foundations | | c:iron_gears| astromine:iron_gear| astromine-discoveries, astromine-foundations |
 | :::| c:iron_gear| cotton-resources | | :::| c:iron_gear| cotton-resources |
 +| :::| modern_industrialization:iron_gear| modern_industrialization |
 | c:iron_gravels| gravel-ores:iron_gravel| gravel-ores | | c:iron_gravels| gravel-ores:iron_gravel| gravel-ores |
-| c:iron_ingots| minecraft:iron_ingot| randomtech, appliedenergistics2, astromine-discoveries, astromine-foundations, computercraft, comforts, cotton-resources, crookedcrooks, ironchest, nafisslotlinkspatialharvesters +| c:iron_ingots| minecraft:iron_ingot| computercraft, astromine-discoveries, crookedcrooks, indrev, nafis, astromine-foundations, cotton-resources, expandedstorage, slotlink, spatialharvesters, extragenerators, ae2, mtr, ironchest, adornrandomtechmythicmetals, modern_industrialization, appliedenergistics2, comforts, bclib, catwalksinc | 
-| c:iron_nuggets| minecraft:iron_nugget| astromine-discoveries, astromine-foundations, spatialharvesters +| :::| betterend:thallasium_ingot| betterend | 
-| c:iron_ores| minecraft:iron_ore| randomtech, appliedenergistics2, astromine-discoveries, astromine-foundationsindrev, modern_industrialization, techreborn, unearthed |+| :::| betternether:cincinnasite_ingot| betternether 
 +| c:iron_nuggets| minecraft:iron_nugget| spatialharvesters, modern_industrialization, astromine-foundations, ae2, mtr, catwalksinc, adorn, astromine-discoveries 
 +| c:iron_ores| minecraft:iron_ore| indrev, techreborn, modern_industrialization, appliedenergistics2, astromine-foundations, astromine-discoveriesrandomtech |
 | :::| #c:asteroid_iron_ores| astromine-discoveries | | :::| #c:asteroid_iron_ores| astromine-discoveries |
 | :::| bno:netheriron_ore| bno | | :::| bno:netheriron_ore| bno |
 | :::| gravel-ores:iron_gravel| gravel-ores | | :::| gravel-ores:iron_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_iron_ore| unearthed | +| :::| {'id''minecraft:iron_ores', 'required'False}ae2 
-:::| unearthed:gabbro_iron_ore| unearthed | +| :::| #minecraft:iron_oresmodern_industrialization 
-| :::| unearthed:pumice_iron_ore| unearthed | +| :::| minecraft:deepslate_iron_oretechreborn |
-| :::| unearthed:kimberlite_iron_ore| unearthed | +
-| :::| unearthed:rhyolite_iron_ore| unearthed | +
-| :::| unearthed:slate_iron_ore| unearthed | +
-| :::| unearthed:marble_iron_ore| unearthed | +
-| :::| unearthed:quartzite_iron_ore| unearthed | +
-| :::| unearthed:phyllite_iron_ore| unearthed | +
-| :::| unearthed:schist_iron_ore| unearthed | +
-| :::| unearthed:limestone_iron_ore| unearthed | +
-| :::| unearthed:lignite_iron_ore| unearthed | +
-| :::| unearthed:siltstone_iron_oreunearthed +
-| :::| unearthed:mudstone_iron_oreunearthed +
-| :::| unearthed:conglomerate_iron_oreunearthed |+
 | c:iron_plates| astromine:iron_plate| astromine-discoveries, astromine-foundations | | c:iron_plates| astromine:iron_plate| astromine-discoveries, astromine-foundations |
 | :::| c:iron_plate| cotton-resources | | :::| c:iron_plate| cotton-resources |
Line 973: Line 1379:
 | :::| modern_industrialization:iron_plate| modern_industrialization | | :::| modern_industrialization:iron_plate| modern_industrialization |
 | :::| techreborn:iron_plate| techreborn | | :::| techreborn:iron_plate| techreborn |
 +| c:iron_rods| catwalksinc:iron_rod| catwalksinc |
 +| :::| {'required': False, 'id': 'modern_industrialization:iron_rod'}| catwalksinc |
 | c:iron_small_dusts| techreborn:iron_small_dust| techreborn | | c:iron_small_dusts| techreborn:iron_small_dust| techreborn |
 | c:iron_tiny_dusts| astromine:iron_tiny_dust| astromine-discoveries, astromine-foundations | | c:iron_tiny_dusts| astromine:iron_tiny_dust| astromine-discoveries, astromine-foundations |
 | :::| modern_industrialization:iron_tiny_dust| modern_industrialization | | :::| modern_industrialization:iron_tiny_dust| modern_industrialization |
 +| c:jam| #c:jams/apricot_jam| croptopia |
 +| :::| #c:jams/blackberry_jam| croptopia |
 +| :::| #c:jams/blueberry_jam| croptopia |
 +| :::| #c:jams/cherry_jam| croptopia |
 +| :::| #c:jams/elderberry_jam| croptopia |
 +| :::| #c:jams/grape_jam| croptopia |
 +| :::| #c:jams/peach_jam| croptopia |
 +| :::| #c:jams/strawberry_jam| croptopia |
 +| c:jams/apricot_jam| croptopia:apricot_jam| croptopia |
 +| c:jams/blackberry_jam| croptopia:blackberry_jam| croptopia |
 +| c:jams/blueberry_jam| croptopia:blueberry_jam| croptopia |
 +| c:jams/cherry_jam| croptopia:cherry_jam| croptopia |
 +| c:jams/elderberry_jam| croptopia:elderberry_jam| croptopia |
 +| c:jams/grape_jam| croptopia:grape_jam| croptopia |
 +| c:jams/peach_jam| croptopia:peach_jam| croptopia |
 +| c:jams/raspberry_jam| croptopia:raspberry_jam| croptopia |
 +| c:jams/strawberry_jam| croptopia:strawberry_jam| croptopia |
 +| c:jellies| #c:jam| croptopia |
 +| c:juices| #c:juices/apple_juice| croptopia |
 +| :::| #c:juices/cranberry_juice| croptopia |
 +| :::| #c:juices/grape_juice| croptopia |
 +| :::| #c:juices/melon_juice| croptopia |
 +| :::| #c:juices/orange_juice| croptopia |
 +| :::| #c:juices/pineapple_juice| croptopia |
 +| :::| #c:juices/saguaro_juice| croptopia |
 +| :::| #c:juices/tomato_juice| croptopia |
 +| c:juices/apple_juice| croptopia:apple_juice| croptopia |
 +| c:juices/cranberry_juice| croptopia:cranberry_juice| croptopia |
 +| c:juices/grape_juice| croptopia:grape_juice| croptopia |
 +| c:juices/melon_juice| croptopia:melon_juice| croptopia |
 +| c:juices/orange_juice| croptopia:orange_juice| croptopia |
 +| c:juices/pineapple_juice| croptopia:pineapple_juice| croptopia |
 +| c:juices/saguaro_juice| croptopia:saguaro_juice| croptopia |
 +| c:juices/tomato_juice| croptopia:tomato_juice| croptopia |
 +| c:kale_chips| croptopia:kale_chips| croptopia |
 +| c:kale_smoothies| croptopia:kale_smoothie| croptopia |
 +| c:kanthal_blocks| modern_industrialization:kanthal_block| modern_industrialization |
 +| c:kanthal_dusts| modern_industrialization:kanthal_dust| modern_industrialization |
 +| c:kanthal_ingots| modern_industrialization:kanthal_ingot| modern_industrialization |
 +| c:kanthal_nuggets| modern_industrialization:kanthal_nugget| modern_industrialization |
 +| c:kanthal_plates| modern_industrialization:kanthal_plate| modern_industrialization |
 +| c:kanthal_tiny_dusts| modern_industrialization:kanthal_tiny_dust| modern_industrialization |
 +| c:knives| croptopia:knife| croptopia |
 +| :::| valley:bone_knife| valley |
 +| :::| valley:wood_knife| valley |
 +| :::| valley:stone_knife| valley |
 +| :::| valley:iron_knife| valley |
 +| :::| valley:golden_knife| valley |
 +| :::| valley:rg_knife| valley |
 +| :::| valley:diamond_knife| valley |
 +| :::| valley:netherite_knife| valley |
 | c:kyber_blocks| mythicmetals:kyber_block| mythicmetals | | c:kyber_blocks| mythicmetals:kyber_block| mythicmetals |
 | c:kyber_ingots| mythicmetals:kyber_ingot| mythicmetals | | c:kyber_ingots| mythicmetals:kyber_ingot| mythicmetals |
 | c:kyber_nuggets| mythicmetals:kyber_nugget| mythicmetals | | c:kyber_nuggets| mythicmetals:kyber_nugget| mythicmetals |
 | c:kyber_ores| mythicmetals:kyber_ore| mythicmetals | | c:kyber_ores| mythicmetals:kyber_ore| mythicmetals |
-| c:lapis_blocks| minecraft:lapis_block| astromine-discoveries, astromine-foundations |+| c:lapis_blocks| minecraft:lapis_block| modern_industrialization, astromine-discoveries, mtr, astromine-foundations |
 | c:lapis_dusts| astromine:lapis_dust| astromine-discoveries, astromine-foundations | | c:lapis_dusts| astromine:lapis_dust| astromine-discoveries, astromine-foundations |
 +| :::| modern_industrialization:lapis_dust| modern_industrialization |
 | c:lapis_gravels| gravel-ores:lapis_gravel| gravel-ores | | c:lapis_gravels| gravel-ores:lapis_gravel| gravel-ores |
 | c:lapis_lazulis| minecraft:lapis_lazuli| astromine-discoveries, astromine-foundations | | c:lapis_lazulis| minecraft:lapis_lazuli| astromine-discoveries, astromine-foundations |
-| c:lapis_ores| minecraft:lapis_ore| randomtech, astromine-discoveries, astromine-foundationstechreborn |+| c:lapis_ores| minecraft:lapis_ore| techreborn, astromine-foundations, astromine-discoveriesrandomtech |
 | :::| #c:asteroid_lapis_ores| astromine-discoveries | | :::| #c:asteroid_lapis_ores| astromine-discoveries |
 | :::| bno:netherlapis_ore| bno | | :::| bno:netherlapis_ore| bno |
 | :::| gravel-ores:lapis_gravel| gravel-ores | | :::| gravel-ores:lapis_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_lapis_oreunearthed +| :::| #minecraft:lapis_oresmodern_industrialization 
-| :::| unearthed:gabbro_lapis_oreunearthed | +| :::| minecraft:deepslate_lapis_oretechreborn |
-| :::| unearthed:pumice_lapis_ore| unearthed | +
-| :::| unearthed:kimberlite_lapis_ore| unearthed | +
-| :::| unearthed:rhyolite_lapis_ore| unearthed | +
-| :::| unearthed:slate_lapis_ore| unearthed | +
-| :::| unearthed:marble_lapis_ore| unearthed | +
-| :::| unearthed:quartzite_lapis_ore| unearthed | +
-| :::| unearthed:phyllite_lapis_ore| unearthed | +
-| :::| unearthed:schist_lapis_ore| unearthed | +
-| :::| unearthed:limestone_lapis_ore| unearthed | +
-| :::| unearthed:lignite_lapis_ore| unearthed | +
-| :::| unearthed:siltstone_lapis_ore| unearthed | +
-| :::| unearthed:mudstone_lapis_ore| unearthed | +
-| :::| unearthed:conglomerate_lapis_ore| unearthed |+
 | c:lapis_plates| techreborn:lapis_plate| techreborn | | c:lapis_plates| techreborn:lapis_plate| techreborn |
 +| :::| modern_industrialization:lapis_plate| modern_industrialization |
 | c:lapis_tiny_dusts| astromine:lapis_tiny_dust| astromine-discoveries, astromine-foundations | | c:lapis_tiny_dusts| astromine:lapis_tiny_dust| astromine-discoveries, astromine-foundations |
 +| :::| modern_industrialization:lapis_tiny_dust| modern_industrialization |
 | c:lazurite_dusts| techreborn:lazurite_dust| techreborn | | c:lazurite_dusts| techreborn:lazurite_dust| techreborn |
 | c:lazurite_plates| techreborn:lazurite_plate| techreborn | | c:lazurite_plates| techreborn:lazurite_plate| techreborn |
 | c:lazurite_small_dusts| techreborn:lazurite_small_dust| techreborn | | c:lazurite_small_dusts| techreborn:lazurite_small_dust| techreborn |
 +| c:le_mox_blocks| modern_industrialization:le_mox_block| modern_industrialization |
 +| c:le_mox_dusts| modern_industrialization:le_mox_dust| modern_industrialization |
 +| c:le_mox_ingots| modern_industrialization:le_mox_ingot| modern_industrialization |
 +| c:le_mox_nuggets| modern_industrialization:le_mox_nugget| modern_industrialization |
 +| c:le_mox_tiny_dusts| modern_industrialization:le_mox_tiny_dust| modern_industrialization |
 +| c:le_uranium_blocks| modern_industrialization:le_uranium_block| modern_industrialization |
 +| c:le_uranium_dusts| modern_industrialization:le_uranium_dust| modern_industrialization |
 +| c:le_uranium_ingots| modern_industrialization:le_uranium_ingot| modern_industrialization |
 +| c:le_uranium_nuggets| modern_industrialization:le_uranium_nugget| modern_industrialization |
 +| c:le_uranium_tiny_dusts| modern_industrialization:le_uranium_tiny_dust| modern_industrialization |
 | c:lead_apples| astromine:lead_apple| astromine-discoveries, astromine-foundations | | c:lead_apples| astromine:lead_apple| astromine-discoveries, astromine-foundations |
 | c:lead_block| refinedmachinery:lead_block| refinedmachinery | | c:lead_block| refinedmachinery:lead_block| refinedmachinery |
Line 1013: Line 1472:
 | :::| bno:lead_block| bno | | :::| bno:lead_block| bno |
 | :::| c:lead_block| cotton-resources | | :::| c:lead_block| cotton-resources |
 +| :::| indrev:lead_block| indrev |
 | :::| techreborn:lead_storage_block| techreborn | | :::| techreborn:lead_storage_block| techreborn |
 | :::| texp:lead_block| texp | | :::| texp:lead_block| texp |
 +| :::| modern_industrialization:lead_block| modern_industrialization |
 | c:lead_dust| refinedmachinery:lead_dust| refinedmachinery | | c:lead_dust| refinedmachinery:lead_dust| refinedmachinery |
 | c:lead_dusts| astromine:lead_dust| astromine-discoveries, astromine-foundations | | c:lead_dusts| astromine:lead_dust| astromine-discoveries, astromine-foundations |
 | :::| c:lead_dust| cotton-resources | | :::| c:lead_dust| cotton-resources |
 +| :::| indrev:lead_dust| indrev |
 | :::| modern_industrialization:lead_dust| modern_industrialization | | :::| modern_industrialization:lead_dust| modern_industrialization |
 | :::| techreborn:lead_dust| techreborn | | :::| techreborn:lead_dust| techreborn |
Line 1027: Line 1489:
 | :::| bno:lead_ingot| bno | | :::| bno:lead_ingot| bno |
 | :::| c:lead_ingot| cotton-resources | | :::| c:lead_ingot| cotton-resources |
 +| :::| indrev:lead_ingot| indrev |
 | :::| modern_industrialization:lead_ingot| modern_industrialization | | :::| modern_industrialization:lead_ingot| modern_industrialization |
 | :::| techreborn:lead_ingot| techreborn | | :::| techreborn:lead_ingot| techreborn |
Line 1033: Line 1496:
 | :::| bno:lead_nugget| bno | | :::| bno:lead_nugget| bno |
 | :::| c:lead_nugget| cotton-resources | | :::| c:lead_nugget| cotton-resources |
 +| :::| indrev:lead_nugget| indrev |
 | :::| modern_industrialization:lead_nugget| modern_industrialization | | :::| modern_industrialization:lead_nugget| modern_industrialization |
 | :::| techreborn:lead_nugget| techreborn | | :::| techreborn:lead_nugget| techreborn |
Line 1043: Line 1507:
 | :::| c:lead_nether_ore| cotton-resources | | :::| c:lead_nether_ore| cotton-resources |
 | :::| c:lead_end_ore| cotton-resources | | :::| c:lead_end_ore| cotton-resources |
 +| :::| indrev:lead_ore| indrev |
 | :::| modern_industrialization:lead_ore| modern_industrialization | | :::| modern_industrialization:lead_ore| modern_industrialization |
 | :::| techreborn:lead_ore| techreborn | | :::| techreborn:lead_ore| techreborn |
 | :::| texp:lead_ore| texp | | :::| texp:lead_ore| texp |
 +| :::| indrev:deepslate_lead_ore| indrev |
 +| :::| modern_industrialization:deepslate_lead_ore| modern_industrialization |
 +| :::| techreborn:deepslate_lead_ore| techreborn |
 | c:lead_plates| astromine:lead_plate| astromine-discoveries, astromine-foundations | | c:lead_plates| astromine:lead_plate| astromine-discoveries, astromine-foundations |
 | :::| c:lead_plate| cotton-resources | | :::| c:lead_plate| cotton-resources |
 +| :::| indrev:lead_plate| indrev |
 | :::| modern_industrialization:lead_plate| modern_industrialization | | :::| modern_industrialization:lead_plate| modern_industrialization |
 | :::| techreborn:lead_plate| techreborn | | :::| techreborn:lead_plate| techreborn |
Line 1054: Line 1523:
 | :::| modern_industrialization:lead_tiny_dust| modern_industrialization | | :::| modern_industrialization:lead_tiny_dust| modern_industrialization |
 | c:lead_wires| astromine:lead_wire| astromine-discoveries, astromine-foundations | | c:lead_wires| astromine:lead_wire| astromine-discoveries, astromine-foundations |
-| c:leather| minecraft:leather| astromine-discoveries, astromine-foundations, icarus, spatialharvesters |+| c:leafy_salads| croptopia:leafy_salad| croptopia | 
 +| c:leather| minecraft:leather| astromine-discoveries, icarus, astromine-foundations, spatialharvesters |
 | :::| minecraft:rabbit_hide| icarus, spatialharvesters | | :::| minecraft:rabbit_hide| icarus, spatialharvesters |
-| c:leathersminecraft:leatheralaskanativecraft |+| c:leavesbetterend:tenanea_leavesbetterend | 
 +| :::| betterend:pythadendron_leaves| betterend | 
 +| :::| betterend:lucernia_leaves| betterend | 
 +| :::| betterend:lacugrove_leaves| betterend | 
 +| :::| betterend:dragon_tree_leaves| betterend | 
 +| :::| betternether:anchor_tree_leaves| betternether | 
 +| :::| betternether:rubeus_leaves| betternether | 
 +| :::| betternether:nether_sakura_leaves| betternether | 
 +| :::| betternether:willow_leaves| betternether | 
 +| c:leek_soups| croptopia:leek_soup| croptopia | 
 +| c:lemon_chickens| croptopia:lemon_chicken| croptopia | 
 +| c:lemonades| croptopia:lemonade| croptopia |
 | c:lentil| veggie_way:lentil| veggie_way | | c:lentil| veggie_way:lentil| veggie_way |
-| c:light_blue_dyes| minecraft:light_blue_dye| appliedenergistics2, computercraft, comforts, icarus | +| c:light_blue_dye| minecraft:light_blue_dye| ae2 | 
-| c:light_gray_dyes| minecraft:light_gray_dye| appliedenergistics2, computercraft, comforts, icarus | +| c:light_blue_dyes| minecraft:light_blue_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | 
-| c:lime_dyes| minecraft:lime_dye| appliedenergistics2, computercraft, comforts, icarus |+| :::| minecraft:blue_dye| valley | 
 +| c:light_gray_dye| minecraft:light_gray_dye| ae2 
 +| c:light_gray_dyes| minecraft:light_gray_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | 
 +| c:lignite_coal| modern_industrialization:lignite_coal| modern_industrialization | 
 +| c:lignite_coal_blocks| modern_industrialization:lignite_coal_block| modern_industrialization | 
 +| c:lignite_coal_dusts| modern_industrialization:lignite_coal_dust| modern_industrialization | 
 +| c:lignite_coal_ores| modern_industrialization:lignite_coal_ore| modern_industrialization | 
 +| :::| modern_industrialization:deepslate_lignite_coal_ore| modern_industrialization | 
 +| c:lignite_coal_tiny_dusts| modern_industrialization:lignite_coal_tiny_dust| modern_industrialization | 
 +| c:lime_dye| minecraft:lime_dye| ae2 
 +| c:lime_dyes| minecraft:lime_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | 
 +| c:limeades| croptopia:limeade| croptopia |
 | c:limestone| blockus:limestone| blockus | | c:limestone| blockus:limestone| blockus |
 | :::| blockus:limestone_bricks| blockus | | :::| blockus:limestone_bricks| blockus |
Line 1066: Line 1558:
 | :::| blockus:chiseled_limestone| blockus | | :::| blockus:chiseled_limestone| blockus |
 | :::| blockus:limestone_circle_pavement| blockus | | :::| blockus:limestone_circle_pavement| blockus |
-| c:logs_with_bark| minecraft:oak_log| alaskanativecraft | 
-| :::| minecraft:spruce_log| alaskanativecraft | 
-| :::| minecraft:birch_log| alaskanativecraft | 
-| :::| minecraft:jungle_log| alaskanativecraft | 
-| :::| minecraft:acacia_log| alaskanativecraft | 
-| :::| minecraft:dark_oak_log| alaskanativecraft | 
-| :::| minecraft:warped_stem| alaskanativecraft | 
-| :::| minecraft:crimson_stem| alaskanativecraft | 
-| :::| minecraft:oak_wood| alaskanativecraft | 
-| :::| minecraft:spruce_wood| alaskanativecraft | 
-| :::| minecraft:birch_wood| alaskanativecraft | 
-| :::| minecraft:jungle_wood| alaskanativecraft | 
-| :::| minecraft:acacia_wood| alaskanativecraft | 
-| :::| minecraft:dark_oak_wood| alaskanativecraft | 
-| :::| minecraft:warped_hyphae| alaskanativecraft | 
-| :::| minecraft:crimson_hyphae| alaskanativecraft | 
 | c:lunum_blocks| astromine:lunum_block| astromine-discoveries, astromine-foundations | | c:lunum_blocks| astromine:lunum_block| astromine-discoveries, astromine-foundations |
 | c:lunum_dusts| astromine:lunum_dust| astromine-discoveries, astromine-foundations | | c:lunum_dusts| astromine:lunum_dust| astromine-discoveries, astromine-foundations |
Line 1094: Line 1570:
 | c:lutetium_nuggets| mythicmetals:lutetium_nugget| mythicmetals | | c:lutetium_nuggets| mythicmetals:lutetium_nugget| mythicmetals |
 | c:lutetium_ores| mythicmetals:lutetium_ore| mythicmetals | | c:lutetium_ores| mythicmetals:lutetium_ore| mythicmetals |
-| c:magenta_dyes| minecraft:magenta_dye| appliedenergistics2, computercraft, comforts, icarus |+| c:magenta_dye| minecraft:magenta_dye| ae2 | 
 +| c:magenta_dyes| minecraft:magenta_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr |
 | c:magnalium_plates| techreborn:magnalium_plate| techreborn | | c:magnalium_plates| techreborn:magnalium_plate| techreborn |
 | c:magnesium_dusts| techreborn:magnesium_dust| techreborn | | c:magnesium_dusts| techreborn:magnesium_dust| techreborn |
 | c:magnesium_small_dusts| techreborn:magnesium_small_dust| techreborn | | c:magnesium_small_dusts| techreborn:magnesium_small_dust| techreborn |
 | c:manganese_blocks| mythicmetals:manganese_block| mythicmetals | | c:manganese_blocks| mythicmetals:manganese_block| mythicmetals |
 +| :::| modern_industrialization:manganese_block| modern_industrialization |
 | c:manganese_dusts| modern_industrialization:manganese_dust| modern_industrialization | | c:manganese_dusts| modern_industrialization:manganese_dust| modern_industrialization |
 | :::| techreborn:manganese_dust| techreborn | | :::| techreborn:manganese_dust| techreborn |
Line 1108: Line 1586:
 | c:manganese_small_dusts| techreborn:manganese_small_dust| techreborn | | c:manganese_small_dusts| techreborn:manganese_small_dust| techreborn |
 | c:manganese_tiny_dusts| modern_industrialization:manganese_tiny_dust| modern_industrialization | | c:manganese_tiny_dusts| modern_industrialization:manganese_tiny_dust| modern_industrialization |
 +| c:mango_ice_creams| croptopia:mango_ice_cream| croptopia |
 | c:marble| blockus:marble| blockus | | c:marble| blockus:marble| blockus |
 | :::| blockus:marble_bricks| blockus | | :::| blockus:marble_bricks| blockus |
Line 1116: Line 1595:
 | c:marble_dusts| techreborn:marble_dust| techreborn | | c:marble_dusts| techreborn:marble_dust| techreborn |
 | c:marble_small_dusts| techreborn:marble_small_dust| techreborn | | c:marble_small_dusts| techreborn:marble_small_dust| techreborn |
 +| c:meads| croptopia:mead| croptopia |
 | c:metallurgium_blocks| mythicmetals:metallurgium_block| mythicmetals | | c:metallurgium_blocks| mythicmetals:metallurgium_block| mythicmetals |
 | c:metallurgium_ingots| mythicmetals:metallurgium_ingot| mythicmetals | | c:metallurgium_ingots| mythicmetals:metallurgium_ingot| mythicmetals |
Line 1141: Line 1621:
 | c:midas_gold_nuggets| mythicmetals:midas_gold_nugget| mythicmetals | | c:midas_gold_nuggets| mythicmetals:midas_gold_nugget| mythicmetals |
 | c:midas_gold_ores| mythicmetals:midas_gold_ore| mythicmetals | | c:midas_gold_ores| mythicmetals:midas_gold_ore| mythicmetals |
 +| c:milk_bottles| croptopia:milk_bottle| croptopia |
 +| c:milks| minecraft:milk_bucket| croptopia |
 +| :::| croptopia:soy_milk| croptopia |
 +| :::| croptopia:milk_bottle| croptopia |
 +| c:miners_lettuce| valley:miners_lettuce| valley |
 | c:mixed_metal_ingots| techreborn:mixed_metal_ingot| techreborn | | c:mixed_metal_ingots| techreborn:mixed_metal_ingot| techreborn |
 +| c:molasses| croptopia:molasses| croptopia |
 +| c:mollusks| valley:clam| valley |
 +| :::| valley:mussel| valley |
 +| :::| valley:brown_mussel| valley |
 +| :::| valley:cerith_snail| valley |
 | c:moon_lunum_ores| {'id': 'astromine:moon_lunum_ore', 'required': False}| astromine-discoveries, astromine-foundations | | c:moon_lunum_ores| {'id': 'astromine:moon_lunum_ore', 'required': False}| astromine-discoveries, astromine-foundations |
 +| c:mortar_and_pestles| croptopia:mortar_and_pestle| croptopia |
 +| c:mozanite_blocks| modern_industrialization:mozanite_block| modern_industrialization |
 +| c:mozanite_dusts| modern_industrialization:mozanite_dust| modern_industrialization |
 +| c:mozanite_ores| modern_industrialization:mozanite_ore| modern_industrialization |
 +| :::| modern_industrialization:deepslate_mozanite_ore| modern_industrialization |
 +| c:mozanite_tiny_dusts| modern_industrialization:mozanite_tiny_dust| modern_industrialization |
 | c:mushrooms| byg:green_mushroom| byg | | c:mushrooms| byg:green_mushroom| byg |
 | :::| byg:wood_blewit| byg | | :::| byg:wood_blewit| byg |
Line 1150: Line 1646:
 | :::| minecraft:brown_mushroom| spatialharvesters | | :::| minecraft:brown_mushroom| spatialharvesters |
 | :::| minecraft:red_mushroom| spatialharvesters | | :::| minecraft:red_mushroom| spatialharvesters |
 +| :::| brown_mushroom| bewitchment |
 +| :::| red_mushroom| bewitchment |
 +| :::| botania:white_mushroom| botania |
 +| :::| botania:orange_mushroom| botania |
 +| :::| botania:magenta_mushroom| botania |
 +| :::| botania:light_blue_mushroom| botania |
 +| :::| botania:yellow_mushroom| botania |
 +| :::| botania:lime_mushroom| botania |
 +| :::| botania:pink_mushroom| botania |
 +| :::| botania:gray_mushroom| botania |
 +| :::| botania:light_gray_mushroom| botania |
 +| :::| botania:cyan_mushroom| botania |
 +| :::| botania:purple_mushroom| botania |
 +| :::| botania:blue_mushroom| botania |
 +| :::| botania:brown_mushroom| botania |
 +| :::| botania:green_mushroom| botania |
 +| :::| botania:red_mushroom| botania |
 +| :::| botania:black_mushroom| botania |
 | c:mythril_blocks| mythicmetals:mythril_block| mythicmetals | | c:mythril_blocks| mythicmetals:mythril_block| mythicmetals |
 | c:mythril_ingots| mythicmetals:mythril_ingot| mythicmetals | | c:mythril_ingots| mythicmetals:mythril_ingot| mythicmetals |
 | c:mythril_nuggets| mythicmetals:mythril_nugget| mythicmetals | | c:mythril_nuggets| mythicmetals:mythril_nugget| mythicmetals |
 | c:mythril_ores| mythicmetals:mythril_ore| mythicmetals | | c:mythril_ores| mythicmetals:mythril_ore| mythicmetals |
 +| :::| mythicmetals:deepslate_mythril_ore| mythicmetals |
 +| c:neodymium_blocks| modern_industrialization:neodymium_block| modern_industrialization |
 +| c:neodymium_dusts| modern_industrialization:neodymium_dust| modern_industrialization |
 +| c:neodymium_tiny_dusts| modern_industrialization:neodymium_tiny_dust| modern_industrialization |
 | c:neptunium_dusts| mechanix:neptunium_dust| mechanix | | c:neptunium_dusts| mechanix:neptunium_dust| mechanix |
 | c:neptunium_ingots| mechanix:neptunium_ingot| mechanix | | c:neptunium_ingots| mechanix:neptunium_ingot| mechanix |
-| c:netherite_blocks| minecraft:netherite_block| astromine-discoveries, astromine-foundations |+| c:nether_bricks| minecraft:nether_bricks| waystones | 
 +| :::| minecraft:chiseled_nether_bricks| waystones | 
 +| :::| minecraft:cracked_nether_bricks| waystones | 
 +| c:nether_wart_crops| minecraft:nether_wart| adorn | 
 +| c:netherite_blocks| minecraft:netherite_block| astromine-discoveries, extragenerators, astromine-foundations |
 | c:netherite_dusts| astromine:netherite_dust| astromine-discoveries, astromine-foundations | | c:netherite_dusts| astromine:netherite_dust| astromine-discoveries, astromine-foundations |
 | c:netherite_gears| astromine:netherite_gear| astromine-discoveries, astromine-foundations | | c:netherite_gears| astromine:netherite_gear| astromine-discoveries, astromine-foundations |
-| c:netherite_ingots| minecraft:netherite_ingot| astromine-discoveries, astromine-foundations, crookedcrooks |+| c:netherite_ingots| minecraft:netherite_ingot| astromine-foundations, astromine-discoveries, expandedstorage, crookedcrooks |
 | c:netherite_nuggets| astromine:netherite_nugget| astromine-discoveries, astromine-foundations | | c:netherite_nuggets| astromine:netherite_nugget| astromine-discoveries, astromine-foundations |
 +| :::| valley:netherite_nugget| valley |
 | c:netherite_plates| astromine:netherite_plate| astromine-discoveries, astromine-foundations | | c:netherite_plates| astromine:netherite_plate| astromine-discoveries, astromine-foundations |
 | c:netherite_scrap_dusts| indrev:netherite_scrap_dust| indrev | | c:netherite_scrap_dusts| indrev:netherite_scrap_dust| indrev |
Line 1178: Line 1701:
 | :::| techreborn:nickel_storage_block| techreborn | | :::| techreborn:nickel_storage_block| techreborn |
 | :::| texp:nickel_block| texp | | :::| texp:nickel_block| texp |
 +| :::| modern_industrialization:nickel_block| modern_industrialization |
 | c:nickel_dust| refinedmachinery:nickel_dust| refinedmachinery | | c:nickel_dust| refinedmachinery:nickel_dust| refinedmachinery |
 | c:nickel_dusts| modern_industrialization:nickel_dust| modern_industrialization | | c:nickel_dusts| modern_industrialization:nickel_dust| modern_industrialization |
Line 1196: Line 1720:
 | :::| modern_industrialization:nickel_ore| modern_industrialization | | :::| modern_industrialization:nickel_ore| modern_industrialization |
 | :::| texp:nickel_ore| texp | | :::| texp:nickel_ore| texp |
 +| :::| modern_industrialization:deepslate_nickel_ore| modern_industrialization |
 | c:nickel_plates| modern_industrialization:nickel_plate| modern_industrialization | | c:nickel_plates| modern_industrialization:nickel_plate| modern_industrialization |
 | :::| techreborn:nickel_plate| techreborn | | :::| techreborn:nickel_plate| techreborn |
 | c:nickel_small_dusts| techreborn:nickel_small_dust| techreborn | | c:nickel_small_dusts| techreborn:nickel_small_dust| techreborn |
 | c:nickel_tiny_dusts| modern_industrialization:nickel_tiny_dust| modern_industrialization | | c:nickel_tiny_dusts| modern_industrialization:nickel_tiny_dust| modern_industrialization |
 +| c:nikolite_ores| indrev:nikolite_ore| indrev |
 +| :::| indrev:deepslate_nikolite_ore| indrev |
 +| c:noodles| croptopia:noodle| croptopia |
 +| c:nougats| croptopia:nougat| croptopia |
 +| c:nuclear_alloy_plates| modern_industrialization:nuclear_alloy_plate| modern_industrialization |
 +| c:nuts| #c:nuts/almonds| croptopia |
 +| :::| #c:nuts/pecans| croptopia |
 +| :::| #c:nuts/walnuts| croptopia |
 +| c:nuts/almonds| croptopia:almond| croptopia |
 +| c:nuts/pecans| croptopia:pecan| croptopia |
 +| c:nuts/walnuts| croptopia:walnut| croptopia |
 +| c:nutty_cookies| croptopia:nutty_cookie| croptopia |
 +| c:oatmeals| croptopia:oatmeal| croptopia |
 | c:obsidian_dusts| techreborn:obsidian_dust| techreborn | | c:obsidian_dusts| techreborn:obsidian_dust| techreborn |
 | c:obsidian_plates| techreborn:obsidian_plate| techreborn | | c:obsidian_plates| techreborn:obsidian_plate| techreborn |
 | c:obsidian_small_dusts| techreborn:obsidian_small_dust| techreborn | | c:obsidian_small_dusts| techreborn:obsidian_small_dust| techreborn |
 +| c:olive_oils| croptopia:olive_oil| croptopia |
 | c:olivine_dusts| techreborn:olivine_dust| techreborn | | c:olivine_dusts| techreborn:olivine_dust| techreborn |
 | c:olivine_small_dusts| techreborn:olivine_small_dust| techreborn | | c:olivine_small_dusts| techreborn:olivine_small_dust| techreborn |
 | c:onion| bonappetit:onion| bonappetit | | c:onion| bonappetit:onion| bonappetit |
-| c:orange_dyes| minecraft:orange_dye| appliedenergistics2, computercraft, comforts, icarus |+| :::| valley:onion| valley | 
 +| c:onion_rings| croptopia:onion_rings| croptopia | 
 +| c:orange_dye| minecraft:orange_dye| ae2 | 
 +| c:orange_dyes| minecraft:orange_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr |
 | c:ores| minecraft:gold_ore| modern_industrialization, spatialharvesters | | c:ores| minecraft:gold_ore| modern_industrialization, spatialharvesters |
 | :::| minecraft:iron_ore| modern_industrialization, spatialharvesters | | :::| minecraft:iron_ore| modern_industrialization, spatialharvesters |
Line 1224: Line 1766:
 | :::| minecraft:emerald_ore| spatialharvesters | | :::| minecraft:emerald_ore| spatialharvesters |
 | :::| minecraft:ancient_debris| spatialharvesters | | :::| minecraft:ancient_debris| spatialharvesters |
 +| :::| #c:certus_quartz_ores| ae2 |
 +| :::| #minecraft:coal_ores| bewitchment |
 +| :::| #minecraft:copper_ores| bewitchment |
 +| :::| #minecraft:iron_ores| bewitchment |
 +| :::| #minecraft:gold_ores| bewitchment |
 +| :::| #minecraft:lapis_ores| bewitchment |
 +| :::| #minecraft:redstone_ores| bewitchment |
 +| :::| #minecraft:diamond_ores| bewitchment |
 +| :::| #minecraft:emerald_ores| bewitchment |
 +| :::| nether_quartz_ore| bewitchment |
 +| :::| ancient_debris| bewitchment |
 +| :::| #c:silver_ores| bewitchment |
 +| :::| #c:salt_ores| bewitchment |
 +| c:ores/coal| #unearthed:coal_ores| unearthed |
 +| c:ores/diamond| #unearthed:diamond_ores| unearthed |
 +| c:ores/emerald| #unearthed:emerald_ores| unearthed |
 +| c:ores/gold| #unearthed:gold_ores| unearthed |
 +| c:ores/iron| #unearthed:iron_ores| unearthed |
 +| c:ores/lapis| #unearthed:lapis_ores| unearthed |
 +| c:ores/redstone| #unearthed:redstone_ores| unearthed |
 | c:orichalcum_blocks| mythicmetals:orichalcum_block| mythicmetals | | c:orichalcum_blocks| mythicmetals:orichalcum_block| mythicmetals |
 | c:orichalcum_ingots| mythicmetals:orichalcum_ingot| mythicmetals | | c:orichalcum_ingots| mythicmetals:orichalcum_ingot| mythicmetals |
 | c:orichalcum_nuggets| mythicmetals:orichalcum_nugget| mythicmetals | | c:orichalcum_nuggets| mythicmetals:orichalcum_nugget| mythicmetals |
 | c:orichalcum_ores| mythicmetals:orichalcum_ore| mythicmetals | | c:orichalcum_ores| mythicmetals:orichalcum_ore| mythicmetals |
 +| :::| mythicmetals:deepslate_orichalcum_ore| mythicmetals |
 +| :::| mythicmetals:smooth_basalt_orichalcum_ore| mythicmetals |
 +| :::| mythicmetals:tuff_orichalcum_ore| mythicmetals |
 | c:osmium_blocks| bno:osmium_block| bno | | c:osmium_blocks| bno:osmium_block| bno |
 | :::| c:osmium_block| cotton-resources | | :::| c:osmium_block| cotton-resources |
Line 1246: Line 1811:
 | c:osmium_plates| c:osmium_plate| cotton-resources | | c:osmium_plates| c:osmium_plate| cotton-resources |
 | c:palladium_blocks| c:palladium_block| cotton-resources | | c:palladium_blocks| c:palladium_block| cotton-resources |
 +| :::| mythicmetals:palladium_block| mythicmetals |
 | c:palladium_dusts| c:palladium_dust| cotton-resources | | c:palladium_dusts| c:palladium_dust| cotton-resources |
 | c:palladium_gears| c:palladium_gear| cotton-resources | | c:palladium_gears| c:palladium_gear| cotton-resources |
 | c:palladium_ingots| c:palladium_ingot| cotton-resources | | c:palladium_ingots| c:palladium_ingot| cotton-resources |
 +| :::| mythicmetals:palladium_ingot| mythicmetals |
 | c:palladium_nuggets| c:palladium_nugget| cotton-resources | | c:palladium_nuggets| c:palladium_nugget| cotton-resources |
 +| :::| mythicmetals:palladium_nugget| mythicmetals |
 | c:palladium_ores| c:palladium_ore| cotton-resources | | c:palladium_ores| c:palladium_ore| cotton-resources |
 | :::| c:palladium_nether_ore| cotton-resources | | :::| c:palladium_nether_ore| cotton-resources |
 | :::| c:palladium_end_ore| cotton-resources | | :::| c:palladium_end_ore| cotton-resources |
 +| :::| mythicmetals:palladium_ore| mythicmetals |
 | c:palladium_plates| c:palladium_plate| cotton-resources | | c:palladium_plates| c:palladium_plate| cotton-resources |
 +| c:pallet_of_bricks| prefab:item_pallet_of_bricks| prefab |
 +| c:peanut_butter_and_jam| croptopia:peanut_butter_and_jam| croptopia |
 +| c:pecan_ice_creams| croptopia:pecan_ice_cream| croptopia |
 +| c:pecan_pies| croptopia:pecan_pie| croptopia |
 +| c:pepperoni| croptopia:pepperoni| croptopia |
 | c:peridot_blocks| c:peridot_block| cotton-resources | | c:peridot_blocks| c:peridot_block| cotton-resources |
 | :::| techreborn:peridot_storage_block| techreborn | | :::| techreborn:peridot_storage_block| techreborn |
Line 1264: Line 1838:
 | :::| c:peridot_end_ore| cotton-resources | | :::| c:peridot_end_ore| cotton-resources |
 | :::| techreborn:peridot_ore| techreborn | | :::| techreborn:peridot_ore| techreborn |
 +| :::| techreborn:deepslate_peridot_ore| techreborn |
 | c:peridot_plates| c:peridot_plate| cotton-resources | | c:peridot_plates| c:peridot_plate| cotton-resources |
 | :::| techreborn:peridot_plate| techreborn | | :::| techreborn:peridot_plate| techreborn |
 | c:peridot_small_dusts| techreborn:peridot_small_dust| techreborn | | c:peridot_small_dusts| techreborn:peridot_small_dust| techreborn |
 | c:peridots| c:peridot| cotton-resources | | c:peridots| c:peridot| cotton-resources |
 +| :::| {'id': 'techreborn:peridot_gem', 'required': False}| crookedcrooks |
 | :::| {'id': 'techreborn:peridot_gem', 'required': False}| crookedcrooks | | :::| {'id': 'techreborn:peridot_gem', 'required': False}| crookedcrooks |
 | c:perlium_dusts| mechanix:perlium_dust| mechanix | | c:perlium_dusts| mechanix:perlium_dust| mechanix |
Line 1283: Line 1859:
 | :::| more_gems:ruby_pickaxe| more_gems | | :::| more_gems:ruby_pickaxe| more_gems |
 | :::| more_gems:carbonado_pickaxe| more_gems | | :::| more_gems:carbonado_pickaxe| more_gems |
-| c:pink_dyes| minecraft:pink_dye| appliedenergistics2, computercraft, comforts, icarus |+| c:pile_of_bricks| prefab:item_pile_of_bricks| prefab | 
 +| c:pineapple_pepperoni_pizzas| croptopia:pineapple_pepperoni_pizza| croptopia | 
 +| c:pink_dye| minecraft:pink_dye| ae2 | 
 +| c:pink_dyes| minecraft:pink_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | 
 +| c:pink_sand| byg:pink_sand| byg | 
 +| c:pizzas| croptopia:pizza| croptopia | 
 +| c:planks_that_burn| minecraft:oak_planks| blockus | 
 +| :::| minecraft:spruce_planks| blockus | 
 +| :::| minecraft:birch_planks| blockus | 
 +| :::| minecraft:jungle_planks| blockus | 
 +| :::| minecraft:acacia_planks| blockus | 
 +| :::| minecraft:dark_oak_planks| blockus | 
 +| :::| blockus:bamboo_planks| blockus | 
 +| :::| blockus:white_oak_planks| blockus | 
 +| :::| techreborn:rubber_planks| techreborn |
 | c:platinum_blocks| c:platinum_block| cotton-resources | | c:platinum_blocks| c:platinum_block| cotton-resources |
 | :::| mythicmetals:platinum_block| mythicmetals | | :::| mythicmetals:platinum_block| mythicmetals |
 | :::| techreborn:platinum_storage_block| techreborn | | :::| techreborn:platinum_storage_block| techreborn |
 | :::| texp:platinum_block| texp | | :::| texp:platinum_block| texp |
 +| :::| modern_industrialization:platinum_block| modern_industrialization |
 | c:platinum_dusts| c:platinum_dust| cotton-resources | | c:platinum_dusts| c:platinum_dust| cotton-resources |
 | :::| techreborn:platinum_dust| techreborn | | :::| techreborn:platinum_dust| techreborn |
 | :::| texp:platinum_dust| texp | | :::| texp:platinum_dust| texp |
 +| :::| modern_industrialization:platinum_dust| modern_industrialization |
 | c:platinum_gears| c:platinum_gear| cotton-resources | | c:platinum_gears| c:platinum_gear| cotton-resources |
 | c:platinum_ingots| c:platinum_ingot| cotton-resources | | c:platinum_ingots| c:platinum_ingot| cotton-resources |
Line 1297: Line 1889:
 | :::| techreborn:platinum_ingot| techreborn | | :::| techreborn:platinum_ingot| techreborn |
 | :::| texp:platinum_ingot| texp | | :::| texp:platinum_ingot| texp |
 +| :::| modern_industrialization:platinum_ingot| modern_industrialization |
 | c:platinum_nuggets| c:platinum_nugget| cotton-resources | | c:platinum_nuggets| c:platinum_nugget| cotton-resources |
 | :::| mythicmetals:platinum_nugget| mythicmetals | | :::| mythicmetals:platinum_nugget| mythicmetals |
 | :::| techreborn:platinum_nugget| techreborn | | :::| techreborn:platinum_nugget| techreborn |
 | :::| texp:platinum_nugget| texp | | :::| texp:platinum_nugget| texp |
 +| :::| modern_industrialization:platinum_nugget| modern_industrialization |
 | c:platinum_ores| c:platinum_ore| cotton-resources | | c:platinum_ores| c:platinum_ore| cotton-resources |
 | :::| c:platinum_nether_ore| cotton-resources | | :::| c:platinum_nether_ore| cotton-resources |
Line 1306: Line 1900:
 | :::| mythicmetals:platinum_ore| mythicmetals | | :::| mythicmetals:platinum_ore| mythicmetals |
 | :::| texp:platinum_ore| texp | | :::| texp:platinum_ore| texp |
 +| :::| modern_industrialization:platinum_ore| modern_industrialization |
 | c:platinum_plates| c:platinum_plate| cotton-resources | | c:platinum_plates| c:platinum_plate| cotton-resources |
 | :::| techreborn:platinum_plate| techreborn | | :::| techreborn:platinum_plate| techreborn |
 +| :::| modern_industrialization:platinum_plate| modern_industrialization |
 | c:platinum_small_dusts| techreborn:platinum_small_dust| techreborn | | c:platinum_small_dusts| techreborn:platinum_small_dust| techreborn |
 +| c:platinum_tiny_dusts| modern_industrialization:platinum_tiny_dust| modern_industrialization |
 | c:plutonium_blocks| c:plutonium_block| cotton-resources | | c:plutonium_blocks| c:plutonium_block| cotton-resources |
 +| :::| modern_industrialization:plutonium_block| modern_industrialization |
 | c:plutonium_dusts| c:plutonium_dust| cotton-resources | | c:plutonium_dusts| c:plutonium_dust| cotton-resources |
 +| :::| modern_industrialization:plutonium_dust| modern_industrialization |
 | c:plutonium_gears| c:plutonium_gear| cotton-resources | | c:plutonium_gears| c:plutonium_gear| cotton-resources |
 | c:plutonium_ingots| c:plutonium_ingot| cotton-resources | | c:plutonium_ingots| c:plutonium_ingot| cotton-resources |
 +| :::| modern_industrialization:plutonium_ingot| modern_industrialization |
 | c:plutonium_nuggets| c:plutonium_nugget| cotton-resources | | c:plutonium_nuggets| c:plutonium_nugget| cotton-resources |
 +| :::| modern_industrialization:plutonium_nugget| modern_industrialization |
 | c:plutonium_plates| c:plutonium_plate| cotton-resources | | c:plutonium_plates| c:plutonium_plate| cotton-resources |
 +| c:plutonium_tiny_dusts| modern_industrialization:plutonium_tiny_dust| modern_industrialization |
 +| c:polished_blackstones| minecraft:chiseled_polished_blackstone| waystones |
 +| :::| minecraft:polished_blackstone| waystones |
 +| c:pollen| the_bumblezone:pollen_puff| the_bumblezone |
 +| c:popcorns| croptopia:popcorn| croptopia |
 | c:porcelain| exnihilofabrico:porcelain| exnihilofabrico | | c:porcelain| exnihilofabrico:porcelain| exnihilofabrico |
 +| c:pork_and_beanss| croptopia:pork_and_beans| croptopia |
 +| c:pork_jerkies| croptopia:pork_jerky| croptopia |
 +| c:potato_chips| croptopia:potato_chips| croptopia |
 | c:prehistoric_calamites_logs| eymbra:prehistoric_calamites_log| eymbra | | c:prehistoric_calamites_logs| eymbra:prehistoric_calamites_log| eymbra |
 | c:prehistoric_darkwood_logs| eymbra:prehistoric_darkwood_log| eymbra | | c:prehistoric_darkwood_logs| eymbra:prehistoric_darkwood_log| eymbra |
Line 1328: Line 1937:
 | :::| veggie_way:soybean| veggie_way | | :::| veggie_way:soybean| veggie_way |
 | :::| veggie_way:cooked_tofu| veggie_way | | :::| veggie_way:cooked_tofu| veggie_way |
-| c:purple_dyes| minecraft:purple_dye| appliedenergistics2, computercraft, comforts, icarus | +| c:protein_bars| croptopia:protein_bar| croptopia | 
-| c:purpur_blocks| minecraft:purpur_block| astromine-discoveries, astromine-foundations, astromine-technologies |+| c:pumpkin_spice_lattes| croptopia:pumpkin_spice_latte| croptopia | 
 +| c:purple_dye| minecraft:purple_dye| ae2 | 
 +| c:purple_dyes| minecraft:purple_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | 
 +| c:purple_sand| byg:purple_sand| byg 
 +| c:purpur_blocks| minecraft:purpur_block| astromine-discoveries, astromine-technologies, astromine-foundations |
 | :::| minecraft:purpur_pillar| astromine-technologies | | :::| minecraft:purpur_pillar| astromine-technologies |
 +| :::| blockus:purpur_bricks| blockus |
 +| :::| blockus:polished_purpur| blockus |
 +| :::| blockus:purpur_squares| blockus |
 +| :::| blockus:small_purpur_bricks| blockus |
 +| :::| blockus:chiseled_purpur| blockus |
 +| :::| blockus:purpur_lines| blockus |
 +| :::| blockus:phantom_purpur_block| blockus |
 +| :::| blockus:phantom_purpur_pillar| blockus |
 +| :::| blockus:phantom_purpur_bricks| blockus |
 +| :::| blockus:polished_phantom_purpur| blockus |
 +| :::| blockus:phantom_purpur_squares| blockus |
 +| :::| blockus:small_phantom_purpur_bricks| blockus |
 +| :::| blockus:chiseled_phantom_purpur| blockus |
 +| :::| blockus:phantom_purpur_lines| blockus |
 | c:pyrite_apples| #c:fools_gold_apples| astromine-foundations | | c:pyrite_apples| #c:fools_gold_apples| astromine-foundations |
 | c:pyrite_blocks| #c:fools_gold_blocks| astromine-foundations | | c:pyrite_blocks| #c:fools_gold_blocks| astromine-foundations |
Line 1348: Line 1975:
 | c:quadrillum_nuggets| mythicmetals:quadrillum_nugget| mythicmetals | | c:quadrillum_nuggets| mythicmetals:quadrillum_nugget| mythicmetals |
 | c:quadrillum_ores| mythicmetals:quadrillum_ore| mythicmetals | | c:quadrillum_ores| mythicmetals:quadrillum_ore| mythicmetals |
-| c:quartz| minecraft:quartz| appliedenergistics2, astromine-discoveries, astromine-foundations, cinderscapes |+| c:quartz| minecraft:quartz| cinderscapes, appliedenergistics2, astromine-foundations, ae2, adorn, astromine-discoveries |
 | :::| cinderscapes:smoky_quartz| cinderscapes | | :::| cinderscapes:smoky_quartz| cinderscapes |
 | :::| cinderscapes:rose_quartz| cinderscapes | | :::| cinderscapes:rose_quartz| cinderscapes |
 | :::| cinderscapes:sulfur_quartz| cinderscapes | | :::| cinderscapes:sulfur_quartz| cinderscapes |
-| c:quartz_blocks| minecraft:quartz_block| astromine-discoveries, astromine-foundations, astromine-technologies, slotlink | +| c:quartz_blocks| minecraft:quartz_block| astromine-discoveries, astromine-technologies, slotlink, astromine-foundations 
-| :::| minecraft:chiseled_quartz_block| astromine-technologies, slotlink +| :::| minecraft:chiseled_quartz_block| slotlink, astromine-technologies | 
-| :::| minecraft:quartz_pillar| astromine-technologies, slotlink +| :::| minecraft:quartz_pillar| slotlink, astromine-technologies | 
-| :::| minecraft:smooth_quartz| astromine-technologies, slotlink +| :::| minecraft:smooth_quartz| slotlink, astromine-technologies | 
-| :::| minecraft:quartz_bricks| astromine-technologies, slotlink |+| :::| minecraft:quartz_bricks| slotlink, astromine-technologies 
 +| :::| blockus:quartz_tiles| blockus | 
 +| :::| blockus:quartz_circle_pavement| blockus | 
 +| :::| botania:dark_quartz| botania | 
 +| :::| botania:mana_quartz| botania | 
 +| :::| botania:blaze_quartz| botania | 
 +| :::| botania:lavender_quartz| botania | 
 +| :::| botania:red_quartz| botania | 
 +| :::| botania:elf_quartz| botania | 
 +| :::| botania:sunny_quartz| botania |
 | c:quartz_dusts| appliedenergistics2:nether_quartz_dust| appliedenergistics2 | | c:quartz_dusts| appliedenergistics2:nether_quartz_dust| appliedenergistics2 |
 | :::| astromine:quartz_dust| astromine-discoveries, astromine-foundations | | :::| astromine:quartz_dust| astromine-discoveries, astromine-foundations |
Line 1363: Line 1999:
 | c:quartz_fragments| astromine:quartz_fragment| astromine-discoveries, astromine-foundations | | c:quartz_fragments| astromine:quartz_fragment| astromine-discoveries, astromine-foundations |
 | c:quartz_nuggets| #c:quartz_fragments| astromine-foundations | | c:quartz_nuggets| #c:quartz_fragments| astromine-foundations |
-| c:quartz_ores| minecraft:nether_quartz_ore| randomtech, appliedenergistics2, astromine-discoveries, astromine-foundations |+| c:quartz_ores| minecraft:nether_quartz_ore| modern_industrialization, appliedenergistics2, astromine-foundations, ae2, astromine-discoveries, randomtech | 
 +| :::| modern_industrialization:quartz_ore| modern_industrialization |
 | c:quartz_plates| techreborn:quartz_plate| techreborn | | c:quartz_plates| techreborn:quartz_plate| techreborn |
 | c:quartz_small_dusts| techreborn:quartz_small_dust| techreborn | | c:quartz_small_dusts| techreborn:quartz_small_dust| techreborn |
Line 1372: Line 2009:
 | c:quicksilver_nuggets| mythicmetals:quicksilver_nugget| mythicmetals | | c:quicksilver_nuggets| mythicmetals:quicksilver_nugget| mythicmetals |
 | c:quinoa| veggie_way:quinoa_seeds| veggie_way | | c:quinoa| veggie_way:quinoa_seeds| veggie_way |
-| c:rare_loot| minecraft:netherite_scrap| gobber2, resourceful_tools, veggie_way | +| c:raisin_oatmeal_cookies| croptopia:raisin_oatmeal_cookie| croptopia | 
-| :::| minecraft:prismarine_shard| gobber2, resourceful_tools, veggie_way | +| c:raisins| croptopia:raisins| croptopia | 
-| :::| minecraft:prismarine_crystals| gobber2, resourceful_tools, veggie_way | +| c:rare_loot| minecraft:netherite_scrap| resourceful_tools, veggie_way, gobber2 
-| :::| minecraft:nautilus_shell| gobber2, resourceful_tools, veggie_way |+| :::| minecraft:prismarine_shard| resourceful_tools, veggie_way, gobber2 
 +| :::| minecraft:prismarine_crystals| resourceful_tools, veggie_way, gobber2 
 +| :::| minecraft:nautilus_shell| resourceful_tools, veggie_way, gobber2 |
 | :::| gobber2:gobber2_ingot_nether| gobber2 | | :::| gobber2:gobber2_ingot_nether| gobber2 |
 | :::| gobber2:gobber2_ring_return| gobber2 | | :::| gobber2:gobber2_ring_return| gobber2 |
Line 1383: Line 2022:
 | :::| more_gems:sapphire_juju| more_gems | | :::| more_gems:sapphire_juju| more_gems |
 | :::| resourceful_tools:diamond_crack_hammer| resourceful_tools | | :::| resourceful_tools:diamond_crack_hammer| resourceful_tools |
-| c:raspberriesalaskanativecraft:raspberriesalaskanativecraft |+| c:raviolicroptopia:raviolicroptopia | 
 +| c:raw_antimony_ores| modern_industrialization:raw_antimony| modern_industrialization | 
 +| c:raw_copper_blocks| minecraft:raw_copper_block| modern_industrialization | 
 +| c:raw_copper_ores| minecraft:raw_copper| modern_industrialization, indrev |
 | c:raw_fish| minecraft:cod| exnihilofabrico | | c:raw_fish| minecraft:cod| exnihilofabrico |
 | :::| minecraft:salmon| exnihilofabrico | | :::| minecraft:salmon| exnihilofabrico |
 | :::| minecraft:tropical_fish| exnihilofabrico | | :::| minecraft:tropical_fish| exnihilofabrico |
 | :::| minecraft:pufferfish| exnihilofabrico | | :::| minecraft:pufferfish| exnihilofabrico |
 +| c:raw_gold_blocks| minecraft:raw_gold_block| modern_industrialization |
 +| c:raw_gold_ores| minecraft:raw_gold| modern_industrialization, indrev |
 +| c:raw_iridium_ores| modern_industrialization:raw_iridium| modern_industrialization |
 +| :::| techreborn:raw_iridium| techreborn |
 +| c:raw_iron_blocks| minecraft:raw_iron_block| modern_industrialization |
 +| c:raw_iron_ores| minecraft:raw_iron| modern_industrialization, indrev |
 +| c:raw_lead_ores| indrev:raw_lead| indrev |
 +| :::| modern_industrialization:raw_lead| modern_industrialization |
 +| :::| techreborn:raw_lead| techreborn |
 | c:raw_meat| #c:raw_fish| exnihilofabrico | | c:raw_meat| #c:raw_fish| exnihilofabrico |
-| :::| minecraft:beef| exnihilofabrico | +| :::| minecraft:beef| techreborn, exnihilofabrico | 
-| :::| minecraft:porkchop| exnihilofabrico | +| :::| minecraft:porkchop| techreborn, exnihilofabrico | 
-| :::| minecraft:chicken| exnihilofabrico | +| :::| minecraft:chicken| techreborn, exnihilofabrico | 
-| :::| minecraft:rabbit| exnihilofabrico | +| :::| minecraft:rabbit| techreborn, exnihilofabrico | 
-| :::| minecraft:mutton| exnihilofabrico |+| :::| minecraft:mutton| techreborn, exnihilofabrico |
 | :::| exnihilofabrico:silkworm_raw| exnihilofabrico | | :::| exnihilofabrico:silkworm_raw| exnihilofabrico |
 +| :::| betteranimalsplus:venisonraw| betteranimalsplus |
 +| :::| betteranimalsplus:pheasantraw| betteranimalsplus |
 +| :::| betteranimalsplus:crab_meat_raw| betteranimalsplus |
 +| :::| betteranimalsplus:turkey_leg_raw| betteranimalsplus |
 +| :::| betteranimalsplus:eel_meat_raw| betteranimalsplus |
 +| :::| betteranimalsplus:calamari_raw| betteranimalsplus |
 +| :::| minecraft:cod| techreborn |
 +| :::| minecraft:salmon| techreborn |
 | c:raw_netherite_dusts| astromine:raw_netherite_dust| astromine-discoveries, astromine-foundations | | c:raw_netherite_dusts| astromine:raw_netherite_dust| astromine-discoveries, astromine-foundations |
 | c:raw_netherite_tiny_dusts| astromine:raw_netherite_tiny_dust| astromine-discoveries, astromine-foundations | | c:raw_netherite_tiny_dusts| astromine:raw_netherite_tiny_dust| astromine-discoveries, astromine-foundations |
-| c:red_dyes| minecraft:red_dye| appliedenergistics2, computercraft, comforts, icarus |+| c:raw_nickel_blocks| modern_industrialization:raw_nickel_block| modern_industrialization | 
 +| c:raw_nickel_ores| modern_industrialization:raw_nickel| modern_industrialization | 
 +| c:raw_platinum_blocks| modern_industrialization:raw_platinum_block| modern_industrialization | 
 +| c:raw_platinum_ores| modern_industrialization:raw_platinum| modern_industrialization | 
 +| c:raw_silver_blocks| bewitchment:raw_silver_block| bewitchment | 
 +| :::| modern_industrialization:raw_silver_block| modern_industrialization | 
 +| c:raw_silver_ores| indrev:raw_silver| indrev | 
 +| :::| modern_industrialization:raw_silver| modern_industrialization | 
 +| :::| techreborn:raw_silver| techreborn | 
 +| c:raw_silvers| bewitchment:raw_silver| bewitchment | 
 +| c:raw_tin_ores| indrev:raw_tin| indrev | 
 +| :::| modern_industrialization:raw_tin| modern_industrialization | 
 +| :::| techreborn:raw_tin| techreborn | 
 +| c:raw_titanium_blocks| modern_industrialization:raw_titanium_block| modern_industrialization | 
 +| c:raw_titanium_ores| modern_industrialization:raw_titanium| modern_industrialization | 
 +| c:raw_tungsten_blocks| modern_industrialization:raw_tungsten_block| modern_industrialization | 
 +| c:raw_tungsten_ores| indrev:raw_tungsten| indrev | 
 +| :::| modern_industrialization:raw_tungsten| modern_industrialization | 
 +| :::| techreborn:raw_tungsten| techreborn | 
 +| c:raw_uranium_ores| modern_industrialization:raw_uranium| modern_industrialization | 
 +| c:red_dye| minecraft:red_dye| ae2 | 
 +| c:red_dyes| minecraft:red_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr, valley, expandedstorage |
 | c:red_garnet_blocks| techreborn:red_garnet_storage_block| techreborn | | c:red_garnet_blocks| techreborn:red_garnet_storage_block| techreborn |
 | c:red_garnet_dusts| techreborn:red_garnet_dust| techreborn | | c:red_garnet_dusts| techreborn:red_garnet_dust| techreborn |
Line 1403: Line 2083:
 | c:red_garnet_plates| techreborn:red_garnet_plate| techreborn | | c:red_garnet_plates| techreborn:red_garnet_plate| techreborn |
 | c:red_garnet_small_dusts| techreborn:red_garnet_small_dust| techreborn | | c:red_garnet_small_dusts| techreborn:red_garnet_small_dust| techreborn |
-| c:red_sandstones| minecraft:red_sandstone| astromine-discoveries, astromine-foundations, astromine-technologies +| c:red_sandstones| minecraft:red_sandstone| astromine-discoveries, astromine-technologies, waystones, astromine-foundations 
-| :::| minecraft:cut_red_sandstone| astromine-technologies | +| :::| minecraft:cut_red_sandstone| astromine-technologies, waystones 
-| :::| minecraft:chiseled_red_sandstone| astromine-technologies | +| :::| minecraft:chiseled_red_sandstone| astromine-technologies, waystones 
-| :::| minecraft:smooth_red_sandstone| astromine-technologies | +| :::| minecraft:smooth_red_sandstone| astromine-technologies, waystones | 
-| c:redstone_blocks| minecraft:redstone_block| astromine-discoveries, astromine-foundations, spatialharvesters +| :::| blockus:red_sandstone_bricks| blockus | 
-| c:redstone_dusts| minecraft:redstone| randomtech, appliedenergistics2, astromine-discoveries, astromine-foundationscomputercraft, slotlink, spatialharvesters |+| :::| blockus:small_red_sandstone_bricks| blockus | 
 +| :::| blockus:rough_red_sandstone| blockus | 
 +| :::| blockus:gold_decorated_red_sandstone| blockus | 
 +| :::| blockus:red_sandstone_pillar| blockus 
 +| c:redstone_blocks| minecraft:redstone_block| spatialharvesters, modern_industrialization, extragenerators, astromine-foundations, mtr, astromine-discoveries 
 +| c:redstone_dusts| minecraft:redstone| slotlink, spatialharvesters, computercraft, appliedenergistics2, astromine-foundations, ae2, mtr, astromine-discoveriesrandomtech |
 | c:redstone_gravels| gravel-ores:redstone_gravel| gravel-ores | | c:redstone_gravels| gravel-ores:redstone_gravel| gravel-ores |
 | c:redstone_ingots| randomtech:redstone_ingot| randomtech | | c:redstone_ingots| randomtech:redstone_ingot| randomtech |
-| c:redstone_ores| minecraft:redstone_ore| randomtech, astromine-discoveries, astromine-foundationsmodern_industrialization, techreborn |+| c:redstone_ores| minecraft:redstone_ore| techreborn, modern_industrialization, astromine-foundations, astromine-discoveriesrandomtech |
 | :::| #c:asteroid_redstone_ores| astromine-discoveries | | :::| #c:asteroid_redstone_ores| astromine-discoveries |
 | :::| bno:netherredstone_ore| bno | | :::| bno:netherredstone_ore| bno |
 | :::| gravel-ores:redstone_gravel| gravel-ores | | :::| gravel-ores:redstone_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_redstone_oreunearthed +| :::| #minecraft:redstone_oresmodern_industrialization 
-| :::| unearthed:gabbro_redstone_oreunearthed | +| :::| minecraft:deepslate_redstone_oretechreborn |
-| :::| unearthed:pumice_redstone_ore| unearthed | +
-| :::| unearthed:kimberlite_redstone_ore| unearthed | +
-| :::| unearthed:rhyolite_redstone_ore| unearthed | +
-| :::| unearthed:slate_redstone_ore| unearthed | +
-| :::| unearthed:marble_redstone_ore| unearthed | +
-| :::| unearthed:quartzite_redstone_ore| unearthed | +
-| :::| unearthed:phyllite_redstone_ore| unearthed | +
-| :::| unearthed:schist_redstone_ore| unearthed | +
-| :::| unearthed:limestone_redstone_ore| unearthed | +
-| :::| unearthed:lignite_redstone_ore| unearthed | +
-| :::| unearthed:siltstone_redstone_ore| unearthed | +
-| :::| unearthed:mudstone_redstone_ore| unearthed | +
-| :::| unearthed:conglomerate_redstone_ore| unearthed |+
 | c:redstone_plates| techreborn:redstone_plate| techreborn | | c:redstone_plates| techreborn:redstone_plate| techreborn |
 | c:redstone_small_dusts| techreborn:redstone_small_dust| techreborn | | c:redstone_small_dusts| techreborn:redstone_small_dust| techreborn |
 | c:redstone_tiny_dusts| astromine:redstone_tiny_dust| astromine-discoveries, astromine-foundations | | c:redstone_tiny_dusts| astromine:redstone_tiny_dust| astromine-discoveries, astromine-foundations |
 | :::| modern_industrialization:redstone_tiny_dust| modern_industrialization | | :::| modern_industrialization:redstone_tiny_dust| modern_industrialization |
 +| c:refined_blackstones| #c:blackstone_bricks| waystones |
 +| :::| #c:polished_blackstones| waystones |
 | c:refined_iron_blocks| techreborn:refined_iron_storage_block| techreborn | | c:refined_iron_blocks| techreborn:refined_iron_storage_block| techreborn |
 | c:refined_iron_ingots| techreborn:refined_iron_ingot| techreborn | | c:refined_iron_ingots| techreborn:refined_iron_ingot| techreborn |
 | c:refined_iron_nuggets| techreborn:refined_iron_nugget| techreborn | | c:refined_iron_nuggets| techreborn:refined_iron_nugget| techreborn |
 | c:refined_iron_plates| techreborn:refined_iron_plate| techreborn | | c:refined_iron_plates| techreborn:refined_iron_plate| techreborn |
 +| c:rice| valley:rice_item| valley |
 +| c:roasted_nuts| croptopia:roasted_nuts| croptopia |
 | c:rose_gold_apples| astromine:rose_gold_apple| astromine-discoveries, astromine-foundations | | c:rose_gold_apples| astromine:rose_gold_apple| astromine-discoveries, astromine-foundations |
 | c:rose_gold_blocks| astromine:rose_gold_block| astromine-discoveries, astromine-foundations | | c:rose_gold_blocks| astromine:rose_gold_block| astromine-discoveries, astromine-foundations |
Line 1447: Line 2123:
 | c:rose_gold_tiny_dusts| astromine:rose_gold_tiny_dust| astromine-discoveries, astromine-foundations | | c:rose_gold_tiny_dusts| astromine:rose_gold_tiny_dust| astromine-discoveries, astromine-foundations |
 | c:rubies| c:ruby| cotton-resources | | c:rubies| c:ruby| cotton-resources |
-| :::| earthtojavamobs:ruby| earthtojavamobs | 
 | :::| emerald_tools:ruby| emerald_tools | | :::| emerald_tools:ruby| emerald_tools |
 | :::| more_gems:ruby| more_gems | | :::| more_gems:ruby| more_gems |
 | :::| techreborn:ruby_gem| techreborn | | :::| techreborn:ruby_gem| techreborn |
 | c:ruby_blocks| c:ruby_block| cotton-resources | | c:ruby_blocks| c:ruby_block| cotton-resources |
-| :::| earthtojavamobs:ruby_block| earthtojavamobs | 
 | :::| techreborn:ruby_storage_block| techreborn | | :::| techreborn:ruby_storage_block| techreborn |
 | c:ruby_dusts| c:ruby_dust| cotton-resources | | c:ruby_dusts| c:ruby_dust| cotton-resources |
Line 1461: Line 2135:
 | :::| c:ruby_nether_ore| cotton-resources | | :::| c:ruby_nether_ore| cotton-resources |
 | :::| c:ruby_end_ore| cotton-resources | | :::| c:ruby_end_ore| cotton-resources |
-| :::| earthtojavamobs:ruby_ore| earthtojavamobs | 
 | :::| techreborn:ruby_ore| techreborn | | :::| techreborn:ruby_ore| techreborn |
 +| :::| techreborn:deepslate_ruby_ore| techreborn |
 | c:ruby_plates| c:ruby_plate| cotton-resources | | c:ruby_plates| c:ruby_plate| cotton-resources |
 | :::| techreborn:ruby_plate| techreborn | | :::| techreborn:ruby_plate| techreborn |
 | c:ruby_small_dusts| techreborn:ruby_small_dust| techreborn | | c:ruby_small_dusts| techreborn:ruby_small_dust| techreborn |
 +| c:ruby_tiny_dusts| modern_industrialization:ruby_tiny_dust| modern_industrialization |
 +| c:rum_raisin_ice_creams| croptopia:rum_raisin_ice_cream| croptopia |
 +| c:rums| croptopia:rum| croptopia |
 | c:runite_blocks| mythicmetals:runite_block| mythicmetals | | c:runite_blocks| mythicmetals:runite_block| mythicmetals |
 | c:runite_ingots| mythicmetals:runite_ingot| mythicmetals | | c:runite_ingots| mythicmetals:runite_ingot| mythicmetals |
 | c:runite_nuggets| mythicmetals:runite_nugget| mythicmetals | | c:runite_nuggets| mythicmetals:runite_nugget| mythicmetals |
 | c:runite_ores| mythicmetals:runite_ore| mythicmetals | | c:runite_ores| mythicmetals:runite_ore| mythicmetals |
 +| c:saguaros| croptopia:saguaro| croptopia |
 +| c:salsas| croptopia:salsa| croptopia |
 | c:salt| bonappetit:salt| bonappetit | | c:salt| bonappetit:salt| bonappetit |
 | :::| epicurean:salt| epicurean | | :::| epicurean:salt| epicurean |
 +| :::| valley:salt| valley |
 +| c:salt_blocks| bewitchment:salt_block| bewitchment |
 +| :::| modern_industrialization:salt_block| modern_industrialization |
 | c:salt_dusts| modern_industrialization:salt_dust| modern_industrialization | | c:salt_dusts| modern_industrialization:salt_dust| modern_industrialization |
 +| :::| bewitchment:salt| bewitchment |
 | c:salt_ores| modern_industrialization:salt_ore| modern_industrialization | | c:salt_ores| modern_industrialization:salt_ore| modern_industrialization |
 +| :::| bewitchment:salt_ore| bewitchment |
 +| :::| bewitchment:deepslate_salt_ore| bewitchment |
 +| :::| croptopia:salt_ore| croptopia |
 +| :::| modern_industrialization:deepslate_salt_ore| modern_industrialization |
 | c:salt_tiny_dusts| modern_industrialization:salt_tiny_dust| modern_industrialization | | c:salt_tiny_dusts| modern_industrialization:salt_tiny_dust| modern_industrialization |
 | c:saltpeter_dusts| techreborn:saltpeter_dust| techreborn | | c:saltpeter_dusts| techreborn:saltpeter_dust| techreborn |
 | c:saltpeter_small_dusts| techreborn:saltpeter_small_dust| techreborn | | c:saltpeter_small_dusts| techreborn:saltpeter_small_dust| techreborn |
-| c:sand| minecraft:sand| spatialharvesters |+| c:salts| croptopia:salt| croptopia | 
 +| c:sand| byg:white_sand| byg | 
 +| :::| byg:black_sand| byg | 
 +| :::| byg:blue_sand| byg | 
 +| :::| byg:pink_sand| byg | 
 +| :::| byg:purple_sand| byg | 
 +| :::| minecraft:sand| spatialharvesters |
 | c:sand_blocks| minecraft:sand| appliedenergistics2 | | c:sand_blocks| minecraft:sand| appliedenergistics2 |
 | :::| minecraft:red_sand| appliedenergistics2 | | :::| minecraft:red_sand| appliedenergistics2 |
Line 1498: Line 2191:
 | c:sandstones| #c:yellow_sandstones| astromine-technologies | | c:sandstones| #c:yellow_sandstones| astromine-technologies |
 | :::| #c:red_sandstones| astromine-technologies | | :::| #c:red_sandstones| astromine-technologies |
 +| :::| minecraft:sandstone| waystones |
 +| :::| minecraft:smooth_sandstone| waystones |
 +| :::| minecraft:chiseled_sandstone| waystones |
 +| :::| minecraft:cut_sandstone| waystones |
 | c:sandwich/blacklist| #c:sandwich/bread| ce_foodstuffs | | c:sandwich/blacklist| #c:sandwich/bread| ce_foodstuffs |
 | :::| ce_foodstuffs:sandwich| ce_foodstuffs | | :::| ce_foodstuffs:sandwich| ce_foodstuffs |
Line 1530: Line 2227:
 | :::| byg:orchard_sapling| byg | | :::| byg:orchard_sapling| byg |
 | :::| byg:palo_verde_sapling| byg | | :::| byg:palo_verde_sapling| byg |
 +| :::| byg:joshua_sapling| byg |
 +| :::| byg:yellow_spruce_sapling| byg |
 | :::| byg:pine_sapling| byg | | :::| byg:pine_sapling| byg |
 | :::| byg:pink_cherry_sapling| byg | | :::| byg:pink_cherry_sapling| byg |
Line 1552: Line 2251:
 | :::| byg:ether_sapling| byg | | :::| byg:ether_sapling| byg |
 | :::| byg:nightshade_sapling| byg | | :::| byg:nightshade_sapling| byg |
 +| :::| betterend:dragon_tree_sapling| betterend |
 +| :::| betterend:tenanea_sapling| betterend |
 +| :::| betterend:helix_tree_sapling| betterend |
 +| :::| betterend:lucernia_sapling| betterend |
 +| :::| betterend:umbrella_tree_sapling| betterend |
 +| :::| betterend:mossy_glowshroom_sapling| betterend |
 +| :::| betterend:pythadendron_sapling| betterend |
 +| :::| betterend:lacugrove_sapling| betterend |
 +| :::| betternether:rubeus_sapling| betternether |
 +| :::| betternether:stalagnate_seed| betternether |
 +| :::| betternether:mushroom_fir_sapling| betternether |
 +| :::| betternether:anchor_tree_sapling| betternether |
 +| :::| betternether:nether_sakura_sapling| betternether |
 +| :::| betternether:willow_sapling| betternether |
 +| :::| #c:saplings/almond| croptopia |
 +| :::| #c:saplings/apple| croptopia |
 +| :::| #c:saplings/apricot| croptopia |
 +| :::| #c:saplings/avocado| croptopia |
 +| :::| #c:saplings/banana| croptopia |
 +| :::| #c:saplings/cashew| croptopia |
 +| :::| #c:saplings/cherry| croptopia |
 +| :::| #c:saplings/coconut| croptopia |
 +| :::| #c:saplings/date| croptopia |
 +| :::| #c:saplings/dragonfruit| croptopia |
 +| :::| #c:saplings/fig| croptopia |
 +| :::| #c:saplings/grapefruit| croptopia |
 +| :::| #c:saplings/kumquat| croptopia |
 +| :::| #c:saplings/lemon| croptopia |
 +| :::| #c:saplings/lime| croptopia |
 +| :::| #c:saplings/mango| croptopia |
 +| :::| #c:saplings/nectarine| croptopia |
 +| :::| #c:saplings/nutmeg| croptopia |
 +| :::| #c:saplings/orange| croptopia |
 +| :::| #c:saplings/peach| croptopia |
 +| :::| #c:saplings/pear| croptopia |
 +| :::| #c:saplings/pecan| croptopia |
 +| :::| #c:saplings/persimmon| croptopia |
 +| :::| #c:saplings/plum| croptopia |
 +| :::| #c:saplings/starfruit| croptopia |
 +| :::| #c:saplings/walnut| croptopia |
 +| c:saplings/almond| croptopia:almond_sapling| croptopia |
 +| c:saplings/apple| croptopia:apple_sapling| croptopia |
 +| c:saplings/apricot| croptopia:apricot_sapling| croptopia |
 +| c:saplings/avocado| croptopia:avocado_sapling| croptopia |
 +| c:saplings/banana| croptopia:banana_sapling| croptopia |
 +| c:saplings/cashew| croptopia:cashew_sapling| croptopia |
 +| c:saplings/cherry| croptopia:cherry_sapling| croptopia |
 +| c:saplings/coconut| croptopia:coconut_sapling| croptopia |
 +| c:saplings/date| croptopia:date_sapling| croptopia |
 +| c:saplings/dragonfruit| croptopia:dragonfruit_sapling| croptopia |
 +| c:saplings/fig| croptopia:fig_sapling| croptopia |
 +| c:saplings/grapefruit| croptopia:grapefruit_sapling| croptopia |
 +| c:saplings/kumquat| croptopia:kumquat_sapling| croptopia |
 +| c:saplings/lemon| croptopia:lemon_sapling| croptopia |
 +| c:saplings/lime| croptopia:lime_sapling| croptopia |
 +| c:saplings/mango| croptopia:mango_sapling| croptopia |
 +| c:saplings/nectarine| croptopia:nectarine_sapling| croptopia |
 +| c:saplings/nutmeg| croptopia:nutmeg_sapling| croptopia |
 +| c:saplings/orange| croptopia:orange_sapling| croptopia |
 +| c:saplings/peach| croptopia:peach_sapling| croptopia |
 +| c:saplings/pear| croptopia:pear_sapling| croptopia |
 +| c:saplings/pecan| croptopia:pecan_sapling| croptopia |
 +| c:saplings/persimmon| croptopia:persimmon_sapling| croptopia |
 +| c:saplings/plum| croptopia:plum_sapling| croptopia |
 +| c:saplings/starfruit| croptopia:starfruit_sapling| croptopia |
 +| c:saplings/walnut| croptopia:walnut_sapling| croptopia |
 | c:sapphire| more_gems:sapphire| more_gems | | c:sapphire| more_gems:sapphire| more_gems |
 | c:sapphire_blocks| c:sapphire_block| cotton-resources | | c:sapphire_blocks| c:sapphire_block| cotton-resources |
Line 1562: Line 2327:
 | :::| c:sapphire_end_ore| cotton-resources | | :::| c:sapphire_end_ore| cotton-resources |
 | :::| techreborn:sapphire_ore| techreborn | | :::| techreborn:sapphire_ore| techreborn |
 +| :::| techreborn:deepslate_sapphire_ore| techreborn |
 | c:sapphire_plates| c:sapphire_plate| cotton-resources | | c:sapphire_plates| c:sapphire_plate| cotton-resources |
 | :::| techreborn:sapphire_plate| techreborn | | :::| techreborn:sapphire_plate| techreborn |
Line 1567: Line 2333:
 | c:sapphires| c:sapphire| cotton-resources | | c:sapphires| c:sapphire| cotton-resources |
 | :::| techreborn:sapphire_gem| techreborn | | :::| techreborn:sapphire_gem| techreborn |
 +| c:saucy_chips| croptopia:saucy_chips| croptopia |
 | c:saw_dusts| techreborn:saw_dust| techreborn | | c:saw_dusts| techreborn:saw_dust| techreborn |
 | c:saw_small_dusts| techreborn:saw_small_dust| techreborn | | c:saw_small_dusts| techreborn:saw_small_dust| techreborn |
-| c:seeds| minecraft:wheat_seeds| exnihilofabrico, spatialharvesters | +| c:scones| croptopia:scones| croptopia | 
-| :::| minecraft:beetroot_seeds| exnihilofabrico, spatialharvesters |+| c:scrambled_eggs| croptopia:scrambled_eggs| croptopia | 
 +| c:screwdrivers| indrev:screwdriver| indrev | 
 +| :::| modern_industrialization:screwdriver| modern_industrialization | 
 +| c:seeds| minecraft:wheat_seeds| croptosis, exnihilofabrico, spatialharvesters | 
 +| :::| minecraft:beetroot_seeds| croptosis, exnihilofabrico, spatialharvesters |
 | :::| exnihilofabrico:seed_sea_pickle| exnihilofabrico | | :::| exnihilofabrico:seed_sea_pickle| exnihilofabrico |
 | :::| exnihilofabrico:seed_grass| exnihilofabrico | | :::| exnihilofabrico:seed_grass| exnihilofabrico |
Line 1586: Line 2357:
 | :::| exnihilofabrico:seed_oak| exnihilofabrico | | :::| exnihilofabrico:seed_oak| exnihilofabrico |
 | :::| exnihilofabrico:seed_kelp| exnihilofabrico | | :::| exnihilofabrico:seed_kelp| exnihilofabrico |
 +| :::| #c:seeds/artichoke| croptopia |
 +| :::| #c:seeds/asparagus| croptopia |
 +| :::| #c:seeds/barley| croptopia |
 +| :::| #c:seeds/basil| croptopia |
 +| :::| #c:seeds/bellpepper| croptopia |
 +| :::| #c:seeds/blackbean| croptopia |
 +| :::| #c:seeds/blackberry| croptopia |
 +| :::| #c:seeds/blueberry| croptopia |
 +| :::| #c:seeds/broccoli| croptopia |
 +| :::| #c:seeds/cabbage| croptopia |
 +| :::| #c:seeds/cantaloupe| croptopia |
 +| :::| #c:seeds/cauliflower| croptopia |
 +| :::| #c:seeds/celery| croptopia |
 +| :::| #c:seeds/chilepepper| croptopia |
 +| :::| #c:seeds/coffee| croptopia |
 +| :::| #c:seeds/corn| croptopia |
 +| :::| #c:seeds/cranberry| croptopia |
 +| :::| #c:seeds/cucumber| croptopia |
 +| :::| #c:seeds/currant| croptopia |
 +| :::| #c:seeds/eggplant| croptopia |
 +| :::| #c:seeds/elderberry| croptopia |
 +| :::| #c:seeds/garlic| croptopia |
 +| :::| #c:seeds/ginger| croptopia |
 +| :::| #c:seeds/grape| croptopia |
 +| :::| #c:seeds/greenbean| croptopia |
 +| :::| #c:seeds/greenonion| croptopia |
 +| :::| #c:seeds/honeydew| croptopia |
 +| :::| #c:seeds/hops| croptopia |
 +| :::| #c:seeds/kale| croptopia |
 +| :::| #c:seeds/kiwi| croptopia |
 +| :::| #c:seeds/leek| croptopia |
 +| :::| #c:seeds/lettuce| croptopia |
 +| :::| #c:seeds/mustard| croptopia |
 +| :::| #c:seeds/oat| croptopia |
 +| :::| #c:seeds/olive| croptopia |
 +| :::| #c:seeds/onion| croptopia |
 +| :::| #c:seeds/peanut| croptopia |
 +| :::| #c:seeds/pepper| croptopia |
 +| :::| #c:seeds/pineapple| croptopia |
 +| :::| #c:seeds/radish| croptopia |
 +| :::| #c:seeds/raspberry| croptopia |
 +| :::| #c:seeds/rhubarb| croptopia |
 +| :::| #c:seeds/rice| croptopia |
 +| :::| #c:seeds/rutabaga| croptopia |
 +| :::| #c:seeds/saguaro| croptopia |
 +| :::| #c:seeds/soybean| croptopia |
 +| :::| #c:seeds/spinach| croptopia |
 +| :::| #c:seeds/squash| croptopia |
 +| :::| #c:seeds/strawberry| croptopia |
 +| :::| #c:seeds/sweetpotato| croptopia |
 +| :::| #c:seeds/tea| croptopia |
 +| :::| #c:seeds/tomatillo| croptopia |
 +| :::| #c:seeds/tomato| croptopia |
 +| :::| #c:seeds/turmeric| croptopia |
 +| :::| #c:seeds/turnip| croptopia |
 +| :::| #c:seeds/yam| croptopia |
 +| :::| #c:seeds/zucchini| croptopia |
 +| :::| minecraft:pumpkin_seeds| croptosis |
 +| :::| minecraft:melon_seeds| croptosis |
 +| :::| minecraft:carrot| croptosis |
 +| :::| minecraft:potato| croptosis |
 +| c:seeds/artichoke| croptopia:artichoke_seed| croptopia |
 +| c:seeds/asparagus| croptopia:asparagus_seed| croptopia |
 +| c:seeds/barley| croptopia:barley_seed| croptopia |
 +| c:seeds/basil| croptopia:basil_seed| croptopia |
 +| c:seeds/bellpepper| croptopia:bellpepper_seed| croptopia |
 +| c:seeds/blackbean| croptopia:blackbean_seed| croptopia |
 +| c:seeds/blackberry| croptopia:blackberry_seed| croptopia |
 +| c:seeds/blueberry| croptopia:blueberry_seed| croptopia |
 +| c:seeds/broccoli| croptopia:broccoli_seed| croptopia |
 +| c:seeds/cabbage| croptopia:cabbage_seed| croptopia |
 +| c:seeds/cantaloupe| croptopia:cantaloupe_seed| croptopia |
 +| c:seeds/cauliflower| croptopia:cauliflower_seed| croptopia |
 +| c:seeds/celery| croptopia:celery_seed| croptopia |
 +| c:seeds/chilepepper| croptopia:chile_pepper_seed| croptopia |
 +| c:seeds/coffee| croptopia:coffee_seed| croptopia |
 +| c:seeds/corn| croptopia:corn_seed| croptopia |
 +| c:seeds/cranberry| croptopia:cranberry_seed| croptopia |
 +| c:seeds/cucumber| croptopia:cucumber_seed| croptopia |
 +| c:seeds/currant| croptopia:currant_seed| croptopia |
 +| c:seeds/eggplant| croptopia:eggplant_seed| croptopia |
 +| c:seeds/elderberry| croptopia:elderberry_seed| croptopia |
 +| c:seeds/garlic| croptopia:garlic_seed| croptopia |
 +| c:seeds/ginger| croptopia:ginger_seed| croptopia |
 +| c:seeds/grape| croptopia:grape_seed| croptopia |
 +| c:seeds/greenbean| croptopia:greenbean_seed| croptopia |
 +| c:seeds/greenonion| croptopia:greenonion_seed| croptopia |
 +| c:seeds/honeydew| croptopia:honeydew_seed| croptopia |
 +| c:seeds/hops| croptopia:hops_seed| croptopia |
 +| c:seeds/kale| croptopia:kale_seed| croptopia |
 +| c:seeds/kiwi| croptopia:kiwi_seed| croptopia |
 +| c:seeds/leek| croptopia:leek_seed| croptopia |
 +| c:seeds/lettuce| croptopia:lettuce_seed| croptopia |
 +| c:seeds/mustard| croptopia:mustard_seed| croptopia |
 +| c:seeds/oat| croptopia:oat_seed| croptopia |
 +| c:seeds/olive| croptopia:olive_seed| croptopia |
 +| c:seeds/onion| croptopia:onion_seed| croptopia |
 +| c:seeds/peanut| croptopia:peanut_seed| croptopia |
 +| c:seeds/pepper| croptopia:pepper_seed| croptopia |
 +| c:seeds/pineapple| croptopia:pineapple_seed| croptopia |
 +| c:seeds/radish| croptopia:radish_seed| croptopia |
 +| c:seeds/raspberry| croptopia:raspberry_seed| croptopia |
 +| c:seeds/rhubarb| croptopia:rhubarb_seed| croptopia |
 +| c:seeds/rice| croptopia:rice_seed| croptopia |
 +| c:seeds/rutabaga| croptopia:rutabaga_seed| croptopia |
 +| c:seeds/saguaro| croptopia:saguaro_seed| croptopia |
 +| c:seeds/soybean| croptopia:soybean_seed| croptopia |
 +| c:seeds/spinach| croptopia:spinach_seed| croptopia |
 +| c:seeds/squash| croptopia:squash_seed| croptopia |
 +| c:seeds/strawberry| croptopia:strawberry_seed| croptopia |
 +| c:seeds/sweetpotato| croptopia:sweetpotato_seed| croptopia |
 +| c:seeds/tea| croptopia:tea_seed| croptopia |
 +| c:seeds/tomatillo| croptopia:tomatillo_seed| croptopia |
 +| c:seeds/tomato| croptopia:tomato_seed| croptopia |
 +| c:seeds/turmeric| croptopia:turmeric_seed| croptopia |
 +| c:seeds/turnip| croptopia:turnip_seed| croptopia |
 +| c:seeds/yam| croptopia:yam_seed| croptopia |
 +| c:seeds/zucchini| croptopia:zucchini_seed| croptopia |
 +| c:shears| betternether:cincinnasite_shears| betternether |
 | c:sheldonite_ores| techreborn:sheldonite_ore| techreborn | | c:sheldonite_ores| techreborn:sheldonite_ore| techreborn |
 +| :::| techreborn:deepslate_sheldonite_ore| techreborn |
 +| c:shepherds_pie| croptopia:shepherds_pie| croptopia |
 +| c:shulker_box| minecraft:shulker_box| modern_industrialization |
 +| :::| minecraft:white_shulker_box| modern_industrialization |
 +| :::| minecraft:orange_shulker_box| modern_industrialization |
 +| :::| minecraft:magenta_shulker_box| modern_industrialization |
 +| :::| minecraft:light_blue_shulker_box| modern_industrialization |
 +| :::| minecraft:yellow_shulker_box| modern_industrialization |
 +| :::| minecraft:lime_shulker_box| modern_industrialization |
 +| :::| minecraft:pink_shulker_box| modern_industrialization |
 +| :::| minecraft:gray_shulker_box| modern_industrialization |
 +| :::| minecraft:light_gray_shulker_box| modern_industrialization |
 +| :::| minecraft:cyan_shulker_box| modern_industrialization |
 +| :::| minecraft:purple_shulker_box| modern_industrialization |
 +| :::| minecraft:blue_shulker_box| modern_industrialization |
 +| :::| minecraft:brown_shulker_box| modern_industrialization |
 +| :::| minecraft:green_shulker_box| modern_industrialization |
 +| :::| minecraft:red_shulker_box| modern_industrialization |
 +| :::| minecraft:black_shulker_box| modern_industrialization |
 +| c:sickles| valley:wood_sickle| valley |
 +| :::| valley:stone_sickle| valley |
 +| :::| valley:iron_sickle| valley |
 +| :::| valley:golden_sickle| valley |
 +| :::| valley:rg_sickle| valley |
 +| :::| valley:diamond_sickle| valley |
 +| :::| valley:netherite_sickle| valley |
 +| c:silicon| ae2:silicon| ae2 |
 +| c:silicon_blocks| modern_industrialization:silicon_block| modern_industrialization |
 | c:silicon_dusts| modern_industrialization:silicon_dust| modern_industrialization | | c:silicon_dusts| modern_industrialization:silicon_dust| modern_industrialization |
 | c:silicon_ingots| modern_industrialization:silicon_ingot| modern_industrialization | | c:silicon_ingots| modern_industrialization:silicon_ingot| modern_industrialization |
Line 1597: Line 2515:
 | :::| bno:silver_block| bno | | :::| bno:silver_block| bno |
 | :::| c:silver_block| cotton-resources | | :::| c:silver_block| cotton-resources |
 +| :::| indrev:silver_block| indrev |
 | :::| mythicmetals:silver_block| mythicmetals | | :::| mythicmetals:silver_block| mythicmetals |
 | :::| techreborn:silver_storage_block| techreborn | | :::| techreborn:silver_storage_block| techreborn |
 | :::| texp:silver_block| texp | | :::| texp:silver_block| texp |
 +| :::| bewitchment:silver_block| bewitchment |
 +| :::| modern_industrialization:silver_block| modern_industrialization |
 | c:silver_dust| refinedmachinery:silver_dust| refinedmachinery | | c:silver_dust| refinedmachinery:silver_dust| refinedmachinery |
 | c:silver_dusts| astromine:silver_dust| astromine-discoveries, astromine-foundations | | c:silver_dusts| astromine:silver_dust| astromine-discoveries, astromine-foundations |
 | :::| c:silver_dust| cotton-resources | | :::| c:silver_dust| cotton-resources |
 +| :::| indrev:silver_dust| indrev |
 | :::| modern_industrialization:silver_dust| modern_industrialization | | :::| modern_industrialization:silver_dust| modern_industrialization |
 | :::| techreborn:silver_dust| techreborn | | :::| techreborn:silver_dust| techreborn |
Line 1612: Line 2534:
 | :::| bno:silver_ingot| bno | | :::| bno:silver_ingot| bno |
 | :::| c:silver_ingot| cotton-resources | | :::| c:silver_ingot| cotton-resources |
 +| :::| indrev:silver_ingot| indrev |
 | :::| modern_industrialization:silver_ingot| modern_industrialization | | :::| modern_industrialization:silver_ingot| modern_industrialization |
 | :::| mw:silver_ingot| mw | | :::| mw:silver_ingot| mw |
Line 1617: Line 2540:
 | :::| techreborn:silver_ingot| techreborn | | :::| techreborn:silver_ingot| techreborn |
 | :::| texp:silver_ingot| texp | | :::| texp:silver_ingot| texp |
 +| :::| bewitchment:silver_ingot| bewitchment |
 | c:silver_nuggets| astromine:silver_nugget| astromine-discoveries, astromine-foundations | | c:silver_nuggets| astromine:silver_nugget| astromine-discoveries, astromine-foundations |
 | :::| bno:silver_nugget| bno | | :::| bno:silver_nugget| bno |
 | :::| c:silver_nugget| cotton-resources | | :::| c:silver_nugget| cotton-resources |
 +| :::| indrev:silver_nugget| indrev |
 | :::| modern_industrialization:silver_nugget| modern_industrialization | | :::| modern_industrialization:silver_nugget| modern_industrialization |
 | :::| mythicmetals:silver_nugget| mythicmetals | | :::| mythicmetals:silver_nugget| mythicmetals |
 | :::| techreborn:silver_nugget| techreborn | | :::| techreborn:silver_nugget| techreborn |
 | :::| texp:silver_nugget| texp | | :::| texp:silver_nugget| texp |
 +| :::| bewitchment:silver_nugget| bewitchment |
 | c:silver_ore| refinedmachinery:silver_ore| refinedmachinery | | c:silver_ore| refinedmachinery:silver_ore| refinedmachinery |
 | c:silver_ores| astromine:silver_ore| astromine-discoveries, astromine-foundations | | c:silver_ores| astromine:silver_ore| astromine-discoveries, astromine-foundations |
Line 1631: Line 2557:
 | :::| c:silver_nether_ore| cotton-resources | | :::| c:silver_nether_ore| cotton-resources |
 | :::| c:silver_end_ore| cotton-resources | | :::| c:silver_end_ore| cotton-resources |
 +| :::| indrev:silver_ore| indrev |
 | :::| modern_industrialization:silver_ore| modern_industrialization | | :::| modern_industrialization:silver_ore| modern_industrialization |
 | :::| mythicmetals:silver_ore| mythicmetals | | :::| mythicmetals:silver_ore| mythicmetals |
 | :::| techreborn:silver_ore| techreborn | | :::| techreborn:silver_ore| techreborn |
 | :::| texp:silver_ore| texp | | :::| texp:silver_ore| texp |
 +| :::| bewitchment:silver_ore| bewitchment |
 +| :::| bewitchment:deepslate_silver_ore| bewitchment |
 +| :::| indrev:deepslate_silver_ore| indrev |
 +| :::| techreborn:deepslate_silver_ore| techreborn |
 | c:silver_plates| astromine:silver_plate| astromine-discoveries, astromine-foundations | | c:silver_plates| astromine:silver_plate| astromine-discoveries, astromine-foundations |
 | :::| c:silver_plate| cotton-resources | | :::| c:silver_plate| cotton-resources |
 +| :::| indrev:silver_plate| indrev |
 | :::| modern_industrialization:silver_plate| modern_industrialization | | :::| modern_industrialization:silver_plate| modern_industrialization |
 | :::| techreborn:silver_plate| techreborn | | :::| techreborn:silver_plate| techreborn |
Line 1643: Line 2575:
 | :::| modern_industrialization:silver_tiny_dust| modern_industrialization | | :::| modern_industrialization:silver_tiny_dust| modern_industrialization |
 | c:silver_wires| astromine:silver_wire| astromine-discoveries, astromine-foundations | | c:silver_wires| astromine:silver_wire| astromine-discoveries, astromine-foundations |
-| c:slime_blocks| minecraft:slime_block| astromine-discoveries, astromine-foundations |+| c:skulls| zombie_head| bewitchment | 
 +| :::| skeleton_skull| bewitchment | 
 +| :::| wither_skeleton_skull| bewitchment | 
 +| :::| creeper_head| bewitchment | 
 +| :::| dragon_head| bewitchment | 
 +| :::| player_head| bewitchment | 
 +| c:slime_balls| minecraft:slime_ball| terrarianslimes, extragenerators | 
 +| :::| terrarianslimes:black_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:blue_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:corrupt_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:crimson_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:ice_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:illuminant_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:jungle_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:pinky_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:purple_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:rainbow_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:red_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:sand_slime_ball| terrarianslimes | 
 +| :::| terrarianslimes:yellow_slime_ball| terrarianslimes | 
 +| c:slime_blocks| minecraft:slime_block| astromine-discoveries, terrarianslimes, extragenerators, astromine-foundations 
 +| :::| terrarianslimes:black_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:blue_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:corrupt_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:crimson_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:ice_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:illuminant_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:jungle_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:pinky_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:purple_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:rainbow_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:red_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:sand_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:yellow_slime_block| terrarianslimes |
 | c:slowsilver_blocks| mythicmetals:slowsilver_block| mythicmetals | | c:slowsilver_blocks| mythicmetals:slowsilver_block| mythicmetals |
 | c:slowsilver_ingots| mythicmetals:slowsilver_ingot| mythicmetals | | c:slowsilver_ingots| mythicmetals:slowsilver_ingot| mythicmetals |
 | c:slowsilver_nuggets| mythicmetals:slowsilver_nugget| mythicmetals | | c:slowsilver_nuggets| mythicmetals:slowsilver_nugget| mythicmetals |
 +| c:snicker_doodles| croptopia:snicker_doodle| croptopia |
 | c:sodalite_dusts| techreborn:sodalite_dust| techreborn | | c:sodalite_dusts| techreborn:sodalite_dust| techreborn |
 | c:sodalite_ores| techreborn:sodalite_ore| techreborn | | c:sodalite_ores| techreborn:sodalite_ore| techreborn |
 +| :::| techreborn:deepslate_sodalite_ore| techreborn |
 | c:sodalite_small_dusts| techreborn:sodalite_small_dust| techreborn | | c:sodalite_small_dusts| techreborn:sodalite_small_dust| techreborn |
 +| c:sodium_blocks| modern_industrialization:sodium_block| modern_industrialization |
 | c:sodium_dusts| modern_industrialization:sodium_dust| modern_industrialization | | c:sodium_dusts| modern_industrialization:sodium_dust| modern_industrialization |
 | c:sodium_ingots| modern_industrialization:sodium_ingot| modern_industrialization | | c:sodium_ingots| modern_industrialization:sodium_ingot| modern_industrialization |
 | c:sodium_nuggets| modern_industrialization:sodium_nugget| modern_industrialization | | c:sodium_nuggets| modern_industrialization:sodium_nugget| modern_industrialization |
 | c:sodium_tiny_dusts| modern_industrialization:sodium_tiny_dust| modern_industrialization | | c:sodium_tiny_dusts| modern_industrialization:sodium_tiny_dust| modern_industrialization |
-| c:soul_ground| byg:nylium_soul_sandbyg +| c:soldering_alloy_blocks| modern_industrialization:soldering_alloy_block| modern_industrialization | 
-| :::| byg:nylium_soul_soilbyg |+| c:soldering_alloy_dusts| modern_industrialization:soldering_alloy_dust| modern_industrialization | 
 +| c:soldering_alloy_tiny_dusts| modern_industrialization:soldering_alloy_tiny_dust| modern_industrialization | 
 +| c:soul_ground| minecraft:soul_sandbetternether 
 +| :::| minecraft:soul_soil| betternether | 
 +| c:soy_milks| croptopia:soy_milk| croptopia | 
 +| c:soy_sauces| croptopia:soy_saucecroptopia |
 | c:soybean| veggie_way:soybean| veggie_way | | c:soybean| veggie_way:soybean| veggie_way |
 +| c:spaghetti_squashs| croptopia:spaghetti_squash| croptopia |
 | c:spessartine_dusts| techreborn:spessartine_dust| techreborn | | c:spessartine_dusts| techreborn:spessartine_dust| techreborn |
 | c:spessartine_small_dusts| techreborn:spessartine_small_dust| techreborn | | c:spessartine_small_dusts| techreborn:spessartine_small_dust| techreborn |
Line 1662: Line 2636:
 | c:sphalerite_ores| techreborn:sphalerite_ore| techreborn | | c:sphalerite_ores| techreborn:sphalerite_ore| techreborn |
 | c:sphalerite_small_dusts| techreborn:sphalerite_small_dust| techreborn | | c:sphalerite_small_dusts| techreborn:sphalerite_small_dust| techreborn |
 +| c:spicy_berries| valley:spicy_berries| valley |
 +| c:spicy_crops| valley:spicy_berries| valley |
 +| :::| valley:fire_pepper| valley |
 +| c:stained_glass| minecraft:black_stained_glass| mtr |
 +| :::| minecraft:blue_stained_glass| mtr |
 +| :::| minecraft:brown_stained_glass| mtr |
 +| :::| minecraft:cyan_stained_glass| mtr |
 +| :::| minecraft:gray_stained_glass| mtr |
 +| :::| minecraft:green_stained_glass| mtr |
 +| :::| minecraft:light_blue_stained_glass| mtr |
 +| :::| minecraft:light_gray_stained_glass| mtr |
 +| :::| minecraft:lime_stained_glass| mtr |
 +| :::| minecraft:magenta_stained_glass| mtr |
 +| :::| minecraft:orange_stained_glass| mtr |
 +| :::| minecraft:pink_stained_glass| mtr |
 +| :::| minecraft:purple_stained_glass| mtr |
 +| :::| minecraft:red_stained_glass| mtr |
 +| :::| minecraft:white_stained_glass| mtr |
 +| :::| minecraft:yellow_stained_glass| mtr |
 +| c:stainless_steel_blocks| modern_industrialization:stainless_steel_block| modern_industrialization |
 | c:stainless_steel_dusts| modern_industrialization:stainless_steel_dust| modern_industrialization | | c:stainless_steel_dusts| modern_industrialization:stainless_steel_dust| modern_industrialization |
 | c:stainless_steel_gears| modern_industrialization:stainless_steel_gear| modern_industrialization | | c:stainless_steel_gears| modern_industrialization:stainless_steel_gear| modern_industrialization |
Line 1672: Line 2666:
 | c:starrite_nuggets| mythicmetals:starrite_nugget| mythicmetals | | c:starrite_nuggets| mythicmetals:starrite_nugget| mythicmetals |
 | c:starrite_ores| mythicmetals:starrite_ore| mythicmetals | | c:starrite_ores| mythicmetals:starrite_ore| mythicmetals |
 +| c:steamed_rices| croptopia:steamed_rice| croptopia |
 | c:steel_blocks| astromine:steel_block| astromine-discoveries, astromine-foundations | | c:steel_blocks| astromine:steel_block| astromine-discoveries, astromine-foundations |
 | :::| c:steel_block| cotton-resources | | :::| c:steel_block| cotton-resources |
Line 1677: Line 2672:
 | :::| mythicmetals:steel_block| mythicmetals | | :::| mythicmetals:steel_block| mythicmetals |
 | :::| techreborn:steel_storage_block| techreborn | | :::| techreborn:steel_storage_block| techreborn |
 +| :::| modern_industrialization:steel_block| modern_industrialization |
 | c:steel_boots| indrev:steel_boots| indrev | | c:steel_boots| indrev:steel_boots| indrev |
 | :::| {'id': 'astromine:steel_boots', 'required': False}| indrev | | :::| {'id': 'astromine:steel_boots', 'required': False}| indrev |
 | :::| mythicmetals:steel_boots| mythicmetals | | :::| mythicmetals:steel_boots| mythicmetals |
 +| :::| {'id': 'astromine:steel_boots', 'required': False}| indrev |
 | c:steel_chestplate| mythicmetals:steel_chestplate| mythicmetals | | c:steel_chestplate| mythicmetals:steel_chestplate| mythicmetals |
 | c:steel_chestplates| indrev:steel_chestplate| indrev | | c:steel_chestplates| indrev:steel_chestplate| indrev |
 +| :::| {'id': 'astromine:steel_chestplate', 'required': False}| indrev |
 | :::| {'id': 'astromine:steel_chestplate', 'required': False}| indrev | | :::| {'id': 'astromine:steel_chestplate', 'required': False}| indrev |
 | c:steel_dusts| astromine:steel_dust| astromine-discoveries, astromine-foundations | | c:steel_dusts| astromine:steel_dust| astromine-discoveries, astromine-foundations |
Line 1695: Line 2693:
 | :::| {'id': 'astromine:steel_helmet', 'required': False}| indrev | | :::| {'id': 'astromine:steel_helmet', 'required': False}| indrev |
 | :::| mythicmetals:steel_helmet| mythicmetals | | :::| mythicmetals:steel_helmet| mythicmetals |
 +| :::| {'id': 'astromine:steel_helmet', 'required': False}| indrev |
 | c:steel_ingot| refinedmachinery:steel_ingot| refinedmachinery | | c:steel_ingot| refinedmachinery:steel_ingot| refinedmachinery |
 | c:steel_ingots| astromine:steel_ingot| astromine-discoveries, astromine-foundations | | c:steel_ingots| astromine:steel_ingot| astromine-discoveries, astromine-foundations |
Line 1707: Line 2706:
 | :::| {'id': 'astromine:steel_leggings', 'required': False}| indrev | | :::| {'id': 'astromine:steel_leggings', 'required': False}| indrev |
 | :::| mythicmetals:steel_leggings| mythicmetals | | :::| mythicmetals:steel_leggings| mythicmetals |
 +| :::| {'id': 'astromine:steel_leggings', 'required': False}| indrev |
 | c:steel_nuggets| astromine:steel_nugget| astromine-discoveries, astromine-foundations | | c:steel_nuggets| astromine:steel_nugget| astromine-discoveries, astromine-foundations |
 | :::| c:steel_nugget| cotton-resources | | :::| c:steel_nugget| cotton-resources |
Line 1737: Line 2737:
 | c:sterling_silver_plates| astromine:sterling_silver_plate| astromine-discoveries, astromine-foundations | | c:sterling_silver_plates| astromine:sterling_silver_plate| astromine-discoveries, astromine-foundations |
 | c:sterling_silver_tiny_dusts| astromine:sterling_silver_tiny_dust| astromine-discoveries, astromine-foundations | | c:sterling_silver_tiny_dusts| astromine:sterling_silver_tiny_dust| astromine-discoveries, astromine-foundations |
 +| c:sticky_toffee_pudding| croptopia:sticky_toffee_pudding| croptopia |
 | c:stone| byg:soapstone| byg | | c:stone| byg:soapstone| byg |
 | :::| byg:scoria_stone| byg | | :::| byg:scoria_stone| byg |
Line 1749: Line 2750:
 | :::| byg:red_rock| byg | | :::| byg:red_rock| byg |
 | :::| byg:ether_stone| byg | | :::| byg:ether_stone| byg |
-| :::| minecraft:stone| spatialharvesters |+| :::| minecraft:stone| ae2, adorn, waystones, spatialharvesters 
 +| :::| #unearthed:sedimentary| unearthed | 
 +| :::| #unearthed:metamorphic| unearthed | 
 +| :::| #unearthed:igneous| unearthed | 
 +| :::| minecraft:andesite| ae2, adorn | 
 +| :::| minecraft:diorite| ae2, adorn | 
 +| :::| minecraft:granite| ae2, adorn | 
 +| :::| minecraft:deepslate| adorn | 
 +| :::| minecraft:tuff| adorn | 
 +| :::| minecraft:infested_stone| ae2 | 
 +| :::| minecraft:polished_andesite| ae2 | 
 +| :::| minecraft:polished_diorite| ae2 | 
 +| :::| minecraft:polished_granite| ae2 |
 | c:stone_gears| c:stone_gear| cotton-resources | | c:stone_gears| c:stone_gear| cotton-resources |
 | c:stone_rods| adorn:stone_rod| adorn | | c:stone_rods| adorn:stone_rod| adorn |
-| c:stones| minecraft:diorite| computercraft, resourceful_tools | +| c:stones| minecraft:diorite| resourceful_tools, computercraft 
-| :::| minecraft:granite| computercraft, resourceful_tools | +| :::| minecraft:granite| resourceful_tools, computercraft 
-| :::| minecraft:cobblestone| computercraft, resourceful_tools | +| :::| minecraft:cobblestone| resourceful_tools, computercraft 
-| :::| minecraft:andesite| computercraft, resourceful_tools |+| :::| minecraft:andesite| resourceful_tools, computercraft |
 | c:storage_blocks| byg:ametrine_block| byg | | c:storage_blocks| byg:ametrine_block| byg |
 | :::| byg:pendorite_block| byg | | :::| byg:pendorite_block| byg |
 | :::| byg:anthracite_block| byg | | :::| byg:anthracite_block| byg |
 +| :::| #c:certus_quartz_blocks| ae2 |
 | c:stormyx_blocks| mythicmetals:stormyx_block| mythicmetals | | c:stormyx_blocks| mythicmetals:stormyx_block| mythicmetals |
 | c:stormyx_ingots| mythicmetals:stormyx_ingot| mythicmetals | | c:stormyx_ingots| mythicmetals:stormyx_ingot| mythicmetals |
 | c:stormyx_nuggets| mythicmetals:stormyx_nugget| mythicmetals | | c:stormyx_nuggets| mythicmetals:stormyx_nugget| mythicmetals |
 | c:stormyx_ores| mythicmetals:stormyx_ore| mythicmetals | | c:stormyx_ores| mythicmetals:stormyx_ore| mythicmetals |
 +| c:strawberry_ice_creams| croptopia:strawberry_ice_cream| croptopia |
 +| c:strawberry_smoothies| croptopia:strawberry_smoothie| croptopia |
 | c:string| minecraft:string| comforts | | c:string| minecraft:string| comforts |
 +| c:sulfur_blocks| modern_industrialization:sulfur_block| modern_industrialization |
 | c:sulfur_dusts| indrev:sulfur_dust| indrev | | c:sulfur_dusts| indrev:sulfur_dust| indrev |
 | :::| techreborn:sulfur_dust| techreborn | | :::| techreborn:sulfur_dust| techreborn |
 +| :::| modern_industrialization:sulfur_dust| modern_industrialization |
 | c:sulfur_ores| cinderscapes:sulfur_ore| cinderscapes | | c:sulfur_ores| cinderscapes:sulfur_ore| cinderscapes |
 | c:sulfur_small_dusts| techreborn:sulfur_small_dust| techreborn | | c:sulfur_small_dusts| techreborn:sulfur_small_dust| techreborn |
 +| c:sulfur_tiny_dusts| modern_industrialization:sulfur_tiny_dust| modern_industrialization |
 | c:sulfurs| cinderscapes:sulfur| cinderscapes | | c:sulfurs| cinderscapes:sulfur| cinderscapes |
 | :::| indrev:sulfur_crystal| indrev | | :::| indrev:sulfur_crystal| indrev |
 +| c:superconductor_dusts| modern_industrialization:superconductor_dust| modern_industrialization |
 +| c:superconductor_ingots| modern_industrialization:superconductor_ingot| modern_industrialization |
 +| c:superconductor_nuggets| modern_industrialization:superconductor_nugget| modern_industrialization |
 +| c:superconductor_plates| modern_industrialization:superconductor_plate| modern_industrialization |
 +| c:superconductor_tiny_dusts| modern_industrialization:superconductor_tiny_dust| modern_industrialization |
 +| c:supreme_pizzas| croptopia:supreme_pizza| croptopia |
 +| c:sushis| croptopia:sushi| croptopia |
 +| c:sweet_berries| minecraft:sweet_berries| adorn |
 +| c:sweet_potato_friess| croptopia:sweet_potato_fries| croptopia |
 +| c:tacos| croptopia:taco| croptopia |
 | c:tantalite_blocks| mythicmetals:tantalite_block| mythicmetals | | c:tantalite_blocks| mythicmetals:tantalite_block| mythicmetals |
 | c:tantalite_ingots| mythicmetals:tantalite_ingot| mythicmetals | | c:tantalite_ingots| mythicmetals:tantalite_ingot| mythicmetals |
 | c:tantalite_nuggets| mythicmetals:tantalite_nugget| mythicmetals | | c:tantalite_nuggets| mythicmetals:tantalite_nugget| mythicmetals |
 | c:tantalite_ores| mythicmetals:tantalite_ore| mythicmetals | | c:tantalite_ores| mythicmetals:tantalite_ore| mythicmetals |
 +| c:tea| croptopia:tea| croptopia |
 | c:tea_ingredients/bitter/normal| minecraft:cocoa_beans| ce_foodstuffs | | c:tea_ingredients/bitter/normal| minecraft:cocoa_beans| ce_foodstuffs |
 | :::| minecraft:dead_bush| ce_foodstuffs | | :::| minecraft:dead_bush| ce_foodstuffs |
Line 1803: Line 2833:
 | :::| minecraft:crimson_fungus| ce_foodstuffs | | :::| minecraft:crimson_fungus| ce_foodstuffs |
 | :::| ce_foodstuffs:lettuce_seeds| ce_foodstuffs | | :::| ce_foodstuffs:lettuce_seeds| ce_foodstuffs |
 +| c:tea_leaves| croptopia:tea_leaves| croptopia |
 | c:terracotta_blocks| minecraft:terracotta| appliedenergistics2 | | c:terracotta_blocks| minecraft:terracotta| appliedenergistics2 |
 | :::| minecraft:white_terracotta| appliedenergistics2 | | :::| minecraft:white_terracotta| appliedenergistics2 |
Line 1820: Line 2851:
 | :::| minecraft:red_terracotta| appliedenergistics2 | | :::| minecraft:red_terracotta| appliedenergistics2 |
 | :::| minecraft:black_terracotta| appliedenergistics2 | | :::| minecraft:black_terracotta| appliedenergistics2 |
 +| c:terracottas| minecraft:terracotta| modern_industrialization |
 +| :::| minecraft:white_terracotta| modern_industrialization |
 +| :::| minecraft:white_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:orange_terracotta| modern_industrialization |
 +| :::| minecraft:orange_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:magenta_terracotta| modern_industrialization |
 +| :::| minecraft:magenta_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:light_blue_terracotta| modern_industrialization |
 +| :::| minecraft:light_blue_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:yellow_terracotta| modern_industrialization |
 +| :::| minecraft:yellow_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:lime_terracotta| modern_industrialization |
 +| :::| minecraft:lime_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:pink_terracotta| modern_industrialization |
 +| :::| minecraft:pink_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:gray_terracotta| modern_industrialization |
 +| :::| minecraft:gray_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:light_gray_terracotta| modern_industrialization |
 +| :::| minecraft:light_gray_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:cyan_terracotta| modern_industrialization |
 +| :::| minecraft:cyan_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:purple_terracotta| modern_industrialization |
 +| :::| minecraft:purple_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:blue_terracotta| modern_industrialization |
 +| :::| minecraft:blue_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:brown_terracotta| modern_industrialization |
 +| :::| minecraft:brown_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:green_terracotta| modern_industrialization |
 +| :::| minecraft:green_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:red_terracotta| modern_industrialization |
 +| :::| minecraft:red_glazed_terracotta| modern_industrialization |
 +| :::| minecraft:black_terracotta| modern_industrialization |
 +| :::| minecraft:black_glazed_terracotta| modern_industrialization |
 | c:thorium_blocks| c:thorium_block| cotton-resources | | c:thorium_blocks| c:thorium_block| cotton-resources |
 | c:thorium_dusts| c:thorium_dust| cotton-resources | | c:thorium_dusts| c:thorium_dust| cotton-resources |
Line 1834: Line 2898:
 | :::| techreborn:tin_storage_block| techreborn | | :::| techreborn:tin_storage_block| techreborn |
 | :::| texp:tin_block| texp | | :::| texp:tin_block| texp |
 +| :::| modern_industrialization:tin_block| modern_industrialization |
 | c:tin_dust| refinedmachinery:tin_dust| refinedmachinery | | c:tin_dust| refinedmachinery:tin_dust| refinedmachinery |
 | c:tin_dusts| astromine:tin_dust| astromine-discoveries, astromine-foundations | | c:tin_dusts| astromine:tin_dust| astromine-discoveries, astromine-foundations |
Line 1875: Line 2940:
 | :::| techreborn:tin_ore| techreborn | | :::| techreborn:tin_ore| techreborn |
 | :::| texp:tin_ore| texp | | :::| texp:tin_ore| texp |
 +| :::| indrev:deepslate_tin_ore| indrev |
 +| :::| modern_industrialization:deepslate_tin_ore| modern_industrialization |
 +| :::| techreborn:deepslate_tin_ore| techreborn |
 | c:tin_plates| astromine:tin_plate| astromine-discoveries, astromine-foundations | | c:tin_plates| astromine:tin_plate| astromine-discoveries, astromine-foundations |
 | :::| c:tin_plate| cotton-resources | | :::| c:tin_plate| cotton-resources |
Line 1886: Line 2954:
 | c:titanium_blocks| c:titanium_block| cotton-resources | | c:titanium_blocks| c:titanium_block| cotton-resources |
 | :::| techreborn:titanium_storage_block| techreborn | | :::| techreborn:titanium_storage_block| techreborn |
 +| :::| modern_industrialization:titanium_block| modern_industrialization |
 | c:titanium_dusts| c:titanium_dust| cotton-resources | | c:titanium_dusts| c:titanium_dust| cotton-resources |
 | :::| modern_industrialization:titanium_dust| modern_industrialization | | :::| modern_industrialization:titanium_dust| modern_industrialization |
Line 1901: Line 2970:
 | :::| c:titanium_nether_ore| cotton-resources | | :::| c:titanium_nether_ore| cotton-resources |
 | :::| c:titanium_end_ore| cotton-resources | | :::| c:titanium_end_ore| cotton-resources |
 +| :::| modern_industrialization:titanium_ore| modern_industrialization |
 | c:titanium_plates| c:titanium_plate| cotton-resources | | c:titanium_plates| c:titanium_plate| cotton-resources |
 | :::| modern_industrialization:titanium_plate| modern_industrialization | | :::| modern_industrialization:titanium_plate| modern_industrialization |
Line 1906: Line 2976:
 | c:titanium_small_dusts| techreborn:titanium_small_dust| techreborn | | c:titanium_small_dusts| techreborn:titanium_small_dust| techreborn |
 | c:titanium_tiny_dusts| modern_industrialization:titanium_tiny_dust| modern_industrialization | | c:titanium_tiny_dusts| modern_industrialization:titanium_tiny_dust| modern_industrialization |
 +| c:toast_with_jam| croptopia:toast_with_jam| croptopia |
 +| c:toasts| croptopia:toast| croptopia |
 | c:tofu| epicurean:tofu| epicurean | | c:tofu| epicurean:tofu| epicurean |
 +| :::| croptopia:tofu| croptopia |
 +| c:tofu_and_dumplings| croptopia:tofu_and_dumplings| croptopia |
 +| c:tofuburgers| croptopia:tofuburger| croptopia |
 | c:tomato| bonappetit:tomato| bonappetit | | c:tomato| bonappetit:tomato| bonappetit |
 +| :::| valley:tomato_bush| valley |
 | c:topaz| more_gems:topaz| more_gems | | c:topaz| more_gems:topaz| more_gems |
 | c:topaz_blocks| c:topaz_block| cotton-resources | | c:topaz_blocks| c:topaz_block| cotton-resources |
Line 1917: Line 2993:
 | c:topaz_plates| c:topaz_plate| cotton-resources | | c:topaz_plates| c:topaz_plate| cotton-resources |
 | c:topazes| c:topaz| cotton-resources | | c:topazes| c:topaz| cotton-resources |
 +| c:tortillas| croptopia:tortilla| croptopia |
 | c:tourmaline| more_gems:tourmaline| more_gems | | c:tourmaline| more_gems:tourmaline| more_gems |
 +| c:trail_mixes| croptopia:trail_mix| croptopia |
 +| c:treacle_tarts| croptopia:treacle_tart| croptopia |
 +| c:trifle| croptopia:trifle| croptopia |
 +| c:triple_compressed_stone| prefab:block_triple_compressed_stone| prefab |
 +| c:tropical_fish| minecraft:tropical_fish| valley |
 +| :::| valley:lionfish| valley |
 | c:truesilver_blocks| mythicmetals:truesilver_block| mythicmetals | | c:truesilver_blocks| mythicmetals:truesilver_block| mythicmetals |
 | c:truesilver_ingots| mythicmetals:truesilver_ingot| mythicmetals | | c:truesilver_ingots| mythicmetals:truesilver_ingot| mythicmetals |
 | c:truesilver_nuggets| mythicmetals:truesilver_nugget| mythicmetals | | c:truesilver_nuggets| mythicmetals:truesilver_nugget| mythicmetals |
 | c:truesilver_ores| mythicmetals:truesilver_ore| mythicmetals | | c:truesilver_ores| mythicmetals:truesilver_ore| mythicmetals |
 +| c:tuna_sandwiches| croptopia:tuna_sandwich| croptopia |
 | c:tungsten_blocks| c:tungsten_block| cotton-resources | | c:tungsten_blocks| c:tungsten_block| cotton-resources |
 | :::| endreborn:tungsten_block| endreborn | | :::| endreborn:tungsten_block| endreborn |
 +| :::| indrev:tungsten_block| indrev |
 | :::| techreborn:tungsten_storage_block| techreborn | | :::| techreborn:tungsten_storage_block| techreborn |
 +| :::| modern_industrialization:tungsten_block| modern_industrialization |
 | c:tungsten_dusts| c:tungsten_dust| cotton-resources | | c:tungsten_dusts| c:tungsten_dust| cotton-resources |
 +| :::| indrev:tungsten_dust| indrev |
 | :::| techreborn:tungsten_dust| techreborn | | :::| techreborn:tungsten_dust| techreborn |
 +| :::| modern_industrialization:tungsten_dust| modern_industrialization |
 | c:tungsten_gears| c:tungsten_gear| cotton-resources | | c:tungsten_gears| c:tungsten_gear| cotton-resources |
 | c:tungsten_ingots| c:tungsten_ingot| cotton-resources | | c:tungsten_ingots| c:tungsten_ingot| cotton-resources |
 | :::| endreborn:tungsten_ingot| endreborn | | :::| endreborn:tungsten_ingot| endreborn |
 +| :::| indrev:tungsten_ingot| indrev |
 | :::| techreborn:tungsten_ingot| techreborn | | :::| techreborn:tungsten_ingot| techreborn |
 +| :::| modern_industrialization:tungsten_ingot| modern_industrialization |
 | c:tungsten_nuggets| c:tungsten_nugget| cotton-resources | | c:tungsten_nuggets| c:tungsten_nugget| cotton-resources |
 | :::| endreborn:tungsten_nugget| endreborn | | :::| endreborn:tungsten_nugget| endreborn |
 +| :::| indrev:tungsten_nugget| indrev |
 | :::| techreborn:tungsten_nugget| techreborn | | :::| techreborn:tungsten_nugget| techreborn |
 +| :::| modern_industrialization:tungsten_nugget| modern_industrialization |
 | c:tungsten_ores| c:tungsten_ore| cotton-resources | | c:tungsten_ores| c:tungsten_ore| cotton-resources |
 | :::| c:tungsten_nether_ore| cotton-resources | | :::| c:tungsten_nether_ore| cotton-resources |
 | :::| c:tungsten_end_ore| cotton-resources | | :::| c:tungsten_end_ore| cotton-resources |
 | :::| endreborn:end_tungsten_ore| endreborn | | :::| endreborn:end_tungsten_ore| endreborn |
 +| :::| indrev:tungsten_ore| indrev |
 | :::| techreborn:tungsten_ore| techreborn | | :::| techreborn:tungsten_ore| techreborn |
 +| :::| indrev:deepslate_tungsten_ore| indrev |
 +| :::| modern_industrialization:tungsten_ore| modern_industrialization |
 +| :::| modern_industrialization:deepslate_tungsten_ore| modern_industrialization |
 +| :::| techreborn:deepslate_tungsten_ore| techreborn |
 | c:tungsten_plates| c:tungsten_plate| cotton-resources | | c:tungsten_plates| c:tungsten_plate| cotton-resources |
 +| :::| indrev:tungsten_plate| indrev |
 | :::| techreborn:tungsten_plate| techreborn | | :::| techreborn:tungsten_plate| techreborn |
 +| :::| modern_industrialization:tungsten_plate| modern_industrialization |
 | c:tungsten_small_dusts| techreborn:tungsten_small_dust| techreborn | | c:tungsten_small_dusts| techreborn:tungsten_small_dust| techreborn |
 +| c:tungsten_tiny_dusts| modern_industrialization:tungsten_tiny_dust| modern_industrialization |
 | c:tungstensteel_blocks| techreborn:tungstensteel_storage_block| techreborn | | c:tungstensteel_blocks| techreborn:tungstensteel_storage_block| techreborn |
 | c:tungstensteel_ingots| techreborn:tungstensteel_ingot| techreborn | | c:tungstensteel_ingots| techreborn:tungstensteel_ingot| techreborn |
 | c:tungstensteel_nuggets| techreborn:tungstensteel_nugget| techreborn | | c:tungstensteel_nuggets| techreborn:tungstensteel_nugget| techreborn |
 | c:tungstensteel_plates| techreborn:tungstensteel_plate| techreborn | | c:tungstensteel_plates| techreborn:tungstensteel_plate| techreborn |
-| c:uncommon_loot| minecraft:diamond| gobber2, resourceful_tools | +| c:turmeric| croptopia:turmeric| croptopia | 
-| :::| minecraft:emerald| gobber2, resourceful_tools | +| c:uncommon_loot| minecraft:diamond| resourceful_tools, gobber2 
-| :::| minecraft:shulker_shell| gobber2, resourceful_tools | +| :::| minecraft:emerald| resourceful_tools, gobber2 
-| :::| minecraft:rabbit_foot| gobber2, resourceful_tools | +| :::| minecraft:shulker_shell| resourceful_tools, gobber2 
-| :::| minecraft:heart_of_the_sea| gobber2, resourceful_tools | +| :::| minecraft:rabbit_foot| resourceful_tools, gobber2 
-| :::| minecraft:blaze_rod| gobber2, resourceful_tools | +| :::| minecraft:heart_of_the_sea| resourceful_tools, gobber2 
-| :::| minecraft:ghast_tear| gobber2, resourceful_tools |+| :::| minecraft:blaze_rod| resourceful_tools, gobber2 
 +| :::| minecraft:ghast_tear| resourceful_tools, gobber2 |
 | :::| gobber2:gobber2_ingot| gobber2 | | :::| gobber2:gobber2_ingot| gobber2 |
 | :::| more_gems:emerald_juju| more_gems | | :::| more_gems:emerald_juju| more_gems |
Line 1978: Line 3079:
 | c:ur_nuggets| mythicmetals:ur_nugget| mythicmetals | | c:ur_nuggets| mythicmetals:ur_nugget| mythicmetals |
 | c:ur_ores| mythicmetals:ur_ore| mythicmetals | | c:ur_ores| mythicmetals:ur_ore| mythicmetals |
 +| c:uranium_235_blocks| modern_industrialization:uranium_235_block| modern_industrialization |
 +| c:uranium_235_dusts| modern_industrialization:uranium_235_dust| modern_industrialization |
 +| c:uranium_235_ingots| modern_industrialization:uranium_235_ingot| modern_industrialization |
 +| c:uranium_235_nuggets| modern_industrialization:uranium_235_nugget| modern_industrialization |
 +| c:uranium_235_tiny_dusts| modern_industrialization:uranium_235_tiny_dust| modern_industrialization |
 +| c:uranium_238_blocks| modern_industrialization:uranium_238_block| modern_industrialization |
 +| c:uranium_238_dusts| modern_industrialization:uranium_238_dust| modern_industrialization |
 +| c:uranium_238_ingots| modern_industrialization:uranium_238_ingot| modern_industrialization |
 +| c:uranium_238_nuggets| modern_industrialization:uranium_238_nugget| modern_industrialization |
 +| c:uranium_238_tiny_dusts| modern_industrialization:uranium_238_tiny_dust| modern_industrialization |
 | c:uranium_blocks| bno:uranium_block| bno | | c:uranium_blocks| bno:uranium_block| bno |
 | :::| c:uranium_block| cotton-resources | | :::| c:uranium_block| cotton-resources |
 +| :::| modern_industrialization:uranium_block| modern_industrialization |
 | c:uranium_dusts| c:uranium_dust| cotton-resources | | c:uranium_dusts| c:uranium_dust| cotton-resources |
 +| :::| modern_industrialization:uranium_dust| modern_industrialization |
 | c:uranium_gears| c:uranium_gear| cotton-resources | | c:uranium_gears| c:uranium_gear| cotton-resources |
 | c:uranium_ingots| bno:uranium_ingot| bno | | c:uranium_ingots| bno:uranium_ingot| bno |
 | :::| c:uranium_ingot| cotton-resources | | :::| c:uranium_ingot| cotton-resources |
 +| :::| modern_industrialization:uranium_ingot| modern_industrialization |
 | c:uranium_nuggets| c:uranium_nugget| cotton-resources | | c:uranium_nuggets| c:uranium_nugget| cotton-resources |
 +| :::| modern_industrialization:uranium_nugget| modern_industrialization |
 | c:uranium_ores| bno:netheruranium_ore| bno | | c:uranium_ores| bno:netheruranium_ore| bno |
 | :::| c:uranium_ore| cotton-resources | | :::| c:uranium_ore| cotton-resources |
 | :::| c:uranium_nether_ore| cotton-resources | | :::| c:uranium_nether_ore| cotton-resources |
 | :::| c:uranium_end_ore| cotton-resources | | :::| c:uranium_end_ore| cotton-resources |
 +| :::| modern_industrialization:uranium_ore| modern_industrialization |
 +| :::| modern_industrialization:deepslate_uranium_ore| modern_industrialization |
 | c:uranium_plates| c:uranium_plate| cotton-resources | | c:uranium_plates| c:uranium_plate| cotton-resources |
 +| c:uranium_tiny_dusts| modern_industrialization:uranium_tiny_dust| modern_industrialization |
 | c:uvarovite_dusts| techreborn:uvarovite_dust| techreborn | | c:uvarovite_dusts| techreborn:uvarovite_dust| techreborn |
 | c:uvarovite_small_dusts| techreborn:uvarovite_small_dust| techreborn | | c:uvarovite_small_dusts| techreborn:uvarovite_small_dust| techreborn |
 +| c:vanilla_ice_creams| croptopia:vanilla_ice_cream| croptopia |
 +| c:veges| valley:mandrake| valley |
 +| :::| valley:maize_crop| valley |
 +| :::| valley:snow_yam_item| valley |
 +| :::| valley:onion| valley |
 +| :::| valley:eggplant| valley |
 +| :::| valley:tomato_bush| valley |
 +| :::| valley:fire_pepper| valley |
 +| :::| valley:green_bean| valley |
 +| :::| minecraft:carrot| valley |
 +| :::| minecraft:potato| valley |
 +| :::| minecraft:beetroot| valley |
 +| :::| minecraft:pumpkin| valley |
 | c:vegetables| minecraft:potato| bonappetit | | c:vegetables| minecraft:potato| bonappetit |
-| :::| minecraft:carrot| bonappetit, spatialharvesters, veggie_way |+| :::| minecraft:carrot| veggie_way, bonappetit, spatialharvesters |
 | :::| minecraft:beetroot| bonappetit | | :::| minecraft:beetroot| bonappetit |
 | :::| #c:tomato| bonappetit | | :::| #c:tomato| bonappetit |
 | :::| #c:onion| bonappetit | | :::| #c:onion| bonappetit |
 | :::| #c:cucumber| bonappetit | | :::| #c:cucumber| bonappetit |
-| :::| minecraft:dried_kelp| spatialharvesters, veggie_way |+| :::| minecraft:dried_kelp| veggie_way, spatialharvesters |
 | :::| veggie_way:pumpkin_chunk| veggie_way | | :::| veggie_way:pumpkin_chunk| veggie_way |
 +| :::| #c:vegetables/artichokes| croptopia |
 +| :::| #c:vegetables/asparagus| croptopia |
 +| :::| #c:vegetables/broccoli| croptopia |
 +| :::| #c:vegetables/cabbage| croptopia |
 +| :::| #c:vegetables/celery| croptopia |
 +| :::| #c:vegetables/cucumber| croptopia |
 +| :::| #c:vegetables/eggplant| croptopia |
 +| :::| #c:vegetables/garlic| croptopia |
 +| :::| #c:vegetables/ginger| croptopia |
 +| :::| #c:vegetables/greenbeans| croptopia |
 +| :::| #c:vegetables/greenonions| croptopia |
 +| :::| #c:vegetables/kale| croptopia |
 +| :::| #c:vegetables/leek| croptopia |
 +| :::| #c:vegetables/lettuce| croptopia |
 +| :::| #c:vegetables/mustard| croptopia |
 +| :::| #c:vegetables/radishes| croptopia |
 +| :::| #c:vegetables/rutabagas| croptopia |
 +| :::| #c:vegetables/soybeans| croptopia |
 +| :::| #c:vegetables/spinach| croptopia |
 +| :::| #c:vegetables/squash| croptopia |
 +| :::| #c:vegetables/sweetpotatos| croptopia |
 +| :::| #c:vegetables/tomatoes| croptopia |
 +| :::| #c:vegetables/turnips| croptopia |
 +| :::| #c:vegetables/yams| croptopia |
 +| :::| #c:vegetables/zucchini| croptopia |
 +| :::| #c:vegetables/cauliflower| croptopia |
 +| :::| #c:vegetables/onion| croptopia |
 +| :::| #c:vegetables/rhubarb| croptopia |
 +| :::| #c:vegetables/tomatillos| croptopia |
 +| c:vegetables/artichokes| croptopia:artichoke| croptopia |
 +| c:vegetables/asparagus| croptopia:asparagus| croptopia |
 +| c:vegetables/broccoli| croptopia:broccoli| croptopia |
 +| c:vegetables/cabbage| croptopia:cabbage| croptopia |
 +| c:vegetables/cauliflower| croptopia:cauliflower| croptopia |
 +| c:vegetables/celery| croptopia:celery| croptopia |
 +| c:vegetables/cucumber| croptopia:cucumber| croptopia |
 +| c:vegetables/eggplant| croptopia:eggplant| croptopia |
 +| c:vegetables/garlic| croptopia:garlic| croptopia |
 +| c:vegetables/ginger| croptopia:ginger| croptopia |
 +| c:vegetables/greenbeans| croptopia:greenbean| croptopia |
 +| c:vegetables/greenonions| croptopia:greenonion| croptopia |
 +| c:vegetables/kale| croptopia:kale| croptopia |
 +| c:vegetables/leek| croptopia:leek| croptopia |
 +| c:vegetables/lettuce| croptopia:lettuce| croptopia |
 +| c:vegetables/mustard| croptopia:mustard| croptopia |
 +| c:vegetables/onion| croptopia:onion| croptopia |
 +| c:vegetables/radishes| croptopia:radish| croptopia |
 +| c:vegetables/rhubarb| croptopia:rhubarb| croptopia |
 +| c:vegetables/rutabagas| croptopia:rutabaga| croptopia |
 +| c:vegetables/soybeans| croptopia:soybean| croptopia |
 +| c:vegetables/spinach| croptopia:spinach| croptopia |
 +| c:vegetables/squash| croptopia:squash| croptopia |
 +| c:vegetables/sweetpotatos| croptopia:sweetpotato| croptopia |
 +| c:vegetables/tomatillos| croptopia:tomatillo| croptopia |
 +| c:vegetables/tomatoes| croptopia:tomato| croptopia |
 +| c:vegetables/turnips| croptopia:turnip| croptopia |
 +| c:vegetables/yams| croptopia:yam| croptopia |
 +| c:vegetables/zucchini| croptopia:zucchini| croptopia |
 +| c:veggie_salads| croptopia:veggie_salad| croptopia |
 | c:veggies| minecraft:carrot| exnihilofabrico, spatialharvesters | | c:veggies| minecraft:carrot| exnihilofabrico, spatialharvesters |
 | :::| minecraft:potato| exnihilofabrico, spatialharvesters | | :::| minecraft:potato| exnihilofabrico, spatialharvesters |
 | :::| minecraft:beetroot| exnihilofabrico, spatialharvesters | | :::| minecraft:beetroot| exnihilofabrico, spatialharvesters |
-| c:venison| alaskanativecraft:venison| alaskanativecraft | 
 | c:vermiculite| mythicmetals:vermiculite| mythicmetals | | c:vermiculite| mythicmetals:vermiculite| mythicmetals |
 +| c:vermiculite_blocks| mythicmetals:vermiculite_block| mythicmetals |
 | c:vermiculite_ores| mythicmetals:vermiculite_ore| mythicmetals | | c:vermiculite_ores| mythicmetals:vermiculite_ore| mythicmetals |
-| c:very_rare_loot| minecraft:totem_of_undying| gobber2, resourceful_tools, veggie_way | +| c:very_rare_loot| minecraft:totem_of_undying| resourceful_tools, veggie_way, gobber2 
-| :::| minecraft:elytra| gobber2, resourceful_tools, veggie_way |+| :::| minecraft:elytra| resourceful_tools, veggie_way, gobber2 |
 | :::| gobber2:gobber2_ingot_end| gobber2 | | :::| gobber2:gobber2_ingot_end| gobber2 |
 | :::| gobber2:gobber2_ring_teleport| gobber2 | | :::| gobber2:gobber2_ring_teleport| gobber2 |
Line 2016: Line 3206:
 | c:vysterium_dusts| mechanix:vysterium_dust| mechanix | | c:vysterium_dusts| mechanix:vysterium_dust| mechanix |
 | c:vysterium_ingots| mechanix:vysterium_ingot| mechanix | | c:vysterium_ingots| mechanix:vysterium_ingot| mechanix |
-| c:wheat_crops| minecraft:wheat| appliedenergistics2 | +| c:water_bottles| croptopia:water_bottle| croptopia | 
-| c:white_dyes| minecraft:white_dye| appliedenergistics2, computercraft, icarus | +| :::| minecraft:water_bucket| croptopia | 
-| :::| minecraft:bone_meal| icarus |+| c:wheat_crops| minecraft:wheat| ae2, appliedenergistics2 
 +| c:white_dye| minecraft:white_dye| ae2 
 +| c:white_dyes| minecraft:white_dye| computercraft, modern_industrialization, camsbackpacks, appliedenergistics2, icarus, mtr, adorn, valley, expandedstorage 
 +| :::| minecraft:bone_meal| icarus, camsbackpacks | 
 +| c:white_sand| byg:white_sand| byg | 
 +| c:wines| croptopia:wine| croptopia |
 | c:wood_gears| c:wood_gear| cotton-resources | | c:wood_gears| c:wood_gear| cotton-resources |
 | c:wood_plates| techreborn:wood_plate| techreborn | | c:wood_plates| techreborn:wood_plate| techreborn |
-| c:wood_sticks| minecraft:stick| astromine-foundations |+| c:wood_sticks| minecraft:stick| astromine-foundations, basicshields, mtr |
 | c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage | | c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage |
 | :::| {'id': '#blockus:barrels', 'required': False}| expandedstorage | | :::| {'id': '#blockus:barrels', 'required': False}| expandedstorage |
-| c:wooden_chests| minecraft:chest| appliedenergistics2, computercraft, packagesslotlink +| :::| betterend:helix_tree_barrel| betterend | 
-| :::| minecraft:trapped_chest| appliedenergistics2, computercraft, slotlink |+| :::| betterend:lucernia_barrel| betterend | 
 +| :::| betterend:end_lotus_barrel| betterend | 
 +| :::| betterend:umbrella_tree_barrel| betterend | 
 +| :::| betterend:dragon_tree_barrel| betterend | 
 +| :::| betterend:lacugrove_barrel| betterend | 
 +| :::| betterend:jellyshroom_barrel| betterend | 
 +| :::| betterend:pythadendron_barrel| betterend | 
 +| :::| betterend:tenanea_barrel| betterend | 
 +| :::| betterend:mossy_glowshroom_barrel| betterend | 
 +| :::| betternether:rubeus_barrel| betternether | 
 +| :::| betternether:nether_sakura_barrel| betternether | 
 +| :::| betternether:nether_mushroom_barrel| betternether | 
 +| :::| betternether:mushroom_fir_barrel| betternether | 
 +| :::| betternether:stalagnate_barrel| betternether | 
 +| :::| betternether:willow_barrel| betternether | 
 +| :::| betternether:wart_barrel| betternether | 
 +| :::| betternether:nether_reed_barrel| betternether | 
 +| :::| betternether:anchor_tree_barrel| betternether | 
 +| :::| #blockus:barrels| blockus | 
 +| :::| minecraft:barrel| expandedstorage | 
 +| c:wooden_chests| minecraft:chest| slotlink, computercraft, appliedenergistics2ae2, adorn, expandedstorage, packages 
 +| :::| minecraft:trapped_chest| slotlink, computercraft, appliedenergistics2, ae2, adorn, expandedstorage |
 | :::| {'id': 'minecraft:chest', 'required': True}| expandedstorage | | :::| {'id': 'minecraft:chest', 'required': True}| expandedstorage |
 | :::| {'id': 'minecraft:trapped_chest', 'required': True}| expandedstorage | | :::| {'id': 'minecraft:trapped_chest', 'required': True}| expandedstorage |
Line 2053: Line 3269:
 | :::| {'id': 'packed:crimson_chest_default', 'required': False}| slotlink | | :::| {'id': 'packed:crimson_chest_default', 'required': False}| slotlink |
 | :::| {'id': 'packed:warped_chest_default', 'required': False}| slotlink | | :::| {'id': 'packed:warped_chest_default', 'required': False}| slotlink |
-| c:wooden_rods| minecraft:stick| appliedenergistics2, comforts, spatialharvesters |+| :::| betterend:pythadendron_chest| betterend | 
 +| :::| betterend:lacugrove_chest| betterend | 
 +| :::| betterend:mossy_glowshroom_chest| betterend | 
 +| :::| betterend:dragon_tree_chest| betterend | 
 +| :::| betterend:lucernia_chest| betterend | 
 +| :::| betterend:helix_tree_chest| betterend | 
 +| :::| betterend:tenanea_chest| betterend | 
 +| :::| betterend:end_lotus_chest| betterend | 
 +| :::| betterend:umbrella_tree_chest| betterend | 
 +| :::| betterend:jellyshroom_chest| betterend | 
 +| :::| betternether:rubeus_chest| betternether | 
 +| :::| betternether:nether_sakura_chest| betternether | 
 +| :::| betternether:stalagnate_chest| betternether | 
 +| :::| betternether:nether_reed_chest| betternether | 
 +| :::| betternether:mushroom_fir_chest| betternether | 
 +| :::| betternether:nether_mushroom_chest| betternether | 
 +| :::| betternether:wart_chest| betternether | 
 +| :::| betternether:anchor_tree_chest| betternether | 
 +| :::| betternether:willow_chest| betternether | 
 +| :::| expandedstorage:wood_chest| expandedstorage | 
 +| c:wooden_rods| minecraft:stick| spatialharvesters, appliedenergistics2, comforts, ae2, adorn | 
 +| c:wools| minecraft:black_wool| mtr | 
 +| :::| minecraft:blue_wool| mtr | 
 +| :::| minecraft:brown_wool| mtr | 
 +| :::| minecraft:cyan_wool| mtr | 
 +| :::| minecraft:gray_wool| mtr | 
 +| :::| minecraft:green_wool| mtr | 
 +| :::| minecraft:light_blue_wool| mtr | 
 +| :::| minecraft:light_gray_wool| mtr | 
 +| :::| minecraft:lime_wool| mtr | 
 +| :::| minecraft:magenta_wool| mtr | 
 +| :::| minecraft:orange_wool| mtr | 
 +| :::| minecraft:pink_wool| mtr | 
 +| :::| minecraft:purple_wool| mtr | 
 +| :::| minecraft:red_wool| mtr | 
 +| :::| minecraft:white_wool| mtr | 
 +| :::| minecraft:yellow_wool| mtr |
 | c:workbench| byg:aspen_crafting_table| byg | | c:workbench| byg:aspen_crafting_table| byg |
 | :::| byg:baobab_crafting_table| byg | | :::| byg:baobab_crafting_table| byg |
Line 2079: Line 3331:
 | :::| byg:palm_crafting_table| byg | | :::| byg:palm_crafting_table| byg |
 | :::| byg:lament_crafting_table| byg | | :::| byg:lament_crafting_table| byg |
 +| :::| betterend:jellyshroom_crafting_table| betterend |
 +| :::| betterend:mossy_glowshroom_crafting_table| betterend |
 +| :::| betterend:dragon_tree_crafting_table| betterend |
 +| :::| betterend:lacugrove_crafting_table| betterend |
 +| :::| betterend:helix_tree_crafting_table| betterend |
 +| :::| betterend:pythadendron_crafting_table| betterend |
 +| :::| betterend:umbrella_tree_crafting_table| betterend |
 +| :::| betterend:lucernia_crafting_table| betterend |
 +| :::| betterend:tenanea_crafting_table| betterend |
 +| :::| betterend:end_lotus_crafting_table| betterend |
 +| :::| betternether:nether_reed_crafting_table| betternether |
 +| :::| betternether:nether_sakura_crafting_table| betternether |
 +| :::| betternether:crafting_table_crimson| betternether |
 +| :::| betternether:nether_mushroom_crafting_table| betternether |
 +| :::| betternether:anchor_tree_crafting_table| betternether |
 +| :::| betternether:stalagnate_crafting_table| betternether |
 +| :::| betternether:crafting_table_warped| betternether |
 +| :::| betternether:rubeus_crafting_table| betternether |
 +| :::| betternether:willow_crafting_table| betternether |
 +| :::| betternether:wart_crafting_table| betternether |
 +| :::| betternether:mushroom_fir_crafting_table| betternether |
 +| c:worms| valley:worm| valley |
 | c:wrenches| astromine:copper_wrench| astromine-foundations | | c:wrenches| astromine:copper_wrench| astromine-foundations |
 | :::| astromine:bronze_wrench| astromine-foundations | | :::| astromine:bronze_wrench| astromine-foundations |
 | :::| astromine:steel_wrench| astromine-foundations | | :::| astromine:steel_wrench| astromine-foundations |
-| c:yellow_dyes| minecraft:yellow_dye| appliedenergistics2, computercraft, comforts, icarus |+| :::| ae2:certus_quartz_wrench| ae2 | 
 +| :::| ae2:nether_quartz_wrench| ae2 | 
 +| :::| ae2:network_tool| ae2 | 
 +| :::| indrev:wrench| indrev | 
 +| :::| modern_industrialization:wrench| modern_industrialization | 
 +| c:yam_jam| croptopia:yam_jam| croptopia | 
 +| c:yellow_dye| minecraft:yellow_dye| ae2 | 
 +| c:yellow_dyes| minecraft:yellow_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr |
 | c:yellow_garnet_blocks| techreborn:yellow_garnet_storage_block| techreborn | | c:yellow_garnet_blocks| techreborn:yellow_garnet_storage_block| techreborn |
 | c:yellow_garnet_dusts| techreborn:yellow_garnet_dust| techreborn | | c:yellow_garnet_dusts| techreborn:yellow_garnet_dust| techreborn |
Line 2088: Line 3369:
 | c:yellow_garnet_plates| techreborn:yellow_garnet_plate| techreborn | | c:yellow_garnet_plates| techreborn:yellow_garnet_plate| techreborn |
 | c:yellow_garnet_small_dusts| techreborn:yellow_garnet_small_dust| techreborn | | c:yellow_garnet_small_dusts| techreborn:yellow_garnet_small_dust| techreborn |
-| c:yellow_sandstones| minecraft:sandstone| astromine-discoveries, astromine-foundations, astromine-technologies |+| c:yellow_sandstones| minecraft:sandstone| astromine-discoveries, astromine-technologies, astromine-foundations |
 | :::| minecraft:cut_sandstone| astromine-technologies | | :::| minecraft:cut_sandstone| astromine-technologies |
 | :::| minecraft:chiseled_sandstone| astromine-technologies | | :::| minecraft:chiseled_sandstone| astromine-technologies |
 | :::| minecraft:smooth_sandstone| astromine-technologies | | :::| minecraft:smooth_sandstone| astromine-technologies |
 +| :::| blockus:sandstone_bricks| blockus |
 +| :::| blockus:small_sandstone_bricks| blockus |
 +| :::| blockus:rough_sandstone| blockus |
 +| :::| blockus:gold_decorated_sandstone| blockus |
 +| :::| blockus:lapis_decorated_sandstone| blockus |
 +| :::| blockus:sandstone_pillar| blockus |
 +| c:yoghurts| croptopia:yoghurt| croptopia |
 +| c:yttrium_blocks| modern_industrialization:yttrium_block| modern_industrialization |
 +| c:yttrium_dusts| modern_industrialization:yttrium_dust| modern_industrialization |
 +| c:yttrium_tiny_dusts| modern_industrialization:yttrium_tiny_dust| modern_industrialization |
 | c:zinc_blocks| c:zinc_block| cotton-resources | | c:zinc_blocks| c:zinc_block| cotton-resources |
 | :::| mythicmetals:zinc_block| mythicmetals | | :::| mythicmetals:zinc_block| mythicmetals |
Line 2121: Line 3412:
 | c:adamantite_blocks| mythicmetals:adamantite_block| mythicmetals | | c:adamantite_blocks| mythicmetals:adamantite_block| mythicmetals |
 | c:adamantite_ores| mythicmetals:adamantite_ore| mythicmetals | | c:adamantite_ores| mythicmetals:adamantite_ore| mythicmetals |
 +| :::| mythicmetals:deepslate_adamantite_ore| mythicmetals |
 | c:aetherium_blocks| mythicmetals:aetherium_block| mythicmetals | | c:aetherium_blocks| mythicmetals:aetherium_block| mythicmetals |
 | c:aetherium_ores| mythicmetals:aetherium_ore| mythicmetals | | c:aetherium_ores| mythicmetals:aetherium_ore| mythicmetals |
Line 2166: Line 3458:
 | :::| packed:warped_barrel_default| packed | | :::| packed:warped_barrel_default| packed |
 | :::| minecraft:barrel| packed | | :::| minecraft:barrel| packed |
 +| :::| betterend:helix_tree_barrel| betterend |
 +| :::| betterend:lucernia_barrel| betterend |
 +| :::| betterend:end_lotus_barrel| betterend |
 +| :::| betterend:umbrella_tree_barrel| betterend |
 +| :::| betterend:dragon_tree_barrel| betterend |
 +| :::| betterend:lacugrove_barrel| betterend |
 +| :::| betterend:jellyshroom_barrel| betterend |
 +| :::| betterend:pythadendron_barrel| betterend |
 +| :::| betterend:tenanea_barrel| betterend |
 +| :::| betterend:mossy_glowshroom_barrel| betterend |
 +| :::| betternether:rubeus_barrel| betternether |
 +| :::| betternether:nether_sakura_barrel| betternether |
 +| :::| betternether:nether_mushroom_barrel| betternether |
 +| :::| betternether:mushroom_fir_barrel| betternether |
 +| :::| betternether:stalagnate_barrel| betternether |
 +| :::| betternether:willow_barrel| betternether |
 +| :::| betternether:wart_barrel| betternether |
 +| :::| betternether:nether_reed_barrel| betternether |
 +| :::| betternether:anchor_tree_barrel| betternether |
 | c:basalt| minecraft:basalt| techreborn | | c:basalt| minecraft:basalt| techreborn |
 | :::| minecraft:polished_basalt| techreborn | | :::| minecraft:polished_basalt| techreborn |
 | c:bauxite_ores| techreborn:bauxite_ore| techreborn | | c:bauxite_ores| techreborn:bauxite_ore| techreborn |
 +| :::| techreborn:deepslate_bauxite_ore| techreborn |
 +| c:black_sand| byg:black_sand| byg |
 +| c:blue_sand| byg:blue_sand| byg |
 | c:bone_blocks| minecraft:bone_block| astromine-discoveries, astromine-foundations | | c:bone_blocks| minecraft:bone_block| astromine-discoveries, astromine-foundations |
-| c:bookshelves| minecraft:bookshelf| atbyw, betterendbyg |+| c:bookshelves| arcanus:fillable_bookshelf| arcanus | 
 +| :::| minecraft:bookshelf| atbyw, bclibdark-enchanting, betterend |
 | :::| atbyw:spruce_bookshelf| atbyw | | :::| atbyw:spruce_bookshelf| atbyw |
 | :::| atbyw:birch_bookshelf| atbyw | | :::| atbyw:birch_bookshelf| atbyw |
Line 2215: Line 3530:
 | :::| byg:ether_bookshelf| byg | | :::| byg:ether_bookshelf| byg |
 | :::| byg:nightshade_bookshelf| byg | | :::| byg:nightshade_bookshelf| byg |
 +| :::| betterend:umbrella_tree_bookshelf| betterend |
 +| :::| betterend:jellyshroom_bookshelf| betterend |
 +| :::| betterend:tenanea_bookshelf| betterend |
 +| :::| betterend:helix_tree_bookshelf| betterend |
 +| :::| betterend:mossy_glowshroom_bookshelf| betterend |
 +| :::| betterend:dragon_tree_bookshelf| betterend |
 +| :::| betterend:pythadendron_bookshelf| betterend |
 +| :::| betterend:end_lotus_bookshelf| betterend |
 +| :::| betterend:lacugrove_bookshelf| betterend |
 +| :::| betterend:lucernia_bookshelf| betterend |
 | c:brass_blocks| c:brass_block| cotton-resources | | c:brass_blocks| c:brass_block| cotton-resources |
 | :::| mythicmetals:brass_block| mythicmetals | | :::| mythicmetals:brass_block| mythicmetals |
Line 2220: Line 3545:
 | c:bronze_blocks| astromine:bronze_block| astromine-discoveries, astromine-foundations | | c:bronze_blocks| astromine:bronze_block| astromine-discoveries, astromine-foundations |
 | :::| c:bronze_block| cotton-resources | | :::| c:bronze_block| cotton-resources |
 +| :::| indrev:bronze_block| indrev |
 | :::| mythicmetals:bronze_block| mythicmetals | | :::| mythicmetals:bronze_block| mythicmetals |
 | :::| techreborn:bronze_storage_block| techreborn | | :::| techreborn:bronze_storage_block| techreborn |
 | :::| texp:bronze_block| texp | | :::| texp:bronze_block| texp |
 +| c:bushes| byg:pink_allium_flower_bush| byg |
 +| :::| byg:firecracker_flower_bush| byg |
 +| :::| byg:allium_flower_bush| byg |
 +| :::| byg:oddity_bush| byg |
 +| :::| byg:nightshade_berry_bush| byg |
 +| :::| byg:ether_bush| byg |
 +| :::| byg:warped_bush| byg |
 +| :::| byg:scorched_bush| byg |
 +| :::| byg:crimson_berry_bush| byg |
 +| :::| byg:blueberry_bush| byg |
 | c:carmot_blocks| mythicmetals:carmot_block| mythicmetals | | c:carmot_blocks| mythicmetals:carmot_block| mythicmetals |
 | c:carmot_ores| mythicmetals:carmot_ore| mythicmetals | | c:carmot_ores| mythicmetals:carmot_ore| mythicmetals |
 | c:celestium_blocks| mythicmetals:celestium_block| mythicmetals | | c:celestium_blocks| mythicmetals:celestium_block| mythicmetals |
 +| c:certus_quartz_blocks| ae2:quartz_block| ae2 |
 +| c:certus_quartz_ores| ae2:quartz_ore| ae2 |
 +| :::| ae2:deepslate_quartz_ore| ae2 |
 | c:chest| packed:oak_chest_default| packed | | c:chest| packed:oak_chest_default| packed |
 | :::| packed:spruce_chest_default| packed | | :::| packed:spruce_chest_default| packed |
Line 2234: Line 3573:
 | :::| packed:crimson_chest_default| packed | | :::| packed:crimson_chest_default| packed |
 | :::| packed:warped_chest_default| packed | | :::| packed:warped_chest_default| packed |
-| :::| minecraft:chest| packed |+| :::| minecraft:chest| bclib, packed |
 | :::| minecraft:trapped_chest| packed | | :::| minecraft:trapped_chest| packed |
-c:chestsminecraft:chestalaskanativecraft +| :::| betterend:pythadendron_chest| betterend | 
-| :::| minecraft:trapped_chestalaskanativecraft +| :::| betterend:lacugrove_chest| betterend | 
-| :::| minecraft:ender_chestalaskanativecraft +| :::| betterend:mossy_glowshroom_chest| betterend | 
-| :::| minecraft:shulker_boxalaskanativecraft +| :::| betterend:dragon_tree_chest| betterend | 
-| :::| minecraft:white_shulker_boxalaskanativecraft +| :::| betterend:lucernia_chest| betterend | 
-| :::| minecraft:orange_shulker_boxalaskanativecraft +| :::betterend:helix_tree_chestbetterend 
-| :::| minecraft:magenta_shulker_boxalaskanativecraft +| :::| betterend:tenanea_chestbetterend 
-| :::| minecraft:light_blue_shulker_boxalaskanativecraft +| :::| betterend:end_lotus_chestbetterend 
-| :::| minecraft:yellow_shulker_boxalaskanativecraft +| :::| betterend:umbrella_tree_chestbetterend 
-| :::| minecraft:lime_shulker_boxalaskanativecraft +| :::| betterend:jellyshroom_chestbetterend 
-| :::| minecraft:pink_shulker_boxalaskanativecraft +| :::| betternether:rubeus_chestbetternether 
-| :::| minecraft:gray_shulker_boxalaskanativecraft +| :::| betternether:nether_sakura_chestbetternether 
-| :::| minecraft:light_gray_shulker_boxalaskanativecraft +| :::| betternether:stalagnate_chestbetternether 
-| :::| minecraft:cyan_shulker_boxalaskanativecraft +| :::| betternether:warped_chestbetternether 
-| :::| minecraft:purple_shulker_boxalaskanativecraft +| :::| betternether:nether_reed_chestbetternether 
-| :::| minecraft:blue_shulker_boxalaskanativecraft +| :::| betternether:mushroom_fir_chestbetternether 
-| :::| minecraft:brown_shulker_boxalaskanativecraft +| :::| betternether:nether_mushroom_chestbetternether 
-| :::| minecraft:green_shulker_boxalaskanativecraft +| :::| betternether:wart_chestbetternether 
-| :::| minecraft:red_shulker_boxalaskanativecraft +| :::| betternether:crimson_chestbetternether 
-| :::| minecraft:black_shulker_boxalaskanativecraft |+| :::| betternether:anchor_tree_chestbetternether 
 +| :::| betternether:willow_chestbetternether 
 +| :::| bewitchment:juniper_chestbewitchment 
 +| :::| bewitchment:cypress_chestbewitchment 
 +| :::| bewitchment:elder_chestbewitchment 
 +| :::| bewitchment:dragons_blood_chestbewitchment |
 | c:chrome_blocks| techreborn:chrome_storage_block| techreborn | | c:chrome_blocks| techreborn:chrome_storage_block| techreborn |
 | c:cinnabar_ores| techreborn:cinnabar_ore| techreborn | | c:cinnabar_ores| techreborn:cinnabar_ore| techreborn |
Line 2261: Line 3605:
 | c:coal_coke_blocks| c:coal_coke_block| cotton-resources | | c:coal_coke_blocks| c:coal_coke_block| cotton-resources |
 | c:coal_gravels| gravel-ores:coal_gravel| gravel-ores | | c:coal_gravels| gravel-ores:coal_gravel| gravel-ores |
-| c:coal_ores| minecraft:coal_ore| randomtech, astromine-discoveries, astromine-foundations, indrev |+| c:coal_ores| minecraft:coal_ore| astromine-discoveries, astromine-foundations, indrev, randomtech |
 | :::| #c:asteroid_coal_ores| astromine-discoveries | | :::| #c:asteroid_coal_ores| astromine-discoveries |
 | :::| bno:nethercoal_ore| bno | | :::| bno:nethercoal_ore| bno |
 | :::| gravel-ores:coal_gravel| gravel-ores | | :::| gravel-ores:coal_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_coal_ore| unearthed | 
-| :::| unearthed:gabbro_coal_ore| unearthed | 
-| :::| unearthed:pumice_coal_ore| unearthed | 
-| :::| unearthed:kimberlite_coal_ore| unearthed | 
-| :::| unearthed:rhyolite_coal_ore| unearthed | 
-| :::| unearthed:slate_coal_ore| unearthed | 
-| :::| unearthed:marble_coal_ore| unearthed | 
-| :::| unearthed:quartzite_coal_ore| unearthed | 
-| :::| unearthed:phyllite_coal_ore| unearthed | 
-| :::| unearthed:schist_coal_ore| unearthed | 
-| :::| unearthed:limestone_coal_ore| unearthed | 
-| :::| unearthed:lignite_coal_ore| unearthed | 
-| :::| unearthed:siltstone_coal_ore| unearthed | 
-| :::| unearthed:mudstone_coal_ore| unearthed | 
-| :::| unearthed:conglomerate_coal_ore| unearthed | 
 | c:cobalt_blocks| randomtech:cobalt_block| randomtech | | c:cobalt_blocks| randomtech:cobalt_block| randomtech |
 | :::| c:cobalt_block| cotton-resources | | :::| c:cobalt_block| cotton-resources |
Line 2293: Line 3622:
 | :::| byg:ether_stone| byg | | :::| byg:ether_stone| byg |
 | :::| minecraft:cobblestone| gobber2 | | :::| minecraft:cobblestone| gobber2 |
 +| c:compressed_dirt| prefab:block_compressed_dirt| prefab |
 +| c:compressed_glow_stone| prefab:block_compressed_glowstone| prefab |
 +| c:compressed_obsidian| prefab:block_compressed_obsidian| prefab |
 +| c:compressed_stone| prefab:block_compressed_stone| prefab |
 | c:concrete| minecraft:white_concrete| artofalchemy | | c:concrete| minecraft:white_concrete| artofalchemy |
 | :::| minecraft:orange_concrete| artofalchemy | | :::| minecraft:orange_concrete| artofalchemy |
Line 2332: Line 3665:
 | :::| techreborn:copper_storage_block| techreborn | | :::| techreborn:copper_storage_block| techreborn |
 | :::| texp:copper_block| texp | | :::| texp:copper_block| texp |
 +| :::| minecraft:copper_block| indrev, mythicmetals |
 | c:copper_ore| mechanized:copper_ore| mechanized | | c:copper_ore| mechanized:copper_ore| mechanized |
 | c:copper_ores| astromine:copper_ore| astromine-discoveries, astromine-foundations | | c:copper_ores| astromine:copper_ore| astromine-discoveries, astromine-foundations |
Line 2345: Line 3679:
 | :::| techreborn:copper_ore| techreborn | | :::| techreborn:copper_ore| techreborn |
 | :::| texp:copper_ore| texp | | :::| texp:copper_ore| texp |
 +| :::| minecraft:copper_ore| mythicmetals |
 +| :::| minecraft:deepslate_copper_ore| mythicmetals |
 | c:crop_like| minecraft:beetroots| sweed | | c:crop_like| minecraft:beetroots| sweed |
 | :::| minecraft:carrots| sweed | | :::| minecraft:carrots| sweed |
Line 2353: Line 3689:
 | c:diamond_blocks| minecraft:diamond_block| astromine-discoveries, astromine-foundations | | c:diamond_blocks| minecraft:diamond_block| astromine-discoveries, astromine-foundations |
 | c:diamond_gravels| gravel-ores:diamond_gravel| gravel-ores | | c:diamond_gravels| gravel-ores:diamond_gravel| gravel-ores |
-| c:diamond_ores| minecraft:diamond_ore| randomtech, astromine-discoveries, astromine-foundations |+| c:diamond_ores| minecraft:diamond_ore| astromine-discoveries, astromine-foundations, randomtech |
 | :::| #c:asteroid_diamond_ores| astromine-discoveries | | :::| #c:asteroid_diamond_ores| astromine-discoveries |
 | :::| bno:netherdiamond_ore| bno | | :::| bno:netherdiamond_ore| bno |
 | :::| gravel-ores:diamond_gravel| gravel-ores | | :::| gravel-ores:diamond_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_diamond_ore| unearthed | 
-| :::| unearthed:gabbro_diamond_ore| unearthed | 
-| :::| unearthed:pumice_diamond_ore| unearthed | 
-| :::| unearthed:kimberlite_diamond_ore| unearthed | 
-| :::| unearthed:rhyolite_diamond_ore| unearthed | 
-| :::| unearthed:slate_diamond_ore| unearthed | 
-| :::| unearthed:marble_diamond_ore| unearthed | 
-| :::| unearthed:quartzite_diamond_ore| unearthed | 
-| :::| unearthed:phyllite_diamond_ore| unearthed | 
-| :::| unearthed:schist_diamond_ore| unearthed | 
-| :::| unearthed:limestone_diamond_ore| unearthed | 
-| :::| unearthed:lignite_diamond_ore| unearthed | 
-| :::| unearthed:siltstone_diamond_ore| unearthed | 
-| :::| unearthed:mudstone_diamond_ore| unearthed | 
-| :::| unearthed:conglomerate_diamond_ore| unearthed | 
 | c:dirt| byg:meadow_grass_block| byg | | c:dirt| byg:meadow_grass_block| byg |
 | :::| byg:meadow_dirt| byg | | :::| byg:meadow_dirt| byg |
Line 2384: Line 3705:
 | :::| byg:ether_phylium| byg | | :::| byg:ether_phylium| byg |
 | :::| byg:vermilion_sculk| byg | | :::| byg:vermilion_sculk| byg |
 +| :::| byg:ivis_phylium| byg |
 +| :::| byg:nightshade_phylium| byg |
 +| :::| byg:shulkren_phylium| byg |
 +| :::| byg:bulbis_phycelium| byg |
 | :::| minecraft:dirt| byg, gobber2, spatialharvesters | | :::| minecraft:dirt| byg, gobber2, spatialharvesters |
 +| :::| minecraft:grass_block| byg, gobber2 |
 +| :::| minecraft:coarse_dirt| byg, gobber2 |
 | :::| minecraft:podzol| byg, gobber2 | | :::| minecraft:podzol| byg, gobber2 |
 | :::| minecraft:mycelium| byg, gobber2 | | :::| minecraft:mycelium| byg, gobber2 |
-| :::| minecraft:coarse_dirt| byg, gobber2 | 
-| :::| minecraft:grass_block| byg, gobber2 | 
 | c:discordium_blocks| mythicmetals:discordium_block| mythicmetals | | c:discordium_blocks| mythicmetals:discordium_block| mythicmetals |
 +| c:double_compressed_dirt| prefab:block_double_compressed_dirt| prefab |
 +| c:double_compressed_glow_stone| prefab:block_double_compressed_glowstone| prefab |
 +| c:double_compressed_obsidian| prefab:block_double_compressed_obsidian| prefab |
 +| c:double_compressed_stone| prefab:block_double_compressed_stone| prefab |
 +| c:dragon_immune| betterend:flavolite_stairs| betterend |
 +| :::| betterend:violecite_stairs| betterend |
 +| :::| betterend:eternal_pedestal| betterend |
 +| :::| betterend:flavolite| betterend |
 +| :::| betterend:thallasium_ore| betterend |
 +| :::| betterend:violecite_slab| betterend |
 +| :::| betterend:flavolite_wall| betterend |
 +| :::| betterend:azure_jadestone_wall| betterend |
 +| :::| betterend:sulphuric_rock_stairs| betterend |
 +| :::| betterend:sulphuric_rock_slab| betterend |
 +| :::| betterend:flavolite_runed_eternal| betterend |
 +| :::| betterend:flavolite_runed| betterend |
 +| :::| betterend:flavolite_slab| betterend |
 +| :::| betterend:sulphuric_rock| betterend |
 +| :::| betterend:sulphuric_rock_wall| betterend |
 +| :::| betterend:sandy_jadestone_stairs| betterend |
 +| :::| betterend:violecite_wall| betterend |
 +| :::| betterend:azure_jadestone| betterend |
 +| :::| betterend:ender_ore| betterend |
 +| :::| betterend:virid_jadestone_slab| betterend |
 +| :::| betterend:umbralith_wall| betterend |
 +| :::| betterend:azure_jadestone_stairs| betterend |
 +| :::| betterend:terminite_bars| betterend |
 +| :::| betterend:violecite| betterend |
 +| :::| betterend:sandy_jadestone_slab| betterend |
 +| :::| betterend:sandy_jadestone| betterend |
 +| :::| betterend:sandy_jadestone_wall| betterend |
 +| :::| betterend:virid_jadestone_wall| betterend |
 +| :::| betterend:umbralith_slab| betterend |
 +| :::| betterend:virid_jadestone| betterend |
 +| :::| betterend:virid_jadestone_stairs| betterend |
 +| :::| betterend:umbralith_stairs| betterend |
 +| :::| betterend:azure_jadestone_slab| betterend |
 +| :::| betterend:umbralith| betterend |
 +| :::| betterend:thallasium_bars| betterend |
 | c:durasteel_blocks| mythicmetals:durasteel_block| mythicmetals | | c:durasteel_blocks| mythicmetals:durasteel_block| mythicmetals |
 | c:electrum_blocks| astromine:electrum_block| astromine-discoveries, astromine-foundations | | c:electrum_blocks| astromine:electrum_block| astromine-discoveries, astromine-foundations |
 | :::| c:electrum_block| cotton-resources | | :::| c:electrum_block| cotton-resources |
 +| :::| indrev:electrum_block| indrev |
 | :::| mythicmetals:electrum_block| mythicmetals | | :::| mythicmetals:electrum_block| mythicmetals |
 | :::| techreborn:electrum_storage_block| techreborn | | :::| techreborn:electrum_storage_block| techreborn |
Line 2398: Line 3763:
 | c:emerald_blocks| minecraft:emerald_block| astromine-discoveries, astromine-foundations | | c:emerald_blocks| minecraft:emerald_block| astromine-discoveries, astromine-foundations |
 | c:emerald_gravels| gravel-ores:emerald_gravel| gravel-ores | | c:emerald_gravels| gravel-ores:emerald_gravel| gravel-ores |
-| c:emerald_ores| minecraft:emerald_ore| randomtech, astromine-discoveries, astromine-foundations |+| c:emerald_ores| minecraft:emerald_ore| astromine-discoveries, astromine-foundations, randomtech |
 | :::| #c:asteroid_emerald_ores| astromine-discoveries | | :::| #c:asteroid_emerald_ores| astromine-discoveries |
 | :::| bno:netheremerald_ore| bno | | :::| bno:netheremerald_ore| bno |
 | :::| gravel-ores:emerald_gravel| gravel-ores | | :::| gravel-ores:emerald_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_emerald_ore| unearthed | 
-| :::| unearthed:gabbro_emerald_ore| unearthed | 
-| :::| unearthed:pumice_emerald_ore| unearthed | 
-| :::| unearthed:kimberlite_emerald_ore| unearthed | 
-| :::| unearthed:rhyolite_emerald_ore| unearthed | 
-| :::| unearthed:slate_emerald_ore| unearthed | 
-| :::| unearthed:marble_emerald_ore| unearthed | 
-| :::| unearthed:quartzite_emerald_ore| unearthed | 
-| :::| unearthed:phyllite_emerald_ore| unearthed | 
-| :::| unearthed:schist_emerald_ore| unearthed | 
-| :::| unearthed:limestone_emerald_ore| unearthed | 
-| :::| unearthed:lignite_emerald_ore| unearthed | 
-| :::| unearthed:siltstone_emerald_ore| unearthed | 
-| :::| unearthed:mudstone_emerald_ore| unearthed | 
-| :::| unearthed:conglomerate_emerald_ore| unearthed | 
 | c:end_stones| byg:ivis_phylium| byg | | c:end_stones| byg:ivis_phylium| byg |
 | :::| byg:ether_stone| byg | | :::| byg:ether_stone| byg |
Line 2426: Line 3776:
 | :::| byg:cryptic_stone| byg | | :::| byg:cryptic_stone| byg |
 | :::| byg:cryptic_magma_block| byg | | :::| byg:cryptic_magma_block| byg |
-| :::| minecraft:end_stone| cotton-resources, gobber2 |+| :::| byg:bulbis_phycelium| byg | 
 +| :::| byg:purpur_stone| byg | 
 +| :::| minecraft:end_stone| gobber2, cotton-resources 
 +| :::| betterend:flavolite| betterend | 
 +| :::| betterend:thallasium_ore| betterend | 
 +| :::| betterend:end_moss| betterend | 
 +| :::| betterend:jungle_moss| betterend | 
 +| :::| betterend:pallidium_thin| betterend | 
 +| :::| betterend:sulphuric_rock| betterend | 
 +| :::| betterend:cave_moss| betterend | 
 +| :::| betterend:brimstone| betterend | 
 +| :::| betterend:end_mycelium| betterend | 
 +| :::| betterend:azure_jadestone| betterend | 
 +| :::| betterend:crystal_moss| betterend | 
 +| :::| betterend:ender_ore| betterend | 
 +| :::| betterend:chorus_nylium| betterend | 
 +| :::| betterend:pink_moss| betterend | 
 +| :::| betterend:violecite| betterend | 
 +| :::| betterend:endstone_dust| betterend | 
 +| :::| betterend:sangnum| betterend | 
 +| :::| betterend:rutiscus| betterend | 
 +| :::| betterend:amber_moss| betterend | 
 +| :::| betterend:sandy_jadestone| betterend | 
 +| :::| betterend:pallidium_full| betterend | 
 +| :::| betterend:virid_jadestone| betterend | 
 +| :::| betterend:umbralith| betterend | 
 +| :::| betterend:pallidium_tiny| betterend | 
 +| :::| betterend:amber_ore| betterend | 
 +| :::| betterend:shadow_grass| betterend | 
 +| :::| betterend:pallidium_heavy| betterend |
 | c:etherite_blocks| mythicmetals:etherite_block| mythicmetals | | c:etherite_blocks| mythicmetals:etherite_block| mythicmetals |
 +| c:farmlands| minecraft:farmland| croptosis |
 +| :::| croptosis:fertilized_farmland| croptosis |
 | c:fence_gates| byg:aspen_fence_gate| byg | | c:fence_gates| byg:aspen_fence_gate| byg |
 | :::| byg:baobab_fence_gate| byg | | :::| byg:baobab_fence_gate| byg |
Line 2454: Line 3835:
 | :::| byg:lament_fence_gate| byg | | :::| byg:lament_fence_gate| byg |
 | c:ferrite_blocks| mythicmetals:ferrite_block| mythicmetals | | c:ferrite_blocks| mythicmetals:ferrite_block| mythicmetals |
 +| c:flowers| byg:horseweed| byg |
 +| :::| byg:winter_succulent| byg |
 +| :::| byg:tall_prairie_grass| byg |
 +| :::| byg:tall_allium| byg |
 +| :::| byg:tall_pink_allium| byg |
 +| :::| byg:alpine_bellflower| byg |
 +| :::| byg:angelica| byg |
 +| :::| byg:azalea| byg |
 +| :::| byg:begonia| byg |
 +| :::| byg:bistort| byg |
 +| :::| byg:blue_sage| byg |
 +| :::| byg:california_poppy| byg |
 +| :::| byg:crocus| byg |
 +| :::| byg:black_rose| byg |
 +| :::| byg:cyan_rose| byg |
 +| :::| byg:cyan_tulip| byg |
 +| :::| byg:daffodil| byg |
 +| :::| byg:delphinium| byg |
 +| :::| byg:firecracker_flower_bush| byg |
 +| :::| byg:foxglove| byg |
 +| :::| byg:green_tulip| byg |
 +| :::| byg:guzmania| byg |
 +| :::| byg:incan_lily| byg |
 +| :::| byg:iris| byg |
 +| :::| byg:japanese_orchid| byg |
 +| :::| byg:kovan_flower| byg |
 +| :::| byg:lazarus_bellflower| byg |
 +| :::| byg:lolipop_flower| byg |
 +| :::| byg:magenta_tulip| byg |
 +| :::| byg:orange_daisy| byg |
 +| :::| byg:osiria_rose| byg |
 +| :::| byg:peach_leather_flower| byg |
 +| :::| byg:pink_allium| byg |
 +| :::| byg:pink_anemone| byg |
 +| :::| byg:pink_daffodil| byg |
 +| :::| byg:pink_orchid| byg |
 +| :::| byg:protea_flower| byg |
 +| :::| byg:purple_orchid| byg |
 +| :::| byg:purple_sage| byg |
 +| :::| byg:purple_tulip| byg |
 +| :::| byg:red_cornflower| byg |
 +| :::| byg:red_orchid| byg |
 +| :::| byg:richea| byg |
 +| :::| byg:rose| byg |
 +| :::| byg:silver_vase_flower| byg |
 +| :::| byg:torch_ginger| byg |
 +| :::| byg:violet_leather_flower| byg |
 +| :::| byg:white_anemone| byg |
 +| :::| byg:white_sage| byg |
 +| :::| byg:yellow_daffodil| byg |
 +| :::| byg:yellow_tulip| byg |
 | c:fools_gold_blocks| astromine:fools_gold_block| astromine-discoveries, astromine-foundations | | c:fools_gold_blocks| astromine:fools_gold_block| astromine-discoveries, astromine-foundations |
 | c:galaxium_blocks| astromine:galaxium_block| astromine-discoveries, astromine-foundations | | c:galaxium_blocks| astromine:galaxium_block| astromine-discoveries, astromine-foundations |
 | c:galaxium_ores| #c:asteroid_galaxium_ores| astromine-discoveries | | c:galaxium_ores| #c:asteroid_galaxium_ores| astromine-discoveries |
 | c:galena_ores| techreborn:galena_ore| techreborn | | c:galena_ores| techreborn:galena_ore| techreborn |
-| c:glass| minecraft:glass| artofalchemy | +| :::| techreborn:deepslate_galena_ore| techreborn | 
-| :::| minecraft:white_stained_glass| artofalchemy | +| c:glass| minecraft:glass| prefab, artofalchemy | 
-| :::| minecraft:orange_stained_glass| artofalchemy | +| :::| minecraft:white_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:magenta_stained_glass| artofalchemy | +| :::| minecraft:orange_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:light_blue_stained_glass| artofalchemy | +| :::| minecraft:magenta_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:yellow_stained_glass| artofalchemy | +| :::| minecraft:light_blue_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:lime_stained_glass| artofalchemy | +| :::| minecraft:yellow_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:pink_stained_glass| artofalchemy | +| :::| minecraft:lime_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:gray_stained_glass| artofalchemy | +| :::| minecraft:pink_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:light_gray_stained_glass| artofalchemy | +| :::| minecraft:gray_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:cyan_stained_glass| artofalchemy | +| :::| minecraft:light_gray_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:purple_stained_glass| artofalchemy | +| :::| minecraft:cyan_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:blue_stained_glass| artofalchemy | +| :::| minecraft:purple_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:brown_stained_glass| artofalchemy | +| :::| minecraft:blue_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:green_stained_glass| artofalchemy | +| :::| minecraft:brown_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:red_stained_glass| artofalchemy | +| :::| minecraft:green_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:black_stained_glass| artofalchemy |+| :::| minecraft:red_stained_glass| prefab, artofalchemy | 
 +| :::| minecraft:black_stained_glass| prefab, artofalchemy |
 | c:glass_blocks| minecraft:glass| appliedenergistics2 | | c:glass_blocks| minecraft:glass| appliedenergistics2 |
 | :::| minecraft:white_stained_glass| appliedenergistics2 | | :::| minecraft:white_stained_glass| appliedenergistics2 |
Line 2493: Line 3926:
 | :::| minecraft:black_stained_glass| appliedenergistics2 | | :::| minecraft:black_stained_glass| appliedenergistics2 |
 | c:glowstone_blocks| minecraft:glowstone| astromine-discoveries, astromine-foundations | | c:glowstone_blocks| minecraft:glowstone| astromine-discoveries, astromine-foundations |
-| c:gold_blocks| minecraft:gold_block| astromine-discoveries, astromine-foundations |+| c:gold_blocks| minecraft:gold_block| astromine-discoveries, mythicmetals, astromine-foundations |
 | c:gold_gravels| gravel-ores:gold_gravel| gravel-ores | | c:gold_gravels| gravel-ores:gold_gravel| gravel-ores |
-| c:gold_ores| minecraft:gold_ore| randomtech, astromine-discoveries, astromine-foundations, indrev | +| c:gold_ores| minecraft:gold_ore| astromine-discoveries, astromine-foundations, indrev, randomtech 
-| :::| minecraft:nether_gold_ore| randomtech, indrev |+| :::| minecraft:nether_gold_ore| indrev, randomtech |
 | :::| #c:asteroid_gold_ores| astromine-discoveries | | :::| #c:asteroid_gold_ores| astromine-discoveries |
 | :::| gravel-ores:gold_gravel| gravel-ores | | :::| gravel-ores:gold_gravel| gravel-ores |
 | :::| mythicmetals:midas_gold_ore| mythicmetals | | :::| mythicmetals:midas_gold_ore| mythicmetals |
 +| c:grass| byg:short_grass| byg |
 +| :::| byg:prairie_grass| byg |
 +| :::| byg:ether_grass| byg |
 +| :::| byg:tall_ether_grass| byg |
 +| :::| byg:scorched_grass| byg |
 +| :::| byg:beach_grass| byg |
 +| :::| byg:short_beach_grass| byg |
 +| :::| byg:wilted_grass| byg |
 +| :::| byg:weed_grass| byg |
 +| :::| byg:winter_grass| byg |
 +| :::| byg:tall_prairie_grass| byg |
 | c:grass_like| minecraft:fern| sweed | | c:grass_like| minecraft:fern| sweed |
 | :::| minecraft:grass| sweed | | :::| minecraft:grass| sweed |
Line 2506: Line 3950:
 | :::| minecraft:tall_grass| sweed | | :::| minecraft:tall_grass| sweed |
 | c:gravel| minecraft:gravel| spatialharvesters | | c:gravel| minecraft:gravel| spatialharvesters |
 +| :::| unearthed:pyroxene| unearthed |
 +| c:immobile| betternether:obsidian_glass| betternether |
 +| :::| betternether:blue_obsidian_bricks_stairs| betternether |
 +| :::| betternether:blue_obsidian_bricks_slab| betternether |
 +| :::| betternether:obsidian_rod_tiles| betternether |
 +| :::| betternether:blue_obsidian_glass| betternether |
 +| :::| betternether:obsidian_tile| betternether |
 +| :::| betternether:blue_obsidian| betternether |
 +| :::| betternether:blue_obsidian_tile_small| betternether |
 +| :::| betternether:obsidian_bricks_stairs| betternether |
 +| :::| betternether:obsidian_tile_small| betternether |
 +| :::| betternether:obsidian_tile_slab| betternether |
 +| :::| betternether:weeping_obsidian| betternether |
 +| :::| betternether:blue_obsidian_rod_tiles| betternether |
 +| :::| betternether:blue_obsidian_bricks| betternether |
 +| :::| betternether:blue_crying_obsidian| betternether |
 +| :::| betternether:blue_obsidian_tile_slab| betternether |
 +| :::| betternether:blue_obsidian_tile_stairs| betternether |
 +| :::| betternether:obsidian_bricks_slab| betternether |
 +| :::| betternether:blue_obsidian_tile| betternether |
 +| :::| betternether:blue_weeping_obsidian| betternether |
 +| :::| betternether:obsidian_bricks| betternether |
 +| :::| betternether:obsidian_tile_stairs| betternether |
 | c:invar_blocks| techreborn:invar_storage_block| techreborn | | c:invar_blocks| techreborn:invar_storage_block| techreborn |
 | c:iridium_blocks| c:iridium_block| cotton-resources | | c:iridium_blocks| c:iridium_block| cotton-resources |
Line 2513: Line 3980:
 | :::| c:iridium_end_ore| cotton-resources | | :::| c:iridium_end_ore| cotton-resources |
 | :::| techreborn:iridium_ore| techreborn | | :::| techreborn:iridium_ore| techreborn |
 +| :::| techreborn:deepslate_iridium_ore| techreborn |
 | c:iridium_reinforced_stone_blocks| techreborn:iridium_reinforced_stone_storage_block| techreborn | | c:iridium_reinforced_stone_blocks| techreborn:iridium_reinforced_stone_storage_block| techreborn |
 | c:iridium_reinforced_tungstensteel_blocks| techreborn:iridium_reinforced_tungstensteel_storage_block| techreborn | | c:iridium_reinforced_tungstensteel_blocks| techreborn:iridium_reinforced_tungstensteel_storage_block| techreborn |
 | c:iron_blocks| minecraft:iron_block| astromine-discoveries, astromine-foundations | | c:iron_blocks| minecraft:iron_block| astromine-discoveries, astromine-foundations |
 | c:iron_gravels| gravel-ores:iron_gravel| gravel-ores | | c:iron_gravels| gravel-ores:iron_gravel| gravel-ores |
-| c:iron_ores| minecraft:iron_ore| randomtech, astromine-discoveries, astromine-foundations, indrev, unearthed |+| c:iron_ores| minecraft:iron_ore| astromine-discoveries, astromine-foundations, indrev, randomtech |
 | :::| #c:asteroid_iron_ores| astromine-discoveries | | :::| #c:asteroid_iron_ores| astromine-discoveries |
 | :::| bno:netheriron_ore| bno | | :::| bno:netheriron_ore| bno |
 | :::| gravel-ores:iron_gravel| gravel-ores | | :::| gravel-ores:iron_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_iron_ore| unearthed | 
-| :::| unearthed:gabbro_iron_ore| unearthed | 
-| :::| unearthed:pumice_iron_ore| unearthed | 
-| :::| unearthed:kimberlite_iron_ore| unearthed | 
-| :::| unearthed:rhyolite_iron_ore| unearthed | 
-| :::| unearthed:slate_iron_ore| unearthed | 
-| :::| unearthed:marble_iron_ore| unearthed | 
-| :::| unearthed:quartzite_iron_ore| unearthed | 
-| :::| unearthed:phyllite_iron_ore| unearthed | 
-| :::| unearthed:schist_iron_ore| unearthed | 
-| :::| unearthed:limestone_iron_ore| unearthed | 
-| :::| unearthed:lignite_iron_ore| unearthed | 
-| :::| unearthed:siltstone_iron_ore| unearthed | 
-| :::| unearthed:mudstone_iron_ore| unearthed | 
-| :::| unearthed:conglomerate_iron_ore| unearthed | 
 | c:kyber_blocks| mythicmetals:kyber_block| mythicmetals | | c:kyber_blocks| mythicmetals:kyber_block| mythicmetals |
 | c:kyber_ores| mythicmetals:kyber_ore| mythicmetals | | c:kyber_ores| mythicmetals:kyber_ore| mythicmetals |
-| c:lapis_blocks| minecraft:lapis_block| astromine-discoveries, astromine-foundations |+| c:lapis_blocks| minecraft:lapis_block| astromine-discoveries, botania, astromine-foundations |
 | c:lapis_gravels| gravel-ores:lapis_gravel| gravel-ores | | c:lapis_gravels| gravel-ores:lapis_gravel| gravel-ores |
-| c:lapis_ores| minecraft:lapis_ore| randomtech, astromine-discoveries, astromine-foundations |+| c:lapis_ores| minecraft:lapis_ore| astromine-discoveries, astromine-foundations, randomtech |
 | :::| #c:asteroid_lapis_ores| astromine-discoveries | | :::| #c:asteroid_lapis_ores| astromine-discoveries |
 | :::| bno:netherlapis_ore| bno | | :::| bno:netherlapis_ore| bno |
 | :::| gravel-ores:lapis_gravel| gravel-ores | | :::| gravel-ores:lapis_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_lapis_ore| unearthed | 
-| :::| unearthed:gabbro_lapis_ore| unearthed | 
-| :::| unearthed:pumice_lapis_ore| unearthed | 
-| :::| unearthed:kimberlite_lapis_ore| unearthed | 
-| :::| unearthed:rhyolite_lapis_ore| unearthed | 
-| :::| unearthed:slate_lapis_ore| unearthed | 
-| :::| unearthed:marble_lapis_ore| unearthed | 
-| :::| unearthed:quartzite_lapis_ore| unearthed | 
-| :::| unearthed:phyllite_lapis_ore| unearthed | 
-| :::| unearthed:schist_lapis_ore| unearthed | 
-| :::| unearthed:limestone_lapis_ore| unearthed | 
-| :::| unearthed:lignite_lapis_ore| unearthed | 
-| :::| unearthed:siltstone_lapis_ore| unearthed | 
-| :::| unearthed:mudstone_lapis_ore| unearthed | 
-| :::| unearthed:conglomerate_lapis_ore| unearthed | 
 | c:lead_blocks| astromine:lead_block| astromine-discoveries, astromine-foundations | | c:lead_blocks| astromine:lead_block| astromine-discoveries, astromine-foundations |
 | :::| bno:lead_block| bno | | :::| bno:lead_block| bno |
 | :::| c:lead_block| cotton-resources | | :::| c:lead_block| cotton-resources |
 +| :::| indrev:lead_block| indrev |
 | :::| techreborn:lead_storage_block| techreborn | | :::| techreborn:lead_storage_block| techreborn |
 | :::| texp:lead_block| texp | | :::| texp:lead_block| texp |
Line 2570: Line 4009:
 | :::| c:lead_nether_ore| cotton-resources | | :::| c:lead_nether_ore| cotton-resources |
 | :::| c:lead_end_ore| cotton-resources | | :::| c:lead_end_ore| cotton-resources |
 +| :::| indrev:lead_ore| indrev |
 | :::| techreborn:lead_ore| techreborn | | :::| techreborn:lead_ore| techreborn |
 | :::| texp:lead_ore| texp | | :::| texp:lead_ore| texp |
 +| :::| indrev:deepslate_lead_ore| indrev |
 +| :::| techreborn:deepslate_lead_ore| techreborn |
 +| c:leaves| betterend:tenanea_leaves| betterend |
 +| :::| betterend:pythadendron_leaves| betterend |
 +| :::| betterend:lucernia_leaves| betterend |
 +| :::| betterend:lacugrove_leaves| betterend |
 +| :::| betterend:dragon_tree_leaves| betterend |
 +| :::| betternether:anchor_tree_leaves| betternether |
 +| :::| betternether:rubeus_leaves| betternether |
 +| :::| betternether:nether_sakura_leaves| betternether |
 +| :::| betternether:willow_leaves| betternether |
 | c:limestone| blockus:limestone| blockus | | c:limestone| blockus:limestone| blockus |
 | :::| blockus:limestone_bricks| blockus | | :::| blockus:limestone_bricks| blockus |
Line 2577: Line 4028:
 | :::| blockus:chiseled_limestone| blockus | | :::| blockus:chiseled_limestone| blockus |
 | :::| blockus:limestone_circle_pavement| blockus | | :::| blockus:limestone_circle_pavement| blockus |
-| c:logs_with_bark| minecraft:oak_log| alaskanativecraft | 
-| :::| minecraft:spruce_log| alaskanativecraft | 
-| :::| minecraft:birch_log| alaskanativecraft | 
-| :::| minecraft:jungle_log| alaskanativecraft | 
-| :::| minecraft:acacia_log| alaskanativecraft | 
-| :::| minecraft:dark_oak_log| alaskanativecraft | 
-| :::| minecraft:warped_stem| alaskanativecraft | 
-| :::| minecraft:crimson_stem| alaskanativecraft | 
-| :::| minecraft:oak_wood| alaskanativecraft | 
-| :::| minecraft:spruce_wood| alaskanativecraft | 
-| :::| minecraft:birch_wood| alaskanativecraft | 
-| :::| minecraft:jungle_wood| alaskanativecraft | 
-| :::| minecraft:acacia_wood| alaskanativecraft | 
-| :::| minecraft:dark_oak_wood| alaskanativecraft | 
-| :::| minecraft:warped_hyphae| alaskanativecraft | 
-| :::| minecraft:crimson_hyphae| alaskanativecraft | 
 | c:lunum_blocks| astromine:lunum_block| astromine-discoveries, astromine-foundations | | c:lunum_blocks| astromine:lunum_block| astromine-discoveries, astromine-foundations |
 | c:lunum_ores| #c:moon_lunum_ores| astromine-discoveries | | c:lunum_ores| #c:moon_lunum_ores| astromine-discoveries |
Line 2614: Line 4049:
 | c:midas_gold_ores| mythicmetals:midas_gold_ore| mythicmetals | | c:midas_gold_ores| mythicmetals:midas_gold_ore| mythicmetals |
 | c:moon_lunum_ores| {'id': 'astromine:moon_lunum_ore', 'required': False}| astromine-discoveries, astromine-foundations | | c:moon_lunum_ores| {'id': 'astromine:moon_lunum_ore', 'required': False}| astromine-discoveries, astromine-foundations |
 +| c:mushrooms| botania:white_mushroom| botania |
 +| :::| botania:orange_mushroom| botania |
 +| :::| botania:magenta_mushroom| botania |
 +| :::| botania:light_blue_mushroom| botania |
 +| :::| botania:yellow_mushroom| botania |
 +| :::| botania:lime_mushroom| botania |
 +| :::| botania:pink_mushroom| botania |
 +| :::| botania:gray_mushroom| botania |
 +| :::| botania:light_gray_mushroom| botania |
 +| :::| botania:cyan_mushroom| botania |
 +| :::| botania:purple_mushroom| botania |
 +| :::| botania:blue_mushroom| botania |
 +| :::| botania:brown_mushroom| botania |
 +| :::| botania:green_mushroom| botania |
 +| :::| botania:red_mushroom| botania |
 +| :::| botania:black_mushroom| botania |
 | c:mythril_blocks| mythicmetals:mythril_block| mythicmetals | | c:mythril_blocks| mythicmetals:mythril_block| mythicmetals |
 | c:mythril_ores| mythicmetals:mythril_ore| mythicmetals | | c:mythril_ores| mythicmetals:mythril_ore| mythicmetals |
 +| :::| mythicmetals:deepslate_mythril_ore| mythicmetals |
 | c:natural_stones| minecraft:stone| cotton-resources | | c:natural_stones| minecraft:stone| cotton-resources |
 | :::| minecraft:andesite| cotton-resources | | :::| minecraft:andesite| cotton-resources |
 | :::| minecraft:diorite| cotton-resources | | :::| minecraft:diorite| cotton-resources |
 | :::| minecraft:granite| cotton-resources | | :::| minecraft:granite| cotton-resources |
 +| c:nether_mycelium| betternether:nether_mycelium| betternether |
 +| c:nether_pframe| betternether:obsidian_glass| betternether |
 +| :::| betternether:blue_obsidian_bricks| betternether |
 +| :::| betternether:obsidian_rod_tiles| betternether |
 +| :::| betternether:blue_obsidian_glass| betternether |
 +| :::| betternether:obsidian_tile| betternether |
 +| :::| betternether:blue_obsidian| betternether |
 +| :::| betternether:blue_obsidian_tile_small| betternether |
 +| :::| betternether:obsidian_tile_small| betternether |
 +| :::| betternether:blue_obsidian_tile| betternether |
 +| :::| betternether:obsidian_bricks| betternether |
 +| :::| betternether:blue_obsidian_rod_tiles| betternether |
 +| c:nether_stones| betternether:sepia_mushroom_grass| betternether |
 +| :::| betternether:mushroom_grass| betternether |
 +| :::| betternether:swampland_grass| betternether |
 +| :::| betternether:ceiling_mushrooms| betternether |
 +| :::| betternether:jungle_grass| betternether |
 +| :::| betternether:netherrack_moss| betternether |
 | c:netherite_blocks| minecraft:netherite_block| astromine-discoveries, astromine-foundations | | c:netherite_blocks| minecraft:netherite_block| astromine-discoveries, astromine-foundations |
 | c:netherrack| byg:overgrown_netherrack| byg | | c:netherrack| byg:overgrown_netherrack| byg |
Line 2627: Line 4097:
 | :::| byg:embur_nylium| byg | | :::| byg:embur_nylium| byg |
 | :::| byg:sythian_nylium| byg | | :::| byg:sythian_nylium| byg |
-| :::| minecraft:netherrack| gobber2 |+| :::| minecraft:netherrack| betternether, gobber2 
 +| :::| minecraft:nether_quartz_ore| betternether | 
 +| :::| minecraft:nether_gold_ore| betternether | 
 +| :::| minecraft:crimson_nylium| betternether | 
 +| :::| minecraft:warped_nylium| betternether | 
 +| :::| betternether:nether_ruby_ore| betternether | 
 +| :::| betternether:sepia_mushroom_grass| betternether | 
 +| :::| betternether:mushroom_grass| betternether | 
 +| :::| betternether:swampland_grass| betternether | 
 +| :::| betternether:ceiling_mushrooms| betternether | 
 +| :::| betternether:jungle_grass| betternether | 
 +| :::| betternether:netherrack_moss| betternether | 
 +| :::| betternether:cincinnasite_ore| betternether | 
 +| :::| betternether:nether_redstone_ore| betternether | 
 +| :::| betternether:nether_lapis_ore| betternether | 
 +| :::| betternether:farmland| betternether |
 | c:netherracks| minecraft:netherrack| cotton-resources | | c:netherracks| minecraft:netherrack| cotton-resources |
 | c:nickel_blocks| bno:nickel_block| bno | | c:nickel_blocks| bno:nickel_block| bno |
Line 2635: Line 4120:
 | :::| mw:nickel_ore| mw | | :::| mw:nickel_ore| mw |
 | :::| texp:nickel_ore| texp | | :::| texp:nickel_ore| texp |
 +| c:ores| byg:pendorite_ore| byg |
 +| :::| byg:ametrine_ore| byg |
 +| :::| #c:certus_quartz_ores| ae2 |
 +| :::| #minecraft:coal_ores| bewitchment, botania |
 +| :::| #minecraft:copper_ores| bewitchment, botania |
 +| :::| #minecraft:iron_ores| bewitchment, botania |
 +| :::| #minecraft:gold_ores| bewitchment, botania |
 +| :::| #minecraft:lapis_ores| bewitchment, botania |
 +| :::| #minecraft:redstone_ores| bewitchment, botania |
 +| :::| #minecraft:diamond_ores| bewitchment, botania |
 +| :::| #minecraft:emerald_ores| bewitchment, botania |
 +| :::| nether_quartz_ore| bewitchment |
 +| :::| ancient_debris| bewitchment |
 +| :::| #c:silver_ores| bewitchment |
 +| :::| #c:salt_ores| bewitchment |
 +| c:ores/coal| #unearthed:coal_ores| unearthed |
 +| c:ores/diamond| #unearthed:diamond_ores| unearthed |
 +| c:ores/emerald| #unearthed:emerald_ores| unearthed |
 +| c:ores/gold| #unearthed:gold_ores| unearthed |
 +| c:ores/iron| #unearthed:iron_ores| unearthed |
 +| c:ores/lapis| #unearthed:lapis_ores| unearthed |
 +| c:ores/redstone| #unearthed:redstone_ores| unearthed |
 | c:orichalcum_blocks| mythicmetals:orichalcum_block| mythicmetals | | c:orichalcum_blocks| mythicmetals:orichalcum_block| mythicmetals |
 | c:orichalcum_ores| mythicmetals:orichalcum_ore| mythicmetals | | c:orichalcum_ores| mythicmetals:orichalcum_ore| mythicmetals |
 +| :::| mythicmetals:deepslate_orichalcum_ore| mythicmetals |
 +| :::| mythicmetals:smooth_basalt_orichalcum_ore| mythicmetals |
 +| :::| mythicmetals:tuff_orichalcum_ore| mythicmetals |
 | c:osmium_blocks| bno:osmium_block| bno | | c:osmium_blocks| bno:osmium_block| bno |
 | :::| c:osmium_block| cotton-resources | | :::| c:osmium_block| cotton-resources |
Line 2646: Line 4156:
 | :::| mythicmetals:osmium_ore| mythicmetals | | :::| mythicmetals:osmium_ore| mythicmetals |
 | c:palladium_blocks| c:palladium_block| cotton-resources | | c:palladium_blocks| c:palladium_block| cotton-resources |
 +| :::| mythicmetals:palladium_block| mythicmetals |
 | c:palladium_ores| c:palladium_ore| cotton-resources | | c:palladium_ores| c:palladium_ore| cotton-resources |
 | :::| c:palladium_nether_ore| cotton-resources | | :::| c:palladium_nether_ore| cotton-resources |
 | :::| c:palladium_end_ore| cotton-resources | | :::| c:palladium_end_ore| cotton-resources |
 +| :::| mythicmetals:palladium_ore| mythicmetals |
 | c:peridot_blocks| c:peridot_block| cotton-resources | | c:peridot_blocks| c:peridot_block| cotton-resources |
 | :::| techreborn:peridot_storage_block| techreborn | | :::| techreborn:peridot_storage_block| techreborn |
Line 2655: Line 4167:
 | :::| c:peridot_end_ore| cotton-resources | | :::| c:peridot_end_ore| cotton-resources |
 | :::| techreborn:peridot_ore| techreborn | | :::| techreborn:peridot_ore| techreborn |
 +| :::| techreborn:deepslate_peridot_ore| techreborn |
 +| c:pink_sand| byg:pink_sand| byg |
 +| c:planks_that_burn| minecraft:oak_planks| blockus |
 +| :::| minecraft:spruce_planks| blockus |
 +| :::| minecraft:birch_planks| blockus |
 +| :::| minecraft:jungle_planks| blockus |
 +| :::| minecraft:acacia_planks| blockus |
 +| :::| minecraft:dark_oak_planks| blockus |
 +| :::| blockus:bamboo_planks| blockus |
 +| :::| blockus:white_oak_planks| blockus |
 | c:platinum_blocks| c:platinum_block| cotton-resources | | c:platinum_blocks| c:platinum_block| cotton-resources |
 | :::| mythicmetals:platinum_block| mythicmetals | | :::| mythicmetals:platinum_block| mythicmetals |
Line 2666: Line 4188:
 | :::| texp:platinum_ore| texp | | :::| texp:platinum_ore| texp |
 | c:plutonium_blocks| c:plutonium_block| cotton-resources | | c:plutonium_blocks| c:plutonium_block| cotton-resources |
 +| c:pollen| the_bumblezone:pile_of_pollen| the_bumblezone |
 | c:prehistoric_calamites_logs| eymbra:prehistoric_calamites_log| eymbra | | c:prehistoric_calamites_logs| eymbra:prehistoric_calamites_log| eymbra |
 | c:prehistoric_darkwood_logs| eymbra:prehistoric_darkwood_log| eymbra | | c:prehistoric_darkwood_logs| eymbra:prehistoric_darkwood_log| eymbra |
Line 2672: Line 4195:
 | c:prometheum_blocks| mythicmetals:prometheum_block| mythicmetals | | c:prometheum_blocks| mythicmetals:prometheum_block| mythicmetals |
 | c:prometheum_ores| mythicmetals:prometheum_ore| mythicmetals | | c:prometheum_ores| mythicmetals:prometheum_ore| mythicmetals |
 +| c:purple_sand| byg:purple_sand| byg |
 | c:purpur_blocks| minecraft:purpur_block| astromine-discoveries, astromine-foundations | | c:purpur_blocks| minecraft:purpur_block| astromine-discoveries, astromine-foundations |
 | c:pyrite_blocks| #c:fools_gold_blocks| astromine-foundations | | c:pyrite_blocks| #c:fools_gold_blocks| astromine-foundations |
Line 2678: Line 4202:
 | c:quadrillum_ores| mythicmetals:quadrillum_ore| mythicmetals | | c:quadrillum_ores| mythicmetals:quadrillum_ore| mythicmetals |
 | c:quartz_blocks| minecraft:quartz_block| astromine-discoveries, astromine-foundations | | c:quartz_blocks| minecraft:quartz_block| astromine-discoveries, astromine-foundations |
-| c:quartz_ores| minecraft:nether_quartz_ore| randomtech, astromine-discoveries, astromine-foundations |+| :::| botania:dark_quartz| botania | 
 +| :::| botania:mana_quartz| botania | 
 +| :::| botania:blaze_quartz| botania | 
 +| :::| botania:lavender_quartz| botania | 
 +| :::| botania:red_quartz| botania | 
 +| :::| botania:elf_quartz| botania | 
 +| :::| botania:sunny_quartz| botania | 
 +| c:quartz_ores| minecraft:nether_quartz_ore| astromine-discoveries, astromine-foundations, randomtech |
 | c:quicksilver_blocks| mythicmetals:quicksilver_block| mythicmetals | | c:quicksilver_blocks| mythicmetals:quicksilver_block| mythicmetals |
 +| c:raw_silver_blocks| bewitchment:raw_silver_block| bewitchment |
 | c:red_garnet_blocks| techreborn:red_garnet_storage_block| techreborn | | c:red_garnet_blocks| techreborn:red_garnet_storage_block| techreborn |
 | c:red_sandstones| minecraft:red_sandstone| astromine-discoveries, astromine-foundations | | c:red_sandstones| minecraft:red_sandstone| astromine-discoveries, astromine-foundations |
 | c:redstone_blocks| minecraft:redstone_block| astromine-discoveries, astromine-foundations | | c:redstone_blocks| minecraft:redstone_block| astromine-discoveries, astromine-foundations |
 | c:redstone_gravels| gravel-ores:redstone_gravel| gravel-ores | | c:redstone_gravels| gravel-ores:redstone_gravel| gravel-ores |
-| c:redstone_ores| minecraft:redstone_ore| randomtech, astromine-discoveries, astromine-foundations |+| c:redstone_ores| minecraft:redstone_ore| astromine-discoveries, astromine-foundations, randomtech |
 | :::| #c:asteroid_redstone_ores| astromine-discoveries | | :::| #c:asteroid_redstone_ores| astromine-discoveries |
 | :::| bno:netherredstone_ore| bno | | :::| bno:netherredstone_ore| bno |
 | :::| gravel-ores:redstone_gravel| gravel-ores | | :::| gravel-ores:redstone_gravel| gravel-ores |
-| :::| unearthed:gray_basalt_redstone_ore| unearthed | 
-| :::| unearthed:gabbro_redstone_ore| unearthed | 
-| :::| unearthed:pumice_redstone_ore| unearthed | 
-| :::| unearthed:kimberlite_redstone_ore| unearthed | 
-| :::| unearthed:rhyolite_redstone_ore| unearthed | 
-| :::| unearthed:slate_redstone_ore| unearthed | 
-| :::| unearthed:marble_redstone_ore| unearthed | 
-| :::| unearthed:quartzite_redstone_ore| unearthed | 
-| :::| unearthed:phyllite_redstone_ore| unearthed | 
-| :::| unearthed:schist_redstone_ore| unearthed | 
-| :::| unearthed:limestone_redstone_ore| unearthed | 
-| :::| unearthed:lignite_redstone_ore| unearthed | 
-| :::| unearthed:siltstone_redstone_ore| unearthed | 
-| :::| unearthed:mudstone_redstone_ore| unearthed | 
-| :::| unearthed:conglomerate_redstone_ore| unearthed | 
 | c:refined_iron_blocks| techreborn:refined_iron_storage_block| techreborn | | c:refined_iron_blocks| techreborn:refined_iron_storage_block| techreborn |
 | c:rose_gold_blocks| astromine:rose_gold_block| astromine-discoveries, astromine-foundations | | c:rose_gold_blocks| astromine:rose_gold_block| astromine-discoveries, astromine-foundations |
 | c:ruby_blocks| c:ruby_block| cotton-resources | | c:ruby_blocks| c:ruby_block| cotton-resources |
-| :::| earthtojavamobs:ruby_block| earthtojavamobs | 
 | :::| emerald_tools:ruby_block| emerald_tools | | :::| emerald_tools:ruby_block| emerald_tools |
 | :::| techreborn:ruby_storage_block| techreborn | | :::| techreborn:ruby_storage_block| techreborn |
Line 2712: Line 4228:
 | :::| c:ruby_nether_ore| cotton-resources | | :::| c:ruby_nether_ore| cotton-resources |
 | :::| c:ruby_end_ore| cotton-resources | | :::| c:ruby_end_ore| cotton-resources |
-| :::| earthtojavamobs:ruby_ore| earthtojavamobs | 
 | :::| techreborn:ruby_ore| techreborn | | :::| techreborn:ruby_ore| techreborn |
 +| :::| techreborn:deepslate_ruby_ore| techreborn |
 | c:runite_blocks| mythicmetals:runite_block| mythicmetals | | c:runite_blocks| mythicmetals:runite_block| mythicmetals |
 | c:runite_ores| mythicmetals:runite_ore| mythicmetals | | c:runite_ores| mythicmetals:runite_ore| mythicmetals |
 +| c:salt_blocks| bewitchment:salt_block| bewitchment |
 +| c:salt_ores| bewitchment:salt_ore| bewitchment |
 +| :::| bewitchment:deepslate_salt_ore| bewitchment |
 | c:sand| byg:white_sand| byg | | c:sand| byg:white_sand| byg |
 | :::| byg:black_sand| byg | | :::| byg:black_sand| byg |
Line 2751: Line 4270:
 | :::| byg:holly_sapling| byg | | :::| byg:holly_sapling| byg |
 | :::| byg:jacaranda_sapling| byg | | :::| byg:jacaranda_sapling| byg |
 +| :::| byg:joshua_sapling| byg |
 +| :::| byg:yellow_spruce_sapling| byg |
 | :::| byg:indigo_jacaranda_sapling| byg | | :::| byg:indigo_jacaranda_sapling| byg |
 | :::| byg:mahogany_sapling| byg | | :::| byg:mahogany_sapling| byg |
Line 2782: Line 4303:
 | :::| byg:ether_sapling| byg | | :::| byg:ether_sapling| byg |
 | :::| byg:nightshade_sapling| byg | | :::| byg:nightshade_sapling| byg |
 +| :::| betterend:dragon_tree_sapling| betterend |
 +| :::| betterend:tenanea_sapling| betterend |
 +| :::| betterend:helix_tree_sapling| betterend |
 +| :::| betterend:lucernia_sapling| betterend |
 +| :::| betterend:umbrella_tree_sapling| betterend |
 +| :::| betterend:mossy_glowshroom_sapling| betterend |
 +| :::| betterend:pythadendron_sapling| betterend |
 +| :::| betterend:lacugrove_sapling| betterend |
 +| :::| betternether:rubeus_sapling| betternether |
 +| :::| betternether:stalagnate_seed| betternether |
 +| :::| betternether:mushroom_fir_sapling| betternether |
 +| :::| betternether:anchor_tree_sapling| betternether |
 +| :::| betternether:nether_sakura_sapling| betternether |
 +| :::| betternether:willow_sapling| betternether |
 | c:sapphire_blocks| c:sapphire_block| cotton-resources | | c:sapphire_blocks| c:sapphire_block| cotton-resources |
 | :::| techreborn:sapphire_storage_block| techreborn | | :::| techreborn:sapphire_storage_block| techreborn |
Line 2788: Line 4323:
 | :::| c:sapphire_end_ore| cotton-resources | | :::| c:sapphire_end_ore| cotton-resources |
 | :::| techreborn:sapphire_ore| techreborn | | :::| techreborn:sapphire_ore| techreborn |
 +| :::| techreborn:deepslate_sapphire_ore| techreborn |
 | c:sheldonite_ores| techreborn:sheldonite_ore| techreborn | | c:sheldonite_ores| techreborn:sheldonite_ore| techreborn |
 +| :::| techreborn:deepslate_sheldonite_ore| techreborn |
 | c:silver_blocks| astromine:silver_block| astromine-discoveries, astromine-foundations | | c:silver_blocks| astromine:silver_block| astromine-discoveries, astromine-foundations |
 | :::| bno:silver_block| bno | | :::| bno:silver_block| bno |
 | :::| c:silver_block| cotton-resources | | :::| c:silver_block| cotton-resources |
 +| :::| indrev:silver_block| indrev |
 | :::| mythicmetals:silver_block| mythicmetals | | :::| mythicmetals:silver_block| mythicmetals |
 | :::| techreborn:silver_storage_block| techreborn | | :::| techreborn:silver_storage_block| techreborn |
 | :::| texp:silver_block| texp | | :::| texp:silver_block| texp |
 +| :::| bewitchment:silver_block| bewitchment |
 | c:silver_ores| astromine:silver_ore| astromine-discoveries, astromine-foundations | | c:silver_ores| astromine:silver_ore| astromine-discoveries, astromine-foundations |
 | :::| #c:asteroid_silver_ores| astromine-discoveries | | :::| #c:asteroid_silver_ores| astromine-discoveries |
Line 2801: Line 4340:
 | :::| c:silver_nether_ore| cotton-resources | | :::| c:silver_nether_ore| cotton-resources |
 | :::| c:silver_end_ore| cotton-resources | | :::| c:silver_end_ore| cotton-resources |
 +| :::| indrev:silver_ore| indrev |
 | :::| mw:silver_ore| mw | | :::| mw:silver_ore| mw |
 | :::| mythicmetals:silver_ore| mythicmetals | | :::| mythicmetals:silver_ore| mythicmetals |
 | :::| techreborn:silver_ore| techreborn | | :::| techreborn:silver_ore| techreborn |
 | :::| texp:silver_ore| texp | | :::| texp:silver_ore| texp |
-| c:slime_blocks| minecraft:slime_block| astromine-discoveries, astromine-foundations |+| :::| bewitchment:silver_ore| bewitchment | 
 +| :::| bewitchment:deepslate_silver_ore| bewitchment | 
 +| :::| indrev:deepslate_silver_ore| indrev | 
 +| :::| techreborn:deepslate_silver_ore| techreborn | 
 +| c:slime_blocks| minecraft:slime_block| astromine-discoveries, terrarianslimes, astromine-foundations 
 +| :::| terrarianslimes:black_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:blue_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:corrupt_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:crimson_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:ice_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:illuminant_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:jungle_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:pinky_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:purple_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:rainbow_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:red_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:sand_slime_block| terrarianslimes | 
 +| :::| terrarianslimes:yellow_slime_block| terrarianslimes |
 | c:slowsilver_blocks| mythicmetals:slowsilver_block| mythicmetals | | c:slowsilver_blocks| mythicmetals:slowsilver_block| mythicmetals |
 | c:sodalite_ores| techreborn:sodalite_ore| techreborn | | c:sodalite_ores| techreborn:sodalite_ore| techreborn |
-| c:soul_ground| byg:nylium_soul_sandbyg +| :::| techreborn:deepslate_sodalite_ore| techreborn | 
-| :::| byg:nylium_soul_soilbyg +| c:soul_ground| minecraft:soul_sandbetternether, gobber2 
-| :::| minecraft:soul_sandgobber2 +| :::| minecraft:soul_soilbetternether, gobber2 
-| :::| minecraft:soul_soilgobber2 |+| :::| betternether:veined_sandbetternether 
 +| :::| betternether:farmlandbetternether |
 | c:sphalerite_ores| techreborn:sphalerite_ore| techreborn | | c:sphalerite_ores| techreborn:sphalerite_ore| techreborn |
 +| c:stained_glass| minecraft:white_stained_glass| ae2 |
 +| :::| minecraft:orange_stained_glass| ae2 |
 +| :::| minecraft:magenta_stained_glass| ae2 |
 +| :::| minecraft:light_blue_stained_glass| ae2 |
 +| :::| minecraft:yellow_stained_glass| ae2 |
 +| :::| minecraft:lime_stained_glass| ae2 |
 +| :::| minecraft:pink_stained_glass| ae2 |
 +| :::| minecraft:gray_stained_glass| ae2 |
 +| :::| minecraft:light_gray_stained_glass| ae2 |
 +| :::| minecraft:cyan_stained_glass| ae2 |
 +| :::| minecraft:purple_stained_glass| ae2 |
 +| :::| minecraft:blue_stained_glass| ae2 |
 +| :::| minecraft:brown_stained_glass| ae2 |
 +| :::| minecraft:green_stained_glass| ae2 |
 +| :::| minecraft:red_stained_glass| ae2 |
 +| :::| minecraft:black_stained_glass| ae2 |
 | c:starrite_blocks| mythicmetals:starrite_block| mythicmetals | | c:starrite_blocks| mythicmetals:starrite_block| mythicmetals |
 | c:starrite_ores| mythicmetals:starrite_ore| mythicmetals | | c:starrite_ores| mythicmetals:starrite_ore| mythicmetals |
Line 2839: Line 4413:
 | :::| minecraft:diorite| gobber2 | | :::| minecraft:diorite| gobber2 |
 | :::| minecraft:andesite| gobber2 | | :::| minecraft:andesite| gobber2 |
 +| :::| #unearthed:sedimentary| unearthed |
 +| :::| #unearthed:metamorphic| unearthed |
 +| :::| #unearthed:igneous| unearthed |
 | c:storage_blocks| byg:ametrine_block| byg | | c:storage_blocks| byg:ametrine_block| byg |
 | :::| byg:pendorite_block| byg | | :::| byg:pendorite_block| byg |
 | :::| byg:anthracite_block| byg | | :::| byg:anthracite_block| byg |
 +| :::| #c:certus_quartz_blocks| ae2 |
 | c:stormyx_blocks| mythicmetals:stormyx_block| mythicmetals | | c:stormyx_blocks| mythicmetals:stormyx_block| mythicmetals |
 | c:stormyx_ores| mythicmetals:stormyx_ore| mythicmetals | | c:stormyx_ores| mythicmetals:stormyx_ore| mythicmetals |
Line 2859: Line 4437:
 | c:tantalite_blocks| mythicmetals:tantalite_block| mythicmetals | | c:tantalite_blocks| mythicmetals:tantalite_block| mythicmetals |
 | c:tantalite_ores| mythicmetals:tantalite_ore| mythicmetals | | c:tantalite_ores| mythicmetals:tantalite_ore| mythicmetals |
-| c:terracotta| minecraft:terracotta| appliedenergistics2 | +| c:terracotta| minecraft:terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:white_terracotta| appliedenergistics2 | +| :::| minecraft:white_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:orange_terracotta| appliedenergistics2 | +| :::| minecraft:orange_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:magenta_terracotta| appliedenergistics2 | +| :::| minecraft:magenta_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:light_blue_terracotta| appliedenergistics2 | +| :::| minecraft:light_blue_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:yellow_terracotta| appliedenergistics2 | +| :::| minecraft:yellow_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:lime_terracotta| appliedenergistics2 | +| :::| minecraft:lime_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:pink_terracotta| appliedenergistics2 | +| :::| minecraft:pink_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:gray_terracotta| appliedenergistics2 | +| :::| minecraft:gray_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:light_gray_terracotta| appliedenergistics2 | +| :::| minecraft:light_gray_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:cyan_terracotta| appliedenergistics2 | +| :::| minecraft:cyan_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:purple_terracotta| appliedenergistics2 | +| :::| minecraft:purple_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:blue_terracotta| appliedenergistics2 | +| :::| minecraft:blue_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:brown_terracotta| appliedenergistics2 | +| :::| minecraft:brown_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:green_terracotta| appliedenergistics2 | +| :::| minecraft:green_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:red_terracotta| appliedenergistics2 | +| :::| minecraft:red_terracotta| ae2, appliedenergistics2 | 
-| :::| minecraft:black_terracotta| appliedenergistics2 |+| :::| minecraft:black_terracotta| ae2, appliedenergistics2 |
 | c:thorium_blocks| c:thorium_block| cotton-resources | | c:thorium_blocks| c:thorium_block| cotton-resources |
 | c:tin_blocks| astromine:tin_block| astromine-discoveries, astromine-foundations | | c:tin_blocks| astromine:tin_block| astromine-discoveries, astromine-foundations |
Line 2895: Line 4473:
 | :::| techreborn:tin_ore| techreborn | | :::| techreborn:tin_ore| techreborn |
 | :::| texp:tin_ore| texp | | :::| texp:tin_ore| texp |
 +| :::| indrev:deepslate_tin_ore| indrev |
 +| :::| techreborn:deepslate_tin_ore| techreborn |
 | c:titanium_blocks| c:titanium_block| cotton-resources | | c:titanium_blocks| c:titanium_block| cotton-resources |
 | :::| techreborn:titanium_storage_block| techreborn | | :::| techreborn:titanium_storage_block| techreborn |
Line 2905: Line 4485:
 | :::| c:topaz_nether_ore| cotton-resources | | :::| c:topaz_nether_ore| cotton-resources |
 | :::| c:topaz_end_ore| cotton-resources | | :::| c:topaz_end_ore| cotton-resources |
 +| c:triple_compressed_stone| prefab:block_triple_compressed_stone| prefab |
 | c:truesilver_blocks| mythicmetals:truesilver_block| mythicmetals | | c:truesilver_blocks| mythicmetals:truesilver_block| mythicmetals |
 | c:truesilver_ores| mythicmetals:truesilver_ore| mythicmetals | | c:truesilver_ores| mythicmetals:truesilver_ore| mythicmetals |
 | c:tungsten_blocks| c:tungsten_block| cotton-resources | | c:tungsten_blocks| c:tungsten_block| cotton-resources |
 | :::| endreborn:tungsten_block| endreborn | | :::| endreborn:tungsten_block| endreborn |
 +| :::| indrev:tungsten_block| indrev |
 | :::| techreborn:tungsten_storage_block| techreborn | | :::| techreborn:tungsten_storage_block| techreborn |
 | c:tungsten_ores| c:tungsten_ore| cotton-resources | | c:tungsten_ores| c:tungsten_ore| cotton-resources |
Line 2914: Line 4496:
 | :::| c:tungsten_end_ore| cotton-resources | | :::| c:tungsten_end_ore| cotton-resources |
 | :::| endreborn:end_tungsten_ore| endreborn | | :::| endreborn:end_tungsten_ore| endreborn |
 +| :::| indrev:tungsten_ore| indrev |
 | :::| techreborn:tungsten_ore| techreborn | | :::| techreborn:tungsten_ore| techreborn |
 +| :::| indrev:deepslate_tungsten_ore| indrev |
 +| :::| techreborn:deepslate_tungsten_ore| techreborn |
 | c:tungstensteel_blocks| techreborn:tungstensteel_storage_block| techreborn | | c:tungstensteel_blocks| techreborn:tungstensteel_storage_block| techreborn |
 | c:univite_blocks| astromine:univite_block| astromine-discoveries, astromine-foundations | | c:univite_blocks| astromine:univite_block| astromine-discoveries, astromine-foundations |
Line 2928: Line 4513:
 | :::| c:uranium_end_ore| cotton-resources | | :::| c:uranium_end_ore| cotton-resources |
 | c:vermiculite_ores| mythicmetals:vermiculite_ore| mythicmetals | | c:vermiculite_ores| mythicmetals:vermiculite_ore| mythicmetals |
 +| c:white_sand| byg:white_sand| byg |
 | c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage | | c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage |
 | :::| {'id': '#blockus:barrels', 'required': False}| expandedstorage | | :::| {'id': '#blockus:barrels', 'required': False}| expandedstorage |
 +| :::| betterend:helix_tree_barrel| betterend |
 +| :::| betterend:lucernia_barrel| betterend |
 +| :::| betterend:end_lotus_barrel| betterend |
 +| :::| betterend:umbrella_tree_barrel| betterend |
 +| :::| betterend:dragon_tree_barrel| betterend |
 +| :::| betterend:lacugrove_barrel| betterend |
 +| :::| betterend:jellyshroom_barrel| betterend |
 +| :::| betterend:pythadendron_barrel| betterend |
 +| :::| betterend:tenanea_barrel| betterend |
 +| :::| betterend:mossy_glowshroom_barrel| betterend |
 +| :::| betternether:rubeus_barrel| betternether |
 +| :::| betternether:nether_sakura_barrel| betternether |
 +| :::| betternether:nether_mushroom_barrel| betternether |
 +| :::| betternether:mushroom_fir_barrel| betternether |
 +| :::| betternether:stalagnate_barrel| betternether |
 +| :::| betternether:willow_barrel| betternether |
 +| :::| betternether:wart_barrel| betternether |
 +| :::| betternether:nether_reed_barrel| betternether |
 +| :::| betternether:anchor_tree_barrel| betternether |
 +| :::| #blockus:barrels| blockus |
 +| :::| minecraft:barrel| expandedstorage |
 | c:wooden_chests| {'id': 'minecraft:chest', 'required': True}| expandedstorage | | c:wooden_chests| {'id': 'minecraft:chest', 'required': True}| expandedstorage |
 | :::| {'id': 'minecraft:trapped_chest', 'required': True}| expandedstorage | | :::| {'id': 'minecraft:trapped_chest', 'required': True}| expandedstorage |
 | :::| {'id': 'expandedstorage:wood_chest', 'required': True}| expandedstorage | | :::| {'id': 'expandedstorage:wood_chest', 'required': True}| expandedstorage |
 +| :::| betterend:pythadendron_chest| betterend |
 +| :::| betterend:lacugrove_chest| betterend |
 +| :::| betterend:mossy_glowshroom_chest| betterend |
 +| :::| betterend:dragon_tree_chest| betterend |
 +| :::| betterend:lucernia_chest| betterend |
 +| :::| betterend:helix_tree_chest| betterend |
 +| :::| betterend:tenanea_chest| betterend |
 +| :::| betterend:end_lotus_chest| betterend |
 +| :::| betterend:umbrella_tree_chest| betterend |
 +| :::| betterend:jellyshroom_chest| betterend |
 +| :::| betternether:rubeus_chest| betternether |
 +| :::| betternether:nether_sakura_chest| betternether |
 +| :::| betternether:stalagnate_chest| betternether |
 +| :::| betternether:nether_reed_chest| betternether |
 +| :::| betternether:mushroom_fir_chest| betternether |
 +| :::| betternether:nether_mushroom_chest| betternether |
 +| :::| betternether:wart_chest| betternether |
 +| :::| betternether:anchor_tree_chest| betternether |
 +| :::| betternether:willow_chest| betternether |
 +| :::| minecraft:chest| expandedstorage |
 +| :::| minecraft:trapped_chest| expandedstorage |
 +| :::| expandedstorage:wood_chest| expandedstorage |
 | c:workbench| byg:aspen_crafting_table| byg | | c:workbench| byg:aspen_crafting_table| byg |
 | :::| byg:baobab_crafting_table| byg | | :::| byg:baobab_crafting_table| byg |
Line 2958: Line 4587:
 | :::| byg:palm_crafting_table| byg | | :::| byg:palm_crafting_table| byg |
 | :::| byg:lament_crafting_table| byg | | :::| byg:lament_crafting_table| byg |
 +| :::| betterend:jellyshroom_crafting_table| betterend |
 +| :::| betterend:mossy_glowshroom_crafting_table| betterend |
 +| :::| betterend:dragon_tree_crafting_table| betterend |
 +| :::| betterend:lacugrove_crafting_table| betterend |
 +| :::| betterend:helix_tree_crafting_table| betterend |
 +| :::| betterend:pythadendron_crafting_table| betterend |
 +| :::| betterend:umbrella_tree_crafting_table| betterend |
 +| :::| betterend:lucernia_crafting_table| betterend |
 +| :::| betterend:tenanea_crafting_table| betterend |
 +| :::| betterend:end_lotus_crafting_table| betterend |
 +| :::| betternether:nether_reed_crafting_table| betternether |
 +| :::| betternether:nether_sakura_crafting_table| betternether |
 +| :::| betternether:crafting_table_crimson| betternether |
 +| :::| betternether:nether_mushroom_crafting_table| betternether |
 +| :::| betternether:anchor_tree_crafting_table| betternether |
 +| :::| betternether:stalagnate_crafting_table| betternether |
 +| :::| betternether:crafting_table_warped| betternether |
 +| :::| betternether:rubeus_crafting_table| betternether |
 +| :::| betternether:willow_crafting_table| betternether |
 +| :::| betternether:wart_crafting_table| betternether |
 +| :::| betternether:mushroom_fir_crafting_table| betternether |
 | c:yellow_garnet_blocks| techreborn:yellow_garnet_storage_block| techreborn | | c:yellow_garnet_blocks| techreborn:yellow_garnet_storage_block| techreborn |
 | c:yellow_sandstones| minecraft:sandstone| astromine-discoveries, astromine-foundations | | c:yellow_sandstones| minecraft:sandstone| astromine-discoveries, astromine-foundations |
Line 2989: Line 4639:
 | :::| astromine:heavy_gas_oil_flowing| astromine-foundations | | :::| astromine:heavy_gas_oil_flowing| astromine-foundations |
 | c:honey| randomtech:honey| randomtech | | c:honey| randomtech:honey| randomtech |
 +| :::| the_bumblezone:honey_fluid_still| the_bumblezone |
 +| :::| the_bumblezone:honey_fluid_flowing| the_bumblezone |
 | c:hydrogen| astromine:hydrogen| astromine-foundations | | c:hydrogen| astromine:hydrogen| astromine-foundations |
 | :::| astromine:hydrogen_flowing| astromine-foundations | | :::| astromine:hydrogen_flowing| astromine-foundations |
Line 2999: Line 4651:
 | c:milk| exnihilofabrico:milk| exnihilofabrico | | c:milk| exnihilofabrico:milk| exnihilofabrico |
 | :::| exnihilofabrico:milk_flowing| exnihilofabrico | | :::| exnihilofabrico:milk_flowing| exnihilofabrico |
 +| c:mud| earthtojavamobs:mud_fluid| earthtojavamobs |
 +| :::| earthtojavamobs:mud_fluid_flowing| earthtojavamobs |
 | c:naphtha| astromine:naphtha| astromine-foundations | | c:naphtha| astromine:naphtha| astromine-foundations |
 | :::| astromine:naphtha_flowing| astromine-foundations | | :::| astromine:naphtha_flowing| astromine-foundations |
Line 3008: Line 4662:
 | c:saltwater| exnihilofabrico:brine| exnihilofabrico | | c:saltwater| exnihilofabrico:brine| exnihilofabrico |
 | :::| exnihilofabrico:brine_flowing| exnihilofabrico | | :::| exnihilofabrico:brine_flowing| exnihilofabrico |
 +| c:visual/honey| the_bumblezone:honey_fluid_still| the_bumblezone |
 +| :::| the_bumblezone:honey_fluid_flowing| the_bumblezone |
 +| c:visual/water| minecraft:water| the_bumblezone |
 +| :::| minecraft:flowing_water| the_bumblezone |
 +| :::| the_bumblezone:sugar_water_still| the_bumblezone |
 +| :::| the_bumblezone:sugar_water_flowing| the_bumblezone |
 | c:water| minecraft:water| randomtech | | c:water| minecraft:water| randomtech |
 +
 +===== Entity Types Tags =====
 +
 +^ Tag ID ^ Contained IDs ^ Defined by ^
 +| c:bosses| ender_dragon| bewitchment |
 +| :::| wither| bewitchment |
 +| :::| bewitchment:leonard| bewitchment |
 +| :::| bewitchment:baphomet| bewitchment |
 +| :::| bewitchment:lilith| bewitchment |
 +| :::| bewitchment:herne| bewitchment |
 +| :::| botania:doppleganger| botania |
 +| c:pollen| the_bumblezone:pollen_puff| the_bumblezone |
  
 ===== Sources ===== ===== Sources =====
  
 ^ Mod ID ^ Name ^ Version ^ URL ^ ^ Mod ID ^ Name ^ Version ^ URL ^
-| adorn | Adorn | 1.13.0+1.16.| https://minecraft.curseforge.com/projects/adorn | +| bonappetit | Bon Appé´©t | 0.8.5-3 | curseforge.com/minecraft/mc-mods/bon-appetit-fabric | 
-alaskanativecraft Alaska Native Craft | 1.1.0 | https://github.com/Platymemo/alaskanativecraft |+| cinderscapes | Cinderscapes | 1.3.3 | https://www.curseforge.com/minecraft/mc-mods/cinderscapes | 
 +| epicurean | Epicurean | 2.2.4+1.15.2 | None | 
 +| texp | Terran Expansion | 1.1.2 | http://www.flytre.net/
 +| more_gems | More Gems | 1.2.9 |  | 
 +| adorn | Adorn | 3.3.1+1.18.| https://minecraft.curseforge.com/projects/adorn | 
 +eymbra Eymbra's Prehistoric Mod | 1.0.0 | https://fabricmc.net/
 +| blockus | Blockus | 2.3.4+1.18.1 | https://www.curseforge.com/minecraft/mc-mods/blockus | 
 +| resourceful_tools | Resourceful Tools | 1.1.4 |  | 
 +| packages | Packages | 1.3 | https://highlysuspect.agency | 
 +| refinedmachinery | Refined Machinery | 1.2.1 | https://minecraft.curseforge.com/projects/Refined-Machinery | 
 +| gravel-ores | Gravel Ores | 1.2.0+1.16.2 | https://www.curseforge.com/minecraft/mc-mods/gravel-ores-fabric | 
 +| xb | Exotic Blocks | 1.6.172 | https://github.com/grondag/exotic-blocks | 
 +| prefab | Prefab | 1.0.2 | https://www.curseforge.com/minecraft/mc-mods/prefab |
 | randomtech | Alexis' Random Tech | 0.0.8 | https://github.com/alexis-evelyn | | randomtech | Alexis' Random Tech | 0.0.8 | https://github.com/alexis-evelyn |
-appliedenergistics2 Applied Energistics 2 8.1.0-alpha.13 | https://ae-mod.info/ | +mechanix Mechanix 3.4.0 | https://www.flytre.net/ | 
-artofalchemy Art of Alchemy | 1.0.0-rc2+1.16.| https://www.curseforge.com/minecraft/mc-mods/art-of-alchemy |+veggie_way The Veggie Way | 1.1.7 | None | 
 +| comforts | Comforts | 0.0.2-1.16.| https://www.curseforge.com/minecraft/mc-mods/comforts-fabric | 
 +| mechanized | Mechanized | 1.9.6 | None | 
 +| tenor | Tenor | 1.0.3 | None | 
 +| computercraft | CC:T for Fabric | 1.91.2 | https://github.com/mystiacraft/cc-tweaked-fabric | 
 +| byg | BYG | 1.1.5 | https://bygmc.weebly.com/
 +| flamingo_ooo | Flamingo, oh, oh, oh... | 1.0.4-MC1.16.3-fabric |  |
 | astromine-discoveries | Astromine: Discoveries | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-discoveries | | astromine-discoveries | Astromine: Discoveries | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-discoveries |
 +| flonters | Flonters | 1.1.1+1.16.2 |  |
 +| indrev | Industrial Revolution | 1.13.6-BETA | https://github.com/GabrielOlvH/Industrial-Revolution |
 +| camsbackpacks | Cammie's Wearable Backpacks | 2.7 | https://www.curseforge.com/minecraft/mc-mods/cammies-wearable-backpacks |
 | astromine-foundations | Astromine: Foundations | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-foundations | | astromine-foundations | Astromine: Foundations | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-foundations |
 +| expandedstorage | Expanded Storage | 7.3.6 | https://www.curseforge.com/minecraft/mc-mods/expanded-storage-fabric/ |
 +| mw | More Weaponry | 0.0.1-SNAPSHOT | https://github.com/LolzDEV |
 | astromine-technologies | Astromine: Technologies | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-technologies | | astromine-technologies | Astromine: Technologies | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-technologies |
-atbyw All The Blocks You Want (ATBYW) | 1.3.4 | https://www.curseforge.com/minecraft/mc-mods/all-the-blocks-you-want | +modern_industrialization Modern Industrialization | 1.0.4 | https://github.com/AztechMC/Modern-Industrialization 
-| bno | Basic Nether Ores | 1.16.4-5.4.0-Fabric | https://minecraft.curseforge.com/projects/basic-nether-ores +| betterend | Better End | 1.0.| https://www.curseforge.com/minecraft/mc-mods/betterend | 
-| betterend | Better End | 0.8.8-beta | https://www.curseforge.com/minecraft/mc-mods/betterend | +ironchest Iron Chests | 1.1.| https://www.curseforge.com/minecraft/mc-mods/iron-chests-fabric | 
-bigbenchtheory The Big Bench Theory | 1.0.1 | https://github.com/Platymemo/the-big-bench-theory | +simple_backpack SimpleBackpack | 1.1. 
-| blockus | Blockus | 2.0.2+20w51a | https://www.curseforge.com/minecraft/mc-mods/blockus | +unearthed Unearthed | 1.1.0 | https://bygmc.weebly.com/ |
-| bonappetit | Bon App鴩t | 0.8.5.1 | curseforge.com/minecraft/mc-mods/bon-appetit-fabric | +
-byg BYG | 1.1.https://bygmc.weebly.com/ +
-computercraft CC:T for Fabric | 1.91.2 | https://github.com/mystiacraft/cc-tweaked-fabric | +
-| ce_foodstuffs | Common Expansion: Foodstuffs | 1.1.2 | https://www.curseforge.com/minecraft/mc-mods/ce-foodstuffs | +
-| cinderscapes | Cinderscapes | 1.3.3 | https://www.curseforge.com/minecraft/mc-mods/cinderscapes | +
-| comforts | Comforts | 0.0.1-1.16.4 | https://www.curseforge.com/minecraft/mc-mods/comforts-fabric | +
-| cotton-resources | Cotton Resources | 1.7.4 | https://github.com/CottonMC/CottonResources |+
 | crimson | Crimson | 1.0.5 | None | | crimson | Crimson | 1.0.5 | None |
-| crookedcrooks | Crooked Crooks | 1.3.3+1.16.4 | https://www.curseforge.com/minecraft/mc-mods/crooked-crooks | +| gobber2 | Gobber2 | 2.4.|  |
-| earthtojavamobs | Earth2Java | 1.6.0+21w03a | https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric | +
-| emerald_tools | Emerald Tools | 1.1.7 | https://www.curseforge.com/minecraft/mc-mods/simple-emerald-tools-fabric | +
-| endreborn | End: Rebellion | 1.8 | https://github.com/EleC0TroN/ER | +
-| epicurean | Epicurean | 2.2.4+1.15.2 | None | +
-| exnihilofabrico | Ex Nihilo Fabrico | 0.3+1.14.4 | None | +
-| xb | Exotic Blocks | 1.6.172 | https://github.com/grondag/exotic-blocks | +
-| expandedstorage | ExpandedStorage | 6.0.1 | https://www.curseforge.com/minecraft/mc-mods/expanded-storage-fabric | +
-| flamingo_ooo | Flamingo, oh, oh, oh... | 1.0.4-MC1.16.3-fabric |  | +
-| flonters | Flonters | 1.1.1+1.16.2 |  | +
-| gobber2 | Gobber2 | 2.4.|  +
-| gravel-ores | Gravel Ores | 1.2.0+1.16.2 | https://www.curseforge.com/minecraft/mc-mods/gravel-ores-fabric |+
 | icarus | Icarus | 1.1 | https://www.curseforge.com/minecraft/mc-mods/icarus-fabric | | icarus | Icarus | 1.1 | https://www.curseforge.com/minecraft/mc-mods/icarus-fabric |
-indrev Industrial Revolution | 1.7.15-BETA | https://github.com/StupPlayer/Industrial-Revolution +artofalchemy Art of Alchemy | 1.0.0-rc2+1.16.1 | https://www.curseforge.com/minecraft/mc-mods/art-of-alchemy 
-ironchest Iron Chests 1.1.| https://www.curseforge.com/minecraft/mc-mods/iron-chests-fabric +crookedcrooks Crooked Crooks 2.0.1+1.18.1 | https://modrinth.com/mod/crooked-crooks 
-mechanix Mechanix 3.4.0 | https://www.flytre.net/ | +bno Basic Nether Ores 1.16.5-5.5.0-Fabric | https://minecraft.curseforge.com/projects/basic-nether-ores 
-mechanized Mechanized | 1.9.6 | None | +earthtojavamobs Earth2Java | 1.6.0+21w05b | https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric 
-| modern_industrialization | Modern Industrialization | 0.3.12 | https://github.com/AztechMC/Modern-Industrialization +atbyw All The Blocks You Want (ATBYW) | 1.3.4 | https://www.curseforge.com/minecraft/mc-mods/all-the-blocks-you-want 
-more_gems More Gems | 1.2.4 |  | +emerald_tools Emerald Tools 1.2.| https://www.curseforge.com/minecraft/mc-mods/simple-emerald-tools-fabric | 
-| mw | More Weaponry | 0.0.1-SNAPSHOT | https://github.com/LolzDEV +| ce_foodstuffs | Common Expansion: Foodstuffs | 1.1.3 | None | 
-mythicmetals Mythic Metals 0.9.| https://www.curseforge.com/minecraft/mc-mods/mythicmetals |+| packed | Packed Storage | 1.0.9 | None |
 | nafis | NAFIS | 1.0.0 | https://schneider-oliver.de | | nafis | NAFIS | 1.0.0 | https://schneider-oliver.de |
-| packages | Packages | 1.1.1 | https://highlysuspect.agency | 
-| packed | Packed Storage | 1.0.9 | None | 
-| eymbra | Eymbra's Prehistoric Mod | 1.0.0 | https://fabricmc.net/ | 
-| refinedmachinery | Refined Machinery | 1.2.1 | https://minecraft.curseforge.com/projects/Refined-Machinery | 
-| resourceful_tools | Resourceful Tools | 1.0.53 |  | 
-| simple_backpack | SimpleBackpack | 1.1.4 |  | 
 | simplequern | Simple Quern | 1.2.1 | https://github.com/CumulusMC/Simple-Quern | | simplequern | Simple Quern | 1.2.1 | https://github.com/CumulusMC/Simple-Quern |
 +| cotton-resources | Cotton Resources | 1.7.4 | https://github.com/CottonMC/CottonResources |
 +| oceancraft | Oceancraft | 0.1.0 | https://github.com/NebelNidas/Oceancraft |
 | slotlink | slotlink | 2.2.0+1.16.4 | https://github.com/badasintended/slotlink | | slotlink | slotlink | 2.2.0+1.16.4 | https://github.com/badasintended/slotlink |
-| spatialharvesters | Spatial Harvesters | 0.10.6b | https://www.curseforge.com/minecraft/mc-mods/spatial-harvesters-fabric |+| spatialharvesters | Spatial Harvesters | 0.11.6a | https://www.curseforge.com/minecraft/mc-mods/spatial-harvesters-fabric 
 +| techreborn | Tech Reborn | 5.1.0-beta.5 | https://www.curseforge.com/minecraft/mc-mods/techreborn | 
 +| mythicmetals | Mythic Metals | 0.11.3 | https://www.curseforge.com/minecraft/mc-mods/mythicmetals |
 | sweed | Sweed | 1.1.1 | https://www.curseforge.com/minecraft/mc-mods/sweed | | sweed | Sweed | 1.1.1 | https://www.curseforge.com/minecraft/mc-mods/sweed |
-techreborn Tech Reborn 3.7.3+build.192 | https://www.curseforge.com/minecraft/mc-mods/techreborn +endreborn End: Rebellion 1.8 | https://github.com/EleC0TroN/ER | 
-tenor Tenor | 1.0.3 | None +| exnihilofabrico | Ex Nihilo Fabrico | 0.3+1.14.4 | None | 
-texp Terran Expansion | 1.1.2 | http://www.flytre.net/ | +| appliedenergistics2 | Applied Energistics 2 | 8.2.0-alpha.2 | https://ae-mod.info/
-veggie_way The Veggie Way | 1.1.3 | None | +| arcanus | Arcanus | 1.25 | https://www.curseforge.com/minecraft/mc-mods/arcanus 
-unearthed Unearthed | 1.0.| https://www.curseforge.com/minecraft/mc-mods/unearthed-fabric | +ae2 Applied Energistics 2 | 10.0.0 | https://appliedenergistics.github.io/
 +| basicshields | Basic Shields [Fabric] | 1.2.1-1.18.1 | None | 
 +| bclib | BCLib | 1.3.0 | https://www.curseforge.com/minecraft/mc-mods/bclib | 
 +| betternether | Better Nether | 6.0.10 | https://www.curseforge.com/minecraft/mc-mods/betternether | 
 +| betteranimalsplus | Better Animals Plus | 1.18.1-11.0.3 | https://betteranimalsplus.com/ 
 +bewitchment Bewitchment | 1.18-5 | https://www.curseforge.com/minecraft/mc-mods/bewitchment | 
 +| botania | Botania | 1.18.1-427-FABRIC | https://botaniamod.net | 
 +| catwalksinc | Catwalks Inc. | 1.2.0 https://www.curseforge.com/minecraft/mc-mods/catwalks-inc 
 +croptopia Croptopia | 1.8.0 | https://www.curseforge.com/minecraft/mc-mods/croptopia-fabric | 
 +| dark-enchanting | Dark Enchanting | 0.6.3+1.18 | https://github.com/frqnny/dark-enchanting | 
 +| dwarfcoal | Dwarf Coal | 1.18.1-1.0.1 | None | 
 +extragenerators Extra Generators | 1.1.1-BETA+1.18 | https://www.curseforge.com/minecraft/mc-mods/extra-generators | 
 +| mtr | Minecraft Transit Railway | 1.18.1-3.0.0-beta-8 | https://www.curseforge.com/minecraft/mc-mods/minecraft-transit-railway | 
 +| painters_blocks | Painter's Blocks | 1.3.0+1.18.1 | https://github.com/Juuxel/PaintersBlocks | 
 +| terrarianslimes | Terrarian Slimes | 1.1-BETA+1.18 | https://www.curseforge.com/minecraft/mc-mods/terrarian-slimes | 
 +| the_bumblezone | The Bumblezone - Fabric | 4.2.1+1.18.1 | https://www.curseforge.com/minecraft/mc-mods/the-bumblezone-fabric | 
 +| valley | ValleyCraft | 2.1 | https://github.com/l1nkl3/ValleyCraft-Wiki | 
 +| croptosis | Croptosis | 1.4.2 | https://www.curseforge.com/minecraft/mc-mods/croptosis | 
 +| waystones | Waystones | 2.4.1 | https://www.curseforge.com/minecraft/mc-mods/fabric-waystones |
tutorial/tags.txt · Last modified: 2024/06/17 13:05 by solidblock