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/01/25 05:51] – Corrected a small error azazelthedemonlordtutorial: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 56: Line 94:
 | :::| techreborn:aluminum_nugget| techreborn | | :::| techreborn:aluminum_nugget| techreborn |
 | c:aluminum_ores| bno:netheraluminum_ore| bno | | c:aluminum_ores| bno:netheraluminum_ore| bno |
-| :::| c:aluminum_end_ore| cotton-resources | 
-| :::| c:aluminum_nether_ore| cotton-resources | 
 | :::| c:aluminum_ore| cotton-resources | | :::| c:aluminum_ore| cotton-resources |
 +| :::| c:aluminum_nether_ore| cotton-resources |
 +| :::| c:aluminum_end_ore| cotton-resources |
 | c:aluminum_plates| c:aluminum_plate| cotton-resources | | c:aluminum_plates| c:aluminum_plate| cotton-resources |
 | :::| modern_industrialization:aluminum_plate| modern_industrialization | | :::| modern_industrialization:aluminum_plate| 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_end_ore| cotton-resources |+| c:amethyst_ores| c:amethyst_ore| cotton-resources |
 | :::| c:amethyst_nether_ore| cotton-resources | | :::| c:amethyst_nether_ore| cotton-resources |
-| :::| c:amethyst_ore| cotton-resources |+| :::| c:amethyst_end_ore| cotton-resources |
 | c:amethyst_plates| c:amethyst_plate| cotton-resources | | c:amethyst_plates| c:amethyst_plate| cotton-resources |
 | c:amethysts| c:amethyst| cotton-resources | | c:amethysts| c:amethyst| 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 |
 | c:banglum_nuggets| mythicmetals:banglum_nugget| mythicmetals | | c:banglum_nuggets| mythicmetals:banglum_nugget| mythicmetals |
 | c:banglum_ores| mythicmetals:banglum_ore| mythicmetals | | c:banglum_ores| mythicmetals:banglum_ore| mythicmetals |
-| c:barrel| minecraft:barrel| packed | +| c:barrel| packed:oak_barrel_default| packed | 
-| :::| packed:acacia_barrel_default| packed |+| :::| packed:spruce_barrel_default| packed |
 | :::| packed:birch_barrel_default| packed | | :::| packed:birch_barrel_default| packed |
-| :::| packed:crimson_barrel_default| packed | +| :::| packed:acacia_barrel_default| packed |
-| :::| packed:dark_oak_barrel_default| packed |+
 | :::| packed:jungle_barrel_default| packed | | :::| packed:jungle_barrel_default| packed |
-| :::| packed:oak_barrel_default| packed | +| :::| packed:dark_oak_barrel_default| packed | 
-| :::| packed:spruce_barrel_default| packed |+| :::| packed:crimson_barrel_default| packed |
 | :::| packed:warped_barrel_default| packed | | :::| packed:warped_barrel_default| 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, 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, icarus | +| c:beers| croptopia:beer| croptopia | 
-| :::| minecraft:lapis_lazuli| icarus |+| c:beryllium_blocks| modern_industrialization:beryllium_block| modern_industrialization | 
 +| 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_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| byg:aspen_bookshelf| byg |+| c:bones| minecraft:bone| valley, spatialharvesters | 
 +| 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 |
-| :::| byg:bulbis_bookshelf| byg | 
 | :::| byg:cherry_bookshelf| byg | | :::| byg:cherry_bookshelf| byg |
 | :::| byg:cika_bookshelf| byg | | :::| byg:cika_bookshelf| byg |
 | :::| byg:cypress_bookshelf| byg | | :::| byg:cypress_bookshelf| byg |
 | :::| byg:ebony_bookshelf| byg | | :::| byg:ebony_bookshelf| byg |
-| :::| byg:embur_bookshelf| byg | 
-| :::| byg:ether_bookshelf| byg | 
 | :::| byg:fir_bookshelf| byg | | :::| byg:fir_bookshelf| byg |
 | :::| byg:green_enchanted_bookshelf| byg | | :::| byg:green_enchanted_bookshelf| byg |
 | :::| byg:holly_bookshelf| byg | | :::| byg:holly_bookshelf| byg |
 | :::| byg:jacaranda_bookshelf| byg | | :::| byg:jacaranda_bookshelf| byg |
-| :::| byg:lament_bookshelf| byg | 
 | :::| byg:mahogany_bookshelf| byg | | :::| byg:mahogany_bookshelf| byg |
 | :::| byg:mangrove_bookshelf| byg | | :::| byg:mangrove_bookshelf| byg |
 | :::| byg:maple_bookshelf| byg | | :::| byg:maple_bookshelf| byg |
-| :::| byg:nightshade_bookshelf| byg | 
-| :::| byg:palm_bookshelf| byg | 
 | :::| byg:pine_bookshelf| byg | | :::| byg:pine_bookshelf| byg |
 | :::| byg:rainbow_eucalyptus_bookshelf| byg | | :::| byg:rainbow_eucalyptus_bookshelf| byg |
 | :::| byg:redwood_bookshelf| byg | | :::| byg:redwood_bookshelf| byg |
 | :::| byg:skyris_bookshelf| byg | | :::| byg:skyris_bookshelf| byg |
-| :::| byg:sythian_bookshelf| byg | 
 | :::| byg:willow_bookshelf| byg | | :::| byg:willow_bookshelf| byg |
 | :::| byg:witch_hazel_bookshelf| byg | | :::| byg:witch_hazel_bookshelf| byg |
 | :::| byg:zelkova_bookshelf| byg | | :::| byg:zelkova_bookshelf| byg |
 +| :::| byg:sythian_bookshelf| byg |
 +| :::| byg:embur_bookshelf| byg |
 +| :::| byg:palm_bookshelf| byg |
 +| :::| byg:lament_bookshelf| byg |
 +| :::| byg:bulbis_bookshelf| byg |
 +| :::| byg:ether_bookshelf| byg |
 +| :::| byg:nightshade_bookshelf| byg |
 | 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 206: 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 221: 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 228: 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 234: 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 239: 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, 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: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 252: 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_ores| appliedenergistics2:charged_quartz_ore| appliedenergistics2 | +| c:certus_quartz_dusts| ae2:certus_quartz_dust| ae2 | 
-| :::| appliedenergistics2:quartz_ore| appliedenergistics2 |+| c:certus_quartz_ores| appliedenergistics2: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 264: Line 399:
 | c:charcoal_small_dusts| techreborn:charcoal_small_dust| techreborn | | c:charcoal_small_dusts| techreborn:charcoal_small_dust| techreborn |
 | 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:chestminecraft:chestpacked, simple_backpack +| c:cheesebonappetit:cheesebonappetit 
-| :::| minecraft:trapped_chest| packed, simple_backpack +c:cheese_cakes| croptopia:cheese_cake| croptopia | 
-| :::| packed:acacia_chest_default| packed |+| c:cheese_pizzascroptopia: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 | 
 +| :::| packed:spruce_chest_default| packed |
 | :::| packed:birch_chest_default| packed | | :::| packed:birch_chest_default| packed |
-| :::| packed:crimson_chest_default| packed | +| :::| packed:acacia_chest_default| packed |
-| :::| packed:dark_oak_chest_default| packed |+
 | :::| packed:jungle_chest_default| packed | | :::| packed:jungle_chest_default| packed |
-| :::| packed:oak_chest_default| packed | +| :::| packed:dark_oak_chest_default| packed | 
-| :::| packed:spruce_chest_default| packed |+| :::| packed:crimson_chest_default| packed |
 | :::| packed:warped_chest_default| packed | | :::| packed:warped_chest_default| packed |
 +| :::| minecraft:chest| bclib, simple_backpack, packed |
 +| :::| minecraft:trapped_chest| simple_backpack, packed |
 +| :::| 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:warped_chest| betternether |
 +| :::| betternether:nether_reed_chest| betternether |
 +| :::| betternether:mushroom_fir_chest| betternether |
 +| :::| betternether:nether_mushroom_chest| betternether |
 +| :::| betternether:wart_chest| betternether |
 +| :::| betternether:crimson_chest| betternether |
 +| :::| 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_rice| croptopia |
 +| 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 285: 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 291: Line 469:
 | c:clay_dusts| techreborn:clay_dust| techreborn | | c:clay_dusts| techreborn:clay_dust| techreborn |
 | 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 | +| c:coal| minecraft:coal| astromine-discoveries, astromine-foundations, spatialharvesters 
-| c:coal_blocks| minecraft:coal_block| astromine-discoveries, astromine-foundations |+| 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 299: Line 477:
 | :::| indrev:coal_dust| indrev | | :::| indrev:coal_dust| indrev |
 | :::| modern_industrialization:coal_dust| modern_industrialization | | :::| modern_industrialization:coal_dust| modern_industrialization |
 +| :::| resourceful_tools:powder_carbon| resourceful_tools |
 | :::| 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| astromine-discoveries, astromine-foundations, indrev, modern_industrialization, randomtech, 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-discoveries, 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:conglomerate_coal_oreunearthed +| :::| #minecraft:coal_oresmodern_industrialization 
-| :::| unearthed:gabbro_coal_oreunearthed | +| :::| minecraft:deepslate_coal_oretechreborn |
-| :::| unearthed:gray_basalt_coal_ore| unearthed | +
-| :::| unearthed:kimberlite_coal_ore| unearthed | +
-| :::| unearthed:lignite_coal_ore| unearthed | +
-| :::| unearthed:limestone_coal_ore| unearthed | +
-| :::| unearthed:marble_coal_ore| unearthed | +
-| :::| unearthed:mudstone_coal_ore| unearthed | +
-| :::| unearthed:phyllite_coal_ore| unearthed | +
-| :::| unearthed:pumice_coal_ore| unearthed | +
-| :::| unearthed:quartzite_coal_ore| unearthed | +
-| :::| unearthed:rhyolite_coal_ore| unearthed | +
-| :::| unearthed:schist_coal_ore| unearthed | +
-| :::| unearthed:siltstone_coal_ore| unearthed | +
-| :::| unearthed:slate_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 |
 | c:coal_tiny_dusts| astromine:coal_tiny_dust| astromine-discoveries, astromine-foundations | | c:coal_tiny_dusts| astromine:coal_tiny_dust| astromine-discoveries, astromine-foundations |
 | :::| modern_industrialization:coal_tiny_dust| modern_industrialization | | :::| modern_industrialization:coal_tiny_dust| modern_industrialization |
-| c:cobalt_blocks| c:cobalt_block| cotton-resources +| c:cobalt_blocks| randomtech:cobalt_block| randomtech 
-| :::| randomtech:cobalt_block| randomtech +| :::| c:cobalt_block| cotton-resources 
-| c:cobalt_dusts| c:cobalt_dust| cotton-resources +| c:cobalt_dusts| randomtech:cobalt_dust| randomtech 
-| :::| randomtech:cobalt_dust| randomtech |+| :::| c:cobalt_dust| cotton-resources |
 | c:cobalt_gears| c:cobalt_gear| cotton-resources | | c:cobalt_gears| c:cobalt_gear| cotton-resources |
-| c:cobalt_ingots| c:cobalt_ingot| cotton-resources +| c:cobalt_ingots| randomtech:cobalt_ingot| randomtech 
-| :::| randomtech:cobalt_ingot| randomtech |+| :::| c:cobalt_ingot| cotton-resources |
 | c:cobalt_nuggets| c:cobalt_nugget| cotton-resources | | c:cobalt_nuggets| c:cobalt_nugget| cotton-resources |
-| c:cobalt_ores| c:cobalt_end_ore| cotton-resources |+| c:cobalt_ores| randomtech:cobalt_ore| randomtech | 
 +| :::| c:cobalt_ore| cotton-resources |
 | :::| c:cobalt_nether_ore| cotton-resources | | :::| c:cobalt_nether_ore| cotton-resources |
-| :::| c:cobalt_ore| cotton-resources +| :::| c:cobalt_end_ore| cotton-resources |
-| :::| randomtech:cobalt_ore| randomtech |+
 | c:cobalt_plates| c:cobalt_plate| cotton-resources | | c:cobalt_plates| c:cobalt_plate| cotton-resources |
-| c:cobblestone| byg:dacite_cobblestone| byg | +| c:cobblestone| byg:red_rock| byg | 
-| :::| byg:ether_stone| byg | +| :::| byg:dacite_cobblestone| byg |
-| :::| byg:red_rock| byg |+
 | :::| byg:scoria_cobblestone| byg | | :::| byg:scoria_cobblestone| byg |
 | :::| byg:soapstone| byg | | :::| byg:soapstone| byg |
-| c:cobblestones| minecraft:cobblestone| cotton-resources, nafis |+| :::| byg:ether_stone| byg | 
 +| :::| minecraft:cobblestone| ae2, spatialharvesters | 
 +| :::| minecraft:infested_cobblestone| ae2 | 
 +| :::| minecraft:mossy_cobblestone| ae2 | 
 +| c:cobblestones| minecraft:cobblestone| nafis, cotton-resources 
 +| c:cocoa_beans| minecraft:cocoa_beans| adorn | 
 +| c:coffees| croptopia:coffee| croptopia | 
 +| c:coke_blocks| modern_industrialization:coke_block| modern_industrialization | 
 +| c:coke_dusts| modern_industrialization:coke_dust| modern_industrialization | 
 +| c:common_loot| minecraft:leather| resourceful_toolsgobber2 | 
 +| :::| minecraft:rabbit_hide| resourceful_tools, gobber2 | 
 +| :::| minecraft:feather| resourceful_tools, gobber2 | 
 +| :::| 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:tourmaline_juju| more_gems | 
 +| :::| more_gems:amethyst_juju| more_gems | 
 +| :::| resourceful_tools:hook_knife| resourceful_tools | 
 +| :::| veggie_way:chocolate_bar| veggie_way | 
 +| :::| veggie_way:energy_drink| veggie_way | 
 +| :::| veggie_way:energy_bar| veggie_way |
 | c:compressed_diamonds| mechanix:compressed_diamond| mechanix | | c:compressed_diamonds| mechanix:compressed_diamond| mechanix |
-| c:concreteminecraft:black_concreteartofalchemy +| c:compressed_dirtprefab:block_compressed_dirtprefab 
-| :::| minecraft:blue_concreteartofalchemy +c:compressed_glow_stone| prefab:block_compressed_glowstone| prefab | 
-| :::minecraft:brown_concreteartofalchemy +| c:compressed_obsidianprefab:block_compressed_obsidianprefab 
-| :::| minecraft:cyan_concrete| artofalchemy | +c:compressed_stoneprefab:block_compressed_stoneprefab 
-| :::| minecraft:gray_concrete| artofalchemy | +c:concrete| minecraft:white_concrete| artofalchemy | 
-| :::| minecraft:green_concrete| artofalchemy |+| :::| minecraft:orange_concrete| artofalchemy | 
 +| :::| minecraft:magenta_concrete| artofalchemy |
 | :::| minecraft:light_blue_concrete| artofalchemy | | :::| minecraft:light_blue_concrete| artofalchemy |
-| :::| minecraft:light_gray_concrete| artofalchemy |+| :::| minecraft:yellow_concrete| artofalchemy |
 | :::| minecraft:lime_concrete| artofalchemy | | :::| minecraft:lime_concrete| artofalchemy |
-| :::| minecraft:magenta_concrete| artofalchemy | 
-| :::| minecraft:orange_concrete| artofalchemy | 
 | :::| minecraft:pink_concrete| artofalchemy | | :::| minecraft:pink_concrete| artofalchemy |
 +| :::| minecraft:gray_concrete| artofalchemy |
 +| :::| minecraft:light_gray_concrete| artofalchemy |
 +| :::| minecraft:cyan_concrete| artofalchemy |
 | :::| minecraft:purple_concrete| artofalchemy | | :::| minecraft:purple_concrete| artofalchemy |
 +| :::| minecraft:blue_concrete| artofalchemy |
 +| :::| minecraft:brown_concrete| artofalchemy |
 +| :::| minecraft:green_concrete| artofalchemy |
 | :::| minecraft:red_concrete| artofalchemy | | :::| minecraft:red_concrete| artofalchemy |
-| :::| minecraft:white_concrete| artofalchemy | +| :::| minecraft:black_concrete| artofalchemy | 
-| :::| minecraft:yellow_concrete| artofalchemy | +| c:concrete_powder| minecraft:white_concrete_powder| artofalchemy | 
-| c:concrete_powder| minecraft:black_concrete_powder| artofalchemy | +| :::| minecraft:orange_concrete_powder| artofalchemy | 
-| :::| minecraft:blue_concrete_powder| artofalchemy | +| :::| minecraft:magenta_concrete_powder| artofalchemy |
-| :::| minecraft:brown_concrete_powder| artofalchemy | +
-| :::| minecraft:cyan_concrete_powder| artofalchemy | +
-| :::| minecraft:gray_concrete_powder| artofalchemy | +
-| :::| minecraft:green_concrete_powder| artofalchemy |+
 | :::| minecraft:light_blue_concrete_powder| artofalchemy | | :::| minecraft:light_blue_concrete_powder| artofalchemy |
-| :::| minecraft:light_gray_concrete_powder| artofalchemy |+| :::| minecraft:yellow_concrete_powder| artofalchemy |
 | :::| minecraft:lime_concrete_powder| artofalchemy | | :::| minecraft:lime_concrete_powder| artofalchemy |
-| :::| minecraft:magenta_concrete_powder| artofalchemy | 
-| :::| minecraft:orange_concrete_powder| artofalchemy | 
 | :::| minecraft:pink_concrete_powder| artofalchemy | | :::| minecraft:pink_concrete_powder| artofalchemy |
 +| :::| minecraft:gray_concrete_powder| artofalchemy |
 +| :::| minecraft:light_gray_concrete_powder| artofalchemy |
 +| :::| minecraft:cyan_concrete_powder| artofalchemy |
 | :::| minecraft:purple_concrete_powder| artofalchemy | | :::| minecraft:purple_concrete_powder| artofalchemy |
 +| :::| minecraft:blue_concrete_powder| artofalchemy |
 +| :::| minecraft:brown_concrete_powder| artofalchemy |
 +| :::| minecraft:green_concrete_powder| artofalchemy |
 | :::| minecraft:red_concrete_powder| artofalchemy | | :::| minecraft:red_concrete_powder| artofalchemy |
-| :::| minecraft:white_concrete_powder| artofalchemy | +| :::| minecraft:black_concrete_powder| artofalchemy 
-| :::| minecraft:yellow_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| techreborn, exnihilofabrico |
 +| :::| minecraft:cooked_porkchop| techreborn, exnihilofabrico |
 +| :::| minecraft:cooked_chicken| techreborn, exnihilofabrico |
 +| :::| minecraft:cooked_mutton| techreborn, exnihilofabrico |
 | :::| exnihilofabrico:silkworm_cooked| exnihilofabrico | | :::| exnihilofabrico:silkworm_cooked| exnihilofabrico |
-| :::| minecraft:cooked_beefexnihilofabrico +| :::| betteranimalsplus:venisoncookedbetteranimalsplus | 
-| :::| minecraft:cooked_chickenexnihilofabrico +| :::| betteranimalsplus:pheasantcooked| betteranimalsplus | 
-| :::| minecraft:cooked_muttonexnihilofabrico +| :::| betteranimalsplus:crab_meat_cooked| betteranimalsplus | 
-| :::| minecraft:cooked_porkchopexnihilofabrico |+| :::| betteranimalsplus:turkey_leg_cooked| betteranimalsplus | 
 +| :::| betteranimalsplus:eel_meat_cooked| betteranimalsplus | 
 +| :::| betteranimalsplus:calamari_cooked| betteranimalsplus 
 +| :::| minecraft:cooked_codtechreborn 
 +| :::| minecraft:cooked_rabbittechreborn 
 +| :::| minecraft:cooked_salmon| techreborn | 
 +| c:cooking_pots| croptopia: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 391: 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 396: Line 637:
 | :::| indrev:copper_dust| indrev | | :::| indrev:copper_dust| indrev |
 | :::| modern_industrialization:copper_dust| modern_industrialization | | :::| modern_industrialization:copper_dust| modern_industrialization |
 +| :::| resourceful_tools:powder_copper| resourceful_tools |
 | :::| techreborn:copper_dust| techreborn | | :::| techreborn:copper_dust| techreborn |
 | :::| texp:copper_dust| texp | | :::| texp:copper_dust| texp |
