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
tutorial:tags [2022/02/28 18:31] – Added example for 1.18.2+ tag registering luligabi1tutorial:tags [2024/01/05 13:53] (current) – Switch minecraft wiki link to indie site cph101
Line 1: Line 1:
 ====== Tags ====== ====== Tags ======
-Tags are groups of blocks, items, fluids, 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 ===== +Tags are groups of blocks, items, fluids, 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.wiki/w/Tag|Minecraft Wiki]]. Tags can also be used to group similar items or other pieces of content from different mods, to allow them to be compatible with each other. These are called conventional tags. 
-File Location: ''src/main/resources/data/examplemod/tags/blocks/example_ores.json''+ 
 +===== Creating tags ===== 
 + 
 +==== Defining through 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"
     ]     ]
 } }
 </code> </code>
 +
 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.
  
-For some cases, you might want to have tags checked on code, which will require you to register them:+==== Accessing tags in code =====
  
-==== 1.18.and above ==== +For some cases, you might want to have tags as registered objects on codeFor example, methods like ''Block#isIn'' require these tag parametersBesides, the Fabric registries like ''FlammableBlockRegistry'', ''FuelRegistry'' and ''CompostingChanceRegistry'' also accept block tags or item tags.
-<code java>+
  
-import net.minecraft.block.Block; +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.
-import net.minecraft.tag.TagKey; +
-import net.minecraft.util.Identifier; +
-import net.minecraft.util.registry.Registry;+
  
-public class BlockTags +=== Minecraft 1.19.3 and above === 
-  public static final TagKey<Block> EXAMPLE_ORES = TagKey.of(Registry.BLOCK_KEY, new Identifier("examplemod", "example_ores"));+ 
 +<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"));
 } }
-</code>+</yarncode>
  
 +=== Minecraft 1.18.2 through 1.19.2 ===
  
-==== 1.18.1 and below (Requires Fabric API==== +<yarncode java> 
-<code java+public class ModBlockTags { 
-import net.fabricmc.fabric.api.tag.TagFactory; +  public static final TagKey<class_2248> EXAMPLE_ORES class_6862.method_40092(class_2378.BLOCK_KEY, new class_2960("tutorial", "example_ores")); 
-import net.minecraft.block.Block; +} 
-import net.minecraft.tag.Tag; +</yarncode
-import net.minecraft.util.Identifier;+ 
 +=== Minecraft 1.17.1 through 1.18.1 === 
 + 
 +In Minecraft 1.17.1 through 1.18.1, Fabric API provides a helper method for creating a tag:
  
-public class BlockTags +<yarncode java> 
-  public static final Tag<Block> EXAMPLE_ORES = TagFactory.BLOCK.create(new Identifier("examplemod", "example_ores"));+public class ModBlockTags 
 +  public static final Tag<class_2248> EXAMPLE_ORES = TagFactory.BLOCK.create(new class_2960("tutorial", "example_ores"));
 } }
-</code>+</yarncode>
  