Line 404: 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 416: 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 424: 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 429: Line 674:
 | :::| #c:asteroid_copper_ores| astromine-discoveries | | :::| #c:asteroid_copper_ores| astromine-discoveries |
 | :::| bno:nethercopper_ore| bno | | :::| bno:nethercopper_ore| bno |
-| :::| c:copper_end_ore| cotton-resources | 
-| :::| c:copper_nether_ore| cotton-resources | 
 | :::| c:copper_ore| cotton-resources | | :::| c:copper_ore| cotton-resources |
 +| :::| c:copper_nether_ore| cotton-resources |
 +| :::| c:copper_end_ore| cotton-resources |
 | :::| indrev:copper_ore| indrev | | :::| indrev:copper_ore| indrev |
 | :::| mechanized:copper_ore| mechanized | | :::| mechanized:copper_ore| mechanized |
Line 437: 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 448: 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:crops| byg:blueberries| byg | | c:crops| byg:blueberries| byg |
-| :::| byg:crimson_berries| byg | 
 | :::| byg:green_apple| byg | | :::| byg:green_apple| 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_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 458: 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, 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 468: 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 |
 | c:diamond_gravels| gravel-ores:diamond_gravel| gravel-ores | | c:diamond_gravels| gravel-ores:diamond_gravel| gravel-ores |
 | c:diamond_nuggets| #c:diamond_fragments| astromine-foundations | | c:diamond_nuggets| #c:diamond_fragments| astromine-foundations |
 +| :::| gobber2:diamond_nugget| gobber2 |
 | :::| techreborn:diamond_nugget| techreborn | | :::| techreborn:diamond_nugget| techreborn |
-| c:diamond_ores| minecraft:diamond_ore| astromine-discoveries, astromine-foundations, randomtech, techreborn |+| c:diamond_ores| minecraft:diamond_ore| indrev, techreborn, astromine-foundations, astromine-discoveries, 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:conglomerate_diamond_oreunearthed +| :::| #minecraft:diamond_oresmodern_industrialization 
-| :::| unearthed:gabbro_diamond_oreunearthed | +| :::| minecraft:deepslate_diamond_oretechreborn |
-| :::| unearthed:gray_basalt_diamond_ore| unearthed | +
-| :::| unearthed:kimberlite_diamond_ore| unearthed | +
-| :::| unearthed:lignite_diamond_ore| unearthed | +
-| :::| unearthed:limestone_diamond_ore| unearthed | +
-| :::| unearthed:marble_diamond_ore| unearthed | +
-| :::| unearthed:mudstone_diamond_ore| unearthed | +
-| :::| unearthed:phyllite_diamond_ore| unearthed | +
-| :::| unearthed:pumice_diamond_ore| unearthed | +
-| :::| unearthed:quartzite_diamond_ore| unearthed | +
-| :::| unearthed:rhyolite_diamond_ore| unearthed | +
-| :::| unearthed:schist_diamond_ore| unearthed | +
-| :::| unearthed:siltstone_diamond_ore| unearthed | +
-| :::| unearthed:slate_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, crookedcrooksironchestnafis, slotlink |+| :::| 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 502: 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 |
 +| :::| 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 522: 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 534: 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:black_dye| exnihilofabrico | +| c:dyes| minecraft:white_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:blue_dye| exnihilofabrico | +| :::| minecraft:orange_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:brown_dye| exnihilofabrico | +| :::| minecraft:magenta_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:cyan_dye| exnihilofabrico | +| :::| minecraft:light_blue_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:gray_dye| exnihilofabrico | +| :::| minecraft:yellow_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:green_dye| exnihilofabrico | +| :::| minecraft:lime_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:light_blue_dye| exnihilofabrico | +| :::| minecraft:pink_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:light_gray_dye| exnihilofabrico | +| :::| minecraft:gray_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:lime_dye| exnihilofabrico | +| :::| minecraft:light_gray_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:magenta_dye| exnihilofabrico | +| :::| minecraft:cyan_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:orange_dye| exnihilofabrico | +| :::| minecraft:purple_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:pink_dye| exnihilofabrico | +| :::| minecraft:blue_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:purple_dye| exnihilofabrico | +| :::| minecraft:brown_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:red_dye| exnihilofabrico | +| :::| minecraft:green_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:white_dye| exnihilofabrico | +| :::| minecraft:red_dyepainters_blocks, mtr, exnihilofabrico, spatialharvesters 
-| :::| minecraft:yellow_dye| exnihilofabrico |+| :::| minecraft:black_dyepainters_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| 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 568: 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 575: 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 581: 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 587: 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 596: 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| astromine-discoveries, astromine-foundations, randomtech, techreborn |+| c:emerald_ores| minecraft:emerald_ore| techreborn, astromine-foundations, astromine-discoveries, 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:conglomerate_emerald_oreunearthed +| :::| #minecraft:emerald_oresmodern_industrialization 
-| :::| unearthed:gabbro_emerald_oreunearthed | +| :::| minecraft:deepslate_emerald_oretechreborn |
-| :::| unearthed:gray_basalt_emerald_ore| unearthed | +
-| :::| unearthed:kimberlite_emerald_ore| unearthed | +
-| :::| unearthed:lignite_emerald_ore| unearthed | +
-| :::| unearthed:limestone_emerald_ore| unearthed | +
-| :::| unearthed:marble_emerald_ore| unearthed | +
-| :::| unearthed:mudstone_emerald_ore| unearthed | +
-| :::| unearthed:phyllite_emerald_ore| unearthed | +
-| :::| unearthed:pumice_emerald_ore| unearthed | +
-| :::| unearthed:quartzite_emerald_ore| unearthed | +
-| :::| unearthed:rhyolite_emerald_ore| unearthed | +
-| :::| unearthed:schist_emerald_ore| unearthed | +
-| :::| unearthed:siltstone_emerald_ore| unearthed | +
-| :::| unearthed:slate_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:endalum_dusts| mechanix:endalum_dust| mechanix | | c:endalum_dusts| mechanix:endalum_dust| mechanix |
 | c:endalum_ingots| mechanix:endalum_ingot| mechanix | | c:endalum_ingots| mechanix:endalum_ingot| mechanix |
Line 626: 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 633: 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 |+| :::| minecraft:feather| icarus, spatialharvesters |
 | 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 642: Line 941:
 | :::| byg:cypress_fence_gate| byg | | :::| byg:cypress_fence_gate| byg |
 | :::| byg:ebony_fence_gate| byg | | :::| byg:ebony_fence_gate| byg |
-| :::| byg:embur_fence_gate| byg | 
 | :::| byg:fir_fence_gate| byg | | :::| byg:fir_fence_gate| byg |
 | :::| byg:green_enchanted_fence_gate| byg | | :::| byg:green_enchanted_fence_gate| byg |
 | :::| byg:holly_fence_gate| byg | | :::| byg:holly_fence_gate| byg |
 | :::| byg:jacaranda_fence_gate| byg | | :::| byg:jacaranda_fence_gate| byg |
-| :::| byg:lament_fence_gate| byg | 
 | :::| byg:mahogany_fence_gate| byg | | :::| byg:mahogany_fence_gate| byg |
 | :::| byg:mangrove_fence_gate| byg | | :::| byg:mangrove_fence_gate| byg |
 | :::| byg:maple_fence_gate| byg | | :::| byg:maple_fence_gate| byg |
-| :::| byg:palm_fence_gate| byg | 
 | :::| byg:pine_fence_gate| byg | | :::| byg:pine_fence_gate| byg |
 | :::| byg:rainbow_eucalyptus_fence_gate| byg | | :::| byg:rainbow_eucalyptus_fence_gate| byg |
 | :::| byg:redwood_fence_gate| byg | | :::| byg:redwood_fence_gate| byg |
 | :::| byg:skyris_fence_gate| byg | | :::| byg:skyris_fence_gate| byg |
-| :::| byg:sythian_fence_gate| byg | 
 | :::| byg:willow_fence_gate| byg | | :::| byg:willow_fence_gate| byg |
 | :::| byg:witch_hazel_fence_gate| byg | | :::| byg:witch_hazel_fence_gate| byg |
 | :::| byg:zelkova_fence_gate| byg | | :::| byg:zelkova_fence_gate| byg |
 +| :::| byg:sythian_fence_gate| byg |
 +| :::| byg:embur_fence_gate| byg |
 +| :::| byg:palm_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_ingots| mythicmetals:ferrite_ingot| 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| veggie_way:flour| veggie_way |+| c:flour| bonappetit:flour| bonappetit | 
 +| :::| 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 671: 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:crimson_berries| byg | 
 | :::| byg:green_apple| byg | | :::| byg:green_apple| byg |
-| :::| minecraft:apple| exnihilofabrico, veggie_way |+| :::| byg:crimson_berries| byg | 
 +| :::| 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| veggie_way | +| :::| minecraft:beetroot| veggie_way, spatialharvesters 
-| :::| minecraft:honeycomb| veggie_way | +| :::| minecraft:honeycomb| veggie_way, spatialharvesters 
-| :::| minecraft:melon_slice| veggie_way | +| :::| minecraft:melon_slice| croptopia, valley, veggie_way, spatialharvesters 
-| :::| minecraft:sugar_cane| veggie_way | +| :::| minecraft:sugar_cane| veggie_way, spatialharvesters 
-| :::| minecraft:sweet_berries| 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 691: 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:gems| byg:ametrine_gems| byg | | c:gems| byg:ametrine_gems| byg |
 | :::| minecraft:diamond| icarus, more_gems | | :::| minecraft:diamond| icarus, more_gems |
 | :::| minecraft:emerald| icarus, more_gems | | :::| minecraft:emerald| icarus, more_gems |
-| :::| more_gems:alexandrite| more_gems | 
-| :::| more_gems:amethyst| more_gems | 
-| :::| more_gems:carbonado| more_gems | 
 | :::| more_gems:citrine| more_gems | | :::| more_gems:citrine| more_gems |
 +| :::| more_gems:tourmaline| more_gems |
 +| :::| more_gems:topaz| more_gems |
 +| :::| more_gems:alexandrite| more_gems |
 | :::| more_gems:corundum| more_gems | | :::| more_gems:corundum| more_gems |
 +| :::| more_gems:sapphire| more_gems |
 +| :::| more_gems:carbonado| more_gems |
 +| :::| more_gems:amethyst| more_gems |
 | :::| more_gems:ruby| more_gems | | :::| more_gems:ruby| more_gems |
-| :::more_gems:sapphiremore_gems +c:glassminecraft:glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| more_gems:topaz| more_gems | +| :::| minecraft:white_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| more_gems:tourmaline| more_gems | +| :::| minecraft:orange_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| c:glass| minecraft:black_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:magenta_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:blue_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:light_blue_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:brown_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:yellow_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:cyan_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:lime_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:glass| artofalchemy, refinedmachinery +| :::| minecraft:pink_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:gray_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:gray_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:green_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:light_gray_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:light_blue_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:cyan_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:light_gray_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:purple_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:lime_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:blue_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:magenta_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:brown_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:orange_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:green_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:pink_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:red_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:purple_stained_glass| artofalchemy, refinedmachinery +| :::| minecraft:black_stained_glassrefinedmachinery, modern_industrialization, artofalchemy, ae2, prefab 
-| :::| minecraft:red_stained_glass| artofalchemy, refinedmachinery +| :::| refinedmachinery:glass_block| refinedmachinery |
-| :::| minecraft:white_stained_glass| artofalchemy, refinedmachinery +
-| :::| minecraft:yellow_stained_glassartofalchemy, refinedmachinery |+
 | :::| refinedmachinery:black_glass_block| refinedmachinery | | :::| refinedmachinery:black_glass_block| refinedmachinery |
-| :::| refinedmachinery:glass_block| refinedmachinery | +| c:glass_blocks| minecraft:glass| appliedenergistics2, expandedstorage 
-| c:glass_blocks| minecraft:black_stained_glass| appliedenergistics2 | +| :::| minecraft:white_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:blue_stained_glass| appliedenergistics2 | +| :::| minecraft:orange_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:brown_stained_glass| appliedenergistics2 | +| :::| minecraft:magenta_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:cyan_stained_glass| appliedenergistics2 | +| :::| minecraft:light_blue_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:glass| appliedenergistics2 | +| :::| minecraft:yellow_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:gray_stained_glass| appliedenergistics2 | +| :::| minecraft:lime_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:green_stained_glass| appliedenergistics2 | +| :::| minecraft:pink_stained_glass| appliedenergistics2, expandedstorage 
-| :::| minecraft:light_blue_stained_glass| appliedenergistics2 | +| :::| minecraft:gray_stained_glass| appliedenergistics2, expandedstorage | 
-| :::| minecraft:light_gray_stained_glass| appliedenergistics2 | +| :::| minecraft:light_gray_stained_glassappliedenergistics2, expandedstorage | 
-| :::| minecraft:lime_stained_glass| appliedenergistics2 +| :::| minecraft:cyan_stained_glass| appliedenergistics2, expandedstorage | 
-| :::| minecraft:magenta_stained_glass| appliedenergistics2 | +| :::| minecraft:purple_stained_glassappliedenergistics2, expandedstorage | 
-| :::| minecraft:orange_stained_glass| appliedenergistics2 +| :::| minecraft:blue_stained_glassappliedenergistics2, expandedstorage | 
-| :::| minecraft:pink_stained_glass| appliedenergistics2 | +| :::| minecraft:brown_stained_glassappliedenergistics2, expandedstorage | 
-| :::| minecraft:purple_stained_glass| appliedenergistics2 +| :::| minecraft:green_stained_glassappliedenergistics2, expandedstorage | 
-| :::| minecraft:red_stained_glass| appliedenergistics2 | +| :::| minecraft:red_stained_glassappliedenergistics2, expandedstorage | 
-| :::| minecraft:white_stained_glass| appliedenergistics2 | +| :::| minecraft:black_stained_glassappliedenergistics2, expandedstorage |
-| :::| minecraft:yellow_stained_glass| appliedenergistics2 | +
-| :::| {'id': 'minecraft:black_stained_glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:blue_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:brown_stained_glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:cyan_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:gray_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:green_stained_glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:light_blue_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:light_gray_stained_glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:lime_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:magenta_stained_glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:orange_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:pink_stained_glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:purple_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:red_stained_glass''required': True}| expandedstorage | +
-| :::| {'id': 'minecraft:white_stained_glass', 'required': True}expandedstorage | +
-| :::| {'id': 'minecraft:yellow_stained_glass''required': True}| expandedstorage |+
 | :::| xb:g| xb | | :::| xb:g| xb |
-| :::| xb:ga| xb |+| :::| xb:gk| xb |
 | :::| xb:gb| xb | | :::| xb:gb| xb |
 +| :::| xb:gw| xb |
 | :::| xb:gc| xb | | :::| xb:gc| xb |
 +| :::| xb:gn| xb |
 | :::| xb:gg| xb | | :::| xb:gg| xb |
-| :::| xb:gk| xb |+| :::| xb:gu| xb | 
 +| :::| xb:ga| xb |
 | :::| xb:gl| xb | | :::| xb:gl| xb |
 | :::| xb:gm| xb | | :::| xb:gm| xb |
-| :::| xb:gn| xb | 
 | :::| xb:go| xb | | :::| xb:go| xb |
 | :::| xb:gp| xb | | :::| xb:gp| xb |
 +| :::| xb:gv| xb |
 | :::| xb:gr| xb | | :::| xb:gr| xb |
-| :::| xb:gu| xb | 
-| :::| xb:gv| xb | 
-| :::| xb:gw| xb | 
 | :::| xb:gy| xb | | :::| xb:gy| xb |
-| c:glass_panes| minecraft:black_stained_glass_pane| adorn, computercraft |+| :::| {'id': 'minecraft:glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:white_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:orange_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:magenta_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:light_blue_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:yellow_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:lime_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:pink_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:gray_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:light_gray_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:cyan_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:purple_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:blue_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:brown_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:green_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:red_stained_glass', 'required': True}| expandedstorage | 
 +| :::| {'id': 'minecraft:black_stained_glass', 'required': True}| expandedstorage | 
 +| :::| 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:white_stained_glass_pane| adorn, computercraft | 
 +| :::| minecraft:gray_stained_glass_pane| adorn, computercraft | 
 +| :::| minecraft:light_gray_stained_glass_pane| adorn, computercraft |
 | :::| minecraft:blue_stained_glass_pane| adorn, computercraft | | :::| minecraft:blue_stained_glass_pane| adorn, computercraft |
-| :::| minecraft:brown_stained_glass_pane| adorn, computercraft |+| :::| minecraft:light_blue_stained_glass_pane| adorn, computercraft |
 | :::| minecraft:cyan_stained_glass_pane| adorn, computercraft | | :::| minecraft:cyan_stained_glass_pane| adorn, computercraft |
-| :::| minecraft:glass_pane| adorn, computercraft | +| :::| minecraft:lime_stained_glass_pane| adorn, computercraft |
-| :::| minecraft:gray_stained_glass_pane| adorn, computercraft |+
 | :::| minecraft:green_stained_glass_pane| adorn, computercraft | | :::| minecraft:green_stained_glass_pane| adorn, computercraft |
-| :::| minecraft:light_blue_stained_glass_pane| adorn, computercraft | +| :::| minecraft:orange_stained_glass_pane| adorn, computercraft | 
-| :::| minecraft:light_gray_stained_glass_pane| adorn, computercraft | +| :::| minecraft:yellow_stained_glass_pane| adorn, computercraft | 
-| :::| minecraft:lime_stained_glass_pane| adorn, computercraft |+| :::| minecraft:red_stained_glass_pane| adorn, computercraft |
 | :::| minecraft:magenta_stained_glass_pane| adorn, computercraft | | :::| minecraft:magenta_stained_glass_pane| adorn, computercraft |
-| :::| minecraft:orange_stained_glass_pane| adorn, computercraft |+| :::| minecraft:brown_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 |
-| :::| minecraft:purple_stained_glass_pane| adorn, computercraft | +c:glow_berries| minecraft:glow_berries| adorn |
-| :::| minecraft:red_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:white_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:yellow_stained_glass_pane| adorn, computercraft |+
 | 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-foundationscomputercraft |+| c:gold_blocks| minecraft:gold_block| computercraft, modern_industrialization, spatialharvesters, astromine-foundations, mtr, astromine-discoveriesmythicmetals |
 | c:gold_dust| refinedmachinery:gold_dust| refinedmachinery | | c:gold_dust| refinedmachinery:gold_dust| refinedmachinery |
 | :::| simplequern:gold_dust| simplequern | | :::| simplequern:gold_dust| simplequern |
Line 803: Line 1237:
 | :::| mechanix:gold_dust| mechanix | | :::| mechanix:gold_dust| mechanix |
 | :::| modern_industrialization:gold_dust| modern_industrialization | | :::| modern_industrialization:gold_dust| modern_industrialization |
 +| :::| resourceful_tools:powder_gold| resourceful_tools |
 | :::| techreborn:gold_dust| techreborn | | :::| techreborn:gold_dust| techreborn |
 | :::| texp:gold_dust| texp | | :::| texp:gold_dust| texp |
 | 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, crookedcrooks, ironchest, nafisslotlink |+| c:gold_ingots| minecraft:gold_ingot| computercraft, astromine-discoveries, crookedcrooks, indrev, nafis, astromine-foundations, cotton-resources, basicshields, expandedstorage, slotlink, spatialharvesters, ae2, ironchest, adornmythicmetals, 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| appliedenergistics2, astromine-discoveries, astromine-foundationsindrev, modern_industrialization, randomtech +| c:gold_ores| minecraft:gold_ore| indrev, techreborn, modern_industrialization, appliedenergistics2, astromine-foundations, astromine-discoveriesmythicmetals, randomtech |
-| :::| #c:asteroid_gold_ores| astromine-discoveries |+
 | :::| minecraft:nether_gold_ore| astromine-foundations, indrev, randomtech | | :::| minecraft:nether_gold_ore| astromine-foundations, indrev, randomtech |
 +| :::| #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 829: 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, icarus | +| c:gravel| unearthed:pyroxene| unearthed | 
-| c:green_dyes| minecraft:green_dye| appliedenergistics2, computercraft, 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 855: 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 |
-| c:iridium_ores| c:iridium_end_ore| cotton-resources |+| :::| modern_industrialization:iridium_nugget| modern_industrialization | 
 +| c:iridium_ores| c:iridium_ore| cotton-resources |
 | :::| c:iridium_nether_ore| cotton-resources | | :::| c:iridium_nether_ore| cotton-resources |
-| :::| c:iridium_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 878: Line 1355:
 | :::| mechanix:iron_dust| mechanix | | :::| mechanix:iron_dust| mechanix |
 | :::| modern_industrialization:iron_dust| modern_industrialization | | :::| modern_industrialization:iron_dust| modern_industrialization |
 +| :::| resourceful_tools:powder_iron| resourceful_tools |
 | :::| techreborn:iron_dust| techreborn | | :::| techreborn:iron_dust| techreborn |
 | :::| texp:iron_dust| texp | | :::| texp:iron_dust| texp |
 | 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| appliedenergistics2, astromine-discoveries, astromine-foundations, computercraft, cotton-resources, crookedcrooks, ironchest, nafis, randomtech, slotlink +| c:iron_ingots| minecraft:iron_ingot| computercraft, astromine-discoveries, crookedcrooks, indrev, nafis, astromine-foundations, cotton-resources, expandedstorage, slotlink, spatialharvesters, extragenerators, ae2, mtr, ironchest, adorn, randomtech, mythicmetals, modern_industrialization, appliedenergistics2, comforts, bclib, catwalksinc | 
-| c:iron_nuggets| minecraft:iron_nugget| astromine-discoveries, astromine-foundations +| :::| betterend:thallasium_ingot| betterend | 
-| c:iron_ores| minecraft:iron_ore| appliedenergistics2, astromine-discoveries, astromine-foundations, indrev, modern_industrialization, randomtech, 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-discoveries, 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:conglomerate_iron_ore| unearthed | +| :::| {'id''minecraft:iron_ores', 'required'False}ae2 
-:::| unearthed:gabbro_iron_ore| unearthed | +| :::| #minecraft:iron_oresmodern_industrialization 
-| :::| unearthed:gray_basalt_iron_ore| unearthed | +| :::| minecraft:deepslate_iron_oretechreborn |
-| :::| unearthed:kimberlite_iron_ore| unearthed | +
-| :::| unearthed:lignite_iron_ore| unearthed | +
-| :::| unearthed:limestone_iron_ore| unearthed | +
-| :::| unearthed:marble_iron_ore| unearthed | +
-| :::| unearthed:mudstone_iron_ore| unearthed | +
-| :::| unearthed:phyllite_iron_ore| unearthed | +
-| :::| unearthed:pumice_iron_ore| unearthed | +
-| :::| unearthed:quartzite_iron_ore| unearthed | +
-| :::| unearthed:rhyolite_iron_ore| unearthed | +
-| :::| unearthed:schist_iron_oreunearthed +
-| :::| unearthed:siltstone_iron_oreunearthed +
-| :::| unearthed:slate_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 910: 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| astromine-discoveries, astromine-foundations, randomtech, techreborn |+| c:lapis_ores| minecraft:lapis_ore| techreborn, astromine-foundations, astromine-discoveries, 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:conglomerate_lapis_oreunearthed +| :::| #minecraft:lapis_oresmodern_industrialization 
-| :::| unearthed:gabbro_lapis_oreunearthed | +| :::| minecraft:deepslate_lapis_oretechreborn |
-| :::| unearthed:gray_basalt_lapis_ore| unearthed | +
-| :::| unearthed:kimberlite_lapis_ore| unearthed | +
-| :::| unearthed:lignite_lapis_ore| unearthed | +
-| :::| unearthed:limestone_lapis_ore| unearthed | +
-| :::| unearthed:marble_lapis_ore| unearthed | +
-| :::| unearthed:mudstone_lapis_ore| unearthed | +
-| :::| unearthed:phyllite_lapis_ore| unearthed | +
-| :::| unearthed:pumice_lapis_ore| unearthed | +
-| :::| unearthed:quartzite_lapis_ore| unearthed | +
-| :::| unearthed:rhyolite_lapis_ore| unearthed | +
-| :::| unearthed:schist_lapis_ore| unearthed | +
-| :::| unearthed:siltstone_lapis_ore| unearthed | +
-| :::| unearthed:slate_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 950: 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 964: 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 970: 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 977: Line 1504:
 | :::| #c:asteroid_lead_ores| astromine-discoveries | | :::| #c:asteroid_lead_ores| astromine-discoveries |
 | :::| bno:netherlead_ore| bno | | :::| bno:netherlead_ore| bno |
-| :::| c:lead_end_ore| cotton-resources | 
-| :::| c:lead_nether_ore| cotton-resources | 
 | :::| c:lead_ore| cotton-resources | | :::| c:lead_ore| cotton-resources |
 +| :::| c:lead_nether_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 991: 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 +| c:leafy_salads| croptopia:leafy_salad| croptopia | 
-| :::| minecraft:rabbit_hide| icarus |+| c:leather| minecraft:leather| astromine-discoveries, icarus, astromine-foundations, spatialharvesters 
 +| :::| minecraft:rabbit_hide| icarus, spatialharvesters | 
 +| 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: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, icarus | +| c:light_blue_dye| minecraft:light_blue_dye| ae2 | 
-| c:light_gray_dyes| minecraft:light_gray_dye| appliedenergistics2, computercraft, 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, icarus | +| :::| minecraft:blue_dye| valley | 
-| c:limestoneblockus:chiseled_limestoneblockus +| c:light_gray_dye| minecraft:light_gray_dye| ae2 
-| :::| blockus:limestone| blockus |+| 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:limeadescroptopia:limeadecroptopia 
 +c:limestone| blockus:limestone| blockus |
 | :::| blockus:limestone_bricks| blockus | | :::| blockus:limestone_bricks| blockus |
-| :::| blockus:limestone_circle_pavement| blockus | 
 | :::| blockus:limestone_pillar| blockus | | :::| blockus:limestone_pillar| blockus |
 +| :::| blockus:chiseled_limestone| blockus |
 +| :::| blockus:limestone_circle_pavement| blockus |
 | 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 1014: 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, 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 1028: 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:marbleblockus:chiseled_marbleblockus +| c:mango_ice_creamscroptopia:mango_ice_creamcroptopia 
-| :::| blockus:chiseled_marble_pillar| blockus | +c:marble| blockus:marble| blockus |
-| :::| blockus:marble| blockus |+
 | :::| blockus:marble_bricks| blockus | | :::| blockus:marble_bricks| blockus |
-| :::| blockus:marble_circle_pavement| blockus | 
 | :::| blockus:marble_pillar| blockus | | :::| blockus:marble_pillar| blockus |
 +| :::| blockus:chiseled_marble_pillar| blockus |
 +| :::| blockus:chiseled_marble| blockus |
 +| :::| blockus:marble_circle_pavement| blockus |
 | 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 1061: 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:mushrooms| byg:black_puff| byg | +| c:mortar_and_pestles| croptopia:mortar_and_pestle| croptopia | 
-| :::| byg:green_mushroom| byg |+| 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 | 
 +| :::| byg:wood_blewit| byg | 
 +| :::| byg:weeping_milkcap| byg | 
 +| :::| byg:black_puff| byg |
 | :::| byg:sythian_fungus| byg | | :::| byg:sythian_fungus| byg |
-| :::| byg:weeping_milkcapbyg +| :::| minecraft:brown_mushroomspatialharvesters 
-| :::| byg:wood_blewitbyg |+| :::| minecraft:red_mushroomspatialharvesters | 
 +| :::| 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 |
 | c:netherite_scraps| minecraft:netherite_scrap| astromine-discoveries, astromine-foundations | | c:netherite_scraps| minecraft:netherite_scrap| astromine-discoveries, astromine-foundations |
 | c:netherite_tiny_dusts| astromine:netherite_tiny_dust| astromine-discoveries, astromine-foundations | | c:netherite_tiny_dusts| astromine:netherite_tiny_dust| astromine-discoveries, astromine-foundations |
-| c:netherrack| byg:blue_netherrack| byg |+| c:netherrack| byg:overgrown_netherrack| byg | 
 +| :::| byg:overgrown_crimson_blackstone| byg | 
 +| :::| byg:blue_netherrack| byg |
 | :::| byg:brimstone| byg | | :::| byg:brimstone| byg |
 | :::| byg:embur_nylium| byg | | :::| byg:embur_nylium| byg |
-| :::| byg:overgrown_crimson_blackstone| byg | 
-| :::| byg:overgrown_netherrack| byg | 
 | :::| byg:sythian_nylium| byg | | :::| byg:sythian_nylium| byg |
 +| :::| minecraft:netherrack| spatialharvesters |
 | c:netherrack_dusts| techreborn:netherrack_dust| techreborn | | c:netherrack_dusts| techreborn:netherrack_dust| techreborn |
 | c:netherrack_small_dusts| techreborn:netherrack_small_dust| techreborn | | c:netherrack_small_dusts| techreborn:netherrack_small_dust| techreborn |
Line 1095: 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 1113: 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:orange_dyesminecraft:orange_dyeappliedenergistics2, computercraft, icarus +| c:onionbonappetit:onionbonappetit | 
-| c:oresminecraft:coal_oremodern_industrialization +| :::| valley:onion| valley 
-| :::| minecraft:gold_ore| modern_industrialization | +| c:onion_ringscroptopia:onion_ringscroptopia 
-| :::| minecraft:iron_ore| modern_industrialization | +c:orange_dye| minecraft:orange_dye| ae2 | 
-| :::| modern_industrialization:antimony_ore| modern_industrialization | +| c:orange_dyes| minecraft:orange_dyecomputercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr 
-| :::| modern_industrialization:bauxite_ore| modern_industrialization |+c:ores| minecraft:gold_ore| modern_industrialization, spatialharvesters 
 +| :::| minecraft:iron_ore| modern_industrialization, spatialharvesters 
 +| :::| minecraft:coal_ore| modern_industrialization, spatialharvesters |
 | :::| modern_industrialization:copper_ore| modern_industrialization | | :::| modern_industrialization:copper_ore| modern_industrialization |
 +| :::| modern_industrialization:tin_ore| modern_industrialization |
 +| :::| modern_industrialization:bauxite_ore| modern_industrialization |
 | :::| modern_industrialization:lead_ore| modern_industrialization | | :::| modern_industrialization:lead_ore| modern_industrialization |
 +| :::| modern_industrialization:antimony_ore| modern_industrialization |
 | :::| modern_industrialization:nickel_ore| modern_industrialization | | :::| modern_industrialization:nickel_ore| modern_industrialization |
-| :::| modern_industrialization:salt_ore| modern_industrialization | 
 | :::| modern_industrialization:silver_ore| modern_industrialization | | :::| modern_industrialization:silver_ore| modern_industrialization |
-| :::| modern_industrialization:tin_ore| modern_industrialization |+| :::| modern_industrialization:salt_ore| modern_industrialization 
 +| :::| minecraft:nether_gold_ore| spatialharvesters | 
 +| :::| minecraft:redstone_ore| spatialharvesters | 
 +| :::| minecraft:diamond_ore| spatialharvesters | 
 +| :::| minecraft:lapis_ore| spatialharvesters | 
 +| :::| minecraft:emerald_ore| 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 1150: Line 1805:
 | :::| mythicmetals:osmium_nugget| mythicmetals | | :::| mythicmetals:osmium_nugget| mythicmetals |
 | c:osmium_ores| bno:netherosmium_ore| bno | | c:osmium_ores| bno:netherosmium_ore| bno |
-| :::| c:osmium_end_ore| cotton-resources | 
-| :::| c:osmium_nether_ore| cotton-resources | 
 | :::| c:osmium_ore| cotton-resources | | :::| c:osmium_ore| cotton-resources |
 +| :::| c:osmium_nether_ore| cotton-resources |
 +| :::| c:osmium_end_ore| cotton-resources |
 | :::| mythicmetals:osmium_ore| mythicmetals | | :::| mythicmetals:osmium_ore| mythicmetals |
 | 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 |
-| c:palladium_ores| c:palladium_end_ore| cotton-resources |+| :::| mythicmetals:palladium_nugget| mythicmetals | 
 +| c:palladium_ores| c:palladium_ore| cotton-resources |
 | :::| c:palladium_nether_ore| cotton-resources | | :::| c:palladium_nether_ore| cotton-resources |
-| :::| c:palladium_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 1170: Line 1834:
 | c:peridot_gears| c:peridot_gear| cotton-resources | | c:peridot_gears| c:peridot_gear| cotton-resources |
 | c:peridot_gems| techreborn:peridot_gem| techreborn | | c:peridot_gems| techreborn:peridot_gem| techreborn |
-| c:peridot_ores| c:peridot_end_ore| cotton-resources |+| c:peridot_ores| c:peridot_ore| cotton-resources |
 | :::| c:peridot_nether_ore| cotton-resources | | :::| c:peridot_nether_ore| cotton-resources |
-| :::| c:peridot_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 1183: Line 1849:
 | c:phosphorous_dusts| techreborn:phosphorous_dust| techreborn | | c:phosphorous_dusts| techreborn:phosphorous_dust| techreborn |
 | c:phosphorous_small_dusts| techreborn:phosphorous_small_dust| techreborn | | c:phosphorous_small_dusts| techreborn:phosphorous_small_dust| techreborn |
-| c:pickaxes| more_gems:alexandrite_pickaxe| more_gems |+| c:pickaxes| more_gems:citrine_pickaxe| more_gems | 
 +| :::| more_gems:tourmaline_pickaxe| more_gems |
 | :::| more_gems:amethyst_pickaxe| more_gems | | :::| more_gems:amethyst_pickaxe| more_gems |
-| :::| more_gems:carbonado_pickaxe| more_gems | 
-| :::| more_gems:citrine_pickaxe| more_gems | 
-| :::| more_gems:corundum_pickaxe| more_gems | 
 | :::| more_gems:emerald_pickaxe| more_gems | | :::| more_gems:emerald_pickaxe| more_gems |
-| :::| more_gems:ruby_pickaxe| more_gems | 
-| :::| more_gems:sapphire_pickaxe| more_gems | 
 | :::| more_gems:topaz_pickaxe| more_gems | | :::| more_gems:topaz_pickaxe| more_gems |
-| :::| more_gems:tourmaline_pickaxe| more_gems | +| :::| more_gems:alexandrite_pickaxe| more_gems | 
-| c:pink_dyes| minecraft:pink_dye| appliedenergistics2, computercraft, icarus |+| :::| more_gems:corundum_pickaxe| more_gems | 
 +| :::| more_gems:sapphire_pickaxe| more_gems | 
 +| :::| more_gems:ruby_pickaxe| more_gems | 
 +| :::| more_gems:carbonado_pickaxe| more_gems 
 +| 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 1207: 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 |
-| c:platinum_ores| c:platinum_end_ore| cotton-resources |+| :::| modern_industrialization:platinum_nugget| modern_industrialization | 
 +| c:platinum_ores| c:platinum_ore| cotton-resources |
 | :::| c:platinum_nether_ore| cotton-resources | | :::| c:platinum_nether_ore| cotton-resources |
-| :::| c:platinum_ore| cotton-resources |+| :::| c:platinum_end_ore| cotton-resources |
 | :::| 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_darkwood_logs| eymbra:prehistoric_darkwood_log| eymbra |
 +| c:prehistoric_lepidodendrales_logs| eymbra:prehistoric_lepidodendrales_log| eymbra |
 +| c:prehistoric_mangrove_logs| eymbra:prehistoric_mangrove_log| eymbra |
 | c:prometheum_blocks| mythicmetals:prometheum_block| mythicmetals | | c:prometheum_blocks| mythicmetals:prometheum_block| mythicmetals |
 | c:prometheum_ingots| mythicmetals:prometheum_ingot| mythicmetals | | c:prometheum_ingots| mythicmetals:prometheum_ingot| mythicmetals |
 | c:prometheum_nuggets| mythicmetals:prometheum_nugget| mythicmetals | | c:prometheum_nuggets| mythicmetals:prometheum_nugget| mythicmetals |
 | c:prometheum_ores| mythicmetals:prometheum_ore| mythicmetals | | c:prometheum_ores| mythicmetals:prometheum_ore| mythicmetals |
-| c:protein| veggie_way:cooked_tofu| veggie_way |+| c:protein| veggie_way:quinoa| veggie_way |
 | :::| veggie_way:lentil| veggie_way | | :::| veggie_way:lentil| veggie_way |
-| :::| veggie_way:quinoa| veggie_way | 
 | :::| veggie_way:soybean| veggie_way | | :::| veggie_way:soybean| veggie_way |
-| c:purple_dyes| minecraft:purple_dye| appliedenergistics2, computercraft, icarus | +| :::| veggie_way:cooked_tofu| veggie_way | 
-| c:purpur_blocks| minecraft:purpur_block| astromine-discoveries, astromine-foundations, astromine-technologies |+| c:protein_bars| croptopia:protein_bar| croptopia | 
 +| 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 1254: 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:rose_quartz| cinderscapes |+
 | :::| cinderscapes:smoky_quartz| cinderscapes | | :::| cinderscapes:smoky_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_bricks| astromine-technologies, slotlink +| :::| minecraft:quartz_pillarslotlink, astromine-technologies | 
-| :::| minecraft:quartz_pillar| astromine-technologies, slotlink +| :::| minecraft:smooth_quartzslotlink, astromine-technologies | 
-| :::| minecraft:smooth_quartz| astromine-technologies, slotlink |+| :::| minecraft:quartz_bricksslotlink, 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 1269: 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| appliedenergistics2, astromine-discoveries, astromine-foundations, randomtech |+| 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 1278: 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:raisin_oatmeal_cookies| croptopia:raisin_oatmeal_cookie| croptopia |
 +| c:raisins| croptopia:raisins| croptopia |
 +| c:rare_loot| minecraft:netherite_scrap| resourceful_tools, veggie_way, gobber2 |
 +| :::| 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_ring_return| gobber2 |
 +| :::| gobber2:gobber2_ring_attraction| gobber2 |
 +| :::| gobber2:gobber2_ring_sunshine| gobber2 |
 +| :::| more_gems:corundum_juju| more_gems |
 +| :::| more_gems:sapphire_juju| more_gems |
 +| :::| resourceful_tools:diamond_crack_hammer| resourceful_tools |
 +| c:ravioli| croptopia:ravioli| croptopia |
 +| 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:pufferfish| exnihilofabrico | 
 | :::| minecraft:salmon| exnihilofabrico | | :::| minecraft:salmon| exnihilofabrico |
 | :::| minecraft:tropical_fish| exnihilofabrico | | :::| minecraft:tropical_fish| 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| techreborn, exnihilofabrico |
 +| :::| minecraft:porkchop| techreborn, exnihilofabrico |
 +| :::| minecraft:chicken| techreborn, exnihilofabrico |
 +| :::| minecraft:rabbit| techreborn, exnihilofabrico |
 +| :::| minecraft:mutton| techreborn, exnihilofabrico |
 | :::| exnihilofabrico:silkworm_raw| exnihilofabrico | | :::| exnihilofabrico:silkworm_raw| exnihilofabrico |
-| :::| minecraft:beefexnihilofabrico +| :::| betteranimalsplus:venisonrawbetteranimalsplus 
-| :::| minecraft:chickenexnihilofabrico +| :::| betteranimalsplus:pheasantrawbetteranimalsplus 
-| :::| minecraft:muttonexnihilofabrico +| :::| betteranimalsplus:crab_meat_raw| betteranimalsplus | 
-| :::| minecraft:porkchopexnihilofabrico +| :::| betteranimalsplus:turkey_leg_raw| betteranimalsplus | 
-| :::| minecraft:rabbitexnihilofabrico |+| :::| betteranimalsplus:eel_meat_raw| betteranimalsplus | 
 +| :::| betteranimalsplus:calamari_rawbetteranimalsplus 
 +| :::| minecraft:codtechreborn 
 +| :::| minecraft:salmontechreborn |
 | 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, 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 1297: 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:chiseled_red_sandstone| astromine-technologies | +| :::| minecraft:cut_red_sandstone| astromine-technologies, waystones 
-| :::| minecraft:cut_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 +| :::| blockus:red_sandstone_bricks| blockus | 
-| c:redstone_dusts| minecraft:redstone| appliedenergistics2, astromine-discoveries, astromine-foundations, computercraft, randomtech, slotlink |+| :::| 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-discoveries, randomtech |
 | 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| astromine-discoveries, astromine-foundations, modern_industrialization, randomtech, techreborn |+| c:redstone_ores| minecraft:redstone_ore| techreborn, modern_industrialization, astromine-foundations, astromine-discoveries, 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:conglomerate_redstone_oreunearthed +| :::| #minecraft:redstone_oresmodern_industrialization 