-===== Common Tags vs Mod Tags ===== +=== Minecraft 1.17 and below === 
-If your tag applies ONLY to items in your mod, and no other mod is likely to have similar itemsor you specifically want to only include your mod's items in that tag, then use ''yourmodid:yourtaghere'', with the example aboveHoweverif your mod adds items which other mods also add, you can+ 
 +In Minecraft 1.17 (not including Minecraft 1.17.1) and earlier versionsFabric API provides a different API for creating a tag: 
 + 
 +<yarncode java> 
 +public class ModBlockTags { 
 +  public static final Tag<class_2248> EXAMPLE_ORES = TagRegistry.block(new class_2960("tutorial""example_ores")); 
 +
 +</yarncode>
  
-======= Creating New Common Tags ======= +Note that ''TagRegistry'' is deprecated since Fabric API 0.46.0as ''TagFactory'' replaces it. ''TagRegistry'' is used in Minecraft 1.17 and below because Fabric API for these versions did not receive the ''TagFactory'' changes.
-Common tags should be named with the syntax ''c:yourtaghere'', with ''c'' standing for commonWhen 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 ======= +===== Conventional tags =====
-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''.+
  
 +Conventional tags are a standardized tag naming scheme that aims to reduce guesswork and inconsistency for mod developers, data pack authors, and mod pack authors. These tags share the ''c'' namespace and have explicit rules for naming.
  
-===== Item Tags =====+Conventional tags should be used where one piece of content added by a mod is similar enough to another piece of content added by another mod that functionality should be considered interchangeable between the two items. For example, if a mod adds a custom chest for a wood type it adds, it may add this chest to the ''c:wooden_chests'' tag so that it can be used in other mods' recipes.
  
-^ Tag ID ^ Contained IDs ^ Defined by ^ +On the other handpieces of content that are unique enough to not be interchangable should not use conventional tags. For exampleif a mod adds a unique set of machines that must be grouped within a tagit should place these machines in a tag in its own namespacesuch as ''yourmodid:custom_machines''.
-| c:adamantite_blocks| mythicmetals:adamantite_block| mythicmetals | +
-| c:adamantite_ingots| mythicmetals:adamantite_ingot| mythicmetals | +
-| c:adamantite_nuggets| mythicmetals:adamantite_nugget| 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_plates| techreborn:advanced_alloy_plate| techreborn | +
-| c:aetherium_blocks| mythicmetals:aetherium_block| mythicmetals | +
-| c:aetherium_ingots| mythicmetals:aetherium_ingot| mythicmetals | +
-| c:aetherium_nuggets| mythicmetals:aetherium_nugget| mythicmetals | +
-| c:aetherium_ores| mythicmetals:aetherium_ore| mythicmetals | +
-| c:alexandrite| more_gems:alexandrite| more_gems | +
-| c:almandine_dusts| techreborn:almandine_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_block| cotton-resources | +
-| :::| techreborn:aluminum_storage_block| techreborn | +
-| :::| modern_industrialization:aluminum_block| modern_industrialization | +
-| c:aluminum_dusts| c:aluminum_dust| cotton-resources | +
-| :::| modern_industrialization:aluminum_dust| modern_industrialization | +
-| :::| techreborn:aluminum_dust| techreborn | +
-| c:aluminum_gears| c:aluminum_gear| cotton-resources | +
-| :::| modern_industrialization:aluminum_gear| modern_industrialization | +
-| c:aluminum_ingots| bno:aluminum_ingot| bno | +
-| :::| c:aluminum_ingot| cotton-resources | +
-| :::| modern_industrialization:aluminum_ingot| modern_industrialization | +
-| :::| techreborn:aluminum_ingot| techreborn | +
-| c:aluminum_nuggets| bno:aluminum_nugget| bno | +
-| :::| c:aluminum_nugget| cotton-resources | +
-| :::| modern_industrialization:aluminum_nugget| modern_industrialization | +
-| :::| techreborn:aluminum_nugget| techreborn | +
-| c:aluminum_ores| bno:netheraluminum_ore| bno | +
-| :::| 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 | +
-| :::| modern_industrialization:aluminum_plate| modern_industrialization | +
-| :::| techreborn:aluminum_plate| techreborn | +
-| c:aluminum_small_dusts| techreborn:aluminum_small_dust| techreborn | +
-| c:aluminum_tiny_dusts| modern_industrialization:aluminum_tiny_dust| modern_industrialization | +
-| c:amethyst| more_gems:amethyst| more_gems | +
-| c:amethyst_blocks| c:amethyst_block| cotton-resources | +
-| c:amethyst_dusts| c:amethyst_dust| cotton-resources | +
-| :::| techreborn:amethyst_dust| techreborn | +
-| c:amethyst_gears| c:amethyst_gear| cotton-resources | +
-| c:amethyst_ores| c:amethyst_ore| cotton-resources | +
-| :::| c:amethyst_nether_ore| cotton-resources | +
-| :::| c:amethyst_end_ore| cotton-resources | +
-| c:amethyst_plates| c:amethyst_plate| cotton-resources | +
-| c:amethysts| c:amethyst| cotton-resources | +
-| c:ancient_debris| minecraft:ancient_debris| astromine-discoveriesastromine-foundations | +
-| c:andesite_dusts| techreborn:andesite_dust| techreborn | +
-| c:andesite_small_dusts| techreborn:andesite_small_dust| techreborn | +
-| c:andradite_dusts| techreborn:andradite_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_ingots| modern_industrialization:antimony_ingot| modern_industrialization | +
-| c:antimony_nuggets| modern_industrialization:antimony_nugget| 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:apple_pies| croptopia:apple_pie| croptopia | +
-| c:aquarium_blocks| mythicmetals:aquarium_block| mythicmetals | +
-| c:aquarium_ingots| mythicmetals:aquarium_ingot| mythicmetals | +
-| c:aquarium_nuggets| mythicmetals:aquarium_nugget| mythicmetals | +
-| c:aquarium_ores| mythicmetals:aquarium_ore| mythicmetals | +
-| c:argonium_blocks| mythicmetals:argonium_block| mythicmetals | +
-| c:argonium_ingots| mythicmetals:argonium_ingot| mythicmetals | +
-| c:argonium_nuggets| mythicmetals:argonium_nugget| mythicmetals | +
-| c:artichoke_dips| croptopia:artichoke_dip| croptopia | +
-| c:ashes_dusts| techreborn:ashes_dust| techreborn | +
-| c:ashes_small_dusts| techreborn:ashes_small_dust| techreborn | +
-| c:asterite_blocks| astromine:asterite_block| astromine-discoveriesastromine-foundations | +
-| c:asterite_dusts| astromine:asterite_dust| astromine-discoveriesastromine-foundations | +
-| c:asterite_fragments| astromine:asterite_fragment| astromine-discoveriesastromine-foundations | +
-| c:asterite_nuggets| #c:asterite_fragments| astromine-foundations | +
-| c:asterite_ores| #c:asteroid_asterite_ores| astromine-discoveries | +
-| c:asterite_tiny_dusts| astromine:asterite_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:asterites| astromine:asterite| astromine-discoveries, astromine-foundations | +
-| c:asteroid_asterite_clusters| {'id': 'astromine:asteroid_asterite_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_asterite_ores| {'id': 'astromine:asteroid_asterite_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_coal_clusters| {'id': 'astromine:asteroid_coal_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_coal_ores| {'id': 'astromine:asteroid_coal_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_copper_clusters| {'id': 'astromine:asteroid_copper_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_copper_ores| {'id': 'astromine:asteroid_copper_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_diamond_clusters| {'id': 'astromine:asteroid_diamond_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_diamond_ores| {'id': 'astromine:asteroid_diamond_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_emerald_clusters| {'id': 'astromine:asteroid_emerald_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_emerald_ores| {'id': 'astromine:asteroid_emerald_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_galaxium_clusters| {'id': 'astromine:asteroid_galaxium_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_galaxium_ores| {'id': 'astromine:asteroid_galaxium_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_gold_clusters| {'id': 'astromine:asteroid_gold_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_gold_ores| {'id': 'astromine:asteroid_gold_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_iron_clusters| {'id': 'astromine:asteroid_iron_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_iron_ores| {'id': 'astromine:asteroid_iron_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_lapis_clusters| {'id': 'astromine:asteroid_lapis_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_lapis_ores| {'id': 'astromine:asteroid_lapis_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_lead_clusters| {'id': 'astromine:asteroid_lead_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_lead_ores| {'id': 'astromine:asteroid_lead_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_metite_clusters| {'id': 'astromine:asteroid_metite_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_metite_ores| {'id': 'astromine:asteroid_metite_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_redstone_clusters| {'id': 'astromine:asteroid_redstone_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_redstone_ores| {'id': 'astromine:asteroid_redstone_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_silver_clusters| {'id': 'astromine:asteroid_silver_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_silver_ores| {'id': 'astromine:asteroid_silver_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_stellum_clusters| {'id': 'astromine:asteroid_stellum_cluster', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_stellum_ores| {'id': 'astromine:asteroid_stellum_ore', '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: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_ingots| mythicmetals:banglum_ingot| mythicmetals | +
-| c:banglum_nuggets| mythicmetals:banglum_nugget| mythicmetals | +
-| c:banglum_ores| mythicmetals:banglum_ore| mythicmetals | +
-| c:barrel| packed:oak_barrel_default| packed | +
-| :::| packed:spruce_barrel_default| packed | +
-| :::| packed:birch_barrel_default| packed | +
-| :::| packed:acacia_barrel_default| packed | +
-| :::| packed:jungle_barrel_default| packed | +
-| :::| packed:dark_oak_barrel_default| packed | +
-| :::| packed:crimson_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 | +
-| :::| minecraft:polished_basalt| techreborn | +
-| c:basalt_dusts| techreborn:basalt_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_ingots| modern_industrialization:battery_alloy_ingot| modern_industrialization | +
-| c:battery_alloy_nuggets| modern_industrialization:battery_alloy_nugget| 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:bauxite_blocks| modern_industrialization:bauxite_block| modern_industrialization | +
-| c:bauxite_dusts| modern_industrialization:bauxite_dust| modern_industrialization | +
-| :::| techreborn:bauxite_dust| techreborn | +
-| c:bauxite_ores| modern_industrialization:bauxite_ore| modern_industrialization | +
-| :::| 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_tiny_dusts| modern_industrialization:bauxite_tiny_dust| modern_industrialization | +
-| c:beef_jerkies| croptopia:beef_jerky| croptopia | +
-| c:beef_wellington| croptopia:beef_wellington| croptopia | +
-| c:beers| croptopia:beer| croptopia | +
-| 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: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:blue_enchanted_bookshelf| byg | +
-| :::| byg:cherry_bookshelf| byg | +
-| :::| byg:cika_bookshelf| byg | +
-| :::| byg:cypress_bookshelf| byg | +
-| :::| byg:ebony_bookshelf| byg | +
-| :::| byg:fir_bookshelf| byg | +
-| :::| byg:green_enchanted_bookshelf| byg | +
-| :::| byg:holly_bookshelf| byg | +
-| :::| byg:jacaranda_bookshelf| byg | +
-| :::| byg:mahogany_bookshelf| byg | +
-| :::| byg:mangrove_bookshelf| byg | +
-| :::| byg:maple_bookshelf| byg | +
-| :::| byg:pine_bookshelf| byg | +
-| :::| byg:rainbow_eucalyptus_bookshelf| byg | +
-| :::| byg:redwood_bookshelf| byg | +
-| :::| byg:skyris_bookshelf| byg | +
-| :::| byg:willow_bookshelf| byg | +
-| :::| byg:witch_hazel_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 | +
-| :::| mythicmetals:brass_block| mythicmetals | +
-| :::| techreborn:brass_storage_block| techreborn | +
-| c:brass_dusts| c:brass_dust| cotton-resources | +
-| :::| techreborn:brass_dust| techreborn | +
-| c:brass_gears| c:brass_gear| cotton-resources | +
-| c:brass_ingots| c:brass_ingot| cotton-resources | +
-| :::| mechanized:brass_ingot| mechanized | +
-| :::| mythicmetals:brass_ingot| mythicmetals | +
-| :::| techreborn:brass_ingot| techreborn | +
-| c:brass_nuggets| c:brass_nugget| cotton-resources | +
-| :::| mythicmetals:brass_nugget| mythicmetals | +
-| :::| techreborn:brass_nugget| techreborn | +
-| c:brass_plates| c:brass_plate| cotton-resources | +
-| :::| techreborn:brass_plate| 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_block| cotton-resources | +
-| :::| indrev:bronze_block| indrev | +
-| :::| mythicmetals:bronze_block| mythicmetals | +
-| :::| techreborn:bronze_storage_block| techreborn | +
-| :::| texp:bronze_block| texp | +
-| :::| modern_industrialization:bronze_block| modern_industrialization | +
-| c:bronze_dusts| astromine:bronze_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:bronze_dust| cotton-resources | +
-| :::| indrev:bronze_dust| indrev | +
-| :::| modern_industrialization:bronze_dust| modern_industrialization | +
-| :::| techreborn:bronze_dust| techreborn | +
-| :::| texp:bronze_dust| texp | +
-| c:bronze_gears| astromine:bronze_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:bronze_gear| cotton-resources | +
-| :::| modern_industrialization:bronze_gear| modern_industrialization | +
-| c:bronze_ingots| astromine:bronze_ingot| astromine-discoveries, astromine-foundations | +
-| :::| c:bronze_ingot| cotton-resources | +
-| :::| indrev:bronze_ingot| indrev | +
-| :::| modern_industrialization:bronze_ingot| modern_industrialization | +
-| :::| mw:bronze_ingot| mw | +
-| :::| mythicmetals:bronze_ingot| mythicmetals | +
-| :::| techreborn:bronze_ingot| techreborn | +
-| :::| texp:bronze_ingot| texp | +
-| c:bronze_nuggets| astromine:bronze_nugget| astromine-discoveries, astromine-foundations | +
-| :::| c:bronze_nugget| cotton-resources | +
-| :::| indrev:bronze_nugget| indrev | +
-| :::| modern_industrialization:bronze_nugget| modern_industrialization | +
-| :::| mythicmetals:bronze_nugget| mythicmetals | +
-| :::| techreborn:bronze_nugget| techreborn | +
-| :::| texp:bronze_nugget| texp | +
-| c:bronze_plates| astromine:bronze_plate| astromine-discoveries, astromine-foundations | +
-| :::| c:bronze_plate| cotton-resources | +
-| :::| indrev:bronze_plate| indrev | +
-| :::| modern_industrialization:bronze_plate| modern_industrialization | +
-| :::| techreborn:bronze_plate| techreborn | +
-| c:bronze_small_dusts| techreborn:bronze_small_dust| techreborn | +
-| c:bronze_tiny_dusts| astromine:bronze_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:bronze_tiny_dust| modern_industrialization | +
-| c:brown_dye| minecraft:brown_dye| ae2 | +
-| 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_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:coal_dusts| astromine-foundations | +
-| :::| modern_industrialization:carbon_dust| modern_industrialization | +
-| 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:carbs| minecraft:potato| veggie_way | +
-| c:carmot_blocks| mythicmetals:carmot_block| mythicmetals | +
-| c:carmot_ingots| mythicmetals:carmot_ingot| mythicmetals | +
-| c:carmot_nuggets| mythicmetals:carmot_nugget| mythicmetals | +
-| c:carmot_ores| mythicmetals:carmot_ore| mythicmetals | +
-| c:cashew_chickens| croptopia:cashew_chicken| croptopia | +
-| c:celestium_blocks| mythicmetals:celestium_block| mythicmetals | +
-| c:celestium_ingots| mythicmetals:celestium_ingot| 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 | +
-| :::| appliedenergistics2:charged_certus_quartz_crystal| appliedenergistics2 | +
-| c:certus_quartz_dusts| ae2:certus_quartz_dust| ae2 | +
-| 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_dusts| astromine:charcoal_dust| astromine-discoveries, astromine-foundations | +
-| :::| techreborn:charcoal_dust| techreborn | +
-| c:charcoal_small_dusts| techreborn:charcoal_small_dust| techreborn | +
-| c:charcoal_tiny_dusts| astromine:charcoal_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:cheese| bonappetit:cheese| bonappetit | +
-| c:cheese_cakes| croptopia:cheese_cake| croptopia | +
-| c:cheese_pizzas| croptopia:cheese_pizza| croptopia | +
-| c:cheeseburgers| croptopia:cheeseburger| croptopia | +
-| c:cheeses| croptopia:cheese| croptopia | +
-| c:cherry_pies| croptopia:cherry_pie| croptopia | +
-| c:chest| packed:oak_chest_default| packed | +
-| :::| packed:spruce_chest_default| packed | +
-| :::| packed:birch_chest_default| packed | +
-| :::| packed:acacia_chest_default| packed | +
-| :::| packed:jungle_chest_default| packed | +
-| :::| packed:dark_oak_chest_default| packed | +
-| :::| packed:crimson_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_dusts| modern_industrialization:chrome_dust| modern_industrialization | +
-| :::| techreborn:chrome_dust| techreborn | +
-| c:chrome_ingots| modern_industrialization:chrome_ingot| modern_industrialization | +
-| :::| techreborn:chrome_ingot| techreborn | +
-| c:chrome_nuggets| modern_industrialization:chrome_nugget| modern_industrialization | +
-| :::| techreborn:chrome_nugget| techreborn | +
-| c:chrome_plates| modern_industrialization:chrome_plate| modern_industrialization | +
-| :::| techreborn:chrome_plate| techreborn | +
-| c:chrome_small_dusts| techreborn:chrome_small_dust| techreborn | +
-| 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_ores| techreborn:cinnabar_ore| techreborn | +
-| c:cinnabar_small_dusts| techreborn:cinnabar_small_dust| techreborn | +
-| c:citrine| more_gems:citrine| more_gems | +
-| c:clay_dusts| techreborn:clay_dust| techreborn | +
-| c:clay_small_dusts| techreborn:clay_small_dust| techreborn | +
-| c:coal| minecraft:coal| astromine-discoveries, astromine-foundations, spatialharvesters | +
-| c:coal_blocks| minecraft:coal_block| modern_industrialization, astromine-discoveries, astromine-foundations, spatialharvesters | +
-| c:coal_coke_blocks| c:coal_coke_block| cotton-resources | +
-| c:coal_cokes| c:coal_coke| cotton-resources | +
-| c:coal_dust| refinedmachinery:coal_dust| refinedmachinery | +
-| c:coal_dusts| astromine:coal_dust| astromine-discoveries, astromine-foundations | +
-| :::| indrev:coal_dust| indrev | +
-| :::| modern_industrialization:coal_dust| modern_industrialization | +
-| :::| resourceful_tools:powder_carbon| resourceful_tools | +
-| :::| techreborn:coal_dust| techreborn | +
-| c:coal_gravels| gravel-ores:coal_gravel| gravel-ores | +
-| 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 | +
-| :::| bno:nethercoal_ore| bno | +
-| :::| gravel-ores:coal_gravel| gravel-ores | +
-| :::| #minecraft:coal_ores| modern_industrialization | +
-| :::| minecraft:deepslate_coal_ore| techreborn | +
-| c:coal_plates| techreborn:coal_plate| techreborn | +
-| c:coal_small_dusts| techreborn:coal_small_dust| techreborn | +
-| c:coal_tiny_dusts| astromine:coal_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:coal_tiny_dust| modern_industrialization | +
-| c:cobalt_blocks| randomtech:cobalt_block| randomtech | +
-| :::| c:cobalt_block| cotton-resources | +
-| c:cobalt_dusts| randomtech:cobalt_dust| randomtech | +
-| :::| c:cobalt_dust| cotton-resources | +
-| c:cobalt_gears| c:cobalt_gear| cotton-resources | +
-| c:cobalt_ingots| randomtech:cobalt_ingot| randomtech | +
-| :::| c:cobalt_ingot| cotton-resources | +
-| c:cobalt_nuggets| c:cobalt_nugget| cotton-resources | +
-| c:cobalt_ores| randomtech:cobalt_ore| randomtech | +
-| :::| c:cobalt_ore| cotton-resources | +
-| :::| c:cobalt_nether_ore| cotton-resources | +
-| :::| c:cobalt_end_ore| cotton-resources | +
-| c:cobalt_plates| c:cobalt_plate| cotton-resources | +
-| c:cobblestone| byg:red_rock| byg | +
-| :::| byg:dacite_cobblestone| byg | +
-| :::| byg:scoria_cobblestone| byg | +
-| :::| byg:soapstone| byg | +
-| :::| 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_tools, gobber2 | +
-| :::| 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_dirt| prefab:block_compressed_dirt| prefab | +
-| c:compressed_glow_stone| prefab:block_compressed_glowstone| prefab | +
-| c:compressed_obsidian| prefab:block_compressed_obsidian| prefab | +
-| c:compressed_stone| prefab:block_compressed_stone| prefab | +
-| c:concrete| minecraft:white_concrete| artofalchemy | +
-| :::| minecraft:orange_concrete| artofalchemy | +
-| :::| minecraft:magenta_concrete| artofalchemy | +
-| :::| minecraft:light_blue_concrete| artofalchemy | +
-| :::| minecraft:yellow_concrete| artofalchemy | +
-| :::| minecraft:lime_concrete| artofalchemy | +
-| :::| minecraft:pink_concrete| artofalchemy | +
-| :::| minecraft:gray_concrete| artofalchemy | +
-| :::| minecraft:light_gray_concrete| artofalchemy | +
-| :::| minecraft:cyan_concrete| artofalchemy | +
-| :::| minecraft:purple_concrete| artofalchemy | +
-| :::| minecraft:blue_concrete| artofalchemy | +
-| :::| minecraft:brown_concrete| artofalchemy | +
-| :::| minecraft:green_concrete| artofalchemy | +
-| :::| minecraft:red_concrete| artofalchemy | +
-| :::| minecraft:black_concrete| artofalchemy | +
-| c:concrete_powder| minecraft:white_concrete_powder| artofalchemy | +
-| :::| minecraft:orange_concrete_powder| artofalchemy | +
-| :::| minecraft:magenta_concrete_powder| artofalchemy | +
-| :::| minecraft:light_blue_concrete_powder| artofalchemy | +
-| :::| minecraft:yellow_concrete_powder| artofalchemy | +
-| :::| minecraft:lime_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:blue_concrete_powder| artofalchemy | +
-| :::| minecraft:brown_concrete_powder| artofalchemy | +
-| :::| minecraft:green_concrete_powder| artofalchemy | +
-| :::| minecraft:red_concrete_powder| artofalchemy | +
-| :::| minecraft:black_concrete_powder| artofalchemy | +
-| c:concrete_powders| minecraft:black_concrete_powder| mtr | +
-| :::| minecraft:blue_concrete_powder| mtr | +
-| :::| minecraft:brown_concrete_powder| mtr | +
-| :::| minecraft:cyan_concrete_powder| mtr | +
-| :::| minecraft:gray_concrete_powder| mtr | +
-| :::| minecraft:green_concrete_powder| mtr | +
-| :::| minecraft:light_blue_concrete_powder| mtr | +
-| :::| minecraft:light_gray_concrete_powder| mtr | +
-| :::| minecraft:lime_concrete_powder| mtr | +
-| :::| minecraft:magenta_concrete_powder| mtr | +
-| :::| minecraft:orange_concrete_powder| mtr | +
-| :::| minecraft:pink_concrete_powder| mtr | +
-| :::| minecraft:purple_concrete_powder| mtr | +
-| :::| minecraft:red_concrete_powder| mtr | +
-| :::| minecraft:white_concrete_powder| mtr | +
-| :::| minecraft:yellow_concrete_powder| mtr | +
-| c:concretes| minecraft:black_concrete| mtr | +
-| :::| minecraft:blue_concrete| mtr | +
-| :::| minecraft:brown_concrete| mtr | +
-| :::| minecraft:cyan_concrete| mtr | +
-| :::| minecraft:gray_concrete| mtr | +
-| :::| minecraft:green_concrete| mtr | +
-| :::| minecraft:light_blue_concrete| mtr | +
-| :::| minecraft:light_gray_concrete| mtr | +
-| :::| minecraft:lime_concrete| mtr | +
-| :::| minecraft:magenta_concrete| mtr | +
-| :::| minecraft:orange_concrete| mtr | +
-| :::| minecraft:pink_concrete| mtr | +
-| :::| minecraft:purple_concrete| mtr | +
-| :::| minecraft:red_concrete| mtr | +
-| :::| minecraft:white_concrete| mtr | +
-| :::| minecraft:yellow_concrete| mtr | +
-| c:cooked_eggs| betteranimalsplus:fried_egg| betteranimalsplus | +
-| c:cooked_meat| epicurean:tofu| epicurean | +
-| :::| minecraft:cooked_beef| techreborn, exnihilofabrico | +
-| :::| minecraft:cooked_porkchop| techreborn, exnihilofabrico | +
-| :::| minecraft:cooked_chicken| techreborn, exnihilofabrico | +
-| :::| minecraft:cooked_mutton| techreborn, exnihilofabrico | +
-| :::| exnihilofabrico:silkworm_cooked| exnihilofabrico | +
-| :::| betteranimalsplus:venisoncooked| betteranimalsplus | +
-| :::| betteranimalsplus:pheasantcooked| betteranimalsplus | +
-| :::| betteranimalsplus:crab_meat_cooked| betteranimalsplus | +
-| :::| betteranimalsplus:turkey_leg_cooked| betteranimalsplus | +
-| :::| betteranimalsplus:eel_meat_cooked| betteranimalsplus | +
-| :::| betteranimalsplus:calamari_cooked| betteranimalsplus | +
-| :::| minecraft:cooked_cod| techreborn | +
-| :::| minecraft:cooked_rabbit| techreborn | +
-| :::| minecraft:cooked_salmon| techreborn | +
-| c:cooking_pots| croptopia:cooking_pot| croptopia | +
-| c:copper_block| refinedmachinery:copper_block| refinedmachinery | +
-| c:copper_blocks| astromine:copper_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:copper_block| bno | +
-| :::| c:copper_block| cotton-resources | +
-| :::| indrev:copper_block| indrev | +
-| :::| mythicmetals:copper_block| mythicmetals | +
-| :::| nafis:copper_block| nafis | +
-| :::| techreborn:copper_storage_block| techreborn | +
-| :::| 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_dusts| astromine:copper_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:copper_dust| cotton-resources | +
-| :::| indrev:copper_dust| indrev | +
-| :::| modern_industrialization:copper_dust| modern_industrialization | +
-| :::| resourceful_tools:powder_copper| resourceful_tools | +
-| :::| techreborn:copper_dust| techreborn | +
-| :::| texp:copper_dust| texp | +
-| c:copper_gears| astromine:copper_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:copper_gear| cotton-resources | +
-| :::| modern_industrialization:copper_gear| modern_industrialization | +
-| c:copper_ingot| mechanized:copper_ingot| mechanized | +
-| :::| refinedmachinery:copper_ingot| refinedmachinery | +
-| :::| tenor:copper_ingot| tenor | +
-| :::| minecraft:copper_ingot| valley | +
-| c:copper_ingots| astromine:copper_ingot| astromine-discoveries, astromine-foundations | +
-| :::| bno:copper_ingot| bno | +
-| :::| c:copper_ingot| cotton-resources | +
-| :::| crimson:copper_ingot| crimson | +
-| :::| indrev:copper_ingot| indrev | +
-| :::| mechanized:copper_ingot| mechanized | +
-| :::| modern_industrialization:copper_ingot| modern_industrialization | +
-| :::| mw:copper_ingot| mw | +
-| :::| mythicmetals:copper_ingot| mythicmetals | +
-| :::| nafis:copper_ingot| nafis | +
-| :::| techreborn:copper_ingot| techreborn | +
-| :::| texp:copper_ingot| texp | +
-| :::| minecraft:copper_ingot| modern_industrialization, ae2, indrev, crookedcrooks, mythicmetals | +
-| c:copper_nuggets| astromine:copper_nugget| astromine-discoveries, astromine-foundations | +
-| :::| bno:copper_nugget| bno | +
-| :::| c:copper_nugget| cotton-resources | +
-| :::| indrev:copper_nugget| indrev | +
-| :::| modern_industrialization:copper_nugget| modern_industrialization | +
-| :::| mythicmetals:copper_nugget| mythicmetals | +
-| :::| techreborn:copper_nugget| techreborn | +
-| :::| texp:copper_nugget| texp | +
-| :::| valley:copper_nugget| valley | +
-| c:copper_ore| mechanized:copper_ore| mechanized | +
-| :::| refinedmachinery:copper_ore| refinedmachinery | +
-| c:copper_ores| astromine:copper_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_copper_ores| astromine-discoveries | +
-| :::| bno:nethercopper_ore| bno | +
-| :::| c:copper_ore| cotton-resources | +
-| :::| c:copper_nether_ore| cotton-resources | +
-| :::| c:copper_end_ore| cotton-resources | +
-| :::| indrev:copper_ore| indrev | +
-| :::| mechanized:copper_ore| mechanized | +
-| :::| modern_industrialization:copper_ore| modern_industrialization | +
-| :::| mythicmetals:copper_ore| mythicmetals | +
-| :::| nafis:copper_ore| nafis | +
-| :::| minecraft:copper_ore| resourceful_tools, techreborn, mythicmetals | +
-| :::| techreborn:copper_ore| techreborn | +
-| :::| 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_plate| cotton-resources | +
-| :::| indrev:copper_plate| indrev | +
-| :::| modern_industrialization:copper_plate| modern_industrialization | +
-| :::| techreborn:copper_plate| techreborn | +
-| c:copper_small_dusts| techreborn:copper_small_dust| techreborn | +
-| c:copper_tiny_dusts| astromine:copper_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:copper_tiny_dust| modern_industrialization | +
-| 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 | +
-| :::| valley:maize_crop| valley | +
-| c:cornish_pasty| croptopia:cornish_pasty| croptopia | +
-| c:corundum| more_gems:corundum| more_gems | +
-| c:crops| byg:blueberries| 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_ingots| modern_industrialization:cupronickel_ingot| modern_industrialization | +
-| c:cupronickel_nuggets| modern_industrialization:cupronickel_nugget| modern_industrialization | +
-| c:cupronickel_plates| modern_industrialization:cupronickel_plate| modern_industrialization | +
-| c:cupronickel_tiny_dusts| modern_industrialization:cupronickel_tiny_dust| modern_industrialization | +
-| 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 | +
-| :::| techreborn:dark_ashes_dust| techreborn | +
-| c:dark_ashes_small_dusts| techreborn:dark_ashes_small_dust| techreborn | +
-| 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_dusts| astromine:diamond_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:diamond_dust| cotton-resources | +
-| :::| indrev:diamond_dust| indrev | +
-| :::| techreborn:diamond_dust| techreborn | +
-| :::| modern_industrialization:diamond_dust| modern_industrialization | +
-| c:diamond_fragments| astromine:diamond_fragment| astromine-discoveries, astromine-foundations | +
-| c:diamond_gears| c:diamond_gear| cotton-resources | +
-| c:diamond_gravels| gravel-ores:diamond_gravel| gravel-ores | +
-| c:diamond_nuggets| #c:diamond_fragments| astromine-foundations | +
-| :::| gobber2:diamond_nugget| gobber2 | +
-| :::| techreborn:diamond_nugget| techreborn | +
-| c:diamond_ores| minecraft:diamond_ore| indrev, techreborn, astromine-foundations, astromine-discoveries, randomtech | +
-| :::| #c:asteroid_diamond_ores| astromine-discoveries | +
-| :::| bno:netherdiamond_ore| bno | +
-| :::| gravel-ores:diamond_gravel| gravel-ores | +
-| :::| #minecraft:diamond_ores| modern_industrialization | +
-| :::| minecraft:deepslate_diamond_ore| techreborn | +
-| c:diamond_plates| c:diamond_plate| cotton-resources | +
-| :::| techreborn:diamond_plate| techreborn | +
-| :::| modern_industrialization:diamond_plate| modern_industrialization | +
-| c:diamond_small_dusts| techreborn:diamond_small_dust| techreborn | +
-| c:diamond_tiny_dusts| astromine:diamond_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:diamond_tiny_dust| modern_industrialization | +
-| c:diamonds| minecraft:diamond| slotlink, spatialharvesters, nafis, appliedenergistics2, astromine-foundations, ae2, ironchest, cotton-resources, astromine-discoveries, expandedstorage, crookedcrooks | +
-| c:diorite_dusts| techreborn:diorite_dust| techreborn | +
-| c:diorite_small_dusts| techreborn:diorite_small_dust| techreborn | +
-| c:discordium_blocks| mythicmetals:discordium_block| mythicmetals | +
-| c:discordium_ingots| mythicmetals:discordium_ingot| 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_ingots| mythicmetals:durasteel_ingot| mythicmetals | +
-| c:durasteel_nuggets| mythicmetals:durasteel_nugget| mythicmetals | +
-| c:dye_any| #c:dye_black| flonters | +
-| :::| #c:dye_blue| flonters | +
-| :::| #c:dye_brown| flonters | +
-| :::| #c:dye_cyan| flonters | +
-| :::| #c:dye_gray| flonters | +
-| :::| #c:dye_green| flonters | +
-| :::| #c:dye_light_blue| flonters | +
-| :::| #c:dye_light_gray| flonters | +
-| :::| #c:dye_lime| flonters | +
-| :::| #c:dye_magenta| flonters | +
-| :::| #c:dye_orange| flonters | +
-| :::| #c:dye_pink| flonters | +
-| :::| #c:dye_purple| flonters | +
-| :::| #c:dye_red| flonters | +
-| :::| #c:dye_white| flonters | +
-| :::| #c:dye_yellow| flonters | +
-| c:dye_black| minecraft:black_dye| flonters | +
-| c:dye_blue| minecraft:blue_dye| extragenerators, flonters | +
-| c:dye_brown| minecraft:brown_dye| flonters | +
-| c:dye_cyan| minecraft:cyan_dye| flonters | +
-| c:dye_gray| minecraft:gray_dye| flonters | +
-| c:dye_green| minecraft:green_dye| extragenerators, flonters | +
-| c:dye_light_blue| minecraft:light_blue_dye| flonters | +
-| c:dye_light_gray| minecraft:light_gray_dye| flonters | +
-| c:dye_lime| minecraft:lime_dye| flonters | +
-| c:dye_magenta| minecraft:magenta_dye| flonters | +
-| c:dye_orange| minecraft:orange_dye| flonters | +
-| c:dye_pink| minecraft:pink_dye| flonters | +
-| c:dye_purple| minecraft:purple_dye| flonters | +
-| c:dye_red| minecraft:red_dye| extragenerators, flonters | +
-| c:dye_white| minecraft:white_dye| flonters | +
-| c:dye_yellow| minecraft:yellow_dye| flonters | +
-| c:dyes| minecraft:white_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:orange_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:magenta_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:light_blue_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:yellow_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:lime_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:pink_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:gray_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:light_gray_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:cyan_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:purple_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:blue_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:brown_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:green_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:red_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| :::| minecraft:black_dye| painters_blocks, mtr, exnihilofabrico, spatialharvesters | +
-| c:egg_rolls| croptopia:egg_roll| croptopia | +
-| c:eggplants| valley:eggplant| valley | +
-| c:eggs| flamingo_ooo:flamingo_egg| flamingo_ooo | +
-| :::| 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_block| cotton-resources | +
-| :::| indrev:electrum_block| indrev | +
-| :::| mythicmetals:electrum_block| mythicmetals | +
-| :::| techreborn:electrum_storage_block| techreborn | +
-| :::| texp:electrum_block| texp | +
-| :::| modern_industrialization:electrum_block| modern_industrialization | +
-| c:electrum_dusts| astromine:electrum_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:electrum_dust| cotton-resources | +
-| :::| indrev:electrum_dust| indrev | +
-| :::| modern_industrialization:electrum_dust| modern_industrialization | +
-| :::| techreborn:electrum_dust| techreborn | +
-| :::| texp:electrum_dust| texp | +
-| c:electrum_gears| astromine:electrum_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:electrum_gear| cotton-resources | +
-| c:electrum_ingots| astromine:electrum_ingot| astromine-discoveries, astromine-foundations | +
-| :::| c:electrum_ingot| cotton-resources | +
-| :::| indrev:electrum_ingot| indrev | +
-| :::| modern_industrialization:electrum_ingot| modern_industrialization | +
-| :::| mw:electrum_ingot| mw | +
-| :::| mythicmetals:electrum_ingot| mythicmetals | +
-| :::| techreborn:electrum_ingot| techreborn | +
-| :::| texp:electrum_ingot| texp | +
-| c:electrum_nuggets| astromine:electrum_nugget| astromine-discoveries, astromine-foundations | +
-| :::| c:electrum_nugget| cotton-resources | +
-| :::| indrev:electrum_nugget| indrev | +
-| :::| modern_industrialization:electrum_nugget| modern_industrialization | +
-| :::| mythicmetals:electrum_nugget| mythicmetals | +
-| :::| techreborn:electrum_nugget| techreborn | +
-| :::| texp:electrum_nugget| texp | +
-| c:electrum_plates| astromine:electrum_plate| astromine-discoveries, astromine-foundations | +
-| :::| c:electrum_plate| cotton-resources | +
-| :::| indrev:electrum_plate| indrev | +
-| :::| modern_industrialization:electrum_plate| modern_industrialization | +
-| :::| techreborn:electrum_plate| techreborn | +
-| c:electrum_small_dusts| techreborn:electrum_small_dust| techreborn | +
-| c:electrum_tiny_dusts| astromine:electrum_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:electrum_tiny_dust| modern_industrialization | +
-| c:electrum_wires| astromine:electrum_wire| 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_dust| cotton-resources | +
-| :::| techreborn:emerald_dust| techreborn | +
-| :::| modern_industrialization:emerald_dust| modern_industrialization | +
-| c:emerald_fragments| astromine:emerald_fragment| astromine-discoveries, astromine-foundations | +
-| c:emerald_gears| c:emerald_gear| cotton-resources | +
-| c:emerald_gravels| gravel-ores:emerald_gravel| gravel-ores | +
-| c:emerald_nuggets| #c:emerald_fragments| astromine-foundations | +
-| :::| techreborn:emerald_nugget| techreborn | +
-| c:emerald_ores| minecraft:emerald_ore| techreborn, astromine-foundations, astromine-discoveries, randomtech | +
-| :::| #c:asteroid_emerald_ores| astromine-discoveries | +
-| :::| bno:netheremerald_ore| bno | +
-| :::| gravel-ores:emerald_gravel| gravel-ores | +
-| :::| #minecraft:emerald_ores| modern_industrialization | +
-| :::| minecraft:deepslate_emerald_ore| techreborn | +
-| c:emerald_plates| c:emerald_plate| cotton-resources | +
-| :::| techreborn:emerald_plate| techreborn | +
-| :::| modern_industrialization:emerald_plate| modern_industrialization | +
-| c:emerald_small_dusts| techreborn:emerald_small_dust| techreborn | +
-| c:emerald_tiny_dusts| astromine:emerald_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| 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_ingots| mechanix:endalum_ingot| mechanix | +
-| c:ender_eye_dusts| techreborn:ender_eye_dust| techreborn | +
-| c:ender_eye_small_dusts| techreborn:ender_eye_small_dust| techreborn | +
-| c:ender_pearl_dusts| appliedenergistics2:ender_dust| appliedenergistics2 | +
-| :::| techreborn:ender_pearl_dust| techreborn | +
-| :::| ae2:ender_dust| ae2 | +
-| c:ender_pearl_small_dusts| techreborn:ender_pearl_small_dust| techreborn | +
-| c:ender_pearls| minecraft:ender_pearl| ae2, appliedenergistics2, computercraft | +
-| c:endstone_dusts| techreborn:endstone_dust| techreborn | +
-| c:endstone_small_dusts| techreborn:endstone_small_dust| techreborn | +
-| c:etherite_blocks| mythicmetals:etherite_block| mythicmetals | +
-| c:etherite_ingots| mythicmetals:etherite_ingot| mythicmetals | +
-| c:etherite_nuggets| mythicmetals:etherite_nugget| mythicmetals | +
-| c:eton_mess| croptopia:eton_mess| croptopia | +
-| c:feathers| flamingo_ooo:pink_feather| flamingo_ooo | +
-| :::| minecraft:feather| icarus, spatialharvesters | +
-| c:fence_gates| byg:aspen_fence_gate| byg | +
-| :::| byg:baobab_fence_gate| byg | +
-| :::| byg:blue_enchanted_fence_gate| byg | +
-| :::| byg:cherry_fence_gate| byg | +
-| :::| byg:cika_fence_gate| byg | +
-| :::| byg:cypress_fence_gate| byg | +
-| :::| byg:ebony_fence_gate| byg | +
-| :::| byg:fir_fence_gate| byg | +
-| :::| byg:green_enchanted_fence_gate| byg | +
-| :::| byg:holly_fence_gate| byg | +
-| :::| byg:jacaranda_fence_gate| byg | +
-| :::| byg:mahogany_fence_gate| byg | +
-| :::| byg:mangrove_fence_gate| byg | +
-| :::| byg:maple_fence_gate| byg | +
-| :::| byg:pine_fence_gate| byg | +
-| :::| byg:rainbow_eucalyptus_fence_gate| byg | +
-| :::| byg:redwood_fence_gate| byg | +
-| :::| byg:skyris_fence_gate| byg | +
-| :::| byg:willow_fence_gate| byg | +
-| :::| byg:witch_hazel_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_small_dusts| techreborn:flint_small_dust| techreborn | +
-| 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_blocks| astromine:fools_gold_block| astromine-discoveries, astromine-foundations | +
-| c:fools_gold_dusts| astromine:fools_gold_dust| astromine-discoveries, astromine-foundations | +
-| c:fools_gold_gears| astromine:fools_gold_gear| astromine-discoveries, astromine-foundations | +
-| c:fools_gold_ingots| astromine:fools_gold_ingot| astromine-discoveries, astromine-foundations | +
-| c:fools_gold_nuggets| astromine:fools_gold_nugget| 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: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 | +
-| :::| byg:green_apple| byg | +
-| :::| 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:beetroot| veggie_way, spatialharvesters | +
-| :::| minecraft:honeycomb| veggie_way, spatialharvesters | +
-| :::| minecraft:melon_slice| croptopia, valley, veggie_way, spatialharvesters | +
-| :::| minecraft:sugar_cane| veggie_way, spatialharvesters | +
-| :::| minecraft:sweet_berries| valley, veggie_way, spatialharvesters | +
-| :::| 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_dusts| astromine:galaxium_dust| astromine-discoveries, astromine-foundations | +
-| c:galaxium_fragments| astromine:galaxium_fragment| astromine-discoveries, astromine-foundations | +
-| c:galaxium_nuggets| #c:galaxium_fragments| astromine-foundations | +
-| c:galaxium_ores| #c:asteroid_galaxium_ores| astromine-discoveries | +
-| c:galaxium_tiny_dusts| astromine:galaxium_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:galaxiums| astromine:galaxium| astromine-discoveries, astromine-foundations | +
-| c:galena_dusts| techreborn:galena_dust| techreborn | +
-| c:galena_ores| techreborn:galena_ore| techreborn | +
-| :::| techreborn:deepslate_galena_ore| techreborn | +
-| c:galena_small_dusts| techreborn:galena_small_dust| techreborn | +
-| c:garlic| bonappetit:garlic| bonappetit | +
-| c:gems| byg:ametrine_gems| byg | +
-| :::| minecraft:diamond| icarus, more_gems | +
-| :::| minecraft:emerald| icarus, 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:sapphire| more_gems | +
-| :::| more_gems:carbonado| more_gems | +
-| :::| more_gems:amethyst| more_gems | +
-| :::| more_gems:ruby| more_gems | +
-| c:glass| minecraft:glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:white_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:orange_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:magenta_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:light_blue_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:yellow_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:lime_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:pink_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:gray_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:light_gray_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:cyan_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:purple_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:blue_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:brown_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:green_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:red_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| minecraft:black_stained_glass| refinedmachinery, modern_industrialization, artofalchemy, ae2, prefab | +
-| :::| refinedmachinery:glass_block| refinedmachinery | +
-| :::| refinedmachinery:black_glass_block| refinedmachinery | +
-| c:glass_blocks| minecraft:glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:white_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:orange_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:magenta_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:light_blue_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:yellow_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:lime_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:pink_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:gray_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:light_gray_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:cyan_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:purple_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:blue_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:brown_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:green_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:red_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| minecraft:black_stained_glass| appliedenergistics2, expandedstorage | +
-| :::| xb:g| xb | +
-| :::| xb:gk| xb | +
-| :::| xb:gb| xb | +
-| :::| xb:gw| xb | +
-| :::| xb:gc| xb | +
-| :::| xb:gn| xb | +
-| :::| xb:gg| xb | +
-| :::| xb:gu| xb | +
-| :::| xb:ga| xb | +
-| :::| xb:gl| xb | +
-| :::| xb:gm| xb | +
-| :::| xb:go| xb | +
-| :::| xb:gp| xb | +
-| :::| xb:gv| xb | +
-| :::| xb:gr| xb | +
-| :::| xb:gy| xb | +
-| :::| {'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:light_blue_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:cyan_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:lime_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:green_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:orange_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:yellow_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:red_stained_glass_pane| adorn, computercraft | +
-| :::| minecraft:magenta_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 | +
-| c:glow_berries| minecraft:glow_berries| adorn | +
-| c:glowstone_blocks| minecraft:glowstone| 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_tiny_dusts| astromine:glowstone_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:gold_blocks| minecraft:gold_block| computercraft, modern_industrialization, spatialharvesters, astromine-foundations, mtr, astromine-discoveries, mythicmetals | +
-| c:gold_dust| refinedmachinery:gold_dust| refinedmachinery | +
-| :::| simplequern:gold_dust| simplequern | +
-| c:gold_dusts| appliedenergistics2:gold_dust| appliedenergistics2 | +
-| :::| astromine:gold_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:gold_dust| cotton-resources | +
-| :::| indrev:gold_dust| indrev | +
-| :::| mechanix:gold_dust| mechanix | +
-| :::| modern_industrialization:gold_dust| modern_industrialization | +
-| :::| resourceful_tools:powder_gold| resourceful_tools | +
-| :::| techreborn:gold_dust| techreborn | +
-| :::| texp:gold_dust| texp | +
-| c:gold_gears| astromine:gold_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:gold_gear| cotton-resources | +
-| :::| modern_industrialization:gold_gear| modern_industrialization | +
-| c:gold_gravels| gravel-ores:gold_gravel| gravel-ores | +
-| c:gold_ingots| minecraft:gold_ingot| computercraft, astromine-discoveries, crookedcrooks, indrev, nafis, astromine-foundations, cotton-resources, basicshields, expandedstorage, slotlink, spatialharvesters, ae2, ironchest, adorn, mythicmetals, modern_industrialization, appliedenergistics2 | +
-| :::| mythicmetals:midas_gold_ingot| mythicmetals | +
-| c:gold_nuggets| minecraft:gold_nugget| modern_industrialization, astromine-foundations, ae2, astromine-discoveries, mythicmetals | +
-| c:gold_ores| minecraft:gold_ore| indrev, techreborn, modern_industrialization, appliedenergistics2, astromine-foundations, astromine-discoveries, mythicmetals, randomtech | +
-| :::| minecraft:nether_gold_ore| astromine-foundations, indrev, randomtech | +
-| :::| #c:asteroid_gold_ores| astromine-discoveries | +
-| :::| gravel-ores:gold_gravel| gravel-ores | +
-| :::| #minecraft:gold_ores| modern_industrialization | +
-| :::| 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_plate| cotton-resources | +
-| :::| indrev:gold_plate| indrev | +
-| :::| modern_industrialization:gold_plate| modern_industrialization | +
-| :::| techreborn:gold_plate| techreborn | +
-| c:gold_small_dusts| techreborn:gold_small_dust| techreborn | +
-| c:gold_tiny_dusts| astromine:gold_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:gold_tiny_dust| modern_industrialization | +
-| c:gold_wires| astromine:gold_wire| astromine-discoveries, astromine-foundations | +
-| c:golden_apples| minecraft:golden_apple| astromine-discoveries, astromine-foundations | +
-| :::| minecraft:enchanted_golden_apple| astromine-foundations | +
-| 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_small_dusts| techreborn:granite_small_dust| techreborn | +
-| c:gravel| unearthed:pyroxene| unearthed | +
-| :::| 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_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:hot_tungstensteel_ingots| techreborn:hot_tungstensteel_ingot| techreborn | +
-| c:hot_tungstensteel_nuggets| techreborn:hot_tungstensteel_nugget| techreborn | +
-| c:invar_blocks| techreborn:invar_storage_block| techreborn | +
-| :::| modern_industrialization:invar_block| modern_industrialization | +
-| c:invar_dusts| modern_industrialization:invar_dust| modern_industrialization | +
-| :::| techreborn:invar_dust| techreborn | +
-| c:invar_gears| modern_industrialization:invar_gear| modern_industrialization | +
-| c:invar_ingots| modern_industrialization:invar_ingot| modern_industrialization | +
-| :::| mw:invar_ingot| mw | +
-| :::| techreborn:invar_ingot| techreborn | +
-| c:invar_nuggets| modern_industrialization:invar_nugget| modern_industrialization | +
-| :::| techreborn:invar_nugget| techreborn | +
-| c:invar_plates| modern_industrialization:invar_plate| modern_industrialization | +
-| :::| techreborn:invar_plate| techreborn | +
-| c:invar_small_dusts| techreborn:invar_small_dust| techreborn | +
-| c:invar_tiny_dusts| modern_industrialization:invar_tiny_dust| modern_industrialization | +
-| c:iridium_alloy_ingots| techreborn:iridium_alloy_ingot| techreborn | +
-| c:iridium_alloy_plates| techreborn:iridium_alloy_plate| techreborn | +
-| c:iridium_blocks| c:iridium_block| cotton-resources | +
-| :::| techreborn:iridium_storage_block| techreborn | +
-| :::| modern_industrialization:iridium_block| modern_industrialization | +
-| c:iridium_dusts| c:iridium_dust| cotton-resources | +
-| :::| modern_industrialization:iridium_dust| modern_industrialization | +
-| c:iridium_gears| c:iridium_gear| cotton-resources | +
-| c:iridium_ingots| c:iridium_ingot| cotton-resources | +
-| :::| techreborn:iridium_ingot| techreborn | +
-| :::| modern_industrialization:iridium_ingot| modern_industrialization | +
-| c:iridium_nuggets| c:iridium_nugget| cotton-resources | +
-| :::| techreborn:iridium_nugget| techreborn | +
-| :::| modern_industrialization:iridium_nugget| modern_industrialization | +
-| c:iridium_ores| c:iridium_ore| cotton-resources | +
-| :::| c:iridium_nether_ore| cotton-resources | +
-| :::| c:iridium_end_ore| cotton-resources | +
-| :::| 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 | +
-| :::| 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_tungstensteel_blocks| techreborn:iridium_reinforced_tungstensteel_storage_block| techreborn | +
-| 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 | +
-| :::| simplequern:iron_dust| simplequern | +
-| c:iron_dusts| appliedenergistics2:iron_dust| appliedenergistics2 | +
-| :::| astromine:iron_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:iron_dust| cotton-resources | +
-| :::| indrev:iron_dust| indrev | +
-| :::| mechanix:iron_dust| mechanix | +
-| :::| modern_industrialization:iron_dust| modern_industrialization | +
-| :::| resourceful_tools:powder_iron| resourceful_tools | +
-| :::| techreborn:iron_dust| techreborn | +
-| :::| texp:iron_dust| texp | +
-| c:iron_gears| astromine:iron_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:iron_gear| cotton-resources | +
-| :::| modern_industrialization:iron_gear| modern_industrialization | +
-| c:iron_gravels| gravel-ores:iron_gravel| gravel-ores | +
-| 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 | +
-| :::| betterend:thallasium_ingot| betterend | +
-| :::| 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 | +
-| :::| bno:netheriron_ore| bno | +
-| :::| gravel-ores:iron_gravel| gravel-ores | +
-| :::| {'id': 'minecraft:iron_ores', 'required': False}| ae2 | +
-| :::| #minecraft:iron_ores| modern_industrialization | +
-| :::| minecraft:deepslate_iron_ore| techreborn | +
-| c:iron_plates| astromine:iron_plate| astromine-discoveries, astromine-foundations | +
-| :::| c:iron_plate| cotton-resources | +
-| :::| indrev:iron_plate| indrev | +
-| :::| mechanix:iron_plating| mechanix | +
-| :::| modern_industrialization:iron_plate| modern_industrialization | +
-| :::| 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_tiny_dusts| astromine:iron_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| 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_ingots| mythicmetals:kyber_ingot| mythicmetals | +
-| c:kyber_nuggets| mythicmetals:kyber_nugget| mythicmetals | +
-| c:kyber_ores| mythicmetals:kyber_ore| mythicmetals | +
-| c:lapis_blocks| minecraft:lapis_block| modern_industrialization, astromine-discoveries, mtr, 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_lazulis| minecraft:lapis_lazuli| astromine-discoveries, astromine-foundations | +
-| c:lapis_ores| minecraft:lapis_ore| techreborn, astromine-foundations, astromine-discoveries, randomtech | +
-| :::| #c:asteroid_lapis_ores| astromine-discoveries | +
-| :::| bno:netherlapis_ore| bno | +
-| :::| gravel-ores:lapis_gravel| gravel-ores | +
-| :::| #minecraft:lapis_ores| modern_industrialization | +
-| :::| minecraft:deepslate_lapis_ore| 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 | +
-| :::| modern_industrialization:lapis_tiny_dust| modern_industrialization | +
-| c:lazurite_dusts| techreborn:lazurite_dust| techreborn | +
-| c:lazurite_plates| techreborn:lazurite_plate| 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_block| refinedmachinery:lead_block| refinedmachinery | +
-| c:lead_blocks| astromine:lead_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:lead_block| bno | +
-| :::| c:lead_block| cotton-resources | +
-| :::| indrev:lead_block| indrev | +
-| :::| techreborn:lead_storage_block| techreborn | +
-| :::| texp:lead_block| texp | +
-| :::| modern_industrialization:lead_block| modern_industrialization | +
-| c:lead_dust| refinedmachinery:lead_dust| refinedmachinery | +
-| c:lead_dusts| astromine:lead_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:lead_dust| cotton-resources | +
-| :::| indrev:lead_dust| indrev | +
-| :::| modern_industrialization:lead_dust| modern_industrialization | +
-| :::| techreborn:lead_dust| techreborn | +
-| :::| texp:lead_dust| texp | +
-| c:lead_gears| astromine:lead_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:lead_gear| cotton-resources | +
-| c:lead_ingot| refinedmachinery:lead_ingot| refinedmachinery | +
-| c:lead_ingots| astromine:lead_ingot| astromine-discoveries, astromine-foundations | +
-| :::| bno:lead_ingot| bno | +
-| :::| c:lead_ingot| cotton-resources | +
-| :::| indrev:lead_ingot| indrev | +
-| :::| modern_industrialization:lead_ingot| modern_industrialization | +
-| :::| techreborn:lead_ingot| techreborn | +
-| :::| texp:lead_ingot| texp | +
-| c:lead_nuggets| astromine:lead_nugget| astromine-discoveries, astromine-foundations | +
-| :::| bno:lead_nugget| bno | +
-| :::| c:lead_nugget| cotton-resources | +
-| :::| indrev:lead_nugget| indrev | +
-| :::| modern_industrialization:lead_nugget| modern_industrialization | +
-| :::| techreborn:lead_nugget| techreborn | +
-| :::| texp:lead_nugget| texp | +
-| c:lead_ore| refinedmachinery:lead_ore| refinedmachinery | +
-| c:lead_ores| astromine:lead_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_lead_ores| astromine-discoveries | +
-| :::| bno:netherlead_ore| bno | +
-| :::| 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 | +
-| :::| techreborn:lead_ore| techreborn | +
-| :::| 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_plate| cotton-resources | +
-| :::| indrev:lead_plate| indrev | +
-| :::| modern_industrialization:lead_plate| modern_industrialization | +
-| :::| techreborn:lead_plate| techreborn | +
-| c:lead_small_dusts| techreborn:lead_small_dust| techreborn | +
-| c:lead_tiny_dusts| astromine:lead_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:lead_tiny_dust| modern_industrialization | +
-| c:lead_wires| astromine:lead_wire| astromine-discoveries, astromine-foundations | +
-| c:leafy_salads| croptopia:leafy_salad| croptopia | +
-| 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:light_blue_dye| minecraft:light_blue_dye| ae2 | +
-| c:light_blue_dyes| minecraft:light_blue_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | +
-| :::| minecraft:blue_dye| valley | +
-| c:light_gray_dye| minecraft:light_gray_dye| ae2 | +
-| c:light_gray_dyes| minecraft:light_gray_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | +
-| c:lignite_coal| modern_industrialization:lignite_coal| modern_industrialization | +
-| c:lignite_coal_blocks| modern_industrialization:lignite_coal_block| modern_industrialization | +
-| c:lignite_coal_dusts| modern_industrialization:lignite_coal_dust| modern_industrialization | +
-| c:lignite_coal_ores| modern_industrialization:lignite_coal_ore| modern_industrialization | +
-| :::| modern_industrialization:deepslate_lignite_coal_ore| modern_industrialization | +
-| c:lignite_coal_tiny_dusts| modern_industrialization:lignite_coal_tiny_dust| modern_industrialization | +
-| c:lime_dye| minecraft:lime_dye| ae2 | +
-| c:lime_dyes| minecraft:lime_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | +
-| c:limeades| croptopia:limeade| croptopia | +
-| c:limestone| blockus:limestone| blockus | +
-| :::| blockus:limestone_bricks| 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_dusts| astromine:lunum_dust| astromine-discoveries, astromine-foundations | +
-| c:lunum_gears| astromine:lunum_gear| astromine-discoveries, astromine-foundations | +
-| c:lunum_ingots| astromine:lunum_ingot| astromine-discoveries, astromine-foundations | +
-| c:lunum_nuggets| astromine:lunum_nugget| astromine-discoveries, astromine-foundations | +
-| c:lunum_ores| #c:moon_lunum_ores| astromine-discoveries | +
-| c:lunum_plates| astromine:lunum_plate| astromine-discoveries, astromine-foundations | +
-| c:lunum_tiny_dusts| astromine:lunum_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:lutetium_blocks| mythicmetals:lutetium_block| mythicmetals | +
-| c:lutetium_ingots| mythicmetals:lutetium_ingot| mythicmetals | +
-| c:lutetium_nuggets| mythicmetals:lutetium_nugget| mythicmetals | +
-| c:lutetium_ores| mythicmetals:lutetium_ore| mythicmetals | +
-| 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:magnesium_dusts| techreborn:magnesium_dust| techreborn | +
-| c:magnesium_small_dusts| techreborn:magnesium_small_dust| techreborn | +
-| c:manganese_blocks| mythicmetals:manganese_block| mythicmetals | +
-| :::| modern_industrialization:manganese_block| modern_industrialization | +
-| c:manganese_dusts| modern_industrialization:manganese_dust| modern_industrialization | +
-| :::| techreborn:manganese_dust| techreborn | +
-| c:manganese_ingots| modern_industrialization:manganese_ingot| modern_industrialization | +
-| :::| mythicmetals:manganese_ingot| mythicmetals | +
-| c:manganese_nuggets| modern_industrialization:manganese_nugget| modern_industrialization | +
-| :::| mythicmetals:manganese_nugget| mythicmetals | +
-| c:manganese_ores| mythicmetals:manganese_ore| mythicmetals | +
-| c:manganese_small_dusts| techreborn:manganese_small_dust| techreborn | +
-| c:manganese_tiny_dusts| modern_industrialization:manganese_tiny_dust| modern_industrialization | +
-| c:mango_ice_creams| croptopia:mango_ice_cream| croptopia | +
-| c:marble| blockus:marble| blockus | +
-| :::| blockus:marble_bricks| 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_small_dusts| techreborn:marble_small_dust| techreborn | +
-| c:meads| croptopia:mead| croptopia | +
-| c:metallurgium_blocks| mythicmetals:metallurgium_block| mythicmetals | +
-| c:metallurgium_ingots| mythicmetals:metallurgium_ingot| mythicmetals | +
-| c:metallurgium_nuggets| mythicmetals:metallurgium_nugget| mythicmetals | +
-| c:meteor_metite_clusters| astromine:meteor_metite_cluster| astromine-discoveries, astromine-foundations | +
-| c:meteor_metite_ores| astromine:meteor_metite_ore| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_blocks| astromine:meteoric_steel_block| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_dusts| astromine:meteoric_steel_dust| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_gears| astromine:meteoric_steel_gear| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_ingots| astromine:meteoric_steel_ingot| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_nuggets| astromine:meteoric_steel_nugget| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_plates| astromine:meteoric_steel_plate| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_tiny_dusts| astromine:meteoric_steel_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:metite_blocks| astromine:metite_block| astromine-discoveries, astromine-foundations | +
-| c:metite_dusts| astromine:metite_dust| astromine-discoveries, astromine-foundations | +
-| c:metite_gears| astromine:metite_gear| astromine-discoveries, astromine-foundations | +
-| c:metite_ingots| astromine:metite_ingot| astromine-discoveries, astromine-foundations | +
-| c:metite_nuggets| astromine:metite_nugget| astromine-discoveries, astromine-foundations | +
-| c:metite_ores| #c:asteroid_metite_ores| astromine-discoveries | +
-| :::| #c:meteor_metite_ores| astromine-foundations | +
-| c:metite_plates| astromine:metite_plate| astromine-discoveries, astromine-foundations | +
-| c:metite_tiny_dusts| astromine:metite_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:midas_gold_blocks| mythicmetals:midas_gold_block| mythicmetals | +
-| c:midas_gold_ingots| mythicmetals:midas_gold_ingot| mythicmetals | +
-| c:midas_gold_nuggets| mythicmetals:midas_gold_nugget| 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: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:mortar_and_pestles| croptopia:mortar_and_pestle| croptopia | +
-| c:mozanite_blocks| modern_industrialization:mozanite_block| modern_industrialization | +
-| c:mozanite_dusts| modern_industrialization:mozanite_dust| modern_industrialization | +
-| c:mozanite_ores| modern_industrialization:mozanite_ore| modern_industrialization | +
-| :::| modern_industrialization:deepslate_mozanite_ore| modern_industrialization | +
-| c:mozanite_tiny_dusts| modern_industrialization:mozanite_tiny_dust| modern_industrialization | +
-| c:mushrooms| byg:green_mushroom| byg | +
-| :::| byg:wood_blewit| byg | +
-| :::| byg:weeping_milkcap| byg | +
-| :::| byg:black_puff| byg | +
-| :::| byg:sythian_fungus| byg | +
-| :::| minecraft:brown_mushroom| spatialharvesters | +
-| :::| minecraft:red_mushroom| spatialharvesters | +
-| :::| brown_mushroom| bewitchment | +
-| :::| red_mushroom| bewitchment | +
-| :::| botania:white_mushroom| botania | +
-| :::| botania:orange_mushroom| botania | +
-| :::| botania:magenta_mushroom| botania | +
-| :::| botania:light_blue_mushroom| botania | +
-| :::| botania:yellow_mushroom| botania | +
-| :::| botania:lime_mushroom| botania | +
-| :::| botania:pink_mushroom| botania | +
-| :::| botania:gray_mushroom| botania | +
-| :::| botania:light_gray_mushroom| botania | +
-| :::| botania:cyan_mushroom| botania | +
-| :::| botania:purple_mushroom| botania | +
-| :::| botania:blue_mushroom| botania | +
-| :::| botania:brown_mushroom| botania | +
-| :::| botania:green_mushroom| botania | +
-| :::| botania:red_mushroom| botania | +
-| :::| botania:black_mushroom| botania | +
-| c:mythril_blocks| mythicmetals:mythril_block| mythicmetals | +
-| c:mythril_ingots| mythicmetals:mythril_ingot| mythicmetals | +
-| c:mythril_nuggets| mythicmetals:mythril_nugget| 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_ingots| mechanix:neptunium_ingot| mechanix | +
-| 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_gears| astromine:netherite_gear| astromine-discoveries, astromine-foundations | +
-| c:netherite_ingots| minecraft:netherite_ingot| astromine-foundations, astromine-discoveries, expandedstorage, crookedcrooks | +
-| 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_scrap_dusts| indrev:netherite_scrap_dust| indrev | +
-| c:netherite_scraps| minecraft:netherite_scrap| astromine-discoveries, astromine-foundations | +
-| c:netherite_tiny_dusts| astromine:netherite_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:netherrack| byg:overgrown_netherrack| byg | +
-| :::| byg:overgrown_crimson_blackstone| byg | +
-| :::| byg:blue_netherrack| byg | +
-| :::| byg:brimstone| byg | +
-| :::| byg:embur_nylium| byg | +
-| :::| byg:sythian_nylium| byg | +
-| :::| minecraft:netherrack| spatialharvesters | +
-| c:netherrack_dusts| techreborn:netherrack_dust| techreborn | +
-| c:netherrack_small_dusts| techreborn:netherrack_small_dust| techreborn | +
-| c:nickel_block| refinedmachinery:nickel_block| refinedmachinery | +
-| c:nickel_blocks| bno:nickel_block| bno | +
-| :::| techreborn:nickel_storage_block| techreborn | +
-| :::| texp:nickel_block| texp | +
-| :::| modern_industrialization:nickel_block| modern_industrialization | +
-| c:nickel_dust| refinedmachinery:nickel_dust| refinedmachinery | +
-| c:nickel_dusts| modern_industrialization:nickel_dust| modern_industrialization | +
-| :::| techreborn:nickel_dust| techreborn | +
-| :::| texp:nickel_dust| texp | +
-| c:nickel_ingot| refinedmachinery:nickel_ingot| refinedmachinery | +
-| c:nickel_ingots| bno:nickel_ingot| bno | +
-| :::| modern_industrialization:nickel_ingot| modern_industrialization | +
-| :::| mw:nickel_ingot| mw | +
-| :::| techreborn:nickel_ingot| techreborn | +
-| :::| texp:nickel_ingot| texp | +
-| c:nickel_nuggets| bno:nickel_nugget| bno | +
-| :::| modern_industrialization:nickel_nugget| modern_industrialization | +
-| :::| techreborn:nickel_nugget| techreborn | +
-| :::| texp:nickel_nugget| texp | +
-| c:nickel_ore| refinedmachinery:nickel_ore| refinedmachinery | +
-| c:nickel_ores| bno:nethernickel_ore| bno | +
-| :::| modern_industrialization:nickel_ore| modern_industrialization | +
-| :::| texp:nickel_ore| texp | +
-| :::| modern_industrialization:deepslate_nickel_ore| modern_industrialization | +
-| c:nickel_plates| modern_industrialization:nickel_plate| modern_industrialization | +
-| :::| techreborn:nickel_plate| techreborn | +
-| c:nickel_small_dusts| techreborn:nickel_small_dust| techreborn | +
-| 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_plates| techreborn:obsidian_plate| 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_small_dusts| techreborn:olivine_small_dust| techreborn | +
-| c:onion| bonappetit:onion| bonappetit | +
-| :::| valley:onion| valley | +
-| c:onion_rings| croptopia:onion_rings| croptopia | +
-| c:orange_dye| minecraft:orange_dye| ae2 | +
-| c:orange_dyes| minecraft:orange_dye| computercraft, modern_industrialization, appliedenergistics2, camsbackpacks, comforts, icarus, mtr | +
-| c:ores| minecraft:gold_ore| modern_industrialization, spatialharvesters | +
-| :::| minecraft:iron_ore| modern_industrialization, spatialharvesters | +
-| :::| minecraft:coal_ore| modern_industrialization, spatialharvesters | +
-| :::| 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:antimony_ore| modern_industrialization | +
-| :::| modern_industrialization:nickel_ore| modern_industrialization | +
-| :::| modern_industrialization:silver_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_ingots| mythicmetals:orichalcum_ingot| mythicmetals | +
-| c:orichalcum_nuggets| mythicmetals:orichalcum_nugget| 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_block| cotton-resources | +
-| :::| mythicmetals:osmium_block| mythicmetals | +
-| c:osmium_dusts| c:osmium_dust| cotton-resources | +
-| c:osmium_gears| c:osmium_gear| cotton-resources | +
-| c:osmium_ingots| bno:osmium_ingot| bno | +
-| :::| c:osmium_ingot| cotton-resources | +
-| :::| mythicmetals:osmium_ingot| mythicmetals | +
-| c:osmium_nuggets| bno:osmium_nugget| bno | +
-| :::| c:osmium_nugget| cotton-resources | +
-| :::| mythicmetals:osmium_nugget| mythicmetals | +
-| c:osmium_ores| bno:netherosmium_ore| bno | +
-| :::| c:osmium_ore| cotton-resources | +
-| :::| c:osmium_nether_ore| cotton-resources | +
-| :::| c:osmium_end_ore| cotton-resources | +
-| :::| mythicmetals:osmium_ore| mythicmetals | +
-| c:osmium_plates| c:osmium_plate| cotton-resources | +
-| c:palladium_blocks| c:palladium_block| cotton-resources | +
-| :::| mythicmetals:palladium_block| mythicmetals | +
-| c:palladium_dusts| c:palladium_dust| cotton-resources | +
-| c:palladium_gears| c:palladium_gear| cotton-resources | +
-| c:palladium_ingots| c:palladium_ingot| cotton-resources | +
-| :::| mythicmetals:palladium_ingot| mythicmetals | +
-| c:palladium_nuggets| c:palladium_nugget| cotton-resources | +
-| :::| mythicmetals:palladium_nugget| mythicmetals | +
-| c:palladium_ores| c:palladium_ore| cotton-resources | +
-| :::| c:palladium_nether_ore| cotton-resources | +
-| :::| c:palladium_end_ore| cotton-resources | +
-| :::| mythicmetals:palladium_ore| mythicmetals | +
-| 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 | +
-| :::| techreborn:peridot_storage_block| techreborn | +
-| c:peridot_dusts| c:peridot_dust| cotton-resources | +
-| :::| techreborn:peridot_dust| techreborn | +
-| c:peridot_gears| c:peridot_gear| cotton-resources | +
-| c:peridot_gems| techreborn:peridot_gem| techreborn | +
-| c:peridot_ores| c:peridot_ore| cotton-resources | +
-| :::| c:peridot_nether_ore| cotton-resources | +
-| :::| c:peridot_end_ore| cotton-resources | +
-| :::| techreborn:peridot_ore| techreborn | +
-| :::| techreborn:deepslate_peridot_ore| techreborn | +
-| c:peridot_plates| c:peridot_plate| cotton-resources | +
-| :::| techreborn:peridot_plate| techreborn | +
-| c:peridot_small_dusts| techreborn:peridot_small_dust| techreborn | +
-| c:peridots| c:peridot| cotton-resources | +
-| :::| {'id': 'techreborn:peridot_gem', 'required': False}| crookedcrooks | +
-| :::| {'id': 'techreborn:peridot_gem', 'required': False}| crookedcrooks | +
-| c:perlium_dusts| mechanix:perlium_dust| mechanix | +
-| c:perlium_ingots| mechanix:perlium_ingot| mechanix | +
-| c:phosphorous_dusts| techreborn:phosphorous_dust| techreborn | +
-| c:phosphorous_small_dusts| techreborn:phosphorous_small_dust| techreborn | +
-| c:pickaxes| more_gems:citrine_pickaxe| more_gems | +
-| :::| more_gems:tourmaline_pickaxe| more_gems | +
-| :::| more_gems:amethyst_pickaxe| more_gems | +
-| :::| more_gems:emerald_pickaxe| more_gems | +
-| :::| more_gems:topaz_pickaxe| more_gems | +
-| :::| more_gems:alexandrite_pickaxe| more_gems | +
-| :::| 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 | +
-| :::| mythicmetals:platinum_block| mythicmetals | +
-| :::| techreborn:platinum_storage_block| techreborn | +
-| :::| texp:platinum_block| texp | +
-| :::| modern_industrialization:platinum_block| modern_industrialization | +
-| c:platinum_dusts| c:platinum_dust| cotton-resources | +
-| :::| techreborn:platinum_dust| techreborn | +
-| :::| texp:platinum_dust| texp | +
-| :::| modern_industrialization:platinum_dust| modern_industrialization | +
-| c:platinum_gears| c:platinum_gear| cotton-resources | +
-| c:platinum_ingots| c:platinum_ingot| cotton-resources | +
-| :::| mw:platinum_ingot| mw | +
-| :::| mythicmetals:platinum_ingot| mythicmetals | +
-| :::| techreborn:platinum_ingot| techreborn | +
-| :::| texp:platinum_ingot| texp | +
-| :::| modern_industrialization:platinum_ingot| modern_industrialization | +
-| c:platinum_nuggets| c:platinum_nugget| cotton-resources | +
-| :::| mythicmetals:platinum_nugget| mythicmetals | +
-| :::| techreborn:platinum_nugget| techreborn | +
-| :::| texp:platinum_nugget| texp | +
-| :::| modern_industrialization:platinum_nugget| modern_industrialization | +
-| c:platinum_ores| c:platinum_ore| cotton-resources | +
-| :::| c:platinum_nether_ore| cotton-resources | +
-| :::| c:platinum_end_ore| cotton-resources | +
-| :::| mythicmetals:platinum_ore| mythicmetals | +
-| :::| texp:platinum_ore| texp | +
-| :::| modern_industrialization:platinum_ore| modern_industrialization | +
-| c:platinum_plates| c:platinum_plate| cotton-resources | +
-| :::| techreborn:platinum_plate| techreborn | +
-| :::| modern_industrialization:platinum_plate| modern_industrialization | +
-| 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 | +
-| :::| modern_industrialization:plutonium_block| modern_industrialization | +
-| c:plutonium_dusts| c:plutonium_dust| cotton-resources | +
-| :::| modern_industrialization:plutonium_dust| modern_industrialization | +
-| c:plutonium_gears| c:plutonium_gear| cotton-resources | +
-| c:plutonium_ingots| c:plutonium_ingot| cotton-resources | +
-| :::| modern_industrialization:plutonium_ingot| modern_industrialization | +
-| c:plutonium_nuggets| c:plutonium_nugget| cotton-resources | +
-| :::| modern_industrialization:plutonium_nugget| modern_industrialization | +
-| 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: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_ingots| mythicmetals:prometheum_ingot| mythicmetals | +
-| c:prometheum_nuggets| mythicmetals:prometheum_nugget| mythicmetals | +
-| c:prometheum_ores| mythicmetals:prometheum_ore| mythicmetals | +
-| c:protein| veggie_way:quinoa| veggie_way | +
-| :::| veggie_way:lentil| veggie_way | +
-| :::| veggie_way:soybean| veggie_way | +
-| :::| veggie_way:cooked_tofu| veggie_way | +
-| 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 | +
-| :::| 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_blocks| #c:fools_gold_blocks| astromine-foundations | +
-| c:pyrite_dusts| #c:fools_gold_dusts| astromine-foundations | +
-| :::| techreborn:pyrite_dust| techreborn | +
-| c:pyrite_gears| #c:fools_gold_gears| astromine-foundations | +
-| c:pyrite_ingots| #c:fools_gold_ingots| astromine-foundations | +
-| c:pyrite_nuggets| #c:fools_gold_nuggets| astromine-foundations | +
-| c:pyrite_ores| techreborn:pyrite_ore| techreborn | +
-| c:pyrite_plates| #c:fools_gold_plates| astromine-foundations | +
-| c:pyrite_small_dusts| techreborn:pyrite_small_dust| techreborn | +
-| c:pyrite_tiny_dusts| #c:fools_gold_tiny_dusts| astromine-foundations | +
-| c:pyrope_dusts| techreborn:pyrope_dust| techreborn | +
-| c:pyrope_small_dusts| techreborn:pyrope_small_dust| techreborn | +
-| c:quadrillum_blocks| mythicmetals:quadrillum_block| mythicmetals | +
-| c:quadrillum_ingots| mythicmetals:quadrillum_ingot| mythicmetals | +
-| c:quadrillum_nuggets| mythicmetals:quadrillum_nugget| mythicmetals | +
-| c:quadrillum_ores| mythicmetals:quadrillum_ore| mythicmetals | +
-| c:quartz| minecraft:quartz| cinderscapes, appliedenergistics2, astromine-foundations, ae2, adorn, astromine-discoveries | +
-| :::| cinderscapes:smoky_quartz| cinderscapes | +
-| :::| cinderscapes:rose_quartz| cinderscapes | +
-| :::| cinderscapes:sulfur_quartz| cinderscapes | +
-| c:quartz_blocks| minecraft:quartz_block| astromine-discoveries, astromine-technologies, slotlink, astromine-foundations | +
-| :::| minecraft:chiseled_quartz_block| slotlink, astromine-technologies | +
-| :::| minecraft:quartz_pillar| slotlink, astromine-technologies | +
-| :::| minecraft:smooth_quartz| slotlink, astromine-technologies | +
-| :::| minecraft:quartz_bricks| slotlink, astromine-technologies | +
-| :::| blockus:quartz_tiles| blockus | +
-| :::| blockus:quartz_circle_pavement| blockus | +
-| :::| botania:dark_quartz| botania | +
-| :::| botania:mana_quartz| botania | +
-| :::| botania:blaze_quartz| botania | +
-| :::| botania:lavender_quartz| botania | +
-| :::| botania:red_quartz| botania | +
-| :::| botania:elf_quartz| botania | +
-| :::| botania:sunny_quartz| botania | +
-| c:quartz_dusts| appliedenergistics2:nether_quartz_dust| appliedenergistics2 | +
-| :::| astromine:quartz_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:quartz_dust| modern_industrialization | +
-| :::| techreborn:quartz_dust| techreborn | +
-| c:quartz_fragments| astromine:quartz_fragment| astromine-discoveries, astromine-foundations | +
-| c:quartz_nuggets| #c:quartz_fragments| astromine-foundations | +
-| c:quartz_ores| minecraft:nether_quartz_ore| modern_industrialization, appliedenergistics2, astromine-foundations, ae2, astromine-discoveries, randomtech | +
-| :::| modern_industrialization:quartz_ore| modern_industrialization | +
-| c:quartz_plates| techreborn:quartz_plate| techreborn | +
-| c:quartz_small_dusts| techreborn:quartz_small_dust| techreborn | +
-| c:quartz_tiny_dusts| astromine:quartz_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:quartz_tiny_dust| modern_industrialization | +
-| c:quicksilver_blocks| mythicmetals:quicksilver_block| mythicmetals | +
-| c:quicksilver_ingots| mythicmetals:quicksilver_ingot| mythicmetals | +
-| c:quicksilver_nuggets| mythicmetals:quicksilver_nugget| mythicmetals | +
-| 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 | +
-| :::| minecraft:salmon| 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 | +
-| :::| minecraft:beef| techreborn, exnihilofabrico | +
-| :::| minecraft:porkchop| techreborn, exnihilofabrico | +
-| :::| minecraft:chicken| techreborn, exnihilofabrico | +
-| :::| minecraft:rabbit| techreborn, exnihilofabrico | +
-| :::| minecraft:mutton| techreborn, exnihilofabrico | +
-| :::| exnihilofabrico:silkworm_raw| exnihilofabrico | +
-| :::| betteranimalsplus:venisonraw| betteranimalsplus | +
-| :::| betteranimalsplus:pheasantraw| betteranimalsplus | +
-| :::| betteranimalsplus:crab_meat_raw| betteranimalsplus | +
-| :::| betteranimalsplus:turkey_leg_raw| betteranimalsplus | +
-| :::| betteranimalsplus:eel_meat_raw| betteranimalsplus | +
-| :::| betteranimalsplus:calamari_raw| betteranimalsplus | +
-| :::| minecraft:cod| techreborn | +
-| :::| minecraft:salmon| techreborn | +
-| c:raw_netherite_dusts| astromine:raw_netherite_dust| astromine-discoveries, astromine-foundations | +
-| c:raw_netherite_tiny_dusts| astromine:raw_netherite_tiny_dust| astromine-discoveries, astromine-foundations | +
-| 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_dusts| techreborn:red_garnet_dust| techreborn | +
-| c:red_garnet_gems| techreborn:red_garnet_gem| techreborn | +
-| c:red_garnet_plates| techreborn:red_garnet_plate| techreborn | +
-| c:red_garnet_small_dusts| techreborn:red_garnet_small_dust| techreborn | +
-| c:red_sandstones| minecraft:red_sandstone| astromine-discoveries, astromine-technologies, waystones, astromine-foundations | +
-| :::| minecraft:cut_red_sandstone| astromine-technologies, waystones | +
-| :::| minecraft:chiseled_red_sandstone| astromine-technologies, waystones | +
-| :::| minecraft:smooth_red_sandstone| astromine-technologies, waystones | +
-| :::| blockus:red_sandstone_bricks| blockus | +
-| :::| 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_ingots| randomtech:redstone_ingot| randomtech | +
-| c:redstone_ores| minecraft:redstone_ore| techreborn, modern_industrialization, astromine-foundations, astromine-discoveries, randomtech | +
-| :::| #c:asteroid_redstone_ores| astromine-discoveries | +
-| :::| bno:netherredstone_ore| bno | +
-| :::| gravel-ores:redstone_gravel| gravel-ores | +
-| :::| #minecraft:redstone_ores| modern_industrialization | +
-| :::| minecraft:deepslate_redstone_ore| techreborn | +
-| c:redstone_plates| techreborn:redstone_plate| techreborn | +
-| c:redstone_small_dusts| techreborn:redstone_small_dust| techreborn | +
-| c:redstone_tiny_dusts| astromine:redstone_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| 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_ingots| techreborn:refined_iron_ingot| techreborn | +
-| c:refined_iron_nuggets| techreborn:refined_iron_nugget| 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_blocks| astromine:rose_gold_block| astromine-discoveries, astromine-foundations | +
-| c:rose_gold_dusts| astromine:rose_gold_dust| astromine-discoveries, astromine-foundations | +
-| c:rose_gold_gears| astromine:rose_gold_gear| astromine-discoveries, astromine-foundations | +
-| c:rose_gold_ingots| astromine:rose_gold_ingot| astromine-discoveries, astromine-foundations | +
-| c:rose_gold_nuggets| astromine:rose_gold_nugget| astromine-discoveries, astromine-foundations | +
-| c:rose_gold_plates| astromine:rose_gold_plate| astromine-discoveries, astromine-foundations | +
-| c:rose_gold_tiny_dusts| astromine:rose_gold_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:rubies| c:ruby| cotton-resources | +
-| :::| emerald_tools:ruby| emerald_tools | +
-| :::| more_gems:ruby| more_gems | +
-| :::| techreborn:ruby_gem| techreborn | +
-| c:ruby_blocks| c:ruby_block| cotton-resources | +
-| :::| techreborn:ruby_storage_block| techreborn | +
-| c:ruby_dusts| c:ruby_dust| cotton-resources | +
-| :::| modern_industrialization:ruby_dust| modern_industrialization | +
-| :::| techreborn:ruby_dust| techreborn | +
-| c:ruby_gears| c:ruby_gear| cotton-resources | +
-| c:ruby_ores| c:ruby_ore| cotton-resources | +
-| :::| c:ruby_nether_ore| cotton-resources | +
-| :::| c:ruby_end_ore| cotton-resources | +
-| :::| techreborn:ruby_ore| techreborn | +
-| :::| techreborn:deepslate_ruby_ore| techreborn | +
-| c:ruby_plates| c:ruby_plate| cotton-resources | +
-| :::| techreborn:ruby_plate| 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_ingots| mythicmetals:runite_ingot| mythicmetals | +
-| c:runite_nuggets| mythicmetals:runite_nugget| mythicmetals | +
-| c:runite_ores| mythicmetals:runite_ore| mythicmetals | +
-| 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 | +
-| :::| bewitchment:salt| bewitchment | +
-| 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:saltpeter_dusts| techreborn:saltpeter_dust| techreborn | +
-| c:saltpeter_small_dusts| techreborn:saltpeter_small_dust| techreborn | +
-| c:salts| croptopia:salt| croptopia | +
-| c:sand| byg:white_sand| byg | +
-| :::| byg:black_sand| byg | +
-| :::| byg:blue_sand| byg | +
-| :::| byg:pink_sand| byg | +
-| :::| byg:purple_sand| byg | +
-| :::| minecraft:sand| spatialharvesters | +
-| c:sand_blocks| minecraft:sand| appliedenergistics2 | +
-| :::| minecraft:red_sand| appliedenergistics2 | +
-| c:sandstone| byg:black_sandstone| byg | +
-| :::| byg:black_chiseled_sandstone| byg | +
-| :::| byg:black_cut_sandstone| byg | +
-| :::| byg:blue_sandstone| byg | +
-| :::| byg:blue_chiseled_sandstone| byg | +
-| :::| byg:blue_cut_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_cut_sandstone| byg | +
-| :::| minecraft:sandstone| spatialharvesters | +
-| c:sandstones| #c:yellow_sandstones| astromine-technologies | +
-| :::| #c:red_sandstones| astromine-technologies | +
-| :::| minecraft:sandstone| waystones | +
-| :::| minecraft:smooth_sandstone| waystones | +
-| :::| minecraft:chiseled_sandstone| waystones | +
-| :::| minecraft:cut_sandstone| waystones | +
-| c:sandwich/blacklist| #c:sandwich/bread| ce_foodstuffs | +
-| :::| ce_foodstuffs:sandwich| ce_foodstuffs | +
-| :::| minecraft:mushroom_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:saplings| byg:aspen_sapling| byg | +
-| :::| byg:baobab_sapling| byg | +
-| :::| byg:blue_enchanted_sapling| byg | +
-| :::| byg:blue_spruce_sapling| byg | +
-| :::| byg:brown_birch_sapling| byg | +
-| :::| byg:brown_oak_sapling| byg | +
-| :::| byg:cika_sapling| byg | +
-| :::| byg:cypress_sapling| byg | +
-| :::| byg:ebony_sapling| byg | +
-| :::| byg:fir_sapling| byg | +
-| :::| byg:green_enchanted_sapling| byg | +
-| :::| byg:holly_sapling| byg | +
-| :::| byg:jacaranda_sapling| byg | +
-| :::| byg:indigo_jacaranda_sapling| byg | +
-| :::| byg:mahogany_sapling| byg | +
-| :::| byg:mangrove_sapling| byg | +
-| :::| byg:maple_sapling| byg | +
-| :::| byg:orange_birch_sapling| byg | +
-| :::| byg:orange_oak_sapling| byg | +
-| :::| byg:orange_spruce_sapling| byg | +
-| :::| byg:orchard_sapling| byg | +
-| :::| byg:palo_verde_sapling| byg | +
-| :::| byg:joshua_sapling| byg | +
-| :::| byg:yellow_spruce_sapling| byg | +
-| :::| byg:pine_sapling| byg | +
-| :::| byg:pink_cherry_sapling| byg | +
-| :::| byg:rainbow_eucalyptus_sapling| byg | +
-| :::| byg:red_birch_sapling| byg | +
-| :::| byg:red_maple_sapling| byg | +
-| :::| byg:red_oak_sapling| byg | +
-| :::| byg:red_spruce_sapling| byg | +
-| :::| byg:redwood_sapling| byg | +
-| :::| byg:silver_maple_sapling| byg | +
-| :::| byg:white_cherry_sapling| byg | +
-| :::| byg:willow_sapling| byg | +
-| :::| byg:witch_hazel_sapling| byg | +
-| :::| byg:yellow_birch_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_blocks| c:sapphire_block| cotton-resources | +
-| :::| techreborn:sapphire_storage_block| techreborn | +
-| c:sapphire_dusts| c:sapphire_dust| cotton-resources | +
-| :::| techreborn:sapphire_dust| techreborn | +
-| c:sapphire_gears| c:sapphire_gear| cotton-resources | +
-| c:sapphire_ores| c:sapphire_ore| cotton-resources | +
-| :::| c:sapphire_nether_ore| cotton-resources | +
-| :::| c:sapphire_end_ore| cotton-resources | +
-| :::| techreborn:sapphire_ore| techreborn | +
-| :::| techreborn:deepslate_sapphire_ore| techreborn | +
-| c:sapphire_plates| c:sapphire_plate| cotton-resources | +
-| :::| techreborn:sapphire_plate| techreborn | +
-| c:sapphire_small_dusts| techreborn:sapphire_small_dust| techreborn | +
-| c:sapphires| c:sapphire| cotton-resources | +
-| :::| techreborn:sapphire_gem| techreborn | +
-| c:saucy_chips| croptopia:saucy_chips| croptopia | +
-| c:saw_dusts| techreborn:saw_dust| techreborn | +
-| c:saw_small_dusts| techreborn:saw_small_dust| techreborn | +
-| c:scones| croptopia:scones| croptopia | +
-| 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_sugarcane| exnihilofabrico | +
-| :::| exnihilofabrico:seed_potato| exnihilofabrico | +
-| :::| exnihilofabrico:seed_carrot| exnihilofabrico | +
-| :::| exnihilofabrico:seed_dark_oak| exnihilofabrico | +
-| :::| exnihilofabrico:seed_acacia| exnihilofabrico | +
-| :::| exnihilofabrico:seed_jungle| exnihilofabrico | +
-| :::| exnihilofabrico:seed_spruce| exnihilofabrico | +
-| :::| exnihilofabrico:seed_birch| exnihilofabrico | +
-| :::| exnihilofabrico:seed_oak| 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 | +
-| :::| 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_ingots| modern_industrialization:silicon_ingot| modern_industrialization | +
-| c:silicon_nuggets| modern_industrialization:silicon_nugget| modern_industrialization | +
-| c:silicon_plates| modern_industrialization:silicon_plate| modern_industrialization | +
-| :::| techreborn:silicon_plate| techreborn | +
-| c:silicon_tiny_dusts| modern_industrialization:silicon_tiny_dust| modern_industrialization | +
-| c:silver_block| refinedmachinery:silver_block| refinedmachinery | +
-| c:silver_blocks| astromine:silver_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:silver_block| bno | +
-| :::| c:silver_block| cotton-resources | +
-| :::| indrev:silver_block| indrev | +
-| :::| mythicmetals:silver_block| mythicmetals | +
-| :::| techreborn:silver_storage_block| techreborn | +
-| :::| texp:silver_block| texp | +
-| :::| bewitchment:silver_block| bewitchment | +
-| :::| modern_industrialization:silver_block| modern_industrialization | +
-| c:silver_dust| refinedmachinery:silver_dust| refinedmachinery | +
-| c:silver_dusts| astromine:silver_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:silver_dust| cotton-resources | +
-| :::| indrev:silver_dust| indrev | +
-| :::| modern_industrialization:silver_dust| modern_industrialization | +
-| :::| techreborn:silver_dust| techreborn | +
-| :::| texp:silver_dust| texp | +
-| c:silver_gears| astromine:silver_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:silver_gear| cotton-resources | +
-| c:silver_ingot| refinedmachinery:silver_ingot| refinedmachinery | +
-| c:silver_ingots| astromine:silver_ingot| astromine-discoveries, astromine-foundations | +
-| :::| bno:silver_ingot| bno | +
-| :::| c:silver_ingot| cotton-resources | +
-| :::| indrev:silver_ingot| indrev | +
-| :::| modern_industrialization:silver_ingot| modern_industrialization | +
-| :::| mw:silver_ingot| mw | +
-| :::| mythicmetals:silver_ingot| mythicmetals | +
-| :::| techreborn:silver_ingot| techreborn | +
-| :::| texp:silver_ingot| texp | +
-| :::| bewitchment:silver_ingot| bewitchment | +
-| c:silver_nuggets| astromine:silver_nugget| astromine-discoveries, astromine-foundations | +
-| :::| bno:silver_nugget| bno | +
-| :::| c:silver_nugget| cotton-resources | +
-| :::| indrev:silver_nugget| indrev | +
-| :::| modern_industrialization:silver_nugget| modern_industrialization | +
-| :::| mythicmetals:silver_nugget| mythicmetals | +
-| :::| techreborn:silver_nugget| techreborn | +
-| :::| texp:silver_nugget| texp | +
-| :::| bewitchment:silver_nugget| bewitchment | +
-| c:silver_ore| refinedmachinery:silver_ore| refinedmachinery | +
-| c:silver_ores| astromine:silver_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_silver_ores| astromine-discoveries | +
-| :::| bno:nethersilver_ore| bno | +
-| :::| 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 | +
-| :::| mythicmetals:silver_ore| mythicmetals | +
-| :::| techreborn:silver_ore| techreborn | +
-| :::| 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_plate| cotton-resources | +
-| :::| indrev:silver_plate| indrev | +
-| :::| modern_industrialization:silver_plate| modern_industrialization | +
-| :::| techreborn:silver_plate| techreborn | +
-| c:silver_small_dusts| techreborn:silver_small_dust| techreborn | +
-| c:silver_tiny_dusts| astromine:silver_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:silver_tiny_dust| modern_industrialization | +
-| c:silver_wires| astromine:silver_wire| astromine-discoveries, astromine-foundations | +
-| c:skulls| zombie_head| bewitchment | +
-| :::| skeleton_skull| bewitchment | +
-| :::| wither_skeleton_skull| bewitchment | +
-| :::| creeper_head| bewitchment | +
-| :::| dragon_head| bewitchment | +
-| :::| player_head| bewitchment | +
-| c:slime_balls| minecraft:slime_ball| terrarianslimes, extragenerators | +
-| :::| terrarianslimes:black_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:blue_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:corrupt_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:crimson_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:ice_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:illuminant_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:jungle_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:pinky_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:purple_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:rainbow_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:red_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:sand_slime_ball| terrarianslimes | +
-| :::| terrarianslimes:yellow_slime_ball| terrarianslimes | +
-| c:slime_blocks| minecraft:slime_block| astromine-discoveries, terrarianslimes, extragenerators, astromine-foundations | +
-| :::| terrarianslimes:black_slime_block| terrarianslimes | +
-| :::| terrarianslimes:blue_slime_block| terrarianslimes | +
-| :::| terrarianslimes:corrupt_slime_block| terrarianslimes | +
-| :::| terrarianslimes:crimson_slime_block| terrarianslimes | +
-| :::| terrarianslimes:ice_slime_block| terrarianslimes | +
-| :::| terrarianslimes:illuminant_slime_block| terrarianslimes | +
-| :::| terrarianslimes:jungle_slime_block| terrarianslimes | +
-| :::| terrarianslimes:pinky_slime_block| terrarianslimes | +
-| :::| terrarianslimes:purple_slime_block| terrarianslimes | +
-| :::| terrarianslimes:rainbow_slime_block| terrarianslimes | +
-| :::| terrarianslimes:red_slime_block| terrarianslimes | +
-| :::| terrarianslimes:sand_slime_block| terrarianslimes | +
-| :::| terrarianslimes:yellow_slime_block| terrarianslimes | +
-| c:slowsilver_blocks| mythicmetals:slowsilver_block| mythicmetals | +
-| c:slowsilver_ingots| mythicmetals:slowsilver_ingot| mythicmetals | +
-| c:slowsilver_nuggets| mythicmetals:slowsilver_nugget| mythicmetals | +
-| c:snicker_doodles| croptopia:snicker_doodle| croptopia | +
-| c:sodalite_dusts| techreborn:sodalite_dust| techreborn | +
-| c:sodalite_ores| techreborn:sodalite_ore| techreborn | +
-| :::| techreborn:deepslate_sodalite_ore| 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_ingots| modern_industrialization:sodium_ingot| modern_industrialization | +
-| c:sodium_nuggets| modern_industrialization:sodium_nugget| modern_industrialization | +
-| c:sodium_tiny_dusts| modern_industrialization:sodium_tiny_dust| modern_industrialization | +
-| c:soldering_alloy_blocks| modern_industrialization:soldering_alloy_block| modern_industrialization | +
-| 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_sand| betternether | +
-| :::| minecraft:soul_soil| betternether | +
-| c:soy_milks| croptopia:soy_milk| croptopia | +
-| c:soy_sauces| croptopia:soy_sauce| croptopia | +
-| c:soybean| veggie_way:soybean| veggie_way | +
-| c:spaghetti_squashs| croptopia:spaghetti_squash| croptopia | +
-| c:spessartine_dusts| techreborn:spessartine_dust| techreborn | +
-| c:spessartine_small_dusts| techreborn:spessartine_small_dust| techreborn | +
-| c:sphalerite_dusts| techreborn:sphalerite_dust| techreborn | +
-| c:sphalerite_ores| techreborn:sphalerite_ore| 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_gears| modern_industrialization:stainless_steel_gear| modern_industrialization | +
-| c:stainless_steel_ingots| modern_industrialization:stainless_steel_ingot| modern_industrialization | +
-| c:stainless_steel_nuggets| modern_industrialization:stainless_steel_nugget| modern_industrialization | +
-| c:stainless_steel_plates| modern_industrialization:stainless_steel_plate| modern_industrialization | +
-| c:stainless_steel_tiny_dusts| modern_industrialization:stainless_steel_tiny_dust| modern_industrialization | +
-| c:starrite_blocks| mythicmetals:starrite_block| mythicmetals | +
-| c:starrite_ingots| mythicmetals:starrite_ingot| mythicmetals | +
-| c:starrite_nuggets| mythicmetals:starrite_nugget| 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_block| cotton-resources | +
-| :::| indrev:steel_block| indrev | +
-| :::| mythicmetals:steel_block| mythicmetals | +
-| :::| techreborn:steel_storage_block| techreborn | +
-| :::| modern_industrialization:steel_block| modern_industrialization | +
-| c:steel_boots| indrev:steel_boots| indrev | +
-| :::| {'id': 'astromine:steel_boots', 'required': False}| indrev | +
-| :::| mythicmetals:steel_boots| mythicmetals | +
-| :::| {'id': 'astromine:steel_boots', 'required': False}| indrev | +
-| c:steel_chestplate| mythicmetals:steel_chestplate| mythicmetals | +
-| c:steel_chestplates| indrev:steel_chestplate| 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_dust| cotton-resources | +
-| :::| indrev:steel_dust| indrev | +
-| :::| modern_industrialization:steel_dust| modern_industrialization | +
-| :::| resourceful_tools:powder_steel| resourceful_tools | +
-| :::| techreborn:steel_dust| techreborn | +
-| c:steel_gears| astromine:steel_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:steel_gear| cotton-resources | +
-| :::| modern_industrialization:steel_gear| modern_industrialization | +
-| c:steel_helmets| indrev:steel_helmet| indrev | +
-| :::| {'id': 'astromine:steel_helmet', 'required': False}| indrev | +
-| :::| mythicmetals:steel_helmet| mythicmetals | +
-| :::| {'id': 'astromine:steel_helmet', 'required': False}| indrev | +
-| c:steel_ingot| refinedmachinery:steel_ingot| refinedmachinery | +
-| c:steel_ingots| astromine:steel_ingot| astromine-discoveries, astromine-foundations | +
-| :::| c:steel_ingot| cotton-resources | +
-| :::| emerald_tools:steel_ingot| emerald_tools | +
-| :::| indrev:steel_ingot| indrev | +
-| :::| modern_industrialization:steel_ingot| modern_industrialization | +
-| :::| mw:steel_ingot| mw | +
-| :::| mythicmetals:steel_ingot| mythicmetals | +
-| :::| techreborn:steel_ingot| techreborn | +
-| c:steel_leggings| indrev:steel_leggings| indrev | +
-| :::| {'id': 'astromine:steel_leggings', 'required': False}| indrev | +
-| :::| mythicmetals:steel_leggings| mythicmetals | +
-| :::| {'id': 'astromine:steel_leggings', 'required': False}| indrev | +
-| c:steel_nuggets| astromine:steel_nugget| astromine-discoveries, astromine-foundations | +
-| :::| c:steel_nugget| cotton-resources | +
-| :::| indrev:steel_nugget| indrev | +
-| :::| modern_industrialization:steel_nugget| modern_industrialization | +
-| :::| mythicmetals:steel_nugget| mythicmetals | +
-| :::| techreborn:steel_nugget| techreborn | +
-| c:steel_plates| astromine:steel_plate| astromine-discoveries, astromine-foundations | +
-| :::| c:steel_plate| cotton-resources | +
-| :::| indrev:steel_plate| indrev | +
-| :::| modern_industrialization:steel_plate| modern_industrialization | +
-| :::| techreborn:steel_plate| techreborn | +
-| c:steel_small_dusts| techreborn:steel_small_dust| techreborn | +
-| c:steel_tiny_dusts| astromine:steel_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:steel_tiny_dust| modern_industrialization | +
-| c:steel_wires| astromine:steel_wire| astromine-discoveries, astromine-foundations | +
-| c:stellum_blocks| astromine:stellum_block| astromine-discoveries, astromine-foundations | +
-| c:stellum_dusts| astromine:stellum_dust| astromine-discoveries, astromine-foundations | +
-| c:stellum_gears| astromine:stellum_gear| astromine-discoveries, astromine-foundations | +
-| c:stellum_ingots| astromine:stellum_ingot| astromine-discoveries, astromine-foundations | +
-| c:stellum_nuggets| astromine:stellum_nugget| astromine-discoveries, astromine-foundations | +
-| c:stellum_ores| #c:asteroid_stellum_ores| astromine-discoveries | +
-| c:stellum_plates| astromine:stellum_plate| astromine-discoveries, astromine-foundations | +
-| c:stellum_tiny_dusts| astromine:stellum_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:sterling_silver_blocks| astromine:sterling_silver_block| astromine-discoveries, astromine-foundations | +
-| c:sterling_silver_dusts| astromine:sterling_silver_dust| astromine-discoveries, astromine-foundations | +
-| c:sterling_silver_gears| astromine:sterling_silver_gear| astromine-discoveries, astromine-foundations | +
-| c:sterling_silver_ingots| astromine:sterling_silver_ingot| astromine-discoveries, astromine-foundations | +
-| c:sterling_silver_nuggets| astromine:sterling_silver_nugget| 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:sticky_toffee_pudding| croptopia:sticky_toffee_pudding| croptopia | +
-| c:stone| byg:soapstone| byg | +
-| :::| byg:scoria_stone| byg | +
-| :::| byg:dacite| byg | +
-| :::| byg:rocky_stone| byg | +
-| :::| byg:mossy_stone| byg | +
-| :::| byg:overgrown_stone| byg | +
-| :::| byg:overgrown_dacite| byg | +
-| :::| byg:overgrown_netherrack| byg | +
-| :::| byg:sythian_nylium| byg | +
-| :::| byg:podzol_dacite| byg | +
-| :::| byg:red_rock| byg | +
-| :::| byg:ether_stone| byg | +
-| :::| minecraft:stone| ae2, adorn, waystones, spatialharvesters | +
-| :::| #unearthed:sedimentary| unearthed | +
-| :::| #unearthed:metamorphic| unearthed | +
-| :::| #unearthed:igneous| unearthed | +
-| :::| minecraft:andesite| ae2, adorn | +
-| :::| minecraft:diorite| ae2, adorn | +
-| :::| minecraft:granite| ae2, adorn | +
-| :::| minecraft:deepslate| adorn | +
-| :::| minecraft:tuff| adorn | +
-| :::| minecraft:infested_stone| ae2 | +
-| :::| minecraft:polished_andesite| ae2 | +
-| :::| minecraft:polished_diorite| ae2 | +
-| :::| minecraft:polished_granite| ae2 | +
-| c:stone_gears| c:stone_gear| cotton-resources | +
-| c:stone_rods| adorn:stone_rod| adorn | +
-| c:stones| minecraft:diorite| resourceful_tools, computercraft | +
-| :::| minecraft:granite| resourceful_tools, computercraft | +
-| :::| minecraft:cobblestone| resourceful_tools, computercraft | +
-| :::| minecraft:andesite| resourceful_tools, computercraft | +
-| c:storage_blocks| byg:ametrine_block| byg | +
-| :::| byg:pendorite_block| byg | +
-| :::| byg:anthracite_block| byg | +
-| :::| #c:certus_quartz_blocks| ae2 | +
-| c:stormyx_blocks| mythicmetals:stormyx_block| mythicmetals | +
-| c:stormyx_ingots| mythicmetals:stormyx_ingot| mythicmetals | +
-| c:stormyx_nuggets| mythicmetals:stormyx_nugget| 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 | +
-| :::| techreborn:sulfur_dust| techreborn | +
-| :::| modern_industrialization:sulfur_dust| modern_industrialization | +
-| c:sulfur_ores| cinderscapes:sulfur_ore| cinderscapes | +
-| 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 | +
-| :::| 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_ingots| mythicmetals:tantalite_ingot| mythicmetals | +
-| c:tantalite_nuggets| mythicmetals:tantalite_nugget| mythicmetals | +
-| c:tantalite_ores| mythicmetals:tantalite_ore| mythicmetals | +
-| c:tea| croptopia:tea| croptopia | +
-| c:tea_ingredients/bitter/normal| minecraft:cocoa_beans| ce_foodstuffs | +
-| :::| minecraft:dead_bush| ce_foodstuffs | +
-| :::| minecraft:glowstone_dust| ce_foodstuffs | +
-| c:tea_ingredients/bitter/strong| minecraft:wither_rose| ce_foodstuffs | +
-| c:tea_ingredients/bitter/weak| minecraft:bamboo| ce_foodstuffs | +
-| :::| minecraft:cactus| ce_foodstuffs | +
-| c:tea_ingredients/gloopy/weak| minecraft:chorus_fruit| ce_foodstuffs | +
-| c:tea_ingredients/salty/normal| minecraft:warped_roots| ce_foodstuffs | +
-| :::| minecraft:seagrass| ce_foodstuffs | +
-| :::| minecraft:kelp| ce_foodstuffs | +
-| c:tea_ingredients/salty/weak| minecraft:pumpkin_seeds| ce_foodstuffs | +
-| :::| minecraft:nether_sprouts| ce_foodstuffs | +
-| :::| minecraft:warped_fungus| ce_foodstuffs | +
-| c:tea_ingredients/shining/weak| minecraft:glowstone_dust| ce_foodstuffs | +
-| c:tea_ingredients/sour/normal| minecraft:fern| ce_foodstuffs | +
-| :::| minecraft:large_fern| ce_foodstuffs | +
-| :::| minecraft:chorus_fruit| 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 | +
-| :::| minecraft:sweet_berries| ce_foodstuffs | +
-| c:tea_ingredients/sweet/strong| minecraft:honeycomb| ce_foodstuffs | +
-| c:tea_ingredients/sweet/weak| minecraft:pumpkin_seeds| ce_foodstuffs | +
-| :::| minecraft:beetroot_seeds| ce_foodstuffs | +
-| :::| minecraft:sugar| ce_foodstuffs | +
-| c:tea_ingredients/umami/normal| minecraft:crimson_roots| ce_foodstuffs | +
-| c:tea_ingredients/umami/weak| minecraft:carrot| ce_foodstuffs | +
-| :::| minecraft:crimson_fungus| ce_foodstuffs | +
-| :::| ce_foodstuffs:lettuce_seeds| ce_foodstuffs | +
-| c:tea_leaves| croptopia:tea_leaves| croptopia | +
-| c:terracotta_blocks| minecraft:terracotta| appliedenergistics2 | +
-| :::| minecraft:white_terracotta| appliedenergistics2 | +
-| :::| minecraft:orange_terracotta| appliedenergistics2 | +
-| :::| minecraft:magenta_terracotta| appliedenergistics2 | +
-| :::| minecraft:light_blue_terracotta| appliedenergistics2 | +
-| :::| minecraft:yellow_terracotta| appliedenergistics2 | +
-| :::| minecraft:lime_terracotta| appliedenergistics2 | +
-| :::| minecraft:pink_terracotta| appliedenergistics2 | +
-| :::| minecraft:gray_terracotta| appliedenergistics2 | +
-| :::| minecraft:light_gray_terracotta| appliedenergistics2 | +
-| :::| minecraft:cyan_terracotta| appliedenergistics2 | +
-| :::| minecraft:purple_terracotta| appliedenergistics2 | +
-| :::| minecraft:blue_terracotta| appliedenergistics2 | +
-| :::| minecraft:brown_terracotta| appliedenergistics2 | +
-| :::| minecraft:green_terracotta| appliedenergistics2 | +
-| :::| minecraft:red_terracotta| appliedenergistics2 | +
-| :::| minecraft:black_terracotta| appliedenergistics2 | +
-| c:terracottas| minecraft:terracotta| modern_industrialization | +
-| :::| minecraft:white_terracotta| modern_industrialization | +
-| :::| minecraft:white_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:orange_terracotta| modern_industrialization | +
-| :::| minecraft:orange_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:magenta_terracotta| modern_industrialization | +
-| :::| minecraft:magenta_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:light_blue_terracotta| modern_industrialization | +
-| :::| minecraft:light_blue_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:yellow_terracotta| modern_industrialization | +
-| :::| minecraft:yellow_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:lime_terracotta| modern_industrialization | +
-| :::| minecraft:lime_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:pink_terracotta| modern_industrialization | +
-| :::| minecraft:pink_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:gray_terracotta| modern_industrialization | +
-| :::| minecraft:gray_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:light_gray_terracotta| modern_industrialization | +
-| :::| minecraft:light_gray_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:cyan_terracotta| modern_industrialization | +
-| :::| minecraft:cyan_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:purple_terracotta| modern_industrialization | +
-| :::| minecraft:purple_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:blue_terracotta| modern_industrialization | +
-| :::| minecraft:blue_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:brown_terracotta| modern_industrialization | +
-| :::| minecraft:brown_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:green_terracotta| modern_industrialization | +
-| :::| minecraft:green_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:red_terracotta| modern_industrialization | +
-| :::| minecraft:red_glazed_terracotta| modern_industrialization | +
-| :::| minecraft:black_terracotta| modern_industrialization | +
-| :::| minecraft:black_glazed_terracotta| modern_industrialization | +
-| c:thorium_blocks| c:thorium_block| cotton-resources | +
-| c:thorium_dusts| c:thorium_dust| cotton-resources | +
-| c:thorium_gears| c:thorium_gear| cotton-resources | +
-| c:thorium_ingots| c:thorium_ingot| cotton-resources | +
-| c:thorium_nuggets| c:thorium_nugget| cotton-resources | +
-| c:thorium_plates| c:thorium_plate| cotton-resources | +
-| c:tin_block| refinedmachinery:tin_block| refinedmachinery | +
-| c:tin_blocks| astromine:tin_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:tin_block| bno | +
-| :::| c:tin_block| cotton-resources | +
-| :::| indrev:tin_block| indrev | +
-| :::| mythicmetals:tin_block| mythicmetals | +
-| :::| techreborn:tin_storage_block| techreborn | +
-| :::| texp:tin_block| texp | +
-| :::| modern_industrialization:tin_block| modern_industrialization | +
-| c:tin_dust| refinedmachinery:tin_dust| refinedmachinery | +
-| c:tin_dusts| astromine:tin_dust| astromine-discoveries, astromine-foundations | +
-| :::| c:tin_dust| cotton-resources | +
-| :::| indrev:tin_dust| indrev | +
-| :::| modern_industrialization:tin_dust| modern_industrialization | +
-| :::| resourceful_tools:powder_tin| resourceful_tools | +
-| :::| techreborn:tin_dust| techreborn | +
-| :::| texp:tin_dust| texp | +
-| c:tin_gears| astromine:tin_gear| astromine-discoveries, astromine-foundations | +
-| :::| c:tin_gear| cotton-resources | +
-| :::| modern_industrialization:tin_gear| modern_industrialization | +
-| c:tin_ingot| refinedmachinery:tin_ingot| refinedmachinery | +
-| c:tin_ingots| astromine:tin_ingot| astromine-discoveries, astromine-foundations | +
-| :::| bno:tin_ingot| bno | +
-| :::| c:tin_ingot| cotton-resources | +
-| :::| indrev:tin_ingot| indrev | +
-| :::| modern_industrialization:tin_ingot| modern_industrialization | +
-| :::| mw:tin_ingot| mw | +
-| :::| mythicmetals:tin_ingot| mythicmetals | +
-| :::| techreborn:tin_ingot| techreborn | +
-| :::| texp:tin_ingot| texp | +
-| c:tin_nuggets| astromine:tin_nugget| astromine-discoveries, astromine-foundations | +
-| :::| bno:tin_nugget| bno | +
-| :::| c:tin_nugget| cotton-resources | +
-| :::| indrev:tin_nugget| indrev | +
-| :::| modern_industrialization:tin_nugget| modern_industrialization | +
-| :::| mythicmetals:tin_nugget| mythicmetals | +
-| :::| techreborn:tin_nugget| techreborn | +
-| :::| texp:tin_nugget| texp | +
-| c:tin_ore| refinedmachinery:tin_ore| refinedmachinery | +
-| c:tin_ores| astromine:tin_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_tin_ores| astromine-discoveries | +
-| :::| bno:nethertin_ore| bno | +
-| :::| c:tin_ore| cotton-resources | +
-| :::| c:tin_nether_ore| cotton-resources | +
-| :::| c:tin_end_ore| cotton-resources | +
-| :::| indrev:tin_ore| indrev | +
-| :::| modern_industrialization:tin_ore| modern_industrialization | +
-| :::| mythicmetals:tin_ore| mythicmetals | +
-| :::| techreborn:tin_ore| techreborn | +
-| :::| 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_plate| cotton-resources | +
-| :::| indrev:tin_plate| indrev | +
-| :::| modern_industrialization:tin_plate| modern_industrialization | +
-| :::| techreborn:tin_plate| techreborn | +
-| c:tin_small_dusts| techreborn:tin_small_dust| techreborn | +
-| c:tin_tiny_dusts| astromine:tin_tiny_dust| astromine-discoveries, astromine-foundations | +
-| :::| modern_industrialization:tin_tiny_dust| modern_industrialization | +
-| c:tin_wires| astromine:tin_wire| astromine-discoveries, astromine-foundations | +
-| c:titanium_blocks| c:titanium_block| cotton-resources | +
-| :::| techreborn:titanium_storage_block| techreborn | +
-| :::| modern_industrialization:titanium_block| modern_industrialization | +
-| c:titanium_dusts| c:titanium_dust| cotton-resources | +
-| :::| modern_industrialization:titanium_dust| modern_industrialization | +
-| :::| techreborn:titanium_dust| techreborn | +
-| c:titanium_gears| c:titanium_gear| cotton-resources | +
-| :::| modern_industrialization:titanium_gear| modern_industrialization | +
-| c:titanium_ingots| c:titanium_ingot| cotton-resources | +
-| :::| modern_industrialization:titanium_ingot| modern_industrialization | +
-| :::| mw:titanium_ingot| mw | +
-| :::| techreborn:titanium_ingot| techreborn | +
-| c:titanium_nuggets| c:titanium_nugget| cotton-resources | +
-| :::| modern_industrialization:titanium_nugget| modern_industrialization | +
-| :::| techreborn:titanium_nugget| techreborn | +
-| c:titanium_ores| c:titanium_ore| cotton-resources | +
-| :::| c:titanium_nether_ore| cotton-resources | +
-| :::| c:titanium_end_ore| cotton-resources | +
-| :::| modern_industrialization:titanium_ore| modern_industrialization | +
-| c:titanium_plates| c:titanium_plate| cotton-resources | +
-| :::| modern_industrialization:titanium_plate| modern_industrialization | +
-| :::| techreborn:titanium_plate| techreborn | +
-| c:titanium_small_dusts| techreborn:titanium_small_dust| techreborn | +
-| 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 | +
-| :::| 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_blocks| c:topaz_block| cotton-resources | +
-| c:topaz_dusts| c:topaz_dust| cotton-resources | +
-| c:topaz_gears| c:topaz_gear| cotton-resources | +
-| c:topaz_ores| c:topaz_ore| cotton-resources | +
-| :::| c:topaz_nether_ore| cotton-resources | +
-| :::| c:topaz_end_ore| cotton-resources | +
-| c:topaz_plates| c:topaz_plate| cotton-resources | +
-| c:topazes| c:topaz| cotton-resources | +
-| c:tortillas| croptopia:tortilla| croptopia | +
-| 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_ingots| mythicmetals:truesilver_ingot| mythicmetals | +
-| c:truesilver_nuggets| mythicmetals:truesilver_nugget| mythicmetals | +
-| c:truesilver_ores| mythicmetals:truesilver_ore| mythicmetals | +
-| c:tuna_sandwiches| croptopia:tuna_sandwich| croptopia | +
-| c:tungsten_blocks| c:tungsten_block| cotton-resources | +
-| :::| endreborn:tungsten_block| endreborn | +
-| :::| indrev:tungsten_block| indrev | +
-| :::| techreborn:tungsten_storage_block| techreborn | +
-| :::| modern_industrialization:tungsten_block| modern_industrialization | +
-| c:tungsten_dusts| c:tungsten_dust| cotton-resources | +
-| :::| indrev:tungsten_dust| indrev | +
-| :::| techreborn:tungsten_dust| techreborn | +
-| :::| modern_industrialization:tungsten_dust| modern_industrialization | +
-| c:tungsten_gears| c:tungsten_gear| cotton-resources | +
-| c:tungsten_ingots| c:tungsten_ingot| cotton-resources | +
-| :::| endreborn:tungsten_ingot| endreborn | +
-| :::| indrev:tungsten_ingot| indrev | +
-| :::| techreborn:tungsten_ingot| techreborn | +
-| :::| modern_industrialization:tungsten_ingot| modern_industrialization | +
-| c:tungsten_nuggets| c:tungsten_nugget| cotton-resources | +
-| :::| endreborn:tungsten_nugget| endreborn | +
-| :::| indrev:tungsten_nugget| indrev | +
-| :::| techreborn:tungsten_nugget| techreborn | +
-| :::| modern_industrialization:tungsten_nugget| modern_industrialization | +
-| c:tungsten_ores| c:tungsten_ore| cotton-resources | +
-| :::| c:tungsten_nether_ore| cotton-resources | +
-| :::| c:tungsten_end_ore| cotton-resources | +
-| :::| endreborn:end_tungsten_ore| endreborn | +
-| :::| indrev:tungsten_ore| indrev | +
-| :::| 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 | +
-| :::| indrev:tungsten_plate| indrev | +
-| :::| techreborn:tungsten_plate| techreborn | +
-| :::| modern_industrialization:tungsten_plate| modern_industrialization | +
-| 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_ingots| techreborn:tungstensteel_ingot| techreborn | +
-| c:tungstensteel_nuggets| techreborn:tungstensteel_nugget| 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_dusts| astromine:univite_dust| astromine-discoveries, astromine-foundations | +
-| c:univite_gears| astromine:univite_gear| astromine-discoveries, astromine-foundations | +
-| c:univite_ingots| astromine:univite_ingot| astromine-discoveries, astromine-foundations | +
-| c:univite_nuggets| astromine:univite_nugget| astromine-discoveries, astromine-foundations | +
-| c:univite_plates| astromine:univite_plate| astromine-discoveries, astromine-foundations | +
-| c:univite_tiny_dusts| astromine:univite_tiny_dust| astromine-discoveries, astromine-foundations | +
-| c:unobtainium_blocks| mythicmetals:unobtainium_block| mythicmetals | +
-| c:unobtainium_ingots| mythicmetals:unobtainium_ingot| mythicmetals | +
-| c:unobtainium_nuggets| mythicmetals:unobtainium_nugget| mythicmetals | +
-| c:unobtainium_ores| mythicmetals:unobtainium_ore| mythicmetals | +
-| c:ur_blocks| mythicmetals:ur_block| mythicmetals | +
-| c:ur_ingots| mythicmetals:ur_ingot| mythicmetals | +
-| c:ur_nuggets| mythicmetals:ur_nugget| 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_block| cotton-resources | +
-| :::| modern_industrialization:uranium_block| modern_industrialization | +
-| c:uranium_dusts| c:uranium_dust| cotton-resources | +
-| :::| modern_industrialization:uranium_dust| modern_industrialization | +
-| c:uranium_gears| c:uranium_gear| cotton-resources | +
-| c:uranium_ingots| bno:uranium_ingot| bno | +
-| :::| c:uranium_ingot| cotton-resources | +
-| :::| modern_industrialization:uranium_ingot| modern_industrialization | +
-| c:uranium_nuggets| c:uranium_nugget| cotton-resources | +
-| :::| modern_industrialization:uranium_nugget| modern_industrialization | +
-| c:uranium_ores| bno:netheruranium_ore| bno | +
-| :::| 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_tiny_dusts| modern_industrialization:uranium_tiny_dust| modern_industrialization | +
-| c:uvarovite_dusts| techreborn:uvarovite_dust| techreborn | +
-| c:uvarovite_small_dusts| techreborn:uvarovite_small_dust| techreborn | +
-| c:vanilla_ice_creams| croptopia:vanilla_ice_cream| croptopia | +
-| c:veges| valley:mandrake| valley | +
-| :::| valley:maize_crop| valley | +
-| :::| valley:snow_yam_item| valley | +
-| :::| valley:onion| valley | +
-| :::| valley:eggplant| valley | +
-| :::| valley:tomato_bush| valley | +
-| :::| valley:fire_pepper| valley | +
-| :::| valley:green_bean| valley | +
-| :::| minecraft:carrot| valley | +
-| :::| minecraft:potato| valley | +
-| :::| minecraft:beetroot| valley | +
-| :::| minecraft:pumpkin| valley | +
-| c:vegetables| minecraft:potato| bonappetit | +
-| :::| 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 | +
-| :::| #c:vegetables/artichokes| croptopia | +
-| :::| #c:vegetables/asparagus| croptopia | +
-| :::| #c:vegetables/broccoli| croptopia | +
-| :::| #c:vegetables/cabbage| croptopia | +
-| :::| #c:vegetables/celery| croptopia | +
-| :::| #c:vegetables/cucumber| croptopia | +
-| :::| #c:vegetables/eggplant| croptopia | +
-| :::| #c:vegetables/garlic| croptopia | +
-| :::| #c:vegetables/ginger| croptopia | +
-| :::| #c:vegetables/greenbeans| croptopia | +
-| :::| #c:vegetables/greenonions| croptopia | +
-| :::| #c:vegetables/kale| croptopia | +
-| :::| #c:vegetables/leek| croptopia | +
-| :::| #c:vegetables/lettuce| croptopia | +
-| :::| #c:vegetables/mustard| croptopia | +
-| :::| #c:vegetables/radishes| croptopia | +
-| :::| #c:vegetables/rutabagas| croptopia | +
-| :::| #c:vegetables/soybeans| croptopia | +
-| :::| #c:vegetables/spinach| croptopia | +
-| :::| #c:vegetables/squash| croptopia | +
-| :::| #c:vegetables/sweetpotatos| croptopia | +
-| :::| #c:vegetables/tomatoes| croptopia | +
-| :::| #c:vegetables/turnips| croptopia | +
-| :::| #c:vegetables/yams| croptopia | +
-| :::| #c:vegetables/zucchini| croptopia | +
-| :::| #c:vegetables/cauliflower| croptopia | +
-| :::| #c:vegetables/onion| croptopia | +
-| :::| #c:vegetables/rhubarb| croptopia | +
-| :::| #c:vegetables/tomatillos| croptopia | +
-| c:vegetables/artichokes| croptopia:artichoke| croptopia | +
-| c:vegetables/asparagus| croptopia:asparagus| croptopia | +
-| c:vegetables/broccoli| croptopia:broccoli| croptopia | +
-| c:vegetables/cabbage| croptopia:cabbage| croptopia | +
-| c:vegetables/cauliflower| croptopia:cauliflower| croptopia | +
-| c:vegetables/celery| croptopia:celery| croptopia | +
-| c:vegetables/cucumber| croptopia:cucumber| croptopia | +
-| c:vegetables/eggplant| croptopia:eggplant| croptopia | +
-| c:vegetables/garlic| croptopia:garlic| croptopia | +
-| c:vegetables/ginger| croptopia:ginger| croptopia | +
-| c:vegetables/greenbeans| croptopia:greenbean| croptopia | +
-| c:vegetables/greenonions| croptopia:greenonion| croptopia | +
-| c:vegetables/kale| croptopia:kale| croptopia | +
-| c:vegetables/leek| croptopia:leek| croptopia | +
-| c:vegetables/lettuce| croptopia:lettuce| croptopia | +
-| c:vegetables/mustard| croptopia:mustard| croptopia | +
-| c:vegetables/onion| croptopia:onion| croptopia | +
-| c:vegetables/radishes| croptopia:radish| croptopia | +
-| c:vegetables/rhubarb| croptopia:rhubarb| croptopia | +
-| c:vegetables/rutabagas| croptopia:rutabaga| croptopia | +
-| c:vegetables/soybeans| croptopia:soybean| croptopia | +
-| c:vegetables/spinach| croptopia:spinach| croptopia | +
-| c:vegetables/squash| croptopia:squash| croptopia | +
-| c:vegetables/sweetpotatos| croptopia:sweetpotato| croptopia | +
-| c:vegetables/tomatillos| croptopia:tomatillo| croptopia | +
-| c:vegetables/tomatoes| croptopia:tomato| croptopia | +
-| c:vegetables/turnips| croptopia:turnip| croptopia | +
-| c:vegetables/yams| croptopia:yam| croptopia | +
-| c:vegetables/zucchini| croptopia:zucchini| croptopia | +
-| c:veggie_salads| croptopia:veggie_salad| croptopia | +
-| c:veggies| minecraft:carrot| exnihilofabrico, spatialharvesters | +
-| :::| minecraft:potato| exnihilofabrico, spatialharvesters | +
-| :::| minecraft:beetroot| exnihilofabrico, spatialharvesters | +
-| c:vermiculite| mythicmetals:vermiculite| mythicmetals | +
-| c:vermiculite_blocks| mythicmetals:vermiculite_block| 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_ingots| mechanix:vysterium_ingot| mechanix | +
-| c:water_bottles| croptopia:water_bottle| croptopia | +
-| :::| minecraft:water_bucket| croptopia | +
-| 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_plates| techreborn:wood_plate| techreborn | +
-| c:wood_sticks| minecraft:stick| astromine-foundations, basicshields, mtr | +
-| c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage | +
-| :::| {'id': '#blockus:barrels', 'required': False}| expandedstorage | +
-| :::| betterend:helix_tree_barrel| betterend | +
-| :::| betterend:lucernia_barrel| betterend | +
-| :::| betterend:end_lotus_barrel| betterend | +
-| :::| betterend:umbrella_tree_barrel| betterend | +
-| :::| betterend:dragon_tree_barrel| betterend | +
-| :::| betterend:lacugrove_barrel| betterend | +
-| :::| betterend:jellyshroom_barrel| betterend | +
-| :::| betterend:pythadendron_barrel| betterend | +
-| :::| betterend:tenanea_barrel| betterend | +
-| :::| betterend:mossy_glowshroom_barrel| betterend | +
-| :::| betternether:rubeus_barrel| betternether | +
-| :::| betternether:nether_sakura_barrel| betternether | +
-| :::| betternether:nether_mushroom_barrel| betternether | +
-| :::| betternether:mushroom_fir_barrel| betternether | +
-| :::| betternether:stalagnate_barrel| betternether | +
-| :::| betternether:willow_barrel| betternether | +
-| :::| betternether:wart_barrel| betternether | +
-| :::| betternether:nether_reed_barrel| betternether | +
-| :::| betternether:anchor_tree_barrel| betternether | +
-| :::| #blockus:barrels| blockus | +
-| :::| minecraft:barrel| expandedstorage | +
-| c:wooden_chests| minecraft:chest| slotlink, computercraft, appliedenergistics2, ae2, adorn, expandedstorage, packages | +
-| :::| minecraft:trapped_chest| slotlink, computercraft, appliedenergistics2, ae2, adorn, expandedstorage | +
-| :::| {'id': 'minecraft: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_trapped_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:birch_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:birch_trapped_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:crimson_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:crimson_trapped_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:dark_oak_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:dark_oak_trapped_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:jungle_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:jungle_trapped_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:oak_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:oak_trapped_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:spruce_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:spruce_trapped_chest', 'required': False}| slotlink | +
-| :::| {'id': 'charm:warped_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: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:warped_chest_default', 'required': False}| slotlink | +
-| :::| 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 | +
-| :::| byg:baobab_crafting_table| byg | +
-| :::| byg:blue_enchanted_crafting_table| byg | +
-| :::| byg:cherry_crafting_table| byg | +
-| :::| byg:cika_crafting_table| byg | +
-| :::| byg:cypress_crafting_table| byg | +
-| :::| byg:ebony_crafting_table| byg | +
-| :::| byg:fir_crafting_table| byg | +
-| :::| byg:green_enchanted_crafting_table| byg | +
-| :::| byg:holly_crafting_table| byg | +
-| :::| byg:jacaranda_crafting_table| byg | +
-| :::| byg:mahogany_crafting_table| byg | +
-| :::| byg:mangrove_crafting_table| byg | +
-| :::| byg:maple_crafting_table| byg | +
-| :::| byg:pine_crafting_table| byg | +
-| :::| byg:rainbow_eucalyptus_crafting_table| byg | +
-| :::| byg:redwood_crafting_table| byg | +
-| :::| byg:skyris_crafting_table| byg | +
-| :::| byg:willow_crafting_table| byg | +
-| :::| byg:witch_hazel_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:worms| valley:worm| valley | +
-| c:wrenches| astromine:copper_wrench| astromine-foundations | +
-| :::| astromine:bronze_wrench| astromine-foundations | +
-| :::| astromine:steel_wrench| astromine-foundations | +
-| :::| 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_dusts| techreborn:yellow_garnet_dust| techreborn | +
-| c:yellow_garnet_gems| techreborn:yellow_garnet_gem| techreborn | +
-| c:yellow_garnet_plates| techreborn:yellow_garnet_plate| techreborn | +
-| c:yellow_garnet_small_dusts| techreborn:yellow_garnet_small_dust| techreborn | +
-| c:yellow_sandstones| minecraft:sandstone| astromine-discoveries, astromine-technologies, astromine-foundations | +
-| :::| minecraft:cut_sandstone| astromine-technologies | +
-| :::| minecraft:chiseled_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 | +
-| :::| mythicmetals:zinc_block| mythicmetals | +
-| :::| techreborn:zinc_storage_block| techreborn | +
-| c:zinc_dusts| c:zinc_dust| cotton-resources | +
-| :::| techreborn:zinc_dust| techreborn | +
-| c:zinc_gears| c:zinc_gear| cotton-resources | +
-| c:zinc_ingot| mechanized:zinc_ingot| mechanized | +
-| c:zinc_ingots| c:zinc_ingot| cotton-resources | +
-| :::| mechanized:zinc_ingot| mechanized | +
-| :::| mythicmetals:zinc_ingot| mythicmetals | +
-| :::| techreborn:zinc_ingot| techreborn | +
-| c:zinc_nuggets| c:zinc_nugget| cotton-resources | +
-| :::| mythicmetals:zinc_nugget| mythicmetals | +
-| :::| techreborn:zinc_nugget| techreborn | +
-| c:zinc_ore| mechanized:zinc_ore| mechanized | +
-| c:zinc_ores| c:zinc_ore| cotton-resources | +
-| :::| c:zinc_nether_ore| cotton-resources | +
-| :::| c:zinc_end_ore| cotton-resources | +
-| :::| mechanized:zinc_ore| mechanized | +
-| :::| mythicmetals:zinc_ore| mythicmetals | +
-| c:zinc_plates| c:zinc_plate| cotton-resources | +
-| :::| techreborn:zinc_plate| techreborn | +
-| c:zinc_small_dusts| techreborn:zinc_small_dust| techreborn |+
  
-===== Block Tags =====+==== Creating new conventional tags =====
  
-^ Tag ID ^ Contained IDs ^ Defined by ^ +Conventional tags are simply tags in the ''c'' namespace. These tags are expected to be used by multiple modsso the name scheme for conventional tags should be consistent between mods. The general format for conventional tags is pluralwith words separated with underscores. The following tags are good examples of this convention:
-| c:adamantite_blocks| mythicmetals:adamantite_block| mythicmetals | +
-| c:adamantite_ores| mythicmetals:adamantite_ore| mythicmetals | +
-| :::| mythicmetals:deepslate_adamantite_ore| mythicmetals | +
-| c:aetherium_blocks| mythicmetals:aetherium_block| mythicmetals | +
-| c:aetherium_ores| mythicmetals:aetherium_ore| mythicmetals | +
-| c:aluminum_blocks| bno:aluminum_block| bno | +
-| :::| c:aluminum_block| cotton-resources | +
-| :::| techreborn:aluminum_storage_block| techreborn | +
-| c:aluminum_ores| bno:netheraluminum_ore| bno | +
-| :::| 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_ores| c:amethyst_ore| cotton-resources | +
-| :::| c:amethyst_nether_ore| cotton-resources | +
-| :::| c:amethyst_end_ore| cotton-resources | +
-| c:ancient_debris| minecraft:ancient_debris| astromine-discoveries, astromine-foundations | +
-| c:aquarium_blocks| mythicmetals:aquarium_block| mythicmetals | +
-| c:aquarium_ores| mythicmetals:aquarium_ore| mythicmetals | +
-| c:argonium_blocks| mythicmetals:argonium_block| mythicmetals | +
-| c:asterite_blocks| astromine:asterite_block| astromine-discoveries, astromine-foundations | +
-| c:asterite_ores| #c:asteroid_asterite_ores| astromine-discoveries | +
-| c:asteroid_asterite_ores| {'id': 'astromine:asteroid_asterite_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-c:asteroid_coal_ores| {'id': 'astromine:asteroid_coal_ore', 'required': False}| astromine-discoveriesastromine-foundations | +
-| c:asteroid_copper_ores| {'id': 'astromine:asteroid_copper_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_diamond_ores| {'id': 'astromine:asteroid_diamond_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_emerald_ores| {'id': 'astromine:asteroid_emerald_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_galaxium_ores| {'id': 'astromine:asteroid_galaxium_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_gold_ores| {'id': 'astromine:asteroid_gold_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_iron_ores| {'id': 'astromine:asteroid_iron_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_lapis_ores| {'id': 'astromine:asteroid_lapis_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_lead_ores| {'id': 'astromine:asteroid_lead_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_metite_ores| {'id': 'astromine:asteroid_metite_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_redstone_ores| {'id': 'astromine:asteroid_redstone_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_silver_ores| {'id': 'astromine:asteroid_silver_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_stellum_ores| {'id': 'astromine:asteroid_stellum_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:asteroid_tin_ores| {'id': 'astromine:asteroid_tin_ore', 'required': False}| astromine-discoveries, astromine-foundations | +
-| c:banglum_blocks| mythicmetals:banglum_block| mythicmetals | +
-| c:banglum_ores| mythicmetals:banglum_ore| mythicmetals | +
-| c:barrel| packed:oak_barrel_default| packed | +
-| :::| packed:spruce_barrel_default| packed | +
-| :::| packed:birch_barrel_default| packed | +
-| :::| packed:acacia_barrel_default| packed | +
-| :::| packed:jungle_barrel_default| packed | +
-| :::| packed:dark_oak_barrel_default| packed | +
-| :::| packed:crimson_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 | +
-| :::| minecraft:polished_basalt| 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:bookshelves| arcanus:fillable_bookshelf| arcanus | +
-| :::| minecraft:bookshelf| atbyw, bclib, dark-enchanting, betterend | +
-| :::| atbyw:spruce_bookshelf| atbyw | +
-| :::| atbyw:birch_bookshelf| atbyw | +
-| :::| atbyw:jungle_bookshelf| atbyw | +
-| :::| atbyw:acacia_bookshelf| atbyw | +
-| :::| atbyw:dark_oak_bookshelf| atbyw | +
-| :::| atbyw:crimson_bookshelf| atbyw | +
-| :::| atbyw:warped_bookshelf| atbyw | +
-| :::| atbyw:oak_bookshelf_toggle| atbyw | +
-| :::| atbyw:spruce_bookshelf_toggle| 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:dev_block| atbyw | +
-| :::| byg:aspen_bookshelf| byg | +
-| :::| byg:baobab_bookshelf| byg | +
-| :::| byg:blue_enchanted_bookshelf| byg | +
-| :::| byg:cherry_bookshelf| byg | +
-| :::| byg:cika_bookshelf| byg | +
-| :::| byg:cypress_bookshelf| byg | +
-| :::| byg:ebony_bookshelf| byg | +
-| :::| byg:fir_bookshelf| byg | +
-| :::| byg:green_enchanted_bookshelf| byg | +
-| :::| byg:holly_bookshelf| byg | +
-| :::| byg:jacaranda_bookshelf| byg | +
-| :::| byg:mahogany_bookshelf| byg | +
-| :::| byg:mangrove_bookshelf| byg | +
-| :::| byg:maple_bookshelf| byg | +
-| :::| byg:pine_bookshelf| byg | +
-| :::| byg:rainbow_eucalyptus_bookshelf| byg | +
-| :::| byg:redwood_bookshelf| byg | +
-| :::| byg:skyris_bookshelf| byg | +
-| :::| byg:willow_bookshelf| byg | +
-| :::| byg:witch_hazel_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 | +
-| :::| mythicmetals:brass_block| mythicmetals | +
-| :::| techreborn:brass_storage_block| techreborn | +
-| c:bronze_blocks| astromine:bronze_block| astromine-discoveries, astromine-foundations | +
-| :::| c:bronze_block| cotton-resources | +
-| :::| indrev:bronze_block| indrev | +
-| :::| mythicmetals:bronze_block| mythicmetals | +
-| :::| techreborn:bronze_storage_block| techreborn | +
-| :::| 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_ores| mythicmetals:carmot_ore| mythicmetals | +
-| c:celestium_blocks| mythicmetals:celestium_block| mythicmetals | +
-| c:certus_quartz_blocks| ae2:quartz_block| ae2 | +
-| c:certus_quartz_ores| ae2:quartz_ore| ae2 | +
-| :::| ae2:deepslate_quartz_ore| ae2 | +
-| c:chest| packed:oak_chest_default| packed | +
-| :::| packed:spruce_chest_default| packed | +
-| :::| packed:birch_chest_default| packed | +
-| :::| packed:acacia_chest_default| packed | +
-| :::| packed:jungle_chest_default| packed | +
-| :::| packed:dark_oak_chest_default| packed | +
-| :::| packed:crimson_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:cinnabar_ores| techreborn:cinnabar_ore| techreborn | +
-| c:coal_blocks| minecraft:coal_block| astromine-discoveries, astromine-foundations | +
-| c:coal_coke_blocks| c:coal_coke_block| cotton-resources | +
-| c:coal_gravels| gravel-ores:coal_gravel| gravel-ores | +
-| c:coal_ores| minecraft:coal_ore| astromine-discoveries, astromine-foundations, indrev, randomtech | +
-| :::| #c:asteroid_coal_ores| astromine-discoveries | +
-| :::| bno:nethercoal_ore| bno | +
-| :::| gravel-ores:coal_gravel| gravel-ores | +
-| c:cobalt_blocks| randomtech:cobalt_block| randomtech | +
-| :::| c:cobalt_block| cotton-resources | +
-| c:cobalt_dusts| randomtech:cobalt_wire| randomtech | +
-| c:cobalt_ores| randomtech:cobalt_ore| randomtech | +
-| :::| c:cobalt_ore| cotton-resources | +
-| :::| c:cobalt_nether_ore| cotton-resources | +
-| :::| c:cobalt_end_ore| cotton-resources | +
-| c:cobblestone| byg:red_rock| byg | +
-| :::| byg:dacite_cobblestone| byg | +
-| :::| byg:scoria_cobblestone| byg | +
-| :::| byg:soapstone| byg | +
-| :::| byg:ether_stone| byg | +
-| :::| minecraft:cobblestone| gobber2 | +
-| c:compressed_dirt| prefab:block_compressed_dirt| prefab | +
-| c:compressed_glow_stone| prefab:block_compressed_glowstone| prefab | +
-| c:compressed_obsidian| prefab:block_compressed_obsidian| prefab | +
-| c:compressed_stone| prefab:block_compressed_stone| prefab | +
-| c:concrete| minecraft:white_concrete| artofalchemy | +
-| :::| minecraft:orange_concrete| artofalchemy | +
-| :::| minecraft:magenta_concrete| artofalchemy | +
-| :::| minecraft:light_blue_concrete| artofalchemy | +
-| :::| minecraft:yellow_concrete| artofalchemy | +
-| :::| minecraft:lime_concrete| artofalchemy | +
-| :::| minecraft:pink_concrete| artofalchemy | +
-| :::| minecraft:gray_concrete| artofalchemy | +
-| :::| minecraft:light_gray_concrete| artofalchemy | +
-| :::| minecraft:cyan_concrete| artofalchemy | +
-| :::| minecraft:purple_concrete| artofalchemy | +
-| :::| minecraft:blue_concrete| artofalchemy | +
-| :::| minecraft:brown_concrete| artofalchemy | +
-| :::| minecraft:green_concrete| artofalchemy | +
-| :::| minecraft:red_concrete| artofalchemy | +
-| :::| minecraft:black_concrete| artofalchemy | +
-| c:concrete_powder| minecraft:white_concrete_powder| artofalchemy | +
-| :::| minecraft:orange_concrete_powder| artofalchemy | +
-| :::| minecraft:magenta_concrete_powder| artofalchemy | +
-| :::| minecraft:light_blue_concrete_powder| artofalchemy | +
-| :::| minecraft:yellow_concrete_powder| artofalchemy | +
-| :::| minecraft:lime_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:blue_concrete_powder| artofalchemy | +
-| :::| minecraft:brown_concrete_powder| artofalchemy | +
-| :::| minecraft:green_concrete_powder| artofalchemy | +
-| :::| minecraft:red_concrete_powder| artofalchemy | +
-| :::| minecraft:black_concrete_powder| artofalchemy | +
-| c:copper_blocks| astromine:copper_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:copper_block| bno | +
-| :::| c:copper_block| cotton-resources | +
-| :::| indrev:copper_block| indrev | +
-| :::| mythicmetals:copper_block| mythicmetals | +
-| :::| techreborn:copper_storage_block| techreborn | +
-| :::| texp:copper_block| texp | +
-| :::| minecraft:copper_block| indrev, mythicmetals | +
-| c:copper_ore| mechanized:copper_ore| mechanized | +
-| c:copper_ores| astromine:copper_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_copper_ores| astromine-discoveries | +
-| :::| bno:nethercopper_ore| bno | +
-| :::| c:copper_ore| cotton-resources | +
-| :::| c:copper_nether_ore| cotton-resources | +
-| :::| c:copper_end_ore| cotton-resources | +
-| :::| indrev:copper_ore| indrev | +
-| :::| mechanized:copper_ore| mechanized | +
-| :::| mw:copper_ore| mw | +
-| :::| mythicmetals:copper_ore| mythicmetals | +
-| :::| techreborn:copper_ore| techreborn | +
-| :::| texp:copper_ore| texp | +
-| :::| minecraft:copper_ore| mythicmetals | +
-| :::| minecraft:deepslate_copper_ore| mythicmetals | +
-| c:crop_like| minecraft:beetroots| sweed | +
-| :::| minecraft:carrots| sweed | +
-| :::| minecraft:melon_stem| sweed | +
-| :::| minecraft:potatoes| sweed | +
-| :::| minecraft:pumpkin_stem| sweed | +
-| :::| minecraft:wheat| sweed | +
-| c:diamond_blocks| minecraft:diamond_block| astromine-discoveries, astromine-foundations | +
-| c:diamond_gravels| gravel-ores:diamond_gravel| gravel-ores | +
-| c:diamond_ores| minecraft:diamond_ore| astromine-discoveries, astromine-foundations, randomtech | +
-| :::| #c:asteroid_diamond_ores| astromine-discoveries | +
-| :::| bno:netherdiamond_ore| bno | +
-| :::| gravel-ores:diamond_gravel| gravel-ores | +
-| c:dirt| byg:meadow_grass_block| byg | +
-| :::| byg:meadow_dirt| byg | +
-| :::| byg:peat| byg | +
-| :::| byg:overgrown_stone| byg | +
-| :::| byg:overgrown_dacite| byg | +
-| :::| byg:overgrown_netherrack| byg | +
-| :::| byg:overgrown_crimson_blackstone| byg | +
-| :::| byg:podzol_dacite| byg | +
-| :::| byg:glowcelium_block| byg | +
-| :::| byg:ether_soil| byg | +
-| :::| byg:ether_phylium| 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: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:electrum_blocks| astromine:electrum_block| astromine-discoveries, astromine-foundations | +
-| :::| c:electrum_block| cotton-resources | +
-| :::| indrev:electrum_block| indrev | +
-| :::| mythicmetals:electrum_block| mythicmetals | +
-| :::| techreborn:electrum_storage_block| techreborn | +
-| :::| texp:electrum_block| texp | +
-| c:emerald_blocks| minecraft:emerald_block| astromine-discoveries, astromine-foundations | +
-| c:emerald_gravels| gravel-ores:emerald_gravel| gravel-ores | +
-| c:emerald_ores| minecraft:emerald_ore| astromine-discoveries, astromine-foundations, randomtech | +
-| :::| #c:asteroid_emerald_ores| astromine-discoveries | +
-| :::| bno:netheremerald_ore| bno | +
-| :::| gravel-ores:emerald_gravel| gravel-ores | +
-| c:end_stones| byg:ivis_phylium| byg | +
-| :::| byg:ether_stone| byg | +
-| :::| byg:nightshade_phylium| byg | +
-| :::| byg:ether_soil| byg | +
-| :::| byg:ether_phylium| byg | +
-| :::| byg:vermilion_sculk| byg | +
-| :::| 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:farmlands| minecraft:farmland| croptosis | +
-| :::| croptosis:fertilized_farmland| croptosis | +
-| c:fence_gates| byg:aspen_fence_gate| byg | +
-| :::| byg:baobab_fence_gate| byg | +
-| :::| byg:blue_enchanted_fence_gate| byg | +
-| :::| byg:cherry_fence_gate| byg | +
-| :::| byg:cika_fence_gate| byg | +
-| :::| byg:cypress_fence_gate| byg | +
-| :::| byg:ebony_fence_gate| byg | +
-| :::| byg:fir_fence_gate| byg | +
-| :::| byg:green_enchanted_fence_gate| byg | +
-| :::| byg:holly_fence_gate| byg | +
-| :::| byg:jacaranda_fence_gate| byg | +
-| :::| byg:mahogany_fence_gate| byg | +
-| :::| byg:mangrove_fence_gate| byg | +
-| :::| byg:maple_fence_gate| byg | +
-| :::| byg:pine_fence_gate| byg | +
-| :::| byg:rainbow_eucalyptus_fence_gate| byg | +
-| :::| byg:redwood_fence_gate| byg | +
-| :::| byg:skyris_fence_gate| byg | +
-| :::| byg:willow_fence_gate| byg | +
-| :::| byg:witch_hazel_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:galaxium_blocks| astromine:galaxium_block| astromine-discoveries, astromine-foundations | +
-| c:galaxium_ores| #c:asteroid_galaxium_ores| astromine-discoveries | +
-| c:galena_ores| techreborn:galena_ore| techreborn | +
-| :::| techreborn:deepslate_galena_ore| techreborn | +
-| c:glass| minecraft:glass| prefab, artofalchemy | +
-| :::| minecraft:white_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:orange_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:magenta_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:light_blue_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:yellow_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:lime_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:pink_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:gray_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:light_gray_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:cyan_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:purple_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:blue_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:brown_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:green_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:red_stained_glass| prefab, artofalchemy | +
-| :::| minecraft:black_stained_glass| prefab, artofalchemy | +
-| c:glass_blocks| minecraft:glass| appliedenergistics2 | +
-| :::| minecraft:white_stained_glass| appliedenergistics2 | +
-| :::| minecraft:orange_stained_glass| appliedenergistics2 | +
-| :::| minecraft:magenta_stained_glass| appliedenergistics2 | +
-| :::| minecraft:light_blue_stained_glass| appliedenergistics2 | +
-| :::| minecraft:yellow_stained_glass| appliedenergistics2 | +
-| :::| minecraft:lime_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:blue_stained_glass| appliedenergistics2 | +
-| :::| minecraft:brown_stained_glass| appliedenergistics2 | +
-| :::| minecraft:green_stained_glass| appliedenergistics2 | +
-| :::| minecraft:red_stained_glass| appliedenergistics2 | +
-| :::| minecraft:black_stained_glass| appliedenergistics2 | +
-| c:glowstone_blocks| minecraft:glowstone| 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_ores| minecraft:gold_ore| astromine-discoveries, astromine-foundations, indrev, randomtech | +
-| :::| minecraft:nether_gold_ore| indrev, randomtech | +
-| :::| #c:asteroid_gold_ores| astromine-discoveries | +
-| :::| gravel-ores:gold_gravel| gravel-ores | +
-| :::| 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 | +
-| :::| minecraft:grass| sweed | +
-| :::| minecraft:large_fern| 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:iridium_blocks| c:iridium_block| cotton-resources | +
-| :::| techreborn:iridium_storage_block| techreborn | +
-| c:iridium_ores| c:iridium_ore| cotton-resources | +
-| :::| c:iridium_nether_ore| cotton-resources | +
-| :::| c:iridium_end_ore| cotton-resources | +
-| :::| techreborn:iridium_ore| techreborn | +
-| :::| techreborn:deepslate_iridium_ore| 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:iron_blocks| minecraft:iron_block| astromine-discoveries, astromine-foundations | +
-| c:iron_gravels| gravel-ores:iron_gravel| gravel-ores | +
-| c:iron_ores| minecraft:iron_ore| astromine-discoveries, astromine-foundations, indrev, randomtech | +
-| :::| #c:asteroid_iron_ores| astromine-discoveries | +
-| :::| bno:netheriron_ore| bno | +
-| :::| gravel-ores:iron_gravel| gravel-ores | +
-| c:kyber_blocks| mythicmetals:kyber_block| mythicmetals | +
-| c:kyber_ores| mythicmetals:kyber_ore| mythicmetals | +
-| c:lapis_blocks| minecraft:lapis_block| astromine-discoveries, botania, astromine-foundations | +
-| c:lapis_gravels| gravel-ores:lapis_gravel| gravel-ores | +
-| c:lapis_ores| minecraft:lapis_ore| astromine-discoveries, astromine-foundations, randomtech | +
-| :::| #c:asteroid_lapis_ores| astromine-discoveries | +
-| :::| bno:netherlapis_ore| bno | +
-| :::| gravel-ores:lapis_gravel| gravel-ores | +
-| c:lead_blocks| astromine:lead_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:lead_block| bno | +
-| :::| c:lead_block| cotton-resources | +
-| :::| indrev:lead_block| indrev | +
-| :::| techreborn:lead_storage_block| techreborn | +
-| :::| texp:lead_block| texp | +
-| c:lead_ores| astromine:lead_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_lead_ores| astromine-discoveries | +
-| :::| bno:netherlead_ore| bno | +
-| :::| 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 | +
-| :::| texp:lead_ore| texp | +
-| :::| indrev:deepslate_lead_ore| indrev | +
-| :::| techreborn:deepslate_lead_ore| techreborn | +
-| c:leaves| betterend:tenanea_leaves| betterend | +
-| :::| betterend:pythadendron_leaves| betterend | +
-| :::| betterend:lucernia_leaves| betterend | +
-| :::| betterend:lacugrove_leaves| betterend | +
-| :::| betterend:dragon_tree_leaves| betterend | +
-| :::| betternether:anchor_tree_leaves| betternether | +
-| :::| betternether:rubeus_leaves| betternether | +
-| :::| betternether:nether_sakura_leaves| betternether | +
-| :::| betternether:willow_leaves| betternether | +
-| c:limestone| blockus:limestone| blockus | +
-| :::| blockus:limestone_bricks| 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_ores| #c:moon_lunum_ores| astromine-discoveries | +
-| c:lutetium_blocks| mythicmetals:lutetium_block| mythicmetals | +
-| c:lutetium_ores| mythicmetals:lutetium_ore| mythicmetals | +
-| c:manganese_blocks| mythicmetals:manganese_block| mythicmetals | +
-| c:manganese_ores| mythicmetals:manganese_ore| mythicmetals | +
-| c:marble| blockus:marble| blockus | +
-| :::| blockus:marble_bricks| 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:meteor_metite_ores| astromine:meteor_metite_ore| astromine-discoveries, astromine-foundations | +
-| c:meteoric_steel_blocks| astromine:meteoric_steel_block| astromine-discoveries, astromine-foundations | +
-| c:metite_blocks| astromine:metite_block| astromine-discoveries, astromine-foundations | +
-| c:metite_ores| #c:asteroid_metite_ores| astromine-discoveries | +
-| :::| #c:meteor_metite_ores| astromine-foundations | +
-| c:midas_gold_blocks| mythicmetals:midas_gold_block| 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: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_ores| mythicmetals:mythril_ore| mythicmetals | +
-| :::| mythicmetals:deepslate_mythril_ore| mythicmetals | +
-| c:natural_stones| minecraft:stone| cotton-resources | +
-| :::| minecraft:andesite| cotton-resources | +
-| :::| minecraft:diorite| cotton-resources | +
-| :::| minecraft:granite| cotton-resources | +
-| c:nether_mycelium| betternether:nether_mycelium| betternether | +
-| c:nether_pframe| betternether:obsidian_glass| betternether | +
-| :::| betternether:blue_obsidian_bricks| betternether | +
-| :::| betternether:obsidian_rod_tiles| betternether | +
-| :::| betternether:blue_obsidian_glass| betternether | +
-| :::| betternether:obsidian_tile| betternether | +
-| :::| betternether:blue_obsidian| betternether | +
-| :::| betternether:blue_obsidian_tile_small| betternether | +
-| :::| betternether:obsidian_tile_small| betternether | +
-| :::| betternether:blue_obsidian_tile| betternether | +
-| :::| betternether:obsidian_bricks| betternether | +
-| :::| betternether:blue_obsidian_rod_tiles| betternether | +
-| c:nether_stones| betternether:sepia_mushroom_grass| betternether | +
-| :::| betternether:mushroom_grass| betternether | +
-| :::| betternether:swampland_grass| betternether | +
-| :::| betternether:ceiling_mushrooms| betternether | +
-| :::| betternether:jungle_grass| betternether | +
-| :::| betternether:netherrack_moss| betternether | +
-| c:netherite_blocks| minecraft:netherite_block| astromine-discoveries, astromine-foundations | +
-| c:netherrack| byg:overgrown_netherrack| byg | +
-| :::| byg:overgrown_crimson_blackstone| byg | +
-| :::| byg:blue_netherrack| byg | +
-| :::| byg:brimstone| byg | +
-| :::| byg:embur_nylium| byg | +
-| :::| byg:sythian_nylium| byg | +
-| :::| 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:nickel_blocks| bno:nickel_block| bno | +
-| :::| techreborn:nickel_storage_block| techreborn | +
-| :::| texp:nickel_block| texp | +
-| c:nickel_ores| bno:nethernickel_ore| bno | +
-| :::| mw:nickel_ore| mw | +
-| :::| 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_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_block| cotton-resources | +
-| :::| mythicmetals:osmium_block| mythicmetals | +
-| c:osmium_ores| bno:netherosmium_ore| bno | +
-| :::| c:osmium_ore| cotton-resources | +
-| :::| c:osmium_nether_ore| cotton-resources | +
-| :::| c:osmium_end_ore| cotton-resources | +
-| :::| mythicmetals:osmium_ore| mythicmetals | +
-| c:palladium_blocks| c:palladium_block| cotton-resources | +
-| :::| mythicmetals:palladium_block| mythicmetals | +
-| c:palladium_ores| c:palladium_ore| cotton-resources | +
-| :::| c:palladium_nether_ore| cotton-resources | +
-| :::| c:palladium_end_ore| cotton-resources | +
-| :::| mythicmetals:palladium_ore| mythicmetals | +
-| c:peridot_blocks| c:peridot_block| cotton-resources | +
-| :::| techreborn:peridot_storage_block| techreborn | +
-| c:peridot_ores| c:peridot_ore| cotton-resources | +
-| :::| c:peridot_nether_ore| cotton-resources | +
-| :::| c:peridot_end_ore| cotton-resources | +
-| :::| 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 | +
-| :::| mythicmetals:platinum_block| mythicmetals | +
-| :::| techreborn:platinum_storage_block| techreborn | +
-| :::| texp:platinum_block| texp | +
-| c:platinum_ores| c:platinum_ore| cotton-resources | +
-| :::| c:platinum_nether_ore| cotton-resources | +
-| :::| c:platinum_end_ore| cotton-resources | +
-| :::| mw:platinum_ore| mw | +
-| :::| mythicmetals:platinum_ore| mythicmetals | +
-| :::| texp:platinum_ore| texp | +
-| 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_ores| mythicmetals:prometheum_ore| mythicmetals | +
-| c:purple_sand| byg:purple_sand| byg | +
-| c:purpur_blocks| minecraft:purpur_block| astromine-discoveries, astromine-foundations | +
-| c:pyrite_blocks| #c:fools_gold_blocks| astromine-foundations | +
-| c:pyrite_ores| techreborn:pyrite_ore| techreborn | +
-| c:quadrillum_blocks| mythicmetals:quadrillum_block| mythicmetals | +
-| c:quadrillum_ores| mythicmetals:quadrillum_ore| mythicmetals | +
-| 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: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_sandstones| minecraft:red_sandstone| astromine-discoveries, astromine-foundations | +
-| c:redstone_blocks| minecraft:redstone_block| astromine-discoveries, astromine-foundations | +
-| c:redstone_gravels| gravel-ores:redstone_gravel| gravel-ores | +
-| c:redstone_ores| minecraft:redstone_ore| astromine-discoveries, astromine-foundations, randomtech | +
-| :::| #c:asteroid_redstone_ores| astromine-discoveries | +
-| :::| bno:netherredstone_ore| bno | +
-| :::| gravel-ores:redstone_gravel| gravel-ores | +
-| c:refined_iron_blocks| techreborn:refined_iron_storage_block| techreborn | +
-| c:rose_gold_blocks| astromine:rose_gold_block| astromine-discoveries, astromine-foundations | +
-| c:ruby_blocks| c:ruby_block| cotton-resources | +
-| :::| emerald_tools:ruby_block| emerald_tools | +
-| :::| techreborn:ruby_storage_block| techreborn | +
-| c:ruby_ores| c:ruby_ore| cotton-resources | +
-| :::| c:ruby_nether_ore| cotton-resources | +
-| :::| c:ruby_end_ore| cotton-resources | +
-| :::| techreborn:ruby_ore| techreborn | +
-| :::| techreborn:deepslate_ruby_ore| techreborn | +
-| c:runite_blocks| mythicmetals:runite_block| mythicmetals | +
-| c:runite_ores| mythicmetals:runite_ore| mythicmetals | +
-| c:salt_blocks| bewitchment:salt_block| bewitchment | +
-| c:salt_ores| bewitchment:salt_ore| bewitchment | +
-| :::| bewitchment:deepslate_salt_ore| bewitchment | +
-| c:sand| byg:white_sand| byg | +
-| :::| byg:black_sand| byg | +
-| :::| byg:blue_sand| byg | +
-| :::| byg:pink_sand| byg | +
-| :::| byg:purple_sand| byg | +
-| :::| minecraft:sand| gobber2, spatialharvesters | +
-| c:sandstone| byg:black_sandstone| byg | +
-| :::| byg:black_chiseled_sandstone| byg | +
-| :::| byg:black_cut_sandstone| byg | +
-| :::| byg:blue_sandstone| byg | +
-| :::| byg:blue_chiseled_sandstone| byg | +
-| :::| byg:blue_cut_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_cut_sandstone| byg | +
-| :::| minecraft:sandstone| gobber2 | +
-| c:saplings| byg:aspen_sapling| byg | +
-| :::| byg:baobab_sapling| byg | +
-| :::| byg:blue_enchanted_sapling| byg | +
-| :::| byg:blue_spruce_sapling| byg | +
-| :::| byg:brown_birch_sapling| byg | +
-| :::| byg:brown_oak_sapling| byg | +
-| :::| byg:cika_sapling| byg | +
-| :::| byg:cypress_sapling| byg | +
-| :::| byg:ebony_sapling| byg | +
-| :::| byg:fir_sapling| byg | +
-| :::| byg:green_enchanted_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:mahogany_sapling| byg | +
-| :::| byg:mangrove_sapling| byg | +
-| :::| byg:maple_sapling| byg | +
-| :::| byg:orange_birch_sapling| byg | +
-| :::| byg:orange_oak_sapling| byg | +
-| :::| byg:orange_spruce_sapling| byg | +
-| :::| byg:orchard_sapling| byg | +
-| :::| byg:palo_verde_sapling| byg | +
-| :::| byg:pine_sapling| byg | +
-| :::| byg:pink_cherry_sapling| byg | +
-| :::| byg:rainbow_eucalyptus_sapling| byg | +
-| :::| byg:red_birch_sapling| byg | +
-| :::| byg:red_maple_sapling| byg | +
-| :::| byg:red_oak_sapling| byg | +
-| :::| byg:red_spruce_sapling| byg | +
-| :::| byg:redwood_sapling| byg | +
-| :::| byg:silver_maple_sapling| byg | +
-| :::| byg:white_cherry_sapling| byg | +
-| :::| byg:willow_sapling| byg | +
-| :::| byg:witch_hazel_sapling| byg | +
-| :::| byg:yellow_birch_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 | +
-| :::| techreborn:sapphire_storage_block| techreborn | +
-| c:sapphire_ores| c:sapphire_ore| cotton-resources | +
-| :::| c:sapphire_nether_ore| cotton-resources | +
-| :::| c:sapphire_end_ore| cotton-resources | +
-| :::| techreborn:sapphire_ore| techreborn | +
-| :::| techreborn:deepslate_sapphire_ore| techreborn | +
-| c:sheldonite_ores| techreborn:sheldonite_ore| techreborn | +
-| :::| techreborn:deepslate_sheldonite_ore| techreborn | +
-| c:silver_blocks| astromine:silver_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:silver_block| bno | +
-| :::| c:silver_block| cotton-resources | +
-| :::| indrev:silver_block| indrev | +
-| :::| mythicmetals:silver_block| mythicmetals | +
-| :::| techreborn:silver_storage_block| techreborn | +
-| :::| texp:silver_block| texp | +
-| :::| bewitchment:silver_block| bewitchment | +
-| c:silver_ores| astromine:silver_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_silver_ores| astromine-discoveries | +
-| :::| bno:nethersilver_ore| bno | +
-| :::| 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 | +
-| :::| mythicmetals:silver_ore| mythicmetals | +
-| :::| techreborn:silver_ore| techreborn | +
-| :::| texp:silver_ore| texp | +
-| :::| 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:sodalite_ores| techreborn:sodalite_ore| techreborn | +
-| :::| techreborn:deepslate_sodalite_ore| techreborn | +
-| c:soul_ground| minecraft:soul_sand| betternether, gobber2 | +
-| :::| minecraft:soul_soil| betternether, gobber2 | +
-| :::| betternether:veined_sand| betternether | +
-| :::| betternether:farmland| betternether | +
-| 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_ores| mythicmetals:starrite_ore| mythicmetals | +
-| c:steel_blocks| astromine:steel_block| astromine-discoveries, astromine-foundations | +
-| :::| c:steel_block| cotton-resources | +
-| :::| emerald_tools:steel_block| emerald_tools | +
-| :::| mythicmetals:steel_block| mythicmetals | +
-| :::| techreborn:steel_storage_block| techreborn | +
-| c:stellum_blocks| astromine:stellum_block| astromine-discoveries, astromine-foundations | +
-| c:stellum_ores| #c:asteroid_stellum_ores| astromine-discoveries | +
-| c:sterling_silver_blocks| astromine:sterling_silver_block| astromine-discoveries, astromine-foundations | +
-| c:stone| byg:soapstone| byg | +
-| :::| byg:scoria_stone| byg | +
-| :::| byg:dacite| byg | +
-| :::| byg:rocky_stone| byg | +
-| :::| byg:mossy_stone| byg | +
-| :::| byg:overgrown_stone| byg | +
-| :::| byg:overgrown_dacite| byg | +
-| :::| byg:overgrown_netherrack| byg | +
-| :::| byg:sythian_nylium| byg | +
-| :::| byg:podzol_dacite| byg | +
-| :::| byg:red_rock| byg | +
-| :::| byg:ether_stone| byg | +
-| :::| minecraft:stone| gobber2 | +
-| :::| minecraft:granite| gobber2 | +
-| :::| minecraft:diorite| gobber2 | +
-| :::| minecraft:andesite| gobber2 | +
-| :::| #unearthed:sedimentary| unearthed | +
-| :::| #unearthed:metamorphic| unearthed | +
-| :::| #unearthed:igneous| unearthed | +
-| c:storage_blocks| byg:ametrine_block| byg | +
-| :::| byg:pendorite_block| byg | +
-| :::| byg:anthracite_block| byg | +
-| :::| #c:certus_quartz_blocks| ae2 | +
-| c:stormyx_blocks| mythicmetals:stormyx_block| mythicmetals | +
-| c:stormyx_ores| mythicmetals:stormyx_ore| mythicmetals | +
-| c:strip_command| minecraft:stone| cotton-resources | +
-| :::| minecraft:granite| cotton-resources | +
-| :::| minecraft:diorite| cotton-resources | +
-| :::| minecraft:andesite| cotton-resources | +
-| :::| minecraft:dirt| cotton-resources | +
-| :::| minecraft:gravel| cotton-resources | +
-| :::| minecraft:sand| cotton-resources | +
-| :::| minecraft:grass_block| cotton-resources | +
-| :::| #minecraft:logs| 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_ores| mythicmetals:tantalite_ore| mythicmetals | +
-| c:terracotta| minecraft:terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:white_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:orange_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:magenta_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:light_blue_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:yellow_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:lime_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:pink_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:gray_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:light_gray_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:cyan_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:purple_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:blue_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:brown_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:green_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:red_terracotta| ae2, appliedenergistics2 | +
-| :::| minecraft:black_terracotta| ae2, appliedenergistics2 | +
-| c:thorium_blocks| c:thorium_block| cotton-resources | +
-| c:tin_blocks| astromine:tin_block| astromine-discoveries, astromine-foundations | +
-| :::| bno:tin_block| bno | +
-| :::| c:tin_block| cotton-resources | +
-| :::| indrev:tin_block| indrev | +
-| :::| mythicmetals:tin_block| mythicmetals | +
-| :::| techreborn:tin_storage_block| techreborn | +
-| :::| texp:tin_block| texp | +
-| c:tin_ores| astromine:tin_ore| astromine-discoveries, astromine-foundations | +
-| :::| #c:asteroid_tin_ores| astromine-discoveries | +
-| :::| bno:nethertin_ore| bno | +
-| :::| c:tin_ore| cotton-resources | +
-| :::| c:tin_nether_ore| cotton-resources | +
-| :::| c:tin_end_ore| cotton-resources | +
-| :::| indrev:tin_ore| indrev | +
-| :::| mw:tin_ore| mw | +
-| :::| mythicmetals:tin_ore| mythicmetals | +
-| :::| techreborn:tin_ore| techreborn | +
-| :::| texp:tin_ore| texp | +
-| :::| indrev:deepslate_tin_ore| indrev | +
-| :::| techreborn:deepslate_tin_ore| techreborn | +
-| c:titanium_blocks| c:titanium_block| cotton-resources | +
-| :::| techreborn:titanium_storage_block| techreborn | +
-| c:titanium_ores| c:titanium_ore| cotton-resources | +
-| :::| c:titanium_nether_ore| cotton-resources | +
-| :::| c:titanium_end_ore| cotton-resources | +
-| :::| mw:titanium_ore| mw | +
-| c:topaz_blocks| c:topaz_block| cotton-resources | +
-| c:topaz_ores| c:topaz_ore| cotton-resources | +
-| :::| c:topaz_nether_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_ores| mythicmetals:truesilver_ore| mythicmetals | +
-| c:tungsten_blocks| c:tungsten_block| cotton-resources | +
-| :::| endreborn:tungsten_block| endreborn | +
-| :::| indrev:tungsten_block| indrev | +
-| :::| techreborn:tungsten_storage_block| techreborn | +
-| c:tungsten_ores| c:tungsten_ore| cotton-resources | +
-| :::| c:tungsten_nether_ore| cotton-resources | +
-| :::| c:tungsten_end_ore| cotton-resources | +
-| :::| endreborn:end_tungsten_ore| endreborn | +
-| :::| indrev:tungsten_ore| indrev | +
-| :::| techreborn:tungsten_ore| techreborn | +
-| :::| indrev:deepslate_tungsten_ore| indrev | +
-| :::| techreborn:deepslate_tungsten_ore| techreborn | +
-| c:tungstensteel_blocks| techreborn:tungstensteel_storage_block| techreborn | +
-| c:univite_blocks| astromine:univite_block| astromine-discoveries, astromine-foundations | +
-| c:unobtainium_blocks| mythicmetals:unobtainium_block| mythicmetals | +
-| c:unobtainium_ores| mythicmetals:unobtainium_ore| mythicmetals | +
-| c:ur_blocks| mythicmetals:ur_block| mythicmetals | +
-| c:ur_ores| mythicmetals:ur_ore| mythicmetals | +
-| c:uranium_blocks| bno:uranium_block| bno | +
-| :::| c:uranium_block| cotton-resources | +
-| c:uranium_ores| bno:netheruranium_ore| bno | +
-| :::| 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:white_sand| byg:white_sand| byg | +
-| c:wooden_barrels| {'id': 'minecraft:barrel', 'required': True}| expandedstorage | +
-| :::| {'id': '#blockus:barrels', 'required': False}| expandedstorage | +
-| :::| betterend:helix_tree_barrel| betterend | +
-| :::| betterend:lucernia_barrel| betterend | +
-| :::| betterend:end_lotus_barrel| betterend | +
-| :::| betterend:umbrella_tree_barrel| betterend | +
-| :::| betterend:dragon_tree_barrel| betterend | +
-| :::| betterend:lacugrove_barrel| betterend | +
-| :::| betterend:jellyshroom_barrel| betterend | +
-| :::| betterend:pythadendron_barrel| betterend | +
-| :::| betterend:tenanea_barrel| betterend | +
-| :::| betterend:mossy_glowshroom_barrel| betterend | +
-| :::| betternether:rubeus_barrel| betternether | +
-| :::| betternether:nether_sakura_barrel| betternether | +
-| :::| betternether:nether_mushroom_barrel| betternether | +
-| :::| betternether:mushroom_fir_barrel| betternether | +
-| :::| betternether:stalagnate_barrel| betternether | +
-| :::| betternether:willow_barrel| betternether | +
-| :::| betternether:wart_barrel| betternether | +
-| :::| betternether:nether_reed_barrel| betternether | +
-| :::| betternether:anchor_tree_barrel| betternether | +
-| :::| #blockus:barrels| blockus | +
-| :::| minecraft:barrel| expandedstorage | +
-| c:wooden_chests| {'id': 'minecraft:chest', 'required': True}| expandedstorage | +
-| :::| {'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 | +
-| :::| byg:baobab_crafting_table| byg | +
-| :::| byg:blue_enchanted_crafting_table| byg | +
-| :::| byg:cherry_crafting_table| byg | +
-| :::| byg:cika_crafting_table| byg | +
-| :::| byg:cypress_crafting_table| byg | +
-| :::| byg:ebony_crafting_table| byg | +
-| :::| byg:fir_crafting_table| byg | +
-| :::| byg:green_enchanted_crafting_table| byg | +
-| :::| byg:holly_crafting_table| byg | +
-| :::| byg:jacaranda_crafting_table| byg | +
-| :::| byg:mahogany_crafting_table| byg | +
-| :::| byg:mangrove_crafting_table| byg | +
-| :::| byg:maple_crafting_table| byg | +
-| :::| byg:pine_crafting_table| byg | +
-| :::| byg:rainbow_eucalyptus_crafting_table| byg | +
-| :::| byg:redwood_crafting_table| byg | +
-| :::| byg:skyris_crafting_table| byg | +
-| :::| byg:willow_crafting_table| byg | +
-| :::| byg:witch_hazel_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_sandstones| minecraft:sandstone| astromine-discoveries, astromine-foundations | +
-| c:zinc_blocks| c:zinc_block| cotton-resources | +
-| :::| mythicmetals:zinc_block| mythicmetals | +
-| :::| techreborn:zinc_storage_block| techreborn | +
-| c:zinc_ore| mechanized:zinc_ore| mechanized | +
-| c:zinc_ores| c:zinc_ore| cotton-resources | +
-| :::| c:zinc_nether_ore| cotton-resources | +
-| :::| c:zinc_end_ore| cotton-resources | +
-| :::| mechanized:zinc_ore| mechanized | +
-| :::| mythicmetals:zinc_ore| mythicmetals |+
  
-===== Fluid Tags =====+  * ''c:chests'' block tag 
 +  * ''c:water_buckets'' item tag 
 +  * ''c:in_the_end'' biome tag
  
-^ Tag ID ^ Contained IDs ^ Defined by ^ +A flat structure is used rather than a hierarchal structure. For example, ''c:iron_ores'' is preferred over ''c:ores/iron''.
-c:blood| exnihilofabrico:blood| exnihilofabrico | +
-| :::| exnihilofabrico:blood_flowing| exnihilofabrico | +
-c:brine| #c:saltwater| exnihilofabrico | +
-| c:butane| astromine:butane| astromine-foundations | +
-| :::| astromine:butane_flowing| astromine-foundations | +
-| c:cobalt| randomtech:cobalt| randomtech | +
-| c:crude_oil| astromine:crude_oil| astromine-foundations | +
-| :::| astromine:crude_oil_flowing| astromine-foundations | +
-| c:diesel| astromine:diesel| astromine-foundations | +
-| :::| astromine:diesel_flowing| astromine-foundations | +
-| c:experience| randomtech:experience| randomtech | +
-| c:gasoline| astromine:gasoline| astromine-foundations | +
-| :::| astromine:gasoline_flowing| astromine-foundations | +
-| c:heavy_gas_oil| astromine:heavy_gas_oil| astromine-foundations | +
-| :::| astromine:heavy_gas_oil_flowing| astromine-foundations | +
-| 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 | +
-| :::| astromine:hydrogen_flowing| astromine-foundations | +
-| c:kerosene| astromine:kerosene| astromine-foundations | +
-| :::| astromine:kerosene_flowing| astromine-foundations | +
-| c:kerosene_oxygen_fuel| astromine:kerosene_oxygen_fuel| astromine-foundations | +
-| :::| astromine:kerosene_oxygen_fuel_flowing| astromine-foundations | +
-| c:lava| minecraft:lava| randomtech | +
-| c:magic| randomtech:magic| randomtech | +
-| c:milk| exnihilofabrico:milk| exnihilofabrico | +
-| :::| exnihilofabrico:milk_flowing| exnihilofabrico | +
-| c:mud| earthtojavamobs:mud_fluid| earthtojavamobs | +
-| :::| earthtojavamobs:mud_fluid_flowing| earthtojavamobs | +
-| c:naphtha| astromine:naphtha| astromine-foundations | +
-| :::| astromine:naphtha_flowing| astromine-foundations | +
-| c:oxygen| astromine:oxygen| astromine-foundations | +
-| :::| astromine:oxygen_flowing| astromine-foundations | +
-| c:redstone| randomtech:redstone| randomtech | +
-| c:residual_fuel_oil| astromine:residual_fuel_oil| astromine-foundations | +
-| :::| astromine:residual_fuel_oil_flowing| astromine-foundations | +
-| c:saltwater| exnihilofabrico:brine| 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 |+
  
-===== Entity Types Tags =====+==== Existing conventional tags =====
  
-^ Tag ID ^ Contained IDs ^ Defined by ^ +Fabric API ships definitions for conventional tags in its ''fabric-conventional-tags-v1'' module. The provided tags can be viewed [[https://github.com/FabricMC/fabric/tree/HEAD/fabric-convention-tags-v1/src/generated/resources/data/c/tags|here]].
-| 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 =====+A (possibly outdated) directory of general known conventional tags is available on [[community:common_tags|a separate page]].
  
-^ Mod ID ^ Name ^ Version ^ URL ^ 
-| bonappetit | Bon Appé´©t | 0.8.5-3 | curseforge.com/minecraft/mc-mods/bon-appetit-fabric | 
-| cinderscapes | Cinderscapes | 1.3.3 | https://www.curseforge.com/minecraft/mc-mods/cinderscapes | 
-| epicurean | Epicurean | 2.2.4+1.15.2 | None | 
-| texp | Terran Expansion | 1.1.2 | http://www.flytre.net/ | 
-| more_gems | More Gems | 1.2.9 |  | 
-| adorn | Adorn | 3.3.1+1.18.1 | https://minecraft.curseforge.com/projects/adorn | 
-| eymbra | Eymbra's Prehistoric Mod | 1.0.0 | https://fabricmc.net/ | 
-| blockus | Blockus | 2.3.4+1.18.1 | https://www.curseforge.com/minecraft/mc-mods/blockus | 
-| resourceful_tools | Resourceful Tools | 1.1.4 |  | 
-| packages | Packages | 1.3 | https://highlysuspect.agency | 
-| refinedmachinery | Refined Machinery | 1.2.1 | https://minecraft.curseforge.com/projects/Refined-Machinery | 
-| gravel-ores | Gravel Ores | 1.2.0+1.16.2 | https://www.curseforge.com/minecraft/mc-mods/gravel-ores-fabric | 
-| xb | Exotic Blocks | 1.6.172 | https://github.com/grondag/exotic-blocks | 
-| prefab | Prefab | 1.0.2 | https://www.curseforge.com/minecraft/mc-mods/prefab | 
-| randomtech | Alexis' Random Tech | 0.0.8 | https://github.com/alexis-evelyn | 
-| mechanix | Mechanix | 3.4.0 | 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 | 
-| tenor | Tenor | 1.0.3 | None | 
-| computercraft | CC:T for Fabric | 1.91.2 | https://github.com/mystiacraft/cc-tweaked-fabric | 
-| byg | BYG | 1.1.5 | https://bygmc.weebly.com/ | 
-| flamingo_ooo | Flamingo, oh, oh, oh... | 1.0.4-MC1.16.3-fabric |  | 
-| astromine-discoveries | Astromine: Discoveries | 1.11.4+fabric-1.16.3 | https://www.curseforge.com/minecraft/mc-mods/astromine-discoveries | 
-| 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 | 
-| 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 | 
-| 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 | 
-| 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 | 
-| endreborn | End: Rebellion | 1.8 | https://github.com/EleC0TroN/ER | 
-| exnihilofabrico | Ex Nihilo Fabrico | 0.3+1.14.4 | None | 
-| appliedenergistics2 | Applied Energistics 2 | 8.2.0-alpha.2 | https://ae-mod.info/ | 
-| arcanus | Arcanus | 1.25 | https://www.curseforge.com/minecraft/mc-mods/arcanus | 
-| ae2 | Applied Energistics 2 | 10.0.0 | https://appliedenergistics.github.io/ | 
-| basicshields | Basic Shields [Fabric] | 1.2.1-1.18.1 | None | 
-| bclib | BCLib | 1.3.0 | https://www.curseforge.com/minecraft/mc-mods/bclib | 
-| betternether | Better Nether | 6.0.10 | https://www.curseforge.com/minecraft/mc-mods/betternether | 
-| betteranimalsplus | Better Animals Plus | 1.18.1-11.0.3 | https://betteranimalsplus.com/ | 
-| bewitchment | Bewitchment | 1.18-5 | https://www.curseforge.com/minecraft/mc-mods/bewitchment | 
-| botania | Botania | 1.18.1-427-FABRIC | https://botaniamod.net | 
-| catwalksinc | Catwalks Inc. | 1.2.0 | https://www.curseforge.com/minecraft/mc-mods/catwalks-inc | 
-| croptopia | Croptopia | 1.8.0 | https://www.curseforge.com/minecraft/mc-mods/croptopia-fabric | 
-| dark-enchanting | Dark Enchanting | 0.6.3+1.18 | https://github.com/frqnny/dark-enchanting | 
-| dwarfcoal | Dwarf Coal | 1.18.1-1.0.1 | None | 
-| extragenerators | Extra Generators | 1.1.1-BETA+1.18 | https://www.curseforge.com/minecraft/mc-mods/extra-generators | 
-| mtr | Minecraft Transit Railway | 1.18.1-3.0.0-beta-8 | https://www.curseforge.com/minecraft/mc-mods/minecraft-transit-railway | 
-| painters_blocks | Painter's Blocks | 1.3.0+1.18.1 | https://github.com/Juuxel/PaintersBlocks | 
-| terrarianslimes | Terrarian Slimes | 1.1-BETA+1.18 | https://www.curseforge.com/minecraft/mc-mods/terrarian-slimes | 
-| the_bumblezone | The Bumblezone - Fabric | 4.2.1+1.18.1 | https://www.curseforge.com/minecraft/mc-mods/the-bumblezone-fabric | 
-| valley | ValleyCraft | 2.1 | https://github.com/l1nkl3/ValleyCraft-Wiki | 
-| croptosis | Croptosis | 1.4.2 | https://www.curseforge.com/minecraft/mc-mods/croptosis | 
-| waystones | Waystones | 2.4.1 | https://www.curseforge.com/minecraft/mc-mods/fabric-waystones | 
tutorial/tags.1646073094.txt.gz · Last modified: 2022/02/28 18:31 by luligabi1