-| :::| unearthed:gabbro_redstone_oreunearthed | +| :::| minecraft:deepslate_redstone_oretechreborn |
-| :::| unearthed:gray_basalt_redstone_ore| unearthed | +
-| :::| unearthed:kimberlite_redstone_ore| unearthed | +
-| :::| unearthed:lignite_redstone_ore| unearthed | +
-| :::| unearthed:limestone_redstone_ore| unearthed | +
-| :::| unearthed:marble_redstone_ore| unearthed | +
-| :::| unearthed:mudstone_redstone_ore| unearthed | +
-| :::| unearthed:phyllite_redstone_ore| unearthed | +
-| :::| unearthed:pumice_redstone_ore| unearthed | +
-| :::| unearthed:quartzite_redstone_ore| unearthed | +
-| :::| unearthed:rhyolite_redstone_ore| unearthed | +
-| :::| unearthed:schist_redstone_ore| unearthed | +
-| :::| unearthed:siltstone_redstone_ore| unearthed | +
-| :::| unearthed:slate_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 1341: 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 1352: Line 2132:
 | :::| techreborn:ruby_dust| techreborn | | :::| techreborn:ruby_dust| techreborn |
 | c:ruby_gears| c:ruby_gear| cotton-resources | | c:ruby_gears| c:ruby_gear| cotton-resources |
-| c:ruby_ores| c:ruby_end_ore| cotton-resources |+| c:ruby_ores| c:ruby_ore| cotton-resources |
 | :::| c:ruby_nether_ore| cotton-resources | | :::| c:ruby_nether_ore| cotton-resources |
-| :::| c:ruby_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:salt| epicurean:salt| epicurean |+| c:saguaros| croptopia:saguaro| croptopia | 
 +| c:salsas| croptopia:salsa| croptopia | 
 +| c:salt| bonappetit:salt| bonappetit | 
 +| :::| 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_blocks| minecraft:red_sand| appliedenergistics2 | +| c:salts| croptopia:salt| croptopia | 
-| :::| minecraft:sand| appliedenergistics2 | +| c:sand| byg:white_sand| byg | 
-| c:sandstone| byg:black_chiseled_sandstone| 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 | 
 +| :::| minecraft:red_sand| appliedenergistics2 | 
 +| c:sandstone| byg:black_sandstone| byg | 
 +| :::| byg:black_chiseled_sandstone| byg |
 | :::| byg:black_cut_sandstone| byg | | :::| byg:black_cut_sandstone| byg |
-| :::| byg:black_sandstone| byg |+| :::| byg:blue_sandstone| byg |
 | :::| byg:blue_chiseled_sandstone| byg | | :::| byg:blue_chiseled_sandstone| byg |
 | :::| byg:blue_cut_sandstone| byg | | :::| byg:blue_cut_sandstone| byg |
-| :::| byg:blue_sandstone| byg |+| :::| byg:white_sandstone| byg | 
 +| :::| byg:white_chiseled_sandstone| byg | 
 +| :::| byg:white_cut_sandstone| byg | 
 +| :::| byg:purple_sandstone| byg | 
 +| :::| byg:purple_chiseled_sandstone| byg | 
 +| :::| byg:purple_cut_sandstone| byg | 
 +| :::| byg:pink_sandstone| byg |
 | :::| byg:pink_chiseled_sandstone| byg | | :::| byg:pink_chiseled_sandstone| byg |
 | :::| byg:pink_cut_sandstone| byg | | :::| byg:pink_cut_sandstone| byg |
-| :::| byg:pink_sandstonebyg +| :::| minecraft:sandstonespatialharvesters 
-| :::byg:purple_chiseled_sandstonebyg +c:sandstones#c:yellow_sandstonesastromine-technologies 
-| :::| byg:purple_cut_sandstonebyg +| :::| #c:red_sandstonesastromine-technologies 
-| :::| byg:purple_sandstonebyg +| :::| minecraft:sandstonewaystones 
-| :::| byg:white_chiseled_sandstonebyg +| :::| minecraft:smooth_sandstonewaystones 
-| :::| byg:white_cut_sandstonebyg +| :::| minecraft:chiseled_sandstonewaystones 
-| :::| byg:white_sandstonebyg | +| :::| minecraft:cut_sandstonewaystones |
-| c:sandstones| #c:red_sandstones| astromine-technologies | +
-| :::| #c:yellow_sandstones| astromine-technologies |+
 | c:sandwich/blacklist| #c:sandwich/bread| ce_foodstuffs | | c:sandwich/blacklist| #c:sandwich/bread| ce_foodstuffs |
-| :::| ce_foodstuffs:apple_pie| ce_foodstuffs | 
-| :::| ce_foodstuffs:mashed_potatoes| ce_foodstuffs | 
-| :::| ce_foodstuffs:salad| ce_foodstuffs | 
 | :::| ce_foodstuffs:sandwich| ce_foodstuffs | | :::| ce_foodstuffs:sandwich| ce_foodstuffs |
-| :::| ce_foodstuffs:sweet_berry_pie| ce_foodstuffs | 
-| :::| minecraft:beetroot_soup| ce_foodstuffs | 
 | :::| minecraft:mushroom_stew| ce_foodstuffs | | :::| minecraft:mushroom_stew| ce_foodstuffs |
 | :::| minecraft:rabbit_stew| ce_foodstuffs | | :::| minecraft:rabbit_stew| ce_foodstuffs |
 +| :::| minecraft:beetroot_soup| ce_foodstuffs |
 +| :::| ce_foodstuffs:apple_pie| ce_foodstuffs |
 +| :::| ce_foodstuffs:sweet_berry_pie| ce_foodstuffs |
 +| :::| ce_foodstuffs:salad| ce_foodstuffs |
 +| :::| ce_foodstuffs:mashed_potatoes| ce_foodstuffs |
 | c:sandwich/bread| minecraft:bread| ce_foodstuffs | | c:sandwich/bread| minecraft:bread| ce_foodstuffs |
-| c:saplings| byg:araucaria_sapling| byg | +| c:saplings| byg:aspen_sapling| byg |
-| :::| byg:aspen_sapling| byg |+
 | :::| byg:baobab_sapling| byg | | :::| byg:baobab_sapling| byg |
 | :::| byg:blue_enchanted_sapling| byg | | :::| byg:blue_enchanted_sapling| byg |
Line 1406: Line 2211:
 | :::| byg:brown_birch_sapling| byg | | :::| byg:brown_birch_sapling| byg |
 | :::| byg:brown_oak_sapling| byg | | :::| byg:brown_oak_sapling| byg |
-| :::| byg:brown_zelkova_sapling| byg | 
 | :::| byg:cika_sapling| byg | | :::| byg:cika_sapling| byg |
 | :::| byg:cypress_sapling| byg | | :::| byg:cypress_sapling| byg |
 | :::| byg:ebony_sapling| byg | | :::| byg:ebony_sapling| byg |
-| :::| byg:ether_sapling| byg | 
 | :::| byg:fir_sapling| byg | | :::| byg:fir_sapling| byg |
 | :::| byg:green_enchanted_sapling| byg | | :::| byg:green_enchanted_sapling| byg |
 | :::| byg:holly_sapling| byg | | :::| byg:holly_sapling| byg |
 +| :::| byg:jacaranda_sapling| byg |
 | :::| byg:indigo_jacaranda_sapling| byg | | :::| byg:indigo_jacaranda_sapling| byg |
-| :::| byg:jacaranda_sapling| byg | 
-| :::| byg:lament_sapling| byg | 
 | :::| byg:mahogany_sapling| byg | | :::| byg:mahogany_sapling| byg |
 | :::| byg:mangrove_sapling| byg | | :::| byg:mangrove_sapling| byg |
 | :::| byg:maple_sapling| byg | | :::| byg:maple_sapling| byg |
-| :::| byg:nightshade_sapling| byg | 
 | :::| byg:orange_birch_sapling| byg | | :::| byg:orange_birch_sapling| byg |
 | :::| byg:orange_oak_sapling| byg | | :::| byg:orange_oak_sapling| byg |
 | :::| byg:orange_spruce_sapling| byg | | :::| byg:orange_spruce_sapling| byg |
 | :::| byg:orchard_sapling| byg | | :::| byg:orchard_sapling| byg |
-| :::| byg:palm_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 1436: Line 2238:
 | :::| byg:redwood_sapling| byg | | :::| byg:redwood_sapling| byg |
 | :::| byg:silver_maple_sapling| byg | | :::| byg:silver_maple_sapling| byg |
-| :::| byg:skyris_sapling| byg | 
 | :::| byg:white_cherry_sapling| byg | | :::| byg:white_cherry_sapling| byg |
 | :::| byg:willow_sapling| byg | | :::| byg:willow_sapling| byg |
 | :::| byg:witch_hazel_sapling| byg | | :::| byg:witch_hazel_sapling| byg |
-| :::| byg:withering_oak_sapling| byg | 
 | :::| byg:yellow_birch_sapling| byg | | :::| byg:yellow_birch_sapling| byg |
 | :::| byg:zelkova_sapling| byg | | :::| byg:zelkova_sapling| byg |
 +| :::| byg:skyris_sapling| byg |
 +| :::| byg:palm_sapling| byg |
 +| :::| byg:araucaria_sapling| byg |
 +| :::| byg:brown_zelkova_sapling| byg |
 +| :::| byg:lament_sapling| byg |
 +| :::| byg:withering_oak_sapling| byg |
 +| :::| byg:ether_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 1449: Line 2323:
 | :::| techreborn:sapphire_dust| techreborn | | :::| techreborn:sapphire_dust| techreborn |
 | c:sapphire_gears| c:sapphire_gear| cotton-resources | | c:sapphire_gears| c:sapphire_gear| cotton-resources |
-| c:sapphire_ores| c:sapphire_end_ore| cotton-resources |+| c:sapphire_ores| c:sapphire_ore| cotton-resources |
 | :::| c:sapphire_nether_ore| cotton-resources | | :::| c:sapphire_nether_ore| cotton-resources |
-| :::| c:sapphire_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 1458: 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| exnihilofabrico:seed_acacia| exnihilofabrico | +| c:scones| croptopia:scones| croptopia | 
-| :::| exnihilofabrico:seed_birch| exnihilofabrico |+| 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_grass| exnihilofabrico | 
 +| :::| exnihilofabrico:seed_mycelium| exnihilofabrico | 
 +| :::| exnihilofabrico:seed_chorus| exnihilofabrico |
 | :::| exnihilofabrico:seed_cactus| exnihilofabrico | | :::| exnihilofabrico:seed_cactus| exnihilofabrico |
 +| :::| exnihilofabrico:seed_sugarcane| exnihilofabrico |
 +| :::| exnihilofabrico:seed_potato| exnihilofabrico |
 | :::| exnihilofabrico:seed_carrot| exnihilofabrico | | :::| exnihilofabrico:seed_carrot| exnihilofabrico |
-| :::| exnihilofabrico:seed_chorus| exnihilofabrico | 
 | :::| exnihilofabrico:seed_dark_oak| exnihilofabrico | | :::| exnihilofabrico:seed_dark_oak| exnihilofabrico |
-| :::| exnihilofabrico:seed_grass| exnihilofabrico |+| :::| exnihilofabrico:seed_acacia| exnihilofabrico |
 | :::| exnihilofabrico:seed_jungle| exnihilofabrico | | :::| exnihilofabrico:seed_jungle| exnihilofabrico |
-| :::| exnihilofabrico:seed_kelp| exnihilofabrico | 
-| :::| exnihilofabrico:seed_mycelium| exnihilofabrico | 
-| :::| exnihilofabrico:seed_oak| exnihilofabrico | 
-| :::| exnihilofabrico:seed_potato| exnihilofabrico | 
-| :::| exnihilofabrico:seed_sea_pickle| exnihilofabrico | 
 | :::| exnihilofabrico:seed_spruce| exnihilofabrico | | :::| exnihilofabrico:seed_spruce| exnihilofabrico |
-| :::| exnihilofabrico:seed_sugarcane| exnihilofabrico | +| :::| exnihilofabrico:seed_birch| exnihilofabrico | 
-| :::| minecraft:beetroot_seeds| exnihilofabrico | +| :::| exnihilofabrico:seed_oak| exnihilofabrico | 
-| :::| minecraft:wheat_seeds| 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 1488: 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 1503: 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 1508: 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 |
 | :::| #c:asteroid_silver_ores| astromine-discoveries | | :::| #c:asteroid_silver_ores| astromine-discoveries |
 | :::| bno:nethersilver_ore| bno | | :::| bno:nethersilver_ore| bno |
-| :::| c:silver_end_ore| cotton-resources | 
-| :::| c:silver_nether_ore| cotton-resources | 
 | :::| c:silver_ore| cotton-resources | | :::| c:silver_ore| cotton-resources |
 +| :::| c:silver_nether_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 1534: 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_balls| minecraft:slime_ball| brave_new_world +| c:skulls| zombie_head| bewitchment | 
-| c:slime_blocks| minecraft:slime_block| astromine-discoveries, astromine-foundations |+| :::| 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 1554: 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 1564: 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 1569: 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 1579: Line 2685:
 | :::| indrev:steel_dust| indrev | | :::| indrev:steel_dust| indrev |
 | :::| modern_industrialization:steel_dust| modern_industrialization | | :::| modern_industrialization:steel_dust| modern_industrialization |
 +| :::| resourceful_tools:powder_steel| resourceful_tools |
 | :::| techreborn:steel_dust| techreborn | | :::| techreborn:steel_dust| techreborn |
 | c:steel_gears| astromine:steel_gear| astromine-discoveries, astromine-foundations | | c:steel_gears| astromine:steel_gear| astromine-discoveries, astromine-foundations |
Line 1586: 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 1598: 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 1628: 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:stone| byg:dacite| byg | +| c:sticky_toffee_pudding| croptopia:sticky_toffee_pudding| croptopia | 
-| :::| byg:ether_stone| byg |+| c:stone| byg:soapstone| byg | 
 +| :::| byg:scoria_stone| byg | 
 +| :::| byg:dacite| byg | 
 +| :::| byg:rocky_stone| byg |
 | :::| byg:mossy_stone| byg | | :::| byg:mossy_stone| byg |
 +| :::| byg:overgrown_stone| byg |
 | :::| byg:overgrown_dacite| byg | | :::| byg:overgrown_dacite| byg |
 | :::| byg:overgrown_netherrack| byg | | :::| byg:overgrown_netherrack| byg |
-| :::| byg:overgrown_stone| byg |+| :::| byg:sythian_nylium| byg |
 | :::| byg:podzol_dacite| byg | | :::| byg:podzol_dacite| byg |
 | :::| byg:red_rock| byg | | :::| byg:red_rock| byg |
-| :::| byg:rocky_stone| byg | +| :::| byg:ether_stone| byg | 
-| :::| byg:scoria_stonebyg +| :::| minecraft:stoneae2, adorn, waystones, spatialharvesters 
-| :::| byg:soapstonebyg +| :::| #unearthed:sedimentaryunearthed 
-| :::| byg:sythian_nyliumbyg |+| :::| #unearthed:metamorphicunearthed | 
 +| :::| #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:andesitecomputercraft, resourceful_tools | +| c:stones| minecraft:diorite| resourceful_tools, computercraft 
-| :::| minecraft:cobblestonecomputercraft, resourceful_tools | +| :::| minecraft:granite| resourceful_tools, computercraft 
-| :::| minecraft:dioritecomputercraft, resourceful_tools | +| :::| minecraft:cobblestone| resourceful_tools, computercraft 
-| :::| minecraft:granitecomputercraft, 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:anthracite_block| byg | | :::| byg:anthracite_block| byg |
-| :::| byg:pendorite_blockbyg |+| :::| #c:certus_quartz_blocksae2 |
 | 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: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 1670: Line 2811:
 | :::| minecraft:cactus| ce_foodstuffs | | :::| minecraft:cactus| ce_foodstuffs |
 | c:tea_ingredients/gloopy/weak| minecraft:chorus_fruit| ce_foodstuffs | | c:tea_ingredients/gloopy/weak| minecraft:chorus_fruit| ce_foodstuffs |
-| c:tea_ingredients/salty/normal| minecraft:kelp| ce_foodstuffs |+| c:tea_ingredients/salty/normal| minecraft:warped_roots| ce_foodstuffs |
 | :::| minecraft:seagrass| ce_foodstuffs | | :::| minecraft:seagrass| ce_foodstuffs |
-| :::| minecraft:warped_roots| ce_foodstuffs | +| :::| minecraft:kelp| ce_foodstuffs | 
-| c:tea_ingredients/salty/weak| minecraft:nether_sprouts| ce_foodstuffs | +| c:tea_ingredients/salty/weak| minecraft:pumpkin_seeds| ce_foodstuffs | 
-| :::| minecraft:pumpkin_seeds| ce_foodstuffs |+| :::| minecraft:nether_sprouts| ce_foodstuffs |
 | :::| minecraft:warped_fungus| ce_foodstuffs | | :::| minecraft:warped_fungus| ce_foodstuffs |
 | c:tea_ingredients/shining/weak| minecraft:glowstone_dust| ce_foodstuffs | | c:tea_ingredients/shining/weak| minecraft:glowstone_dust| ce_foodstuffs |
-| c:tea_ingredients/sour/normal| minecraft:chorus_fruit| ce_foodstuffs | +| c:tea_ingredients/sour/normal| minecraft:fern| ce_foodstuffs |
-| :::| minecraft:fern| ce_foodstuffs |+
 | :::| minecraft:large_fern| ce_foodstuffs | | :::| minecraft:large_fern| ce_foodstuffs |
-| c:tea_ingredients/sour/weak| minecraft:brown_mushroom| ce_foodstuffs | +| :::| minecraft:chorus_fruit| ce_foodstuffs | 
-| :::| minecraft:red_mushroom| ce_foodstuffs |+| c:tea_ingredients/sour/weak| minecraft:red_mushroom| ce_foodstuffs | 
 +| :::| minecraft:brown_mushroom| ce_foodstuffs |
 | c:tea_ingredients/sweet/normal| minecraft:melon_seeds| ce_foodstuffs | | c:tea_ingredients/sweet/normal| minecraft:melon_seeds| ce_foodstuffs |
 | :::| minecraft:sweet_berries| ce_foodstuffs | | :::| minecraft:sweet_berries| ce_foodstuffs |
 | c:tea_ingredients/sweet/strong| minecraft:honeycomb| ce_foodstuffs | | c:tea_ingredients/sweet/strong| minecraft:honeycomb| ce_foodstuffs |
-| c:tea_ingredients/sweet/weak| minecraft:beetroot_seeds| ce_foodstuffs | +| c:tea_ingredients/sweet/weak| minecraft:pumpkin_seeds| ce_foodstuffs | 
-| :::| minecraft:pumpkin_seeds| ce_foodstuffs |+| :::| minecraft:beetroot_seeds| ce_foodstuffs |
 | :::| minecraft:sugar| ce_foodstuffs | | :::| minecraft:sugar| ce_foodstuffs |
 | c:tea_ingredients/umami/normal| minecraft:crimson_roots| ce_foodstuffs | | c:tea_ingredients/umami/normal| minecraft:crimson_roots| ce_foodstuffs |
-| c:tea_ingredients/umami/weak| ce_foodstuffs:lettuce_seeds| ce_foodstuffs | +| c:tea_ingredients/umami/weak| minecraft:carrot| ce_foodstuffs |
-| :::| minecraft:carrot| ce_foodstuffs |+
 | :::| minecraft:crimson_fungus| ce_foodstuffs | | :::| minecraft:crimson_fungus| ce_foodstuffs |
-c:terracotta_blocksminecraft:black_terracottaappliedenergistics2 +| :::ce_foodstuffs:lettuce_seedsce_foodstuffs 
-| :::minecraft:blue_terracottaappliedenergistics2 +c:tea_leavescroptopia:tea_leavescroptopia 
-| :::| minecraft:brown_terracotta| appliedenergistics2 | +c:terracotta_blocks| minecraft:terracotta| appliedenergistics2 | 
-| :::| minecraft:cyan_terracotta| appliedenergistics2 | +| :::| minecraft:white_terracotta| appliedenergistics2 | 
-| :::| minecraft:gray_terracotta| appliedenergistics2 | +| :::| minecraft:orange_terracotta| appliedenergistics2 | 
-| :::| minecraft:green_terracotta| appliedenergistics2 |+| :::| minecraft:magenta_terracotta| appliedenergistics2 |
 | :::| minecraft:light_blue_terracotta| appliedenergistics2 | | :::| minecraft:light_blue_terracotta| appliedenergistics2 |
-| :::| minecraft:light_gray_terracotta| appliedenergistics2 |+| :::| minecraft:yellow_terracotta| appliedenergistics2 |
 | :::| minecraft:lime_terracotta| appliedenergistics2 | | :::| minecraft:lime_terracotta| appliedenergistics2 |
-| :::| minecraft:magenta_terracotta| appliedenergistics2 | 
-| :::| minecraft:orange_terracotta| appliedenergistics2 | 
 | :::| minecraft:pink_terracotta| appliedenergistics2 | | :::| minecraft:pink_terracotta| appliedenergistics2 |
 +| :::| minecraft:gray_terracotta| appliedenergistics2 |
 +| :::| minecraft:light_gray_terracotta| appliedenergistics2 |
 +| :::| minecraft:cyan_terracotta| appliedenergistics2 |
 | :::| minecraft:purple_terracotta| appliedenergistics2 | | :::| minecraft:purple_terracotta| appliedenergistics2 |
 +| :::| minecraft:blue_terracotta| appliedenergistics2 |
 +| :::| minecraft:brown_terracotta| appliedenergistics2 |
 +| :::| minecraft:green_terracotta| appliedenergistics2 |
 | :::| minecraft:red_terracotta| appliedenergistics2 | | :::| minecraft:red_terracotta| appliedenergistics2 |
-| :::| minecraft:terracotta| appliedenergistics2 | +| :::| minecraft:black_terracotta| appliedenergistics2 
-| :::| minecraft:white_terracotta| appliedenergistics2 +| c:terracottas| minecraft:terracotta| modern_industrialization 
-| :::| minecraft:yellow_terracotta| appliedenergistics2 |+| :::| 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 1723: 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 1728: Line 2904:
 | :::| indrev:tin_dust| indrev | | :::| indrev:tin_dust| indrev |
 | :::| modern_industrialization:tin_dust| modern_industrialization | | :::| modern_industrialization:tin_dust| modern_industrialization |
 +| :::| resourceful_tools:powder_tin| resourceful_tools |
 | :::| techreborn:tin_dust| techreborn | | :::| techreborn:tin_dust| techreborn |
 | :::| texp:tin_dust| texp | | :::| texp:tin_dust| texp |
Line 1755: Line 2932:
 | :::| #c:asteroid_tin_ores| astromine-discoveries | | :::| #c:asteroid_tin_ores| astromine-discoveries |
 | :::| bno:nethertin_ore| bno | | :::| bno:nethertin_ore| bno |
-| :::| c:tin_end_ore| cotton-resources | 
-| :::| c:tin_nether_ore| cotton-resources | 
 | :::| c:tin_ore| cotton-resources | | :::| c:tin_ore| cotton-resources |
 +| :::| c:tin_nether_ore| cotton-resources |
 +| :::| c:tin_end_ore| cotton-resources |
 | :::| indrev:tin_ore| indrev | | :::| indrev:tin_ore| indrev |
 | :::| modern_industrialization:tin_ore| modern_industrialization | | :::| modern_industrialization:tin_ore| modern_industrialization |
Line 1763: 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 1774: 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 1786: Line 2967:
 | :::| modern_industrialization:titanium_nugget| modern_industrialization | | :::| modern_industrialization:titanium_nugget| modern_industrialization |
 | :::| techreborn:titanium_nugget| techreborn | | :::| techreborn:titanium_nugget| techreborn |
-| c:titanium_ores| c:titanium_end_ore| cotton-resources |+| c:titanium_ores| c:titanium_ore| cotton-resources |
 | :::| c:titanium_nether_ore| cotton-resources | | :::| c:titanium_nether_ore| cotton-resources |
-| :::| c:titanium_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 1794: 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 |
 +| :::| 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 |
 | c:topaz_dusts| c:topaz_dust| cotton-resources | | c:topaz_dusts| c:topaz_dust| cotton-resources |
 | c:topaz_gears| c:topaz_gear| cotton-resources | | c:topaz_gears| c:topaz_gear| cotton-resources |
-| c:topaz_ores| c:topaz_end_ore| cotton-resources |+| c:topaz_ores| c:topaz_ore| cotton-resources |
 | :::| c:topaz_nether_ore| cotton-resources | | :::| c:topaz_nether_ore| cotton-resources |
-| :::| c:topaz_ore| cotton-resources |+| :::| c:topaz_end_ore| cotton-resources |
 | 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 |
-| c:tungsten_ores| c:tungsten_end_ore| cotton-resources |+| :::| modern_industrialization:tungsten_nugget| modern_industrialization | 
 +| c:tungsten_ores| c:tungsten_ore| cotton-resources |
 | :::| c:tungsten_nether_ore| cotton-resources | | :::| c:tungsten_nether_ore| cotton-resources |
-| :::| c:tungsten_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:turmeric| croptopia:turmeric| croptopia |
 +| c:uncommon_loot| minecraft:diamond| resourceful_tools, gobber2 |
 +| :::| minecraft:emerald| resourceful_tools, gobber2 |
 +| :::| minecraft:shulker_shell| resourceful_tools, gobber2 |
 +| :::| minecraft:rabbit_foot| resourceful_tools, gobber2 |
 +| :::| minecraft:heart_of_the_sea| resourceful_tools, gobber2 |
 +| :::| minecraft:blaze_rod| resourceful_tools, gobber2 |
 +| :::| minecraft:ghast_tear| resourceful_tools, gobber2 |
 +| :::| gobber2:gobber2_ingot| gobber2 |
 +| :::| more_gems:emerald_juju| more_gems |
 +| :::| more_gems:topaz_juju| more_gems |
 +| :::| more_gems:alexandrite_juju| more_gems |
 +| :::| resourceful_tools:hand_pick| resourceful_tools |
 +| :::| resourceful_tools:tree_trimmer| resourceful_tools |
 +| :::| resourceful_tools:crack_hammer| resourceful_tools |
 +| :::| veggie_way:superfood_shake| veggie_way |
 +| :::| veggie_way:superfood_smoothie| veggie_way |
 +| :::| veggie_way:superfood_bar| veggie_way |
 | c:univite_blocks| astromine:univite_block| astromine-discoveries, astromine-foundations | | c:univite_blocks| astromine:univite_block| astromine-discoveries, astromine-foundations |
 | c:univite_dusts| astromine:univite_dust| astromine-discoveries, astromine-foundations | | c:univite_dusts| astromine:univite_dust| astromine-discoveries, astromine-foundations |
Line 1848: 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_end_ore| cotton-resources | 
-| :::| c:uranium_nether_ore| cotton-resources | 
 | :::| c:uranium_ore| cotton-resources | | :::| c:uranium_ore| cotton-resources |
 +| :::| c:uranium_nether_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:vegetables| minecraft:carrot| veggie_way | +| c:vanilla_ice_creams| croptopia:vanilla_ice_cream| croptopia | 
-| :::| minecraft:dried_kelp| veggie_way |+| 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 | 
 +| :::| minecraft:carrot| veggie_way, bonappetit, spatialharvesters | 
 +| :::| minecraft:beetroot| bonappetit | 
 +| :::| #c:tomato| bonappetit | 
 +| :::| #c:onion| bonappetit | 
 +| :::| #c:cucumber| bonappetit 
 +| :::| minecraft:dried_kelp| veggie_way, spatialharvesters |
 | :::| veggie_way:pumpkin_chunk| veggie_way | | :::| veggie_way:pumpkin_chunk| veggie_way |
-| c:veggies| minecraft:beetroot| exnihilofabrico | +| :::| #c:vegetables/artichokes| croptopia | 
-| :::| minecraft:carrot| exnihilofabrico | +| :::| #c:vegetables/asparagus| croptopia | 
-| :::| minecraft:potato| exnihilofabrico |+| :::| #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 
 +| :::| minecraft:potato| exnihilofabrico, spatialharvesters 
 +| :::| minecraft:beetroot| exnihilofabrico, spatialharvesters |
 | 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| resourceful_tools, veggie_way, gobber2 |
 +| :::| minecraft:elytra| resourceful_tools, veggie_way, gobber2 |
 +| :::| gobber2:gobber2_ingot_end| gobber2 |
 +| :::| gobber2:gobber2_ring_teleport| gobber2 |
 +| :::| gobber2:gobber2_ring_ascent| gobber2 |
 +| :::| gobber2:gobber2_ring_swiftness| gobber2 |
 +| :::| more_gems:ruby_juju| more_gems |
 +| :::| more_gems:carbonado_juju| more_gems |
 | 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': '#blockus:barrels', 'required': False}| expandedstorage | +| c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage | 
-| :::| {'id': 'minecraft:barrel', 'required': True}| 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 | 
-| :::| {'id': 'expandedstorage:wood_chest''required': True}| expandedstorage |+| :::| 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 |
 +| :::| {'id': 'expandedstorage:wood_chest', 'required': True}| expandedstorage |
 | :::| {'id': 'charm:acacia_chest', 'required': False}| slotlink | | :::| {'id': 'charm:acacia_chest', 'required': False}| slotlink |
 | :::| {'id': 'charm:acacia_trapped_chest', 'required': False}| slotlink | | :::| {'id': 'charm:acacia_trapped_chest', 'required': False}| slotlink |
Line 1901: Line 3261:
 | :::| {'id': 'charm:warped_chest', 'required': False}| slotlink | | :::| {'id': 'charm:warped_chest', 'required': False}| slotlink |
 | :::| {'id': 'charm:warped_trapped_chest', 'required': False}| slotlink | | :::| {'id': 'charm:warped_trapped_chest', 'required': False}| slotlink |
 +| :::| {'id': 'packed:oak_chest_default', 'required': False}| slotlink |
 +| :::| {'id': 'packed:spruce_chest_default', 'required': False}| slotlink |
 +| :::| {'id': 'packed:birch_chest_default', 'required': False}| slotlink |
 | :::| {'id': 'packed:acacia_chest_default', 'required': False}| slotlink | | :::| {'id': 'packed:acacia_chest_default', 'required': False}| slotlink |
-| :::| {'id': 'packed:birch_chest_default', 'required': False}| slotlink |+| :::| {'id': 'packed:jungle_chest_default', 'required': False}| slotlink | 
 +| :::| {'id': 'packed:dark_oak_chest_default', 'required': False}| slotlink |
 | :::| {'id': 'packed:crimson_chest_default', 'required': False}| slotlink | | :::| {'id': 'packed:crimson_chest_default', 'required': False}| slotlink |
-| :::| {'id': 'packed:dark_oak_chest_default', 'required': False}| slotlink | 
-| :::| {'id': 'packed:jungle_chest_default', 'required': False}| slotlink | 
-| :::| {'id': 'packed:oak_chest_default', 'required': False}| slotlink | 
-| :::| {'id': 'packed:spruce_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 |+| :::| 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 1917: Line 3313:
 | :::| byg:cypress_crafting_table| byg | | :::| byg:cypress_crafting_table| byg |
 | :::| byg:ebony_crafting_table| byg | | :::| byg:ebony_crafting_table| byg |
-| :::| byg:embur_crafting_table| byg | 
 | :::| byg:fir_crafting_table| byg | | :::| byg:fir_crafting_table| byg |
 | :::| byg:green_enchanted_crafting_table| byg | | :::| byg:green_enchanted_crafting_table| byg |
 | :::| byg:holly_crafting_table| byg | | :::| byg:holly_crafting_table| byg |
 | :::| byg:jacaranda_crafting_table| byg | | :::| byg:jacaranda_crafting_table| byg |
-| :::| byg:lament_crafting_table| byg | 
 | :::| byg:mahogany_crafting_table| byg | | :::| byg:mahogany_crafting_table| byg |
 | :::| byg:mangrove_crafting_table| byg | | :::| byg:mangrove_crafting_table| byg |
 | :::| byg:maple_crafting_table| byg | | :::| byg:maple_crafting_table| byg |
-| :::| byg:palm_crafting_table| byg | 
 | :::| byg:pine_crafting_table| byg | | :::| byg:pine_crafting_table| byg |
 | :::| byg:rainbow_eucalyptus_crafting_table| byg | | :::| byg:rainbow_eucalyptus_crafting_table| byg |
 | :::| byg:redwood_crafting_table| byg | | :::| byg:redwood_crafting_table| byg |
 | :::| byg:skyris_crafting_table| byg | | :::| byg:skyris_crafting_table| byg |
-| :::| byg:sythian_crafting_table| byg | 
 | :::| byg:willow_crafting_table| byg | | :::| byg:willow_crafting_table| byg |
 | :::| byg:witch_hazel_crafting_table| byg | | :::| byg:witch_hazel_crafting_table| byg |
 | :::| byg:zelkova_crafting_table| byg | | :::| byg:zelkova_crafting_table| byg |
-| c:wrenches| astromine:bronze_wrench| astromine-foundations | +| :::| byg:sythian_crafting_table| byg | 
-| :::| astromine:copper_wrench| astromine-foundations |+| :::| byg:embur_crafting_table| byg | 
 +| :::| byg:palm_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 | 
 +| :::| astromine:bronze_wrench| astromine-foundations |
 | :::| astromine:steel_wrench| astromine-foundations | | :::| astromine:steel_wrench| astromine-foundations |
-| c:yellow_dyes| minecraft:yellow_dye| appliedenergistics2, computercraft, 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 1944: 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:chiseled_sandstone| astromine-technologies |+
 | :::| minecraft:cut_sandstone| astromine-technologies | | :::| minecraft:cut_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 1963: Line 3398:
 | :::| techreborn:zinc_nugget| techreborn | | :::| techreborn:zinc_nugget| techreborn |
 | c:zinc_ore| mechanized:zinc_ore| mechanized | | c:zinc_ore| mechanized:zinc_ore| mechanized |
-| c:zinc_ores| c:zinc_end_ore| cotton-resources |+| c:zinc_ores| c:zinc_ore| cotton-resources |
 | :::| c:zinc_nether_ore| cotton-resources | | :::| c:zinc_nether_ore| cotton-resources |
-| :::| c:zinc_ore| cotton-resources |+| :::| c:zinc_end_ore| cotton-resources |
 | :::| mechanized:zinc_ore| mechanized | | :::| mechanized:zinc_ore| mechanized |
 | :::| mythicmetals:zinc_ore| mythicmetals | | :::| mythicmetals:zinc_ore| mythicmetals |
Line 1977: 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 1983: Line 3419:
 | :::| techreborn:aluminum_storage_block| techreborn | | :::| techreborn:aluminum_storage_block| techreborn |
 | c:aluminum_ores| bno:netheraluminum_ore| bno | | c:aluminum_ores| bno:netheraluminum_ore| bno |
-| :::| c:aluminum_end_ore| cotton-resources | 
-| :::| c:aluminum_nether_ore| cotton-resources | 
 | :::| c:aluminum_ore| cotton-resources | | :::| c:aluminum_ore| cotton-resources |
 +| :::| c:aluminum_nether_ore| cotton-resources |
 +| :::| c:aluminum_end_ore| cotton-resources |
 | c:amethyst_blocks| c:amethyst_block| cotton-resources | | c:amethyst_blocks| c:amethyst_block| cotton-resources |
-| c:amethyst_ores| c:amethyst_end_ore| cotton-resources |+| c:amethyst_ores| c:amethyst_ore| cotton-resources |
 | :::| c:amethyst_nether_ore| cotton-resources | | :::| c:amethyst_nether_ore| cotton-resources |
-| :::| c:amethyst_ore| cotton-resources |+| :::| c:amethyst_end_ore| cotton-resources |
 | c:ancient_debris| minecraft:ancient_debris| astromine-discoveries, astromine-foundations | | c:ancient_debris| minecraft:ancient_debris| astromine-discoveries, astromine-foundations |
 | c:aquarium_blocks| mythicmetals:aquarium_block| mythicmetals | | c:aquarium_blocks| mythicmetals:aquarium_block| mythicmetals |
Line 2013: Line 3449:
 | c:banglum_blocks| mythicmetals:banglum_block| mythicmetals | | c:banglum_blocks| mythicmetals:banglum_block| mythicmetals |
 | c:banglum_ores| mythicmetals:banglum_ore| mythicmetals | | c:banglum_ores| mythicmetals:banglum_ore| mythicmetals |
-| c:barrel| minecraft:barrel| packed | +| c:barrel| packed:oak_barrel_default| packed | 
-| :::| packed:acacia_barrel_default| packed |+| :::| packed:spruce_barrel_default| packed |
 | :::| packed:birch_barrel_default| packed | | :::| packed:birch_barrel_default| packed |
-| :::| packed:crimson_barrel_default| packed | +| :::| packed:acacia_barrel_default| packed |
-| :::| packed:dark_oak_barrel_default| packed |+
 | :::| packed:jungle_barrel_default| packed | | :::| packed:jungle_barrel_default| packed |
-| :::| packed:oak_barrel_default| packed | +| :::| packed:dark_oak_barrel_default| packed | 
-| :::| packed:spruce_barrel_default| packed |+| :::| packed:crimson_barrel_default| packed |
 | :::| packed:warped_barrel_default| packed | | :::| packed:warped_barrel_default| 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:birch_bookshelf| atbyw | 
 +| :::| atbyw:jungle_bookshelf| atbyw |
 | :::| atbyw:acacia_bookshelf| atbyw | | :::| atbyw:acacia_bookshelf| atbyw |
-| :::| atbyw:acacia_bookshelf_toggle| atbyw | +| :::| atbyw:dark_oak_bookshelf| atbyw |
-| :::| atbyw:birch_bookshelf| atbyw | +
-| :::| atbyw:birch_bookshelf_toggle| atbyw |+
 | :::| atbyw:crimson_bookshelf| atbyw | | :::| atbyw:crimson_bookshelf| atbyw |
-| :::| atbyw:crimson_bookshelf_toggle| atbyw | +| :::| atbyw:warped_bookshelf| atbyw |
-| :::| atbyw:dark_oak_bookshelf| atbyw | +
-| :::| atbyw:dark_oak_bookshelf_toggle| atbyw | +
-| :::| atbyw:dev_block| atbyw | +
-| :::| atbyw:jungle_bookshelf| atbyw | +
-| :::| atbyw:jungle_bookshelf_toggle| atbyw |+
 | :::| atbyw:oak_bookshelf_toggle| atbyw | | :::| atbyw:oak_bookshelf_toggle| atbyw |
-| :::| atbyw:spruce_bookshelf| atbyw | 
 | :::| atbyw:spruce_bookshelf_toggle| atbyw | | :::| atbyw:spruce_bookshelf_toggle| atbyw |
-| :::| atbyw:warped_bookshelf| atbyw |+| :::| atbyw:birch_bookshelf_toggle| atbyw | 
 +| :::| atbyw:jungle_bookshelf_toggle| atbyw | 
 +| :::| atbyw:acacia_bookshelf_toggle| atbyw | 
 +| :::| atbyw:dark_oak_bookshelf_toggle| atbyw | 
 +| :::| atbyw:crimson_bookshelf_toggle| atbyw |
 | :::| atbyw:warped_bookshelf_toggle| atbyw | | :::| atbyw:warped_bookshelf_toggle| atbyw |
 +| :::| atbyw:dev_block| atbyw |
 | :::| byg:aspen_bookshelf| byg | | :::| byg:aspen_bookshelf| byg |
 | :::| byg:baobab_bookshelf| byg | | :::| byg:baobab_bookshelf| byg |
 | :::| byg:blue_enchanted_bookshelf| byg | | :::| byg:blue_enchanted_bookshelf| byg |
-| :::| byg:bulbis_bookshelf| byg | 
 | :::| byg:cherry_bookshelf| byg | | :::| byg:cherry_bookshelf| byg |
 | :::| byg:cika_bookshelf| byg | | :::| byg:cika_bookshelf| byg |
 | :::| byg:cypress_bookshelf| byg | | :::| byg:cypress_bookshelf| byg |
 | :::| byg:ebony_bookshelf| byg | | :::| byg:ebony_bookshelf| byg |
-| :::| byg:embur_bookshelf| byg | 
-| :::| byg:ether_bookshelf| byg | 
 | :::| byg:fir_bookshelf| byg | | :::| byg:fir_bookshelf| byg |
 | :::| byg:green_enchanted_bookshelf| byg | | :::| byg:green_enchanted_bookshelf| byg |
 | :::| byg:holly_bookshelf| byg | | :::| byg:holly_bookshelf| byg |
 | :::| byg:jacaranda_bookshelf| byg | | :::| byg:jacaranda_bookshelf| byg |
-| :::| byg:lament_bookshelf| byg | 
 | :::| byg:mahogany_bookshelf| byg | | :::| byg:mahogany_bookshelf| byg |
 | :::| byg:mangrove_bookshelf| byg | | :::| byg:mangrove_bookshelf| byg |
 | :::| byg:maple_bookshelf| byg | | :::| byg:maple_bookshelf| byg |
-| :::| byg:nightshade_bookshelf| byg | 
-| :::| byg:palm_bookshelf| byg | 
 | :::| byg:pine_bookshelf| byg | | :::| byg:pine_bookshelf| byg |
 | :::| byg:rainbow_eucalyptus_bookshelf| byg | | :::| byg:rainbow_eucalyptus_bookshelf| byg |
 | :::| byg:redwood_bookshelf| byg | | :::| byg:redwood_bookshelf| byg |
 | :::| byg:skyris_bookshelf| byg | | :::| byg:skyris_bookshelf| byg |
-| :::| byg:sythian_bookshelf| byg | 
 | :::| byg:willow_bookshelf| byg | | :::| byg:willow_bookshelf| byg |
 | :::| byg:witch_hazel_bookshelf| byg | | :::| byg:witch_hazel_bookshelf| byg |
 | :::| byg:zelkova_bookshelf| byg | | :::| byg:zelkova_bookshelf| byg |
 +| :::| byg:sythian_bookshelf| byg |
 +| :::| byg:embur_bookshelf| byg |
 +| :::| byg:palm_bookshelf| byg |
 +| :::| byg:lament_bookshelf| byg |
 +| :::| byg:bulbis_bookshelf| byg |
 +| :::| byg:ether_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 2076: 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:chestminecraft:chest| packed | +| c:certus_quartz_blocksae2:quartz_block| ae2 | 
-| :::| minecraft:trapped_chest| packed |+| c:certus_quartz_ores| ae2:quartz_ore| ae2 | 
 +| :::| ae2:deepslate_quartz_ore| ae2 | 
 +| c:chest| packed:oak_chest_default| packed | 
 +| :::| packed:spruce_chest_default| packed | 
 +| :::| packed:birch_chest_default| packed |
 | :::| packed:acacia_chest_default| packed | | :::| packed:acacia_chest_default| packed |
-| :::| packed:birch_chest_default| packed |+| :::| packed:jungle_chest_default| packed | 
 +| :::| packed:dark_oak_chest_default| packed |
 | :::| packed:crimson_chest_default| packed | | :::| packed:crimson_chest_default| packed |
-| :::| packed:dark_oak_chest_default| packed | 
-| :::| packed:jungle_chest_default| packed | 
-| :::| packed:oak_chest_default| packed | 
-| :::| packed:spruce_chest_default| packed | 
 | :::| packed:warped_chest_default| packed | | :::| packed:warped_chest_default| packed |
 +| :::| minecraft:chest| bclib, packed |
 +| :::| minecraft:trapped_chest| packed |
 +| :::| 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:warped_chest| betternether |
 +| :::| betternether:nether_reed_chest| betternether |
 +| :::| betternether:mushroom_fir_chest| betternether |
 +| :::| betternether:nether_mushroom_chest| betternether |
 +| :::| betternether:wart_chest| betternether |
 +| :::| betternether:crimson_chest| betternether |
 +| :::| 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: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 2101: Line 3609:
 | :::| bno:nethercoal_ore| bno | | :::| bno:nethercoal_ore| bno |
 | :::| gravel-ores:coal_gravel| gravel-ores | | :::| gravel-ores:coal_gravel| gravel-ores |
-| :::unearthed:conglomerate_coal_oreunearthed +c:cobalt_blocksrandomtech:cobalt_blockrandomtech 
-| :::| unearthed:gabbro_coal_ore| unearthed | +| :::| c:cobalt_block| cotton-resources |
-| :::| unearthed:gray_basalt_coal_ore| unearthed | +
-| :::| unearthed:kimberlite_coal_ore| unearthed | +
-| :::| unearthed:lignite_coal_ore| unearthed | +
-| :::| unearthed:limestone_coal_ore| unearthed | +
-| :::| unearthed:marble_coal_ore| unearthed | +
-| :::| unearthed:mudstone_coal_ore| unearthed | +
-| :::| unearthed:phyllite_coal_ore| unearthed | +
-| :::| unearthed:pumice_coal_ore| unearthed | +
-| :::| unearthed:quartzite_coal_ore| unearthed | +
-| :::| unearthed:rhyolite_coal_ore| unearthed | +
-| :::| unearthed:schist_coal_ore| unearthed | +
-| :::| unearthed:siltstone_coal_ore| unearthed | +
-| :::| unearthed:slate_coal_ore| unearthed | +
-| c:cobalt_blocks| c:cobalt_block| cotton-resources +
-| :::| randomtech:cobalt_block| randomtech |+
 | c:cobalt_dusts| randomtech:cobalt_wire| randomtech | | c:cobalt_dusts| randomtech:cobalt_wire| randomtech |
-| c:cobalt_ores| c:cobalt_end_ore| cotton-resources |+| c:cobalt_ores| randomtech:cobalt_ore| randomtech | 
 +| :::| c:cobalt_ore| cotton-resources |
 | :::| c:cobalt_nether_ore| cotton-resources | | :::| c:cobalt_nether_ore| cotton-resources |
-| :::| c:cobalt_ore| cotton-resources +| :::| c:cobalt_end_ore| cotton-resources | 
-| :::| randomtech:cobalt_ore| randomtech +| c:cobblestone| byg:red_rock| byg | 
-| c:cobblestone| byg:dacite_cobblestone| byg | +| :::| byg:dacite_cobblestone| byg |
-| :::| byg:ether_stone| byg | +
-| :::| byg:red_rock| byg |+
 | :::| byg:scoria_cobblestone| byg | | :::| byg:scoria_cobblestone| byg |
 | :::| byg:soapstone| byg | | :::| byg:soapstone| byg |
 +| :::| byg:ether_stone| byg |
 | :::| minecraft:cobblestone| gobber2 | | :::| minecraft:cobblestone| gobber2 |
-| c:concreteminecraft:black_concreteartofalchemy +| c:compressed_dirtprefab:block_compressed_dirtprefab 
-| :::| minecraft:blue_concreteartofalchemy +c:compressed_glow_stone| prefab:block_compressed_glowstone| prefab | 
-| :::minecraft:brown_concreteartofalchemy +| c:compressed_obsidianprefab:block_compressed_obsidianprefab 
-| :::| minecraft:cyan_concrete| artofalchemy | +c:compressed_stoneprefab:block_compressed_stoneprefab 
-| :::| minecraft:gray_concrete| artofalchemy | +c:concrete| minecraft:white_concrete| artofalchemy | 
-| :::| minecraft:green_concrete| artofalchemy |+| :::| minecraft:orange_concrete| artofalchemy | 
 +| :::| minecraft:magenta_concrete| artofalchemy |
 | :::| minecraft:light_blue_concrete| artofalchemy | | :::| minecraft:light_blue_concrete| artofalchemy |
-| :::| minecraft:light_gray_concrete| artofalchemy |+| :::| minecraft:yellow_concrete| artofalchemy |
 | :::| minecraft:lime_concrete| artofalchemy | | :::| minecraft:lime_concrete| artofalchemy |
-| :::| minecraft:magenta_concrete| artofalchemy | 
-| :::| minecraft:orange_concrete| artofalchemy | 
 | :::| minecraft:pink_concrete| artofalchemy | | :::| minecraft:pink_concrete| artofalchemy |
 +| :::| minecraft:gray_concrete| artofalchemy |
 +| :::| minecraft:light_gray_concrete| artofalchemy |
 +| :::| minecraft:cyan_concrete| artofalchemy |
 | :::| minecraft:purple_concrete| artofalchemy | | :::| minecraft:purple_concrete| artofalchemy |
 +| :::| minecraft:blue_concrete| artofalchemy |
 +| :::| minecraft:brown_concrete| artofalchemy |
 +| :::| minecraft:green_concrete| artofalchemy |
 | :::| minecraft:red_concrete| artofalchemy | | :::| minecraft:red_concrete| artofalchemy |
-| :::| minecraft:white_concrete| artofalchemy | +| :::| minecraft:black_concrete| artofalchemy | 
-| :::| minecraft:yellow_concrete| artofalchemy | +| c:concrete_powder| minecraft:white_concrete_powder| artofalchemy | 
-| c:concrete_powder| minecraft:black_concrete_powder| artofalchemy | +| :::| minecraft:orange_concrete_powder| artofalchemy | 
-| :::| minecraft:blue_concrete_powder| artofalchemy | +| :::| minecraft:magenta_concrete_powder| artofalchemy |
-| :::| minecraft:brown_concrete_powder| artofalchemy | +
-| :::| minecraft:cyan_concrete_powder| artofalchemy | +
-| :::| minecraft:gray_concrete_powder| artofalchemy | +
-| :::| minecraft:green_concrete_powder| artofalchemy |+
 | :::| minecraft:light_blue_concrete_powder| artofalchemy | | :::| minecraft:light_blue_concrete_powder| artofalchemy |
-| :::| minecraft:light_gray_concrete_powder| artofalchemy |+| :::| minecraft:yellow_concrete_powder| artofalchemy |
 | :::| minecraft:lime_concrete_powder| artofalchemy | | :::| minecraft:lime_concrete_powder| artofalchemy |
-| :::| minecraft:magenta_concrete_powder| artofalchemy | 
-| :::| minecraft:orange_concrete_powder| artofalchemy | 
 | :::| minecraft:pink_concrete_powder| artofalchemy | | :::| minecraft:pink_concrete_powder| artofalchemy |
 +| :::| minecraft:gray_concrete_powder| artofalchemy |
 +| :::| minecraft:light_gray_concrete_powder| artofalchemy |
 +| :::| minecraft:cyan_concrete_powder| artofalchemy |
 | :::| minecraft:purple_concrete_powder| artofalchemy | | :::| minecraft:purple_concrete_powder| artofalchemy |
 +| :::| minecraft:blue_concrete_powder| artofalchemy |
 +| :::| minecraft:brown_concrete_powder| artofalchemy |
 +| :::| minecraft:green_concrete_powder| artofalchemy |
 | :::| minecraft:red_concrete_powder| artofalchemy | | :::| minecraft:red_concrete_powder| artofalchemy |
-| :::| minecraft:white_concrete_powder| artofalchemy | +| :::| minecraft:black_concrete_powder| artofalchemy |
-| :::| minecraft:yellow_concrete_powder| artofalchemy |+
 | c:copper_blocks| astromine:copper_block| astromine-discoveries, astromine-foundations | | c:copper_blocks| astromine:copper_block| astromine-discoveries, astromine-foundations |
 | :::| bno:copper_block| bno | | :::| bno:copper_block| bno |
Line 2168: 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 |
 | :::| #c:asteroid_copper_ores| astromine-discoveries | | :::| #c:asteroid_copper_ores| astromine-discoveries |
 | :::| bno:nethercopper_ore| bno | | :::| bno:nethercopper_ore| bno |
-| :::| c:copper_end_ore| cotton-resources | 
-| :::| c:copper_nether_ore| cotton-resources | 
 | :::| c:copper_ore| cotton-resources | | :::| c:copper_ore| cotton-resources |
 +| :::| c:copper_nether_ore| cotton-resources |
 +| :::| c:copper_end_ore| cotton-resources |
 | :::| indrev:copper_ore| indrev | | :::| indrev:copper_ore| indrev |
 | :::| mechanized:copper_ore| mechanized | | :::| mechanized:copper_ore| mechanized |
Line 2181: 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 2193: Line 3693:
 | :::| bno:netherdiamond_ore| bno | | :::| bno:netherdiamond_ore| bno |
 | :::| gravel-ores:diamond_gravel| gravel-ores | | :::| gravel-ores:diamond_gravel| gravel-ores |
-| :::| unearthed:conglomerate_diamond_ore| unearthed | +| c:dirt| byg:meadow_grass_block| byg |
-| :::| unearthed:gabbro_diamond_ore| unearthed | +
-| :::| unearthed:gray_basalt_diamond_ore| unearthed | +
-| :::| unearthed:kimberlite_diamond_ore| unearthed | +
-| :::| unearthed:lignite_diamond_ore| unearthed | +
-| :::| unearthed:limestone_diamond_ore| unearthed | +
-| :::| unearthed:marble_diamond_ore| unearthed | +
-| :::| unearthed:mudstone_diamond_ore| unearthed | +
-| :::| unearthed:phyllite_diamond_ore| unearthed | +
-| :::| unearthed:pumice_diamond_ore| unearthed | +
-| :::| unearthed:quartzite_diamond_ore| unearthed | +
-| :::| unearthed:rhyolite_diamond_ore| unearthed | +
-| :::| unearthed:schist_diamond_ore| unearthed | +
-| :::| unearthed:siltstone_diamond_ore| unearthed | +
-| :::| unearthed:slate_diamond_ore| unearthed | +
-| c:dirt| minecraft:coarse_dirt| byg, gobber2 | +
-| :::| minecraft:dirt| byg, gobber2 | +
-| :::| minecraft:grass_block| byg, gobber2 | +
-| :::| minecraft:mycelium| byg, gobber2 | +
-| :::| minecraft:podzol| byg, gobber2 | +
-| :::| byg:ether_phylium| byg | +
-| :::| byg:ether_soil| byg | +
-| :::| byg:glowcelium_block| byg |+
 | :::| byg:meadow_dirt| byg | | :::| byg:meadow_dirt| byg |
-| :::| byg:meadow_grass_block| byg | +| :::| byg:peat| byg | 
-| :::| byg:overgrown_crimson_blackstone| byg |+| :::| byg:overgrown_stone| byg |
 | :::| byg:overgrown_dacite| byg | | :::| byg:overgrown_dacite| byg |
 | :::| byg:overgrown_netherrack| byg | | :::| byg:overgrown_netherrack| byg |
-| :::| byg:overgrown_stone| byg | +| :::| byg:overgrown_crimson_blackstone| byg |
-| :::| byg:peat| byg |+
 | :::| byg:podzol_dacite| byg | | :::| byg:podzol_dacite| byg |
 +| :::| byg:glowcelium_block| byg |
 +| :::| byg:ether_soil| 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:grass_block| byg, gobber2 |
 +| :::| minecraft:coarse_dirt| byg, gobber2 |
 +| :::| minecraft:podzol| byg, gobber2 |
 +| :::| minecraft:mycelium| 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 2238: Line 3767:
 | :::| bno:netheremerald_ore| bno | | :::| bno:netheremerald_ore| bno |
 | :::| gravel-ores:emerald_gravel| gravel-ores | | :::| gravel-ores:emerald_gravel| gravel-ores |
-| :::| unearthed:conglomerate_emerald_ore| unearthed | +| c:end_stones| byg:ivis_phylium| byg |
-| :::| unearthed:gabbro_emerald_ore| unearthed | +
-| :::| unearthed:gray_basalt_emerald_ore| unearthed | +
-| :::| unearthed:kimberlite_emerald_ore| unearthed | +
-| :::| unearthed:lignite_emerald_ore| unearthed | +
-| :::| unearthed:limestone_emerald_ore| unearthed | +
-| :::| unearthed:marble_emerald_ore| unearthed | +
-| :::| unearthed:mudstone_emerald_ore| unearthed | +
-| :::| unearthed:phyllite_emerald_ore| unearthed | +
-| :::| unearthed:pumice_emerald_ore| unearthed | +
-| :::| unearthed:quartzite_emerald_ore| unearthed | +
-| :::| unearthed:rhyolite_emerald_ore| unearthed | +
-| :::| unearthed:schist_emerald_ore| unearthed | +
-| :::| unearthed:siltstone_emerald_ore| unearthed | +
-| :::| unearthed:slate_emerald_ore| unearthed | +
-| c:end_stones| byg:cryptic_magma_block| byg | +
-| :::| byg:cryptic_stone| byg | +
-| :::| byg:ether_phylium| byg | +
-| :::| byg:ether_soil| byg |+
 | :::| byg:ether_stone| byg | | :::| byg:ether_stone| byg |
-| :::| byg:ivis_phylium| byg | 
 | :::| byg:nightshade_phylium| byg | | :::| byg:nightshade_phylium| byg |
-| :::| byg:shulkren_phylium| byg |+| :::| byg:ether_soil| byg | 
 +| :::| byg:ether_phylium| byg |
 | :::| byg:vermilion_sculk| byg | | :::| byg:vermilion_sculk| byg |
-| :::| minecraft:end_stone| cotton-resources |+| :::| byg:shulkren_phylium| byg | 
 +| :::| byg:cryptic_stone| byg | 
 +| :::| byg:cryptic_magma_block| byg | 
 +| :::| 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 2271: Line 3816:
 | :::| byg:cypress_fence_gate| byg | | :::| byg:cypress_fence_gate| byg |
 | :::| byg:ebony_fence_gate| byg | | :::| byg:ebony_fence_gate| byg |
-| :::| byg:embur_fence_gate| byg | 
 | :::| byg:fir_fence_gate| byg | | :::| byg:fir_fence_gate| byg |
 | :::| byg:green_enchanted_fence_gate| byg | | :::| byg:green_enchanted_fence_gate| byg |
 | :::| byg:holly_fence_gate| byg | | :::| byg:holly_fence_gate| byg |
 | :::| byg:jacaranda_fence_gate| byg | | :::| byg:jacaranda_fence_gate| byg |
-| :::| byg:lament_fence_gate| byg | 
 | :::| byg:mahogany_fence_gate| byg | | :::| byg:mahogany_fence_gate| byg |
 | :::| byg:mangrove_fence_gate| byg | | :::| byg:mangrove_fence_gate| byg |
 | :::| byg:maple_fence_gate| byg | | :::| byg:maple_fence_gate| byg |
-| :::| byg:palm_fence_gate| byg | 
 | :::| byg:pine_fence_gate| byg | | :::| byg:pine_fence_gate| byg |
 | :::| byg:rainbow_eucalyptus_fence_gate| byg | | :::| byg:rainbow_eucalyptus_fence_gate| byg |
 | :::| byg:redwood_fence_gate| byg | | :::| byg:redwood_fence_gate| byg |
 | :::| byg:skyris_fence_gate| byg | | :::| byg:skyris_fence_gate| byg |
-| :::| byg:sythian_fence_gate| byg | 
 | :::| byg:willow_fence_gate| byg | | :::| byg:willow_fence_gate| byg |
 | :::| byg:witch_hazel_fence_gate| byg | | :::| byg:witch_hazel_fence_gate| byg |
 | :::| byg:zelkova_fence_gate| byg | | :::| byg:zelkova_fence_gate| byg |
 +| :::| byg:sythian_fence_gate| byg |
 +| :::| byg:embur_fence_gate| byg |
 +| :::| byg:palm_fence_gate| byg |
 +| :::| byg:lament_fence_gate| byg |
 +| 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:black_stained_glass| artofalchemy | +| :::| techreborn:deepslate_galena_oretechreborn 
-| :::| minecraft:blue_stained_glassartofalchemy +c:glass| minecraft:glassprefab, artofalchemy | 
-| :::| minecraft:brown_stained_glass| artofalchemy | +| :::| minecraft:white_stained_glassprefab, artofalchemy | 
-| :::| minecraft:cyan_stained_glass| artofalchemy | +| :::| minecraft:orange_stained_glassprefab, artofalchemy | 
-| :::| minecraft:glass| artofalchemy | +| :::| minecraft:magenta_stained_glassprefab, artofalchemy | 
-| :::| minecraft:gray_stained_glass| artofalchemy | +| :::| minecraft:light_blue_stained_glassprefab, artofalchemy | 
-| :::| minecraft:green_stained_glass| artofalchemy | +| :::| minecraft:yellow_stained_glassprefab, artofalchemy | 
-| :::| minecraft:light_blue_stained_glass| artofalchemy | +| :::| minecraft:lime_stained_glassprefab, artofalchemy | 
-| :::| minecraft:light_gray_stained_glass| artofalchemy | +| :::| minecraft:pink_stained_glassprefab, artofalchemy | 
-| :::| minecraft:lime_stained_glass| artofalchemy | +| :::| minecraft:gray_stained_glassprefab, artofalchemy | 
-| :::| minecraft:magenta_stained_glass| artofalchemy | +| :::| minecraft:light_gray_stained_glassprefab, artofalchemy | 
-| :::| minecraft:orange_stained_glass| artofalchemy | +| :::| minecraft:cyan_stained_glassprefab, artofalchemy | 
-| :::| minecraft:pink_stained_glass| artofalchemy | +| :::| minecraft:purple_stained_glass| prefab, artofalchemy | 
-| :::| minecraft:purple_stained_glass| artofalchemy | +| :::| minecraft:blue_stained_glassprefab, artofalchemy | 
-| :::| minecraft:red_stained_glass| artofalchemy | +| :::| minecraft:brown_stained_glassprefab, artofalchemy | 
-| :::| minecraft:white_stained_glass| artofalchemy | +| :::| minecraft:green_stained_glassprefab, artofalchemy | 
-| :::| minecraft:yellow_stained_glass| artofalchemy +| :::| minecraft:red_stained_glassprefab, artofalchemy 
-| c:glass_blocks| minecraft:black_stained_glass| appliedenergistics2 +| :::| minecraft:black_stained_glassprefab, artofalchemy 
-| :::| minecraft:blue_stained_glassappliedenergistics2 +c:glass_blocks| minecraft:glass| appliedenergistics2 | 
-| :::| minecraft:brown_stained_glassappliedenergistics2 +| :::| minecraft:white_stained_glass| appliedenergistics2 | 
-| :::| minecraft:cyan_stained_glass| appliedenergistics2 | +| :::| minecraft:orange_stained_glass| appliedenergistics2 | 
-| :::| minecraft:glass| appliedenergistics2 | +| :::| minecraft:magenta_stained_glass| appliedenergistics2 |
-| :::| minecraft:gray_stained_glass| appliedenergistics2 | +
-| :::| minecraft:green_stained_glass| appliedenergistics2 |+
 | :::| minecraft:light_blue_stained_glass| appliedenergistics2 | | :::| minecraft:light_blue_stained_glass| appliedenergistics2 |
-| :::| minecraft:light_gray_stained_glass| appliedenergistics2 |+| :::| minecraft:yellow_stained_glass| appliedenergistics2 |
 | :::| minecraft:lime_stained_glass| appliedenergistics2 | | :::| minecraft:lime_stained_glass| appliedenergistics2 |
-| :::| minecraft:magenta_stained_glass| appliedenergistics2 | 
-| :::| minecraft:orange_stained_glass| appliedenergistics2 | 
 | :::| minecraft:pink_stained_glass| appliedenergistics2 | | :::| minecraft:pink_stained_glass| appliedenergistics2 |
 +| :::| minecraft:gray_stained_glass| appliedenergistics2 |
 +| :::| minecraft:light_gray_stained_glass| appliedenergistics2 |
 +| :::| minecraft:cyan_stained_glass| appliedenergistics2 |
 | :::| minecraft:purple_stained_glass| appliedenergistics2 | | :::| minecraft:purple_stained_glass| appliedenergistics2 |
 +| :::| minecraft:blue_stained_glass| appliedenergistics2 |
 +| :::| minecraft:brown_stained_glass| appliedenergistics2 |
 +| :::| minecraft:green_stained_glass| appliedenergistics2 |
 | :::| minecraft:red_stained_glass| appliedenergistics2 | | :::| minecraft:red_stained_glass| appliedenergistics2 |
-| :::| minecraft:white_stained_glass| appliedenergistics2 | +| :::| minecraft:black_stained_glass| appliedenergistics2 |
-| :::| minecraft:yellow_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| astromine-discoveries, astromine-foundations, indrev, randomtech | | c:gold_ores| minecraft:gold_ore| astromine-discoveries, astromine-foundations, indrev, randomtech |
 +| :::| 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 |
-| :::| minecraft:nether_gold_ore| indrev, randomtech | 
 | :::| 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 |
 | :::| minecraft:large_fern| sweed | | :::| minecraft:large_fern| sweed |
-| :::| minecraft:tall_grass| sweed | 
 | :::| sweed:sweed| sweed | | :::| sweed:sweed| sweed |
 +| :::| minecraft:tall_grass| sweed |
 +| 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 |
 | :::| techreborn:iridium_storage_block| techreborn | | :::| techreborn:iridium_storage_block| techreborn |
-| c:iridium_ores| c:iridium_end_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_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| astromine-discoveries, astromine-foundations, indrev, randomtech, 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:conglomerate_iron_ore| unearthed | 
-| :::| unearthed:gabbro_iron_ore| unearthed | 
-| :::| unearthed:gray_basalt_iron_ore| unearthed | 
-| :::| unearthed:kimberlite_iron_ore| unearthed | 
-| :::| unearthed:lignite_iron_ore| unearthed | 
-| :::| unearthed:limestone_iron_ore| unearthed | 
-| :::| unearthed:marble_iron_ore| unearthed | 
-| :::| unearthed:mudstone_iron_ore| unearthed | 
-| :::| unearthed:phyllite_iron_ore| unearthed | 
-| :::| unearthed:pumice_iron_ore| unearthed | 
-| :::| unearthed:quartzite_iron_ore| unearthed | 
-| :::| unearthed:rhyolite_iron_ore| unearthed | 
-| :::| unearthed:schist_iron_ore| unearthed | 
-| :::| unearthed:siltstone_iron_ore| unearthed | 
-| :::| unearthed:slate_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| astromine-discoveries, astromine-foundations, randomtech | | c:lapis_ores| minecraft:lapis_ore| astromine-discoveries, astromine-foundations, randomtech |
Line 2378: Line 3997:
 | :::| bno:netherlapis_ore| bno | | :::| bno:netherlapis_ore| bno |
 | :::| gravel-ores:lapis_gravel| gravel-ores | | :::| gravel-ores:lapis_gravel| gravel-ores |
-| :::| unearthed:conglomerate_lapis_ore| unearthed | 
-| :::| unearthed:gabbro_lapis_ore| unearthed | 
-| :::| unearthed:gray_basalt_lapis_ore| unearthed | 
-| :::| unearthed:kimberlite_lapis_ore| unearthed | 
-| :::| unearthed:lignite_lapis_ore| unearthed | 
-| :::| unearthed:limestone_lapis_ore| unearthed | 
-| :::| unearthed:marble_lapis_ore| unearthed | 
-| :::| unearthed:mudstone_lapis_ore| unearthed | 
-| :::| unearthed:phyllite_lapis_ore| unearthed | 
-| :::| unearthed:pumice_lapis_ore| unearthed | 
-| :::| unearthed:quartzite_lapis_ore| unearthed | 
-| :::| unearthed:rhyolite_lapis_ore| unearthed | 
-| :::| unearthed:schist_lapis_ore| unearthed | 
-| :::| unearthed:siltstone_lapis_ore| unearthed | 
-| :::| unearthed:slate_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 2401: Line 4006:
 | :::| #c:asteroid_lead_ores| astromine-discoveries | | :::| #c:asteroid_lead_ores| astromine-discoveries |
 | :::| bno:netherlead_ore| bno | | :::| bno:netherlead_ore| bno |
-| :::| c:lead_end_ore| cotton-resources | 
-| :::| c:lead_nether_ore| cotton-resources | 
 | :::| c:lead_ore| cotton-resources | | :::| c:lead_ore| cotton-resources |
 +| :::| c:lead_nether_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 |
-| c:limestoneblockus:chiseled_limestoneblockus +| :::| indrev:deepslate_lead_ore| indrev | 
-| :::| blockus:limestone| blockus |+| :::| techreborn:deepslate_lead_ore| techreborn | 
 +| 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:limestone| blockus:limestone| blockus |
 | :::| blockus:limestone_bricks| blockus | | :::| blockus:limestone_bricks| blockus |
-| :::| blockus:limestone_circle_pavement| blockus | 
 | :::| blockus:limestone_pillar| blockus | | :::| blockus:limestone_pillar| blockus |
 +| :::| blockus:chiseled_limestone| blockus |
 +| :::| blockus:limestone_circle_pavement| blockus |
 | 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 2417: Line 4034:
 | c:manganese_blocks| mythicmetals:manganese_block| mythicmetals | | c:manganese_blocks| mythicmetals:manganese_block| mythicmetals |
 | c:manganese_ores| mythicmetals:manganese_ore| mythicmetals | | c:manganese_ores| mythicmetals:manganese_ore| mythicmetals |
-| c:marble| blockus:chiseled_marble| blockus | +| c:marble| blockus:marble| blockus |
-| :::| blockus:chiseled_marble_pillar| blockus | +
-| :::| blockus:marble| blockus |+
 | :::| blockus:marble_bricks| blockus | | :::| blockus:marble_bricks| blockus |
-| :::| blockus:marble_circle_pavement| blockus | 
 | :::| blockus:marble_pillar| blockus | | :::| blockus:marble_pillar| blockus |
 +| :::| blockus:chiseled_marble_pillar| blockus |
 +| :::| blockus:chiseled_marble| blockus |
 +| :::| blockus:marble_circle_pavement| blockus |
 | c:metallurgium_blocks| mythicmetals:metallurgium_block| mythicmetals | | c:metallurgium_blocks| mythicmetals:metallurgium_block| mythicmetals |
 | c:meteor_metite_ores| astromine:meteor_metite_ore| astromine-discoveries, astromine-foundations | | c:meteor_metite_ores| astromine:meteor_metite_ore| astromine-discoveries, astromine-foundations |
Line 2432: 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 |
-| c:natural_stones| minecraft:andesite| cotton-resources |+| :::| mythicmetals:deepslate_mythril_ore| mythicmetals | 
 +| c:natural_stones| minecraft:stone| cotton-resources | 
 +| :::| minecraft:andesite| cotton-resources |
 | :::| minecraft:diorite| cotton-resources | | :::| minecraft:diorite| cotton-resources |
 | :::| minecraft:granite| cotton-resources | | :::| minecraft:granite| cotton-resources |
-| :::| minecraft:stonecotton-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_mossbetternether |
 | c:netherite_blocks| minecraft:netherite_block| astromine-discoveries, astromine-foundations | | c:netherite_blocks| minecraft:netherite_block| astromine-discoveries, astromine-foundations |
-| c:netherrack| byg:blue_netherrack| byg |+| c:netherrack| byg:overgrown_netherrack| byg | 
 +| :::| byg:overgrown_crimson_blackstone| byg | 
 +| :::| byg:blue_netherrack| byg |
 | :::| byg:brimstone| byg | | :::| byg:brimstone| byg |
 | :::| byg:embur_nylium| byg | | :::| byg:embur_nylium| byg |
-| :::| byg:overgrown_crimson_blackstone| byg | 
-| :::| byg:overgrown_netherrack| 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 2453: 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 |
 | :::| mythicmetals:osmium_block| mythicmetals | | :::| mythicmetals:osmium_block| mythicmetals |
 | c:osmium_ores| bno:netherosmium_ore| bno | | c:osmium_ores| bno:netherosmium_ore| bno |
-| :::| c:osmium_end_ore| cotton-resources | 
-| :::| c:osmium_nether_ore| cotton-resources | 
 | :::| c:osmium_ore| cotton-resources | | :::| c:osmium_ore| cotton-resources |
 +| :::| c:osmium_nether_ore| cotton-resources |
 +| :::| c:osmium_end_ore| cotton-resources |
 | :::| mythicmetals:osmium_ore| mythicmetals | | :::| mythicmetals:osmium_ore| mythicmetals |
 | c:palladium_blocks| c:palladium_block| cotton-resources | | c:palladium_blocks| c:palladium_block| cotton-resources |
-| c:palladium_ores| c:palladium_end_ore| cotton-resources |+| :::| mythicmetals:palladium_block| mythicmetals | 
 +| c:palladium_ores| c:palladium_ore| cotton-resources |
 | :::| c:palladium_nether_ore| cotton-resources | | :::| c:palladium_nether_ore| cotton-resources |
-| :::| c:palladium_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 |
-| c:peridot_ores| c:peridot_end_ore| cotton-resources |+| c:peridot_ores| c:peridot_ore| cotton-resources |
 | :::| c:peridot_nether_ore| cotton-resources | | :::| c:peridot_nether_ore| cotton-resources |
-| :::| c:peridot_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 |
 | :::| techreborn:platinum_storage_block| techreborn | | :::| techreborn:platinum_storage_block| techreborn |
 | :::| texp:platinum_block| texp | | :::| texp:platinum_block| texp |
-| c:platinum_ores| c:platinum_end_ore| cotton-resources |+| c:platinum_ores| c:platinum_ore| cotton-resources |
 | :::| c:platinum_nether_ore| cotton-resources | | :::| c:platinum_nether_ore| cotton-resources |
-| :::| c:platinum_ore| cotton-resources |+| :::| c:platinum_end_ore| cotton-resources |
 | :::| mw:platinum_ore| mw | | :::| mw:platinum_ore| mw |
 | :::| mythicmetals:platinum_ore| mythicmetals | | :::| mythicmetals:platinum_ore| mythicmetals |
 | :::| 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_darkwood_logs| eymbra:prehistoric_darkwood_log| eymbra |
 +| c:prehistoric_lepidodendrales_logs| eymbra:prehistoric_lepidodendrales_log| eymbra |
 +| c:prehistoric_mangrove_logs| eymbra:prehistoric_mangrove_log| eymbra |
 | 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 2492: 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 |
 +| :::| 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: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 |
Line 2502: Line 4220:
 | :::| bno:netherredstone_ore| bno | | :::| bno:netherredstone_ore| bno |
 | :::| gravel-ores:redstone_gravel| gravel-ores | | :::| gravel-ores:redstone_gravel| gravel-ores |
-| :::| unearthed:conglomerate_redstone_ore| unearthed | 
-| :::| unearthed:gabbro_redstone_ore| unearthed | 
-| :::| unearthed:gray_basalt_redstone_ore| unearthed | 
-| :::| unearthed:kimberlite_redstone_ore| unearthed | 
-| :::| unearthed:lignite_redstone_ore| unearthed | 
-| :::| unearthed:limestone_redstone_ore| unearthed | 
-| :::| unearthed:marble_redstone_ore| unearthed | 
-| :::| unearthed:mudstone_redstone_ore| unearthed | 
-| :::| unearthed:phyllite_redstone_ore| unearthed | 
-| :::| unearthed:pumice_redstone_ore| unearthed | 
-| :::| unearthed:quartzite_redstone_ore| unearthed | 
-| :::| unearthed:rhyolite_redstone_ore| unearthed | 
-| :::| unearthed:schist_redstone_ore| unearthed | 
-| :::| unearthed:siltstone_redstone_ore| unearthed | 
-| :::| unearthed:slate_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 |
 | :::| techreborn:ruby_storage_block| techreborn | | :::| techreborn:ruby_storage_block| techreborn |
-| c:ruby_ores| c:ruby_end_ore| cotton-resources |+| c:ruby_ores| c:ruby_ore| cotton-resources |
 | :::| c:ruby_nether_ore| cotton-resources | | :::| c:ruby_nether_ore| cotton-resources |
-| :::| c:ruby_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:sand| byg:black_sand| byg |+| 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 | 
 +| :::| byg:black_sand| byg |
 | :::| byg:blue_sand| byg | | :::| byg:blue_sand| byg |
 | :::| byg:pink_sand| byg | | :::| byg:pink_sand| byg |
 | :::| byg:purple_sand| byg | | :::| byg:purple_sand| byg |
-| :::| byg:white_sandbyg +| :::| minecraft:sandgobber2, spatialharvesters 
-| :::minecraft:sandgobber2 +c:sandstonebyg:black_sandstonebyg 
-c:sandstone| byg:black_chiseled_sandstone| byg |+| :::| byg:black_chiseled_sandstone| byg |
 | :::| byg:black_cut_sandstone| byg | | :::| byg:black_cut_sandstone| byg |
-| :::| byg:black_sandstone| byg |+| :::| byg:blue_sandstone| byg |
 | :::| byg:blue_chiseled_sandstone| byg | | :::| byg:blue_chiseled_sandstone| byg |
 | :::| byg:blue_cut_sandstone| byg | | :::| byg:blue_cut_sandstone| byg |
-| :::| byg:blue_sandstone| byg |+| :::| byg:white_sandstone| byg | 
 +| :::| byg:white_chiseled_sandstone| byg | 
 +| :::| byg:white_cut_sandstone| byg | 
 +| :::| byg:purple_sandstone| byg | 
 +| :::| byg:purple_chiseled_sandstone| byg | 
 +| :::| byg:purple_cut_sandstone| byg | 
 +| :::| byg:pink_sandstone| byg |
 | :::| byg:pink_chiseled_sandstone| byg | | :::| byg:pink_chiseled_sandstone| byg |
 | :::| byg:pink_cut_sandstone| byg | | :::| byg:pink_cut_sandstone| byg |
-| :::| byg:pink_sandstone| byg | 
-| :::| byg:purple_chiseled_sandstone| byg | 
-| :::| byg:purple_cut_sandstone| byg | 
-| :::| byg:purple_sandstone| byg | 
-| :::| byg:white_chiseled_sandstone| byg | 
-| :::| byg:white_cut_sandstone| byg | 
-| :::| byg:white_sandstone| byg | 
 | :::| minecraft:sandstone| gobber2 | | :::| minecraft:sandstone| gobber2 |
-| c:saplings| byg:araucaria_sapling| byg | +| c:saplings| byg:aspen_sapling| byg |
-| :::| byg:aspen_sapling| byg |+
 | :::| byg:baobab_sapling| byg | | :::| byg:baobab_sapling| byg |
 | :::| byg:blue_enchanted_sapling| byg | | :::| byg:blue_enchanted_sapling| byg |
Line 2558: Line 4263:
 | :::| byg:brown_birch_sapling| byg | | :::| byg:brown_birch_sapling| byg |
 | :::| byg:brown_oak_sapling| byg | | :::| byg:brown_oak_sapling| byg |
-| :::| byg:brown_zelkova_sapling| byg | 
 | :::| byg:cika_sapling| byg | | :::| byg:cika_sapling| byg |
 | :::| byg:cypress_sapling| byg | | :::| byg:cypress_sapling| byg |
 | :::| byg:ebony_sapling| byg | | :::| byg:ebony_sapling| byg |
-| :::| byg:ether_sapling| byg | 
 | :::| byg:fir_sapling| byg | | :::| byg:fir_sapling| byg |
 | :::| byg:green_enchanted_sapling| byg | | :::| byg:green_enchanted_sapling| byg |
 | :::| byg:holly_sapling| byg | | :::| byg:holly_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:jacaranda_sapling| byg | 
-| :::| byg:lament_sapling| byg | 
 | :::| byg:mahogany_sapling| byg | | :::| byg:mahogany_sapling| byg |
 | :::| byg:mangrove_sapling| byg | | :::| byg:mangrove_sapling| byg |
 | :::| byg:maple_sapling| byg | | :::| byg:maple_sapling| byg |
-| :::| byg:nightshade_sapling| byg | 
 | :::| byg:orange_birch_sapling| byg | | :::| byg:orange_birch_sapling| byg |
 | :::| byg:orange_oak_sapling| byg | | :::| byg:orange_oak_sapling| byg |
 | :::| byg:orange_spruce_sapling| byg | | :::| byg:orange_spruce_sapling| byg |
 | :::| byg:orchard_sapling| byg | | :::| byg:orchard_sapling| byg |
-| :::| byg:palm_sapling| byg | 
 | :::| byg:palo_verde_sapling| byg | | :::| byg:palo_verde_sapling| byg |
 | :::| byg:pine_sapling| byg | | :::| byg:pine_sapling| byg |
Line 2588: Line 4290:
 | :::| byg:redwood_sapling| byg | | :::| byg:redwood_sapling| byg |
 | :::| byg:silver_maple_sapling| byg | | :::| byg:silver_maple_sapling| byg |
-| :::| byg:skyris_sapling| byg | 
 | :::| byg:white_cherry_sapling| byg | | :::| byg:white_cherry_sapling| byg |
 | :::| byg:willow_sapling| byg | | :::| byg:willow_sapling| byg |
 | :::| byg:witch_hazel_sapling| byg | | :::| byg:witch_hazel_sapling| byg |
-| :::| byg:withering_oak_sapling| byg | 
 | :::| byg:yellow_birch_sapling| byg | | :::| byg:yellow_birch_sapling| byg |
 | :::| byg:zelkova_sapling| byg | | :::| byg:zelkova_sapling| byg |
 +| :::| byg:skyris_sapling| byg |
 +| :::| byg:palm_sapling| byg |
 +| :::| byg:araucaria_sapling| byg |
 +| :::| byg:brown_zelkova_sapling| byg |
 +| :::| byg:lament_sapling| byg |
 +| :::| byg:withering_oak_sapling| byg |
 +| :::| byg:ether_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 |
-| c:sapphire_ores| c:sapphire_end_ore| cotton-resources |+| c:sapphire_ores| c:sapphire_ore| cotton-resources |
 | :::| c:sapphire_nether_ore| cotton-resources | | :::| c:sapphire_nether_ore| cotton-resources |
-| :::| c:sapphire_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 |
 | :::| bno:nethersilver_ore| bno | | :::| bno:nethersilver_ore| bno |
-| :::| c:silver_end_ore| cotton-resources | 
-| :::| c:silver_nether_ore| cotton-resources | 
 | :::| c:silver_ore| cotton-resources | | :::| c:silver_ore| cotton-resources |
 +| :::| c:silver_nether_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 |
 | 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 |
 +| :::| emerald_tools:steel_block| emerald_tools |
 | :::| mythicmetals:steel_block| mythicmetals | | :::| mythicmetals:steel_block| mythicmetals |
 | :::| techreborn:steel_storage_block| techreborn | | :::| techreborn:steel_storage_block| techreborn |
Line 2635: Line 4397:
 | c:stellum_ores| #c:asteroid_stellum_ores| astromine-discoveries | | c:stellum_ores| #c:asteroid_stellum_ores| astromine-discoveries |
 | c:sterling_silver_blocks| astromine:sterling_silver_block| astromine-discoveries, astromine-foundations | | c:sterling_silver_blocks| astromine:sterling_silver_block| astromine-discoveries, astromine-foundations |
-| c:stone| byg:dacite| byg | +| c:stone| byg:soapstone| byg | 
-| :::| byg:ether_stone| byg |+| :::| byg:scoria_stone| byg | 
 +| :::| byg:dacite| byg | 
 +| :::| byg:rocky_stone| byg |
 | :::| byg:mossy_stone| byg | | :::| byg:mossy_stone| byg |
 +| :::| byg:overgrown_stone| byg |
 | :::| byg:overgrown_dacite| byg | | :::| byg:overgrown_dacite| byg |
 | :::| byg:overgrown_netherrack| byg | | :::| byg:overgrown_netherrack| byg |
-| :::| byg:overgrown_stone| byg |+| :::| byg:sythian_nylium| byg |
 | :::| byg:podzol_dacite| byg | | :::| byg:podzol_dacite| byg |
 | :::| byg:red_rock| byg | | :::| byg:red_rock| byg |
-| :::| byg:rocky_stone| byg | +| :::| byg:ether_stone| byg | 
-| :::| byg:scoria_stonebyg +| :::| minecraft:stonegobber2 
-| :::| byg:soapstonebyg +| :::| minecraft:granitegobber2 
-| :::| byg:sythian_nyliumbyg |+| :::| minecraft:dioritegobber2 |
 | :::| minecraft:andesite| gobber2 | | :::| minecraft:andesite| gobber2 |
-| :::| minecraft:dioritegobber2 +| :::| #unearthed:sedimentaryunearthed 
-| :::| minecraft:granitegobber2 +| :::| #unearthed:metamorphicunearthed 
-| :::| minecraft:stonegobber2 |+| :::| #unearthed:igneousunearthed |
 | c:storage_blocks| byg:ametrine_block| byg | | c:storage_blocks| byg:ametrine_block| byg |
-| :::| byg:anthracite_block| byg | 
 | :::| byg:pendorite_block| byg | | :::| byg:pendorite_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 |
-| c:strip_command| #minecraft:logs| cotton-resources | +| c:strip_command| minecraft:stone| cotton-resources | 
-| :::| minecraft:andesite| cotton-resources |+| :::| minecraft:granite| cotton-resources |
 | :::| minecraft:diorite| cotton-resources | | :::| minecraft:diorite| cotton-resources |
 +| :::| minecraft:andesite| cotton-resources |
 | :::| minecraft:dirt| cotton-resources | | :::| minecraft:dirt| cotton-resources |
-| :::| minecraft:end_stone| cotton-resources | 
-| :::| minecraft:granite| cotton-resources | 
-| :::| minecraft:grass_block| cotton-resources | 
 | :::| minecraft:gravel| cotton-resources | | :::| minecraft:gravel| cotton-resources |
-| :::| minecraft:lava| cotton-resources | 
-| :::| minecraft:netherrack| cotton-resources | 
 | :::| minecraft:sand| cotton-resources | | :::| minecraft:sand| cotton-resources |
-| :::| minecraft:stone| cotton-resources |+| :::| minecraft:grass_block| cotton-resources | 
 +| :::| #minecraft:logs| cotton-resources |
 | :::| minecraft:water| cotton-resources | | :::| minecraft:water| cotton-resources |
 +| :::| minecraft:netherrack| cotton-resources |
 +| :::| minecraft:lava| cotton-resources |
 +| :::| minecraft:end_stone| cotton-resources |
 | 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:black_terracotta| appliedenergistics2 | +| c:terracotta| minecraft:terracottaae2, appliedenergistics2 | 
-| :::| minecraft:blue_terracotta| appliedenergistics2 | +| :::| minecraft:white_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:brown_terracotta| appliedenergistics2 | +| :::| minecraft:orange_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:cyan_terracotta| appliedenergistics2 | +| :::| minecraft:magenta_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:gray_terracotta| appliedenergistics2 | +| :::| minecraft:light_blue_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:green_terracotta| appliedenergistics2 | +| :::| minecraft:yellow_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:light_blue_terracotta| appliedenergistics2 | +| :::| minecraft:lime_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:light_gray_terracotta| appliedenergistics2 | +| :::| minecraft:pink_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:lime_terracotta| appliedenergistics2 | +| :::| minecraft:gray_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:magenta_terracotta| appliedenergistics2 | +| :::| minecraft:light_gray_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:orange_terracotta| appliedenergistics2 | +| :::| minecraft:cyan_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:pink_terracotta| appliedenergistics2 | +| :::| minecraft:purple_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:purple_terracotta| appliedenergistics2 | +| :::| minecraft:blue_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:red_terracotta| appliedenergistics2 | +| :::| minecraft:brown_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:terracotta| appliedenergistics2 | +| :::| minecraft:green_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:white_terracotta| appliedenergistics2 | +| :::| minecraft:red_terracottaae2, appliedenergistics2 | 
-| :::| minecraft:yellow_terracotta| appliedenergistics2 |+| :::| minecraft:black_terracottaae2, 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 2699: Line 4465:
 | :::| #c:asteroid_tin_ores| astromine-discoveries | | :::| #c:asteroid_tin_ores| astromine-discoveries |
 | :::| bno:nethertin_ore| bno | | :::| bno:nethertin_ore| bno |
-| :::| c:tin_end_ore| cotton-resources | 
-| :::| c:tin_nether_ore| cotton-resources | 
 | :::| c:tin_ore| cotton-resources | | :::| c:tin_ore| cotton-resources |
 +| :::| c:tin_nether_ore| cotton-resources |
 +| :::| c:tin_end_ore| cotton-resources |
 | :::| indrev:tin_ore| indrev | | :::| indrev:tin_ore| indrev |
 | :::| mw:tin_ore| mw | | :::| mw:tin_ore| mw |
Line 2707: 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 |
-| c:titanium_ores| c:titanium_end_ore| cotton-resources |+| c:titanium_ores| c:titanium_ore| cotton-resources |
 | :::| c:titanium_nether_ore| cotton-resources | | :::| c:titanium_nether_ore| cotton-resources |
-| :::| c:titanium_ore| cotton-resources |+| :::| c:titanium_end_ore| cotton-resources |
 | :::| mw:titanium_ore| mw | | :::| mw:titanium_ore| mw |
 | c:topaz_blocks| c:topaz_block| cotton-resources | | c:topaz_blocks| c:topaz_block| cotton-resources |
-| c:topaz_ores| c:topaz_end_ore| cotton-resources |+| c:topaz_ores| c:topaz_ore| cotton-resources |
 | :::| c:topaz_nether_ore| cotton-resources | | :::| c:topaz_nether_ore| cotton-resources |
-| :::| c:topaz_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_end_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_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 2736: Line 4509:
 | :::| c:uranium_block| cotton-resources | | :::| c:uranium_block| cotton-resources |
 | c:uranium_ores| bno:netheruranium_ore| bno | | c:uranium_ores| bno:netheruranium_ore| bno |
-| :::| c:uranium_end_ore| cotton-resources | 
-| :::| c:uranium_nether_ore| cotton-resources | 
 | :::| c:uranium_ore| cotton-resources | | :::| c:uranium_ore| cotton-resources |
 +| :::| c:uranium_nether_ore| cotton-resources |
 +| :::| c:uranium_end_ore| cotton-resources |
 | c:vermiculite_ores| mythicmetals:vermiculite_ore| mythicmetals | | c:vermiculite_ores| mythicmetals:vermiculite_ore| mythicmetals |
-| c:wooden_barrels| {'id': '#blockus:barrels', 'required': False}| expandedstorage | +| c:white_sand| byg:white_sand| byg | 
-| :::| {'id': 'minecraft:barrel', 'required': True}| expandedstorage | +| c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage | 
-c:wooden_chests{'id''expandedstorage:wood_chest', 'required'True}expandedstorage +| :::| {'id': '#blockus:barrels', 'required': False}| expandedstorage | 
-| :::| {'id': 'minecraft:chest', 'required': True}| 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 |
 | :::| {'id': 'minecraft:trapped_chest', 'required': True}| expandedstorage | | :::| {'id': 'minecraft:trapped_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 2752: Line 4569:
 | :::| byg:cypress_crafting_table| byg | | :::| byg:cypress_crafting_table| byg |
 | :::| byg:ebony_crafting_table| byg | | :::| byg:ebony_crafting_table| byg |
-| :::| byg:embur_crafting_table| byg | 
 | :::| byg:fir_crafting_table| byg | | :::| byg:fir_crafting_table| byg |
 | :::| byg:green_enchanted_crafting_table| byg | | :::| byg:green_enchanted_crafting_table| byg |
 | :::| byg:holly_crafting_table| byg | | :::| byg:holly_crafting_table| byg |
 | :::| byg:jacaranda_crafting_table| byg | | :::| byg:jacaranda_crafting_table| byg |
-| :::| byg:lament_crafting_table| byg | 
 | :::| byg:mahogany_crafting_table| byg | | :::| byg:mahogany_crafting_table| byg |
 | :::| byg:mangrove_crafting_table| byg | | :::| byg:mangrove_crafting_table| byg |
 | :::| byg:maple_crafting_table| byg | | :::| byg:maple_crafting_table| byg |
-| :::| byg:palm_crafting_table| byg | 
 | :::| byg:pine_crafting_table| byg | | :::| byg:pine_crafting_table| byg |
 | :::| byg:rainbow_eucalyptus_crafting_table| byg | | :::| byg:rainbow_eucalyptus_crafting_table| byg |
 | :::| byg:redwood_crafting_table| byg | | :::| byg:redwood_crafting_table| byg |
 | :::| byg:skyris_crafting_table| byg | | :::| byg:skyris_crafting_table| byg |
-| :::| byg:sythian_crafting_table| byg | 
 | :::| byg:willow_crafting_table| byg | | :::| byg:willow_crafting_table| byg |
 | :::| byg:witch_hazel_crafting_table| byg | | :::| byg:witch_hazel_crafting_table| byg |
 | :::| byg:zelkova_crafting_table| byg | | :::| byg:zelkova_crafting_table| byg |
 +| :::| byg:sythian_crafting_table| byg |
 +| :::| byg:embur_crafting_table| byg |
 +| :::| byg:palm_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 2776: Line 4614:
 | :::| techreborn:zinc_storage_block| techreborn | | :::| techreborn:zinc_storage_block| techreborn |
 | c:zinc_ore| mechanized:zinc_ore| mechanized | | c:zinc_ore| mechanized:zinc_ore| mechanized |
-| c:zinc_ores| c:zinc_end_ore| cotton-resources |+| c:zinc_ores| c:zinc_ore| cotton-resources |
 | :::| c:zinc_nether_ore| cotton-resources | | :::| c:zinc_nether_ore| cotton-resources |
-| :::| c:zinc_ore| cotton-resources |+| :::| c:zinc_end_ore| cotton-resources |
 | :::| mechanized:zinc_ore| mechanized | | :::| mechanized:zinc_ore| mechanized |
 | :::| mythicmetals:zinc_ore| mythicmetals | | :::| mythicmetals:zinc_ore| mythicmetals |
Line 2801: 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 2811: 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 2820: 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.12.2+1.16.4 | https://minecraft.curseforge.com/projects/adorn | +bonappetit Bon Appé´©t 0.8.5-3 | curseforge.com/minecraft/mc-mods/bon-appetit-fabric | 
-| appliedenergistics2 | Applied Energistics 2 | 8.1.0-alpha.13 | https://ae-mod.info/+| cinderscapes | Cinderscapes | 1.3.3 | https://www.curseforge.com/minecraft/mc-mods/cinderscapes |
-| artofalchemy | Art of Alchemy | 1.0.0-rc2+1.16.1 | https://www.curseforge.com/minecraft/mc-mods/art-of-alchemy | +
-| astromine-discoveries | Astromine: Discoveries | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-discoveries | +
-| astromine-foundations | Astromine: Foundations | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-foundations | +
-| 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 | +
-| betterend | Better End | 0.8.0-beta | https://www.curseforge.com/minecraft/mc-mods/betterend | +
-| blockus | Blockus | 2.0.2+20w51a | https://www.curseforge.com/minecraft/mc-mods/blockus | +
-| bno | Basic Nether Ores | 1.16.4-5.4.0-Fabric | https://minecraft.curseforge.com/projects/basic-nether-ores | +
-| byg | BYG | 1.1.3 | https://bygmc.weebly.com/+
-| ce_foodstuffs | Common Expansion: Foodstuffs | 1.1.2 | https://www.curseforge.com/minecraft/mc-mods/ce-foodstuffs +
-| cinderscapes | Cinderscapes | 1.3.0+build.51 | None | +
-| computercraft | CC:T for Fabric | 1.91.2 | https://github.com/mystiacraft/cc-tweaked-fabric | +
-| cotton-resources | Cotton Resources | 1.7.4 | https://github.com/CottonMC/CottonResources | +
-| crimson | Crimson | 1.0.5 | None | +
-| crookedcrooks | Crooked Crooks | 1.3.3+1.16.4 | https://www.curseforge.com/minecraft/mc-mods/crooked-crooks | +
-| earthtojavamobs | Earth2Java | 1.4.0+1.16.4 | https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric | +
-| emerald_tools | Emerald Tools | 1.1.6 | 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 | | epicurean | Epicurean | 2.2.4+1.15.2 | None |
-exnihilofabrico Ex Nihilo Fabrico 0.3+1.14.None +texp Terran Expansion 1.1.2 | http://www.flytre.net/
-expandedstorage ExpandedStorage 6.0.1 | https://www.curseforge.com/minecraft/mc-mods/expanded-storage-fabric +| more_gems | More Gems | 1.2.9 |  | 
-flamingo_ooo Flamingo, oh, oh, oh... | 1.0.4-MC1.16.3-fabric |  | +| adorn | Adorn | 3.3.1+1.18.https://minecraft.curseforge.com/projects/adorn 
-flonters Flonters | 1.1.1+1.16.2 |  +eymbra Eymbra's Prehistoric Mod 1.0.0 | https://fabricmc.net/
-gobber2 Gobber2 | 2.3.20  |+| 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.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 | | gravel-ores | Gravel Ores | 1.2.0+1.16.2 | https://www.curseforge.com/minecraft/mc-mods/gravel-ores-fabric |
-icarus Icarus | 1.0 | https://www.curseforge.com/minecraft/mc-mods/icarus-fabric +xb Exotic Blocks | 1.6.172 | https://github.com/grondag/exotic-blocks | 
-indrev Industrial Revolution 1.7.15-BETA | https://github.com/StupPlayer/Industrial-Revolution +| prefab | Prefab | 1.0.2 | https://www.curseforge.com/minecraft/mc-mods/prefab 
-ironchest Iron Chests 1.1.| https://www.curseforge.com/minecraft/mc-mods/iron-chests-fabric +randomtech Alexis' Random Tech 0.0.| https://github.com/alexis-evelyn 
-mechanix Mechanix 2.7.0 | https://www.flytre.net/ |+mechanix Mechanix 3.4.| https://www.flytre.net/ | 
 +veggie_way The Veggie Way 1.1.7 | None | 
 +| comforts | Comforts | 0.0.2-1.16.5 | https://www.curseforge.com/minecraft/mc-mods/comforts-fabric |
 | mechanized | Mechanized | 1.9.6 | None | | mechanized | Mechanized | 1.9.6 | None |
-modern_industrialization Modern Industrialization | 0.3.| https://github.com/AztechMC/Modern-Industrialization +tenor Tenor 1.0.3 | None | 
-more_gems More Gems | 1.1.14 |  |+| 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 | 
 +| 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 | 
 +| 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 | | mw | More Weaponry | 0.0.1-SNAPSHOT | https://github.com/LolzDEV |
-mythicmetals Mythic Metals | 0.9.| https://www.curseforge.com/minecraft/mc-mods/mythicmetals |+astromine-technologies Astromine: Technologies 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-technologies | 
 +| modern_industrialization | Modern Industrialization | 1.0.4 | https://github.com/AztechMC/Modern-Industrialization | 
 +| betterend | Better End | 1.0.2 | https://www.curseforge.com/minecraft/mc-mods/betterend | 
 +| ironchest | Iron Chests | 1.1.3 | https://www.curseforge.com/minecraft/mc-mods/iron-chests-fabric | 
 +| simple_backpack | SimpleBackpack | 1.1.8 |  | 
 +| unearthed | Unearthed | 1.1.0 | https://bygmc.weebly.com/
 +| crimson | Crimson | 1.0.5 | None | 
 +| gobber2 | Gobber2 | 2.4.6 |  | 
 +| icarus | Icarus | 1.1 | https://www.curseforge.com/minecraft/mc-mods/icarus-fabric | 
 +| artofalchemy | Art of Alchemy | 1.0.0-rc2+1.16.1 | https://www.curseforge.com/minecraft/mc-mods/art-of-alchemy | 
 +| crookedcrooks | Crooked Crooks | 2.0.1+1.18.1 | https://modrinth.com/mod/crooked-crooks | 
 +| bno | Basic Nether Ores | 1.16.5-5.5.0-Fabric | https://minecraft.curseforge.com/projects/basic-nether-ores | 
 +| earthtojavamobs | Earth2Java | 1.6.0+21w05b | https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric | 
 +| atbyw | All The Blocks You Want (ATBYW) | 1.3.4 | https://www.curseforge.com/minecraft/mc-mods/all-the-blocks-you-want | 
 +| emerald_tools | Emerald Tools | 1.2.3 | https://www.curseforge.com/minecraft/mc-mods/simple-emerald-tools-fabric | 
 +| ce_foodstuffs | Common Expansion: Foodstuffs | 1.1.3 | None | 
 +| 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.8 | None | 
-| randomtech | Alexis' Random Tech | 0.0.8 | https://github.com/alexis-evelyn | 
-| refinedmachinery | Refined Machinery | 1.2.1 | https://minecraft.curseforge.com/projects/Refined-Machinery | 
-| resourceful_tools | Resourceful Tools | 1.0.42 |  | 
-| simple_backpack | SimpleBackpack | 1.0.34 |  | 
 | 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.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.1+build.162 | 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/
-unearthed Unearthed | 1.0.5 | https://www.curseforge.com/minecraft/mc-mods/unearthed-fabric | +| arcanus | Arcanus | 1.25 | https://www.curseforge.com/minecraft/mc-mods/arcanus 
-veggie_way The Veggie Way | 1.1.| None | +ae2 Applied Energistics 2 | 10.0.0 | https://appliedenergistics.github.io/
-xb Exotic Blocks | 1.6.170 | https://github.com/grondag/exotic-blocks +| 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'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