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 [2020/08/23 10:25] – fixed namespace user11681tutorial: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 or fluids which share similar properties. They can be used in recipes to allow for multiple items to be used in the same recipe interchangeably. Read more on what tags are on the [[https://minecraft.gamepedia.com/Tag|Minecraft Wiki]]. Tags can also be used to group similar items from different mods, to allow them to be compatible with each other. These are called common tags. 
  
-===== 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/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.
  
-===== Common Tags vs Mod Tags ===== +==== Accessing tags in code ===== 
-If your tag applies ONLY to items in your modand no other mod is likely to have similar items, or you specifically want to only include your mod's items in that tag, then use ''yourmodid:yourtaghere'', with the example above. Howeverif your mod adds items which other mods also addyou can+ 
 +For some cases, you might want to have tags as registered objects on code. For example, methods like ''Block#isIn'' require these tag parameters. Besidesthe Fabric registries like ''FlammableBlockRegistry'', ''FuelRegistry'' and ''CompostingChanceRegistry'' also accept block tags or item tags. 
 + 
 +Vanilla tag objects can be found in class ''<yarn class_3481>'' and ''<yarn class_3489>''. To register tag objects in your mod, see the following. 
 + 
 +=== Minecraft 1.19.3 and above === 
 + 
 +<yarncode java> 
 +public class ModBlockTags { 
 +  public static final TagKey<class_2248> EXAMPLE_ORES = class_6862.method_40092(class_7924.field_41254new class_2960("tutorial""example_ores")); 
 +
 +</yarncode> 
 + 
 +=== Minecraft 1.18.2 through 1.19.2 === 
 + 
 +<yarncode java> 
 +public class ModBlockTags { 
 +  public static final TagKey<class_2248> EXAMPLE_ORES = class_6862.method_40092(class_2378.BLOCK_KEY, new class_2960("tutorial", "example_ores")); 
 +
 +</yarncode> 
 + 
 +=== 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: 
 + 
 +<yarncode java> 
 +public class ModBlockTags { 
 +  public static final Tag<class_2248> EXAMPLE_ORES = TagFactory.BLOCK.create(new class_2960("tutorial", "example_ores")); 
 +
 +</yarncode> 
 + 
 +=== Minecraft 1.17 and below === 
 + 
 +In Minecraft 1.17 (not including Minecraft 1.17.1) and earlier versions, Fabric 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> 
 + 
 +Note that ''TagRegistry'' is deprecated since Fabric API 0.46.0, as ''TagFactory'' replaces it. ''TagRegistry'' is used in Minecraft 1.17 and below because Fabric API for these versions did not receive the ''TagFactory'' changes. 
 + 
 +===== Conventional tags =====
  
-======= Creating New Common Tags ======= +Conventional tags are a standardized tag naming scheme that aims to reduce guesswork and inconsistency for mod developers, data pack authorsand mod pack authorsThese tags share the ''c'' namespace and have explicit rules for naming.
-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/c/'' and then ''blocks'', ''items'' or ''fluids'' You should separate words with underscores, and tags should be plural.+
  
-======= Existing Common 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.
-This section was [[https://github.com/shartte/fabric-convention-tags|automatically generated using a script]]. See the end of this page for the list of mods used. If your item fits into one of these tags, then you should add it to that tag instead of defining your own. If you want your mod's recipes to be compatible with other mods, replace the item in the recipe with ''#c:tagname''.+
  
-===== Item Tags =====+On the other hand, pieces of content that are unique enough to not be interchangable should not use conventional tags. For example, if a mod adds a unique set of machines that must be grouped within a tag, it should place these machines in a tag in its own namespace, such as ''yourmodid:custom_machines''.
  
-^ Tag ID ^ Contained IDs ^ Defined by ^ +==== Creating new conventional tags =====
-| c:advanced_alloy_ingots| techreborn:advanced_alloy_ingot| techreborn | +
-| c:advanced_alloy_plates| techreborn:advanced_alloy_plate| techreborn | +
-| c:alexandrite| more_gems:alexandrite| more_gems | +
-| c:almandine_dusts| techreborn:almandine_dust| techreborn | +
-| c:almandine_small_dusts| techreborn:almandine_small_dust| techreborn | +
-| c:aluminum_blocks| c:aluminum_block| cotton-resources | +
-| :::| techreborn:aluminum_storage_block| techreborn | +
-| c:aluminum_dusts| c:aluminum_dust| cotton-resources | +
-| :::| techreborn:aluminum_dust| techreborn | +
-| c:aluminum_gears| c:aluminum_gear| cotton-resources | +
-| c:aluminum_ingots| c:aluminum_ingot| cotton-resources | +
-| :::| techreborn:aluminum_ingot| techreborn | +
-| c:aluminum_nuggets| c:aluminum_nugget| cotton-resources | +
-| :::| techreborn:aluminum_nugget| techreborn | +
-| c:aluminum_ores| 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 | +
-| :::| techreborn:aluminum_plate| techreborn | +
-| c:aluminum_small_dusts| techreborn:aluminum_small_dust| techreborn | +
-| c:amethyst| more_gems:amethyst| more_gems | +
-| c:amethyst_blocks| c:amethyst_block| cotton-resources | +
-| c:amethyst_dusts| c:amethyst_dust| cotton-resources | +
-| 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-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:ashes_dusts| techreborn:ashes_dust| techreborn | +
-| c:ashes_small_dusts| techreborn:ashes_small_dust| techreborn | +
-| c:asterite_blocks| astromine:asterite_block| astromine-foundations | +
-| c:asterite_clusters| astromine:asteroid_asterite_cluster| astromine-foundations | +
-| c:asterite_dusts| astromine:asterite_dust| astromine-foundations | +
-| c:asterite_fragments| astromine:asterite_fragment| astromine-foundations | +
-| c:asterite_nuggets| #c:asterite_fragments| astromine-foundations | +
-| c:asterite_ores| astromine:asteroid_asterite_ore| astromine-foundations | +
-| c:asterite_tiny_dusts| astromine:asterite_tiny_dust| astromine-foundations | +
-| c:asterites| astromine:asterite| astromine-foundations | +
-| c:asteroid_metite_clusters| astromine:asteroid_metite_cluster| astromine-foundations | +
-| 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:bauxite_dusts| techreborn:bauxite_dust| techreborn | +
-| c:bauxite_ores| techreborn:bauxite_ore| techreborn | +
-| c:bauxite_small_dusts| techreborn:bauxite_small_dust| techreborn | +
-| c:black_dyes| minecraft:black_dye| appliedenergistics2 | +
-| c:blue_dyes| minecraft:blue_dye| appliedenergistics2 | +
-| c:brass_blocks| c:brass_block| cotton-resources | +
-| :::| 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 | +
-| :::| techreborn:brass_ingot| techreborn | +
-| c:brass_nuggets| c:brass_nugget| cotton-resources | +
-| :::| 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:bronze_blocks| astromine:bronze_block| astromine-foundations | +
-| :::| c:bronze_block| cotton-resources | +
-| :::| techreborn:bronze_storage_block| techreborn | +
-| c:bronze_dusts| astromine:bronze_dust| astromine-foundations | +
-| :::| c:bronze_dust| cotton-resources | +
-| :::| techreborn:bronze_dust| techreborn | +
-| c:bronze_gears| astromine:bronze_gear| astromine-foundations | +
-| :::| c:bronze_gear| cotton-resources | +
-| c:bronze_ingots| astromine:bronze_ingot| astromine-foundations | +
-| :::| c:bronze_ingot| cotton-resources | +
-| :::| techreborn:bronze_ingot| techreborn | +
-| c:bronze_nuggets| astromine:bronze_nugget| astromine-foundations | +
-| :::| c:bronze_nugget| cotton-resources | +
-| :::| techreborn:bronze_nugget| techreborn | +
-| c:bronze_plates| astromine:bronze_plates| astromine-foundations | +
-| :::| c:bronze_plate| cotton-resources | +
-| :::| techreborn:bronze_plate| techreborn | +
-| c:bronze_small_dusts| techreborn:bronze_small_dust| techreborn | +
-| c:bronze_tiny_dusts| astromine:bronze_tiny_dust| astromine-foundations | +
-| c:brown_dyes| minecraft:brown_dye| appliedenergistics2 | +
-| c:calcite_dusts| techreborn:calcite_dust| techreborn | +
-| c:calcite_small_dusts| techreborn:calcite_small_dust| techreborn | +
-| c:carbon_plates| techreborn:carbon_plate| techreborn | +
-| c:carbonado| more_gems:carbonado| more_gems | +
-| c:carbs| minecraft:potato| veggie_way | +
-| c:certus_quartz_crystals| appliedenergistics2:certus_quartz_crystal| appliedenergistics2 | +
-| :::| appliedenergistics2:charged_certus_quartz_crystal| appliedenergistics2 | +
-| c:certus_quartz_ores| appliedenergistics2:quartz_ore| appliedenergistics2 | +
-| :::| appliedenergistics2:charged_quartz_ore| appliedenergistics2 | +
-| c:charcoal| minecraft:charcoal| astromine-foundations | +
-| c:charcoal_dusts| astromine:charcoal_dust| astromine-foundations | +
-| :::| techreborn:charcoal_dust| techreborn | +
-| c:charcoal_small_dusts| techreborn:charcoal_small_dust| techreborn | +
-| c:charcoal_tiny_dusts| astromine:charcoal_tiny_dust| astromine-foundations | +
-| c:chest| minecraft:chest| expandedstorage | +
-| :::| minecraft:trapped_chest| expandedstorage | +
-| :::| expandedstorage:wood_chest| expandedstorage | +
-| c:chrome_blocks| techreborn:chrome_storage_block| techreborn | +
-| c:chrome_dusts| techreborn:chrome_dust| techreborn | +
-| c:chrome_ingots| techreborn:chrome_ingot| techreborn | +
-| c:chrome_nuggets| techreborn:chrome_nugget| techreborn | +
-| c:chrome_plates| techreborn:chrome_plate| techreborn | +
-| c:chrome_small_dusts| techreborn:chrome_small_dust| techreborn | +
-| 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-foundations | +
-| c:coal_clusters| astromine:asteroid_coal_cluster| astromine-foundations | +
-| c:coal_coke_blocks| c:coal_coke_block| cotton-resources | +
-| c:coal_cokes| c:coal_coke| cotton-resources | +
-| c:coal_dusts| astromine:coal_dust| astromine-foundations | +
-| :::| indrev:coal_dust| indrev | +
-| :::| techreborn:coal_dust| techreborn | +
-| c:coal_ores| astromine:asteroid_coal_ore| astromine-foundations | +
-| 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-foundations | +
-| c:cobalt_blocks| c:cobalt_block| cotton-resources | +
-| c:cobalt_dusts| c:cobalt_dust| cotton-resources | +
-| c:cobalt_gears| c:cobalt_gear| cotton-resources | +
-| c:cobalt_ingots| c:cobalt_ingot| cotton-resources | +
-| c:cobalt_nuggets| c:cobalt_nugget| cotton-resources | +
-| c:cobalt_ores| 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:cobblestones| minecraft:cobblestone| cotton-resources, astromine-foundations | +
-| 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:cooked_meat| epicurean:tofu| epicurean | +
-| c:copper_blocks| astromine:copper_block| astromine-foundations | +
-| :::| c:copper_block| cotton-resources | +
-| :::| techreborn:copper_storage_block| techreborn | +
-| c:copper_clusters| astromine:asteroid_copper_cluster| astromine-foundations | +
-| c:copper_dusts| astromine:copper_dust| astromine-foundations | +
-| :::| c:copper_dust| cotton-resources | +
-| :::| indrev:copper_dust| indrev | +
-| :::| techreborn:copper_dust| techreborn | +
-| c:copper_gears| astromine:copper_gear| astromine-foundations | +
-| :::| c:copper_gear| cotton-resources | +
-| c:copper_ingot| mechanized:copper_ingot| mechanized | +
-| c:copper_ingots| astromine:copper_ingot| astromine-foundations | +
-| :::| c:copper_ingot| cotton-resources, ironchest | +
-| :::| indrev:copper_ingot| indrev | +
-| :::| #c:copper_ingot| ironchest | +
-| :::| mechanized:copper_ingot| mechanized | +
-| :::| techreborn:copper_ingot| techreborn | +
-| c:copper_nuggets| astromine:copper_nugget| astromine-foundations | +
-| :::| c:copper_nugget| cotton-resources | +
-| :::| techreborn:copper_nugget| techreborn | +
-| c:copper_ore| mechanized:copper_ore| mechanized | +
-| c:copper_ores| astromine:copper_ore| astromine-foundations | +
-| :::| astromine:asteroid_copper_ore| astromine-foundations | +
-| :::| 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 | +
-| :::| techreborn:copper_ore| techreborn | +
-| c:copper_plates| astromine:copper_plates| astromine-foundations | +
-| :::| c:copper_plate| cotton-resources | +
-| :::| indrev:copper_plate| indrev | +
-| :::| techreborn:copper_plate| techreborn | +
-| c:copper_small_dusts| techreborn:copper_small_dust| techreborn | +
-| c:copper_tiny_dusts| astromine:copper_tiny_dust| astromine-foundations | +
-| c:copper_wires| astromine:copper_wire| astromine-foundations | +
-| c:corn| veggie_way:corn| veggie_way | +
-| c:corundum| more_gems:corundum| more_gems | +
-| c:cyan_dyes| minecraft:cyan_dye| appliedenergistics2 | +
-| 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:diamond_clusters| astromine:asteroid_diamond_cluster| astromine-foundations | +
-| c:diamond_dusts| astromine:diamond_dust| astromine-foundations | +
-| :::| c:diamond_dust| cotton-resources | +
-| :::| indrev:diamond_dust| indrev | +
-| :::| techreborn:diamond_dust| techreborn | +
-| c:diamond_fragments| astromine:diamond_fragment| astromine-foundations | +
-| c:diamond_gears| c:diamond_gear| cotton-resources | +
-| c:diamond_nuggets| #c:diamond_fragments| astromine-foundations | +
-| :::| techreborn:diamond_nugget| techreborn | +
-| c:diamond_ores| astromine:asteroid_diamond_ore| astromine-foundations | +
-| :::| minecraft:diamond_ore| astromine-foundations | +
-| c:diamond_plates| c:diamond_plate| cotton-resources | +
-| :::| techreborn:diamond_plate| techreborn | +
-| c:diamond_small_dusts| techreborn:diamond_small_dust| techreborn | +
-| c:diamond_tiny_dusts| astromine:diamond_tiny_dust| astromine-foundations | +
-| c:diamonds| minecraft:diamond| appliedenergistics2, cotton-resources, astromine-foundations, ironchest | +
-| c:diorite_dusts| techreborn:diorite_dust| techreborn | +
-| c:diorite_small_dusts| techreborn:diorite_small_dust| techreborn | +
-| 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| 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| 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| flonters | +
-| c:dye_white| minecraft:white_dye| flonters | +
-| c:dye_yellow| minecraft:yellow_dye| flonters | +
-| c:electrum_blocks| astromine:electrum_block| astromine-foundations | +
-| :::| c:electrum_block| cotton-resources | +
-| :::| techreborn:electrum_storage_block| techreborn | +
-| c:electrum_dusts| astromine:electrum_dust| astromine-foundations | +
-| :::| c:electrum_dust| cotton-resources | +
-| :::| techreborn:electrum_dust| techreborn | +
-| c:electrum_gears| astromine:electrum_gear| astromine-foundations | +
-| :::| c:electrum_gear| cotton-resources | +
-| c:electrum_ingots| astromine:electrum_ingot| astromine-foundations | +
-| :::| c:electrum_ingot| cotton-resources | +
-| :::| techreborn:electrum_ingot| techreborn | +
-| c:electrum_nuggets| astromine:electrum_nugget| astromine-foundations | +
-| :::| c:electrum_nugget| cotton-resources | +
-| :::| techreborn:electrum_nugget| techreborn | +
-| c:electrum_plates| astromine:electrum_plates| astromine-foundations | +
-| :::| c:electrum_plate| cotton-resources | +
-| :::| techreborn:electrum_plate| techreborn | +
-| c:electrum_small_dusts| techreborn:electrum_small_dust| techreborn | +
-| c:electrum_tiny_dusts| astromine:electrum_tiny_dust| astromine-foundations | +
-| c:electrum_wires| astromine:electrum_wire| astromine-foundations | +
-| c:emerald_clusters| astromine:asteroid_emerald_cluster| astromine-foundations | +
-| c:emerald_dusts| astromine:emerald_dust| astromine-foundations | +
-| :::| c:emerald_dust| cotton-resources | +
-| :::| techreborn:emerald_dust| techreborn | +
-| c:emerald_fragments| astromine:emerald_fragment| astromine-foundations | +
-| c:emerald_gears| c:emerald_gear| cotton-resources | +
-| c:emerald_nuggets| #c:emerald_fragments| astromine-foundations | +
-| :::| techreborn:emerald_nugget| techreborn | +
-| c:emerald_ores| astromine:asteroid_emerald_ore| astromine-foundations | +
-| :::| minecraft:emerald_ore| astromine-foundations | +
-| c:emerald_plates| c:emerald_plate| cotton-resources | +
-| :::| techreborn:emerald_plate| techreborn | +
-| c:emerald_small_dusts| techreborn:emerald_small_dust| techreborn | +
-| c:emerald_tiny_dusts| astromine:emerald_tiny_dust| astromine-foundations | +
-| c:emeralds| minecraft:emerald| cotton-resources, astromine-foundations | +
-| 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 | +
-| c:ender_pearl_small_dusts| techreborn:ender_pearl_small_dust| techreborn | +
-| c:ender_pearls| minecraft:ender_pearl| appliedenergistics2 | +
-| c:endstone_dusts| techreborn:endstone_dust| techreborn | +
-| c:endstone_small_dusts| techreborn:endstone_small_dust| techreborn | +
-| c:flint_dusts| techreborn:flint_dust| techreborn | +
-| c:flint_small_dusts| techreborn:flint_small_dust| techreborn | +
-| c:flour| veggie_way:flour| veggie_way | +
-| c:fools_gold_blocks| astromine:fools_gold_block| astromine-foundations | +
-| c:fools_gold_dusts| astromine:fools_gold_dust| astromine-foundations | +
-| c:fools_gold_gears| astromine:fools_gold_gear| astromine-foundations | +
-| c:fools_gold_ingots| astromine:fools_gold_ingot| astromine-foundations | +
-| c:fools_gold_nuggets| astromine:fools_gold_nugget| astromine-foundations | +
-| c:fools_gold_plates| astromine:fools_gold_plates| astromine-foundations | +
-| c:fools_gold_tiny_dusts| astromine:fools_gold_tiny_dust| astromine-foundations | +
-| c:fruits| minecraft:beetroot| veggie_way | +
-| :::| minecraft:apple| veggie_way | +
-| :::| minecraft:melon_slice| veggie_way | +
-| :::| minecraft:sweet_berries| veggie_way | +
-| :::| minecraft:honeycomb| veggie_way | +
-| :::| minecraft:sugar_cane| veggie_way | +
-| :::| veggie_way:cactus_chunk| veggie_way | +
-| c:galaxium_blocks| astromine:galaxium_block| astromine-foundations | +
-| c:galaxium_clusters| astromine:asteroid_galaxium_cluster| astromine-foundations | +
-| c:galaxium_dusts| astromine:galaxium_dust| astromine-foundations | +
-| c:galaxium_fragments| astromine:galaxium_fragment| astromine-foundations | +
-| c:galaxium_nuggets| #c:galaxium_fragments| astromine-foundations | +
-| c:galaxium_ores| astromine:asteroid_galaxium_ore| astromine-foundations | +
-| c:galaxium_tiny_dusts| astromine:galaxium_tiny_dust| astromine-foundations | +
-| c:galaxiums| astromine:galaxium| astromine-foundations | +
-| c:galena_dusts| techreborn:galena_dust| techreborn | +
-| c:galena_ores| techreborn:galena_ore| techreborn | +
-| c:galena_small_dusts| techreborn:galena_small_dust| techreborn | +
-| c: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 | +
-| :::| minecraft:diamond| more_gems | +
-| :::| minecraft:emerald| more_gems | +
-| c:glass| minecraft:glass| artofalchemy | +
-| :::| minecraft:white_stained_glass| artofalchemy | +
-| :::| minecraft:orange_stained_glass| artofalchemy | +
-| :::| minecraft:magenta_stained_glass| artofalchemy | +
-| :::| minecraft:light_blue_stained_glass| artofalchemy | +
-| :::| minecraft:yellow_stained_glass| artofalchemy | +
-| :::| minecraft:lime_stained_glass| artofalchemy | +
-| :::| minecraft:pink_stained_glass| artofalchemy | +
-| :::| minecraft:gray_stained_glass| artofalchemy | +
-| :::| minecraft:light_gray_stained_glass| artofalchemy | +
-| :::| minecraft:cyan_stained_glass| artofalchemy | +
-| :::| minecraft:purple_stained_glass| artofalchemy | +
-| :::| minecraft:blue_stained_glass| artofalchemy | +
-| :::| minecraft:brown_stained_glass| artofalchemy | +
-| :::| minecraft:green_stained_glass| artofalchemy | +
-| :::| minecraft:red_stained_glass| artofalchemy | +
-| :::| minecraft:black_stained_glass| artofalchemy | +
-| 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 | +
-| c:glass_panes| minecraft:glass_pane| adorn | +
-| :::| minecraft:black_stained_glass_pane| adorn | +
-| :::| minecraft:white_stained_glass_pane| adorn | +
-| :::| minecraft:gray_stained_glass_pane| adorn | +
-| :::| minecraft:light_gray_stained_glass_pane| adorn | +
-| :::| minecraft:blue_stained_glass_pane| adorn | +
-| :::| minecraft:light_blue_stained_glass_pane| adorn | +
-| :::| minecraft:cyan_stained_glass_pane| adorn | +
-| :::| minecraft:lime_stained_glass_pane| adorn | +
-| :::| minecraft:green_stained_glass_pane| adorn | +
-| :::| minecraft:orange_stained_glass_pane| adorn | +
-| :::| minecraft:yellow_stained_glass_pane| adorn | +
-| :::| minecraft:red_stained_glass_pane| adorn | +
-| :::| minecraft:magenta_stained_glass_pane| adorn | +
-| :::| minecraft:brown_stained_glass_pane| adorn | +
-| :::| minecraft:purple_stained_glass_pane| adorn | +
-| :::| minecraft:pink_stained_glass_pane| adorn | +
-| c:glowstone_dusts| minecraft:glowstone_dust| appliedenergistics2 | +
-| c:glowstone_small_dusts| techreborn:glowstone_small_dust| techreborn | +
-| c:gold_clusters| astromine:asteroid_gold_cluster| astromine-foundations | +
-| c:gold_dusts| appliedenergistics2:gold_dust| appliedenergistics2 | +
-| :::| astromine:gold_dust| astromine-foundations | +
-| :::| c:gold_dust| cotton-resources | +
-| :::| indrev:gold_dust| indrev | +
-| :::| techreborn:gold_dust| techreborn | +
-| c:gold_gears| astromine:gold_gear| astromine-foundations | +
-| :::| c:gold_gear| cotton-resources | +
-| c:gold_ingots| minecraft:gold_ingot| appliedenergistics2, cotton-resources, astromine-foundations, ironchest | +
-| c:gold_ores| minecraft:gold_ore| appliedenergistics2 | +
-| :::| astromine:asteroid_gold_ore| astromine-foundations | +
-| :::| #minecraft:gold_ores| astromine-foundations | +
-| c:gold_plates| astromine:gold_plates| astromine-foundations | +
-| :::| c:gold_plate| cotton-resources | +
-| :::| indrev:gold_plate| indrev | +
-| :::| techreborn:gold_plate| techreborn | +
-| c:gold_small_dusts| techreborn:gold_small_dust| techreborn | +
-| c:gold_tiny_dusts| astromine:gold_tiny_dust| astromine-foundations | +
-| c:gold_wires| astromine:gold_wire| astromine-foundations | +
-| c:grain| minecraft:wheat| veggie_way | +
-| c:granite_dusts| techreborn:granite_dust| techreborn | +
-| c:granite_small_dusts| techreborn:granite_small_dust| techreborn | +
-| c:gray_dyes| minecraft:gray_dye| appliedenergistics2 | +
-| c:green_dyes| minecraft:green_dye| appliedenergistics2 | +
-| c:grossular_dusts| techreborn:grossular_dust| techreborn | +
-| c:grossular_small_dusts| techreborn:grossular_small_dust| techreborn | +
-| 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 | +
-| c:invar_dusts| techreborn:invar_dust| techreborn | +
-| c:invar_ingots| techreborn:invar_ingot| techreborn | +
-| c:invar_nuggets| techreborn:invar_nugget| techreborn | +
-| c:invar_plates| techreborn:invar_plate| techreborn | +
-| c:invar_small_dusts| techreborn:invar_small_dust| techreborn | +
-| 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 | +
-| c:iridium_dusts| c:iridium_dust| cotton-resources | +
-| c:iridium_gears| c:iridium_gear| cotton-resources | +
-| c:iridium_ingots| c:iridium_ingot| cotton-resources | +
-| :::| techreborn:iridium_ingot| techreborn | +
-| c:iridium_nuggets| c:iridium_nugget| cotton-resources | +
-| :::| techreborn:iridium_nugget| 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 | +
-| c:iridium_plates| c:iridium_plate| cotton-resources | +
-| :::| techreborn:iridium_plate| 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_clusters| astromine:asteroid_iron_cluster| astromine-foundations | +
-| c:iron_dusts| appliedenergistics2:iron_dust| appliedenergistics2 | +
-| :::| astromine:iron_dust| astromine-foundations | +
-| :::| c:iron_dust| cotton-resources | +
-| :::| indrev:iron_dust| indrev | +
-| :::| techreborn:iron_dust| techreborn | +
-| c:iron_gears| astromine:iron_gear| astromine-foundations | +
-| :::| c:iron_gear| cotton-resources | +
-| c:iron_ingots| minecraft:iron_ingot| appliedenergistics2, cotton-resources, astromine-foundations, ironchest | +
-| c:iron_ores| minecraft:iron_ore| appliedenergistics2, astromine-foundations | +
-| :::| astromine:asteroid_iron_ore| astromine-foundations | +
-| c:iron_plates| astromine:iron_plates| astromine-foundations | +
-| :::| c:iron_plate| cotton-resources | +
-| :::| indrev:iron_plate| indrev | +
-| :::| techreborn:iron_plate| techreborn | +
-| c:iron_small_dusts| techreborn:iron_small_dust| techreborn | +
-| c:iron_tiny_dusts| astromine:iron_tiny_dust| astromine-foundations | +
-| c:lapis_clusters| astromine:asteroid_lapis_cluster| astromine-foundations | +
-| c:lapis_dusts| astromine:lapis_dust| astromine-foundations | +
-| c:lapis_lazulis| minecraft:lapis_lazuli| astromine-foundations | +
-| c:lapis_ores| astromine:asteroid_lapis_ore| astromine-foundations | +
-| :::| minecraft:lapis_ore| astromine-foundations | +
-| c:lapis_plates| techreborn:lapis_plate| techreborn | +
-| c:lapis_tiny_dusts| astromine:lapis_tiny_dust| astromine-foundations | +
-| c:lazurite_dusts| techreborn:lazurite_dust| techreborn | +
-| c:lazurite_plates| techreborn:lazurite_plate| techreborn | +
-| c:lazurite_small_dusts| techreborn:lazurite_small_dust| techreborn | +
-| c:lead_blocks| astromine:lead_block| astromine-foundations | +
-| :::| c:lead_block| cotton-resources | +
-| :::| techreborn:lead_storage_block| techreborn | +
-| c:lead_clusters| astromine:asteroid_lead_cluster| astromine-foundations | +
-| c:lead_dusts| astromine:lead_dust| astromine-foundations | +
-| :::| c:lead_dust| cotton-resources | +
-| :::| techreborn:lead_dust| techreborn | +
-| c:lead_gears| astromine:lead_gear| astromine-foundations | +
-| :::| c:lead_gear| cotton-resources | +
-| c:lead_ingots| astromine:lead_ingot| astromine-foundations | +
-| :::| c:lead_ingot| cotton-resources | +
-| :::| techreborn:lead_ingot| techreborn | +
-| c:lead_nuggets| astromine:lead_nugget| astromine-foundations | +
-| :::| c:lead_nugget| cotton-resources | +
-| :::| techreborn:lead_nugget| techreborn | +
-| c:lead_ores| astromine:lead_ore| astromine-foundations | +
-| :::| astromine:asteroid_lead_ore| astromine-foundations | +
-| :::| c:lead_ore| cotton-resources | +
-| :::| c:lead_nether_ore| cotton-resources | +
-| :::| c:lead_end_ore| cotton-resources | +
-| :::| techreborn:lead_ore| techreborn | +
-| c:lead_plates| astromine:lead_plates| astromine-foundations | +
-| :::| c:lead_plate| cotton-resources | +
-| :::| techreborn:lead_plate| techreborn | +
-| c:lead_small_dusts| techreborn:lead_small_dust| techreborn | +
-| c:lead_tiny_dusts| astromine:lead_tiny_dust| astromine-foundations | +
-| c:lead_wires| astromine:lead_wire| astromine-foundations | +
-| c:lentil| veggie_way:lentil| veggie_way | +
-| c:light_blue_dyes| minecraft:light_blue_dye| appliedenergistics2 | +
-| c:light_gray_dyes| minecraft:light_gray_dye| appliedenergistics2 | +
-| c:lime_dyes| minecraft:lime_dye| appliedenergistics2 | +
-| c:limestone| blockus:limestone| blockus | +
-| :::| blockus:limestone_bricks| blockus | +
-| :::| blockus:limestone_pillar| blockus | +
-| :::| blockus:chiseled_limestone| blockus | +
-| :::| blockus:limestone_circle_pavement| blockus | +
-| c:magenta_dyes| minecraft:magenta_dye| appliedenergistics2 | +
-| 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_dusts| techreborn:manganese_dust| techreborn | +
-| c:manganese_small_dusts| techreborn:manganese_small_dust| techreborn | +
-| 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:meteor_metite_clusters| astromine:meteor_metite_cluster| astromine-foundations | +
-| c:metite_blocks| astromine:metite_block| astromine-foundations | +
-| c:metite_clusters| astromine:meteor_metite_cluster| astromine-foundations | +
-| :::| astromine:asteroid_metite_cluster| astromine-foundations | +
-| c:metite_dusts| astromine:metite_dust| astromine-foundations | +
-| c:metite_gears| astromine:metite_gear| astromine-foundations | +
-| c:metite_ingots| astromine:metite_ingot| astromine-foundations | +
-| c:metite_nuggets| astromine:metite_nugget| astromine-foundations | +
-| c:metite_ores| astromine:meteor_metite_ore| astromine-foundations | +
-| :::| astromine:asteroid_metite_ore| astromine-foundations | +
-| c:metite_plates| astromine:metite_plates| astromine-foundations | +
-| c:metite_tiny_dusts| astromine:metite_tiny_dust| astromine-foundations | +
-| c:mixed_metal_ingots| techreborn:mixed_metal_ingot| techreborn | +
-| c:netherite_dusts| astromine:netherite_dust| astromine-foundations | +
-| c:netherite_gears| astromine:netherite_gear| astromine-foundations | +
-| c:netherite_ingots| minecraft:netherite_ingot| astromine-foundations | +
-| c:netherite_nuggets| astromine:netherite_nugget| astromine-foundations | +
-| c:netherite_plates| astromine:netherite_plates| astromine-foundations | +
-| c:netherite_scraps| minecraft:netherite_scrap| astromine-foundations | +
-| c:netherite_tiny_dusts| astromine:netherite_tiny_dust| astromine-foundations | +
-| c:netherrack_dusts| techreborn:netherrack_dust| techreborn | +
-| c:netherrack_small_dusts| techreborn:netherrack_small_dust| techreborn | +
-| c:nickel_blocks| techreborn:nickel_storage_block| techreborn | +
-| c:nickel_dusts| techreborn:nickel_dust| techreborn | +
-| c:nickel_ingots| techreborn:nickel_ingot| techreborn | +
-| c:nickel_nuggets| techreborn:nickel_nugget| techreborn | +
-| c:nickel_plates| techreborn:nickel_plate| techreborn | +
-| c:nickel_small_dusts| techreborn:nickel_small_dust| techreborn | +
-| c:obsidian_dusts| techreborn:obsidian_dust| techreborn | +
-| c:obsidian_plates| techreborn:obsidian_plate| techreborn | +
-| c:obsidian_small_dusts| techreborn:obsidian_small_dust| techreborn | +
-| c:olivine_dusts| techreborn:olivine_dust| techreborn | +
-| c:olivine_small_dusts| techreborn:olivine_small_dust| techreborn | +
-| c:orange_dyes| minecraft:orange_dye| appliedenergistics2 | +
-| c:osmium_blocks| c:osmium_block| cotton-resources | +
-| c:osmium_dusts| c:osmium_dust| cotton-resources | +
-| c:osmium_gears| c:osmium_gear| cotton-resources | +
-| c:osmium_ingots| c:osmium_ingot| cotton-resources | +
-| c:osmium_nuggets| c:osmium_nugget| cotton-resources | +
-| c:osmium_ores| c:osmium_ore| cotton-resources | +
-| :::| c:osmium_nether_ore| cotton-resources | +
-| :::| c:osmium_end_ore| cotton-resources | +
-| c:osmium_plates| c:osmium_plate| cotton-resources | +
-| c:palladium_blocks| c:palladium_block| cotton-resources | +
-| c:palladium_dusts| c:palladium_dust| cotton-resources | +
-| c:palladium_gears| c:palladium_gear| cotton-resources | +
-| c:palladium_ingots| c:palladium_ingot| cotton-resources | +
-| c:palladium_nuggets| c:palladium_nugget| cotton-resources | +
-| c:palladium_ores| c:palladium_ore| cotton-resources | +
-| :::| c:palladium_nether_ore| cotton-resources | +
-| :::| c:palladium_end_ore| cotton-resources | +
-| c:palladium_plates| c:palladium_plate| cotton-resources | +
-| 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 | +
-| 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 | +
-| 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:pink_dyes| minecraft:pink_dye| appliedenergistics2 | +
-| c:platinum_blocks| c:platinum_block| cotton-resources | +
-| :::| techreborn:platinum_storage_block| techreborn | +
-| c:platinum_dusts| c:platinum_dust| cotton-resources | +
-| :::| techreborn:platinum_dust| techreborn | +
-| c:platinum_gears| c:platinum_gear| cotton-resources | +
-| c:platinum_ingots| c:platinum_ingot| cotton-resources | +
-| :::| techreborn:platinum_ingot| techreborn | +
-| c:platinum_nuggets| c:platinum_nugget| cotton-resources | +
-| :::| techreborn:platinum_nugget| techreborn | +
-| c:platinum_ores| c:platinum_ore| cotton-resources | +
-| :::| c:platinum_nether_ore| cotton-resources | +
-| :::| c:platinum_end_ore| cotton-resources | +
-| c:platinum_plates| c:platinum_plate| cotton-resources | +
-| :::| techreborn:platinum_plate| techreborn | +
-| c:platinum_small_dusts| techreborn:platinum_small_dust| techreborn | +
-| c:plutonium_blocks| c:plutonium_block| cotton-resources | +
-| c:plutonium_dusts| c:plutonium_dust| cotton-resources | +
-| c:plutonium_gears| c:plutonium_gear| cotton-resources | +
-| c:plutonium_ingots| c:plutonium_ingot| cotton-resources | +
-| c:plutonium_nuggets| c:plutonium_nugget| cotton-resources | +
-| c:plutonium_plates| c:plutonium_plate| cotton-resources | +
-| c:protein| veggie_way:quinoa| veggie_way | +
-| :::| veggie_way:lentil| veggie_way | +
-| :::| veggie_way:soybean| veggie_way | +
-| :::| veggie_way:cooked_tofu| veggie_way | +
-| c:purple_dyes| minecraft:purple_dye| appliedenergistics2 | +
-| 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:quartz| minecraft:quartz| appliedenergistics2, cinderscapes, astromine-foundations | +
-| :::| cinderscapes:smoky_quartz| cinderscapes | +
-| :::| cinderscapes:rose_quartz| cinderscapes | +
-| :::| cinderscapes:sulfur_quartz| cinderscapes | +
-| c:quartz_dusts| appliedenergistics2:nether_quartz_dust| appliedenergistics2 | +
-| :::| astromine:quartz_dust| astromine-foundations | +
-| :::| techreborn:quartz_dust| techreborn | +
-| c:quartz_fragments| astromine:quartz_fragment| astromine-foundations | +
-| c:quartz_nuggets| #c:quartz_fragments| astromine-foundations | +
-| c:quartz_ores| minecraft:nether_quartz_ore| appliedenergistics2, astromine-foundations | +
-| 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-foundations | +
-| c:quinoa| veggie_way:quinoa_seeds| veggie_way | +
-| c:raw_netherite_dusts| astromine:raw_netherite_dust| astromine-foundations | +
-| c:raw_netherite_fragments| astromine:raw_netherite_fragment| astromine-foundations | +
-| c:raw_netherite_nuggets| #c:raw_netherite_fragments| astromine-foundations | +
-| c:raw_netherite_tiny_dusts| astromine:raw_netherite_tiny_dust| astromine-foundations | +
-| c:red_dyes| minecraft:red_dye| appliedenergistics2 | +
-| 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:redstone| minecraft:redstone| astromine-foundations | +
-| c:redstone_clusters| astromine:asteroid_redstone_cluster| astromine-foundations | +
-| c:redstone_dusts| minecraft:redstone| appliedenergistics2, astromine-foundations | +
-| c:redstone_ores| astromine:asteroid_redstone_ore| astromine-foundations | +
-| :::| minecraft:redstone_ore| astromine-foundations | +
-| 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-foundations | +
-| 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:rose_gold_blocks| astromine:rose_gold_block| astromine-foundations | +
-| c:rose_gold_dusts| astromine:rose_gold_dust| astromine-foundations | +
-| c:rose_gold_gears| astromine:rose_gold_gear| astromine-foundations | +
-| c:rose_gold_ingots| astromine:rose_gold_ingot| astromine-foundations | +
-| c:rose_gold_nuggets| astromine:rose_gold_nugget| astromine-foundations | +
-| c:rose_gold_plates| astromine:rose_gold_plates| astromine-foundations | +
-| c:rose_gold_tiny_dusts| astromine:rose_gold_tiny_dust| astromine-foundations | +
-| c:rubies| c:ruby| cotton-resources | +
-| :::| earthtojavamobs:ruby| earthtojavamobs | +
-| :::| techreborn:ruby_gem| techreborn | +
-| c:ruby| more_gems:ruby| more_gems | +
-| c:ruby_blocks| c:ruby_block| cotton-resources | +
-| :::| earthtojavamobs:ruby_block| earthtojavamobs | +
-| :::| techreborn:ruby_storage_block| techreborn | +
-| c:ruby_dusts| c:ruby_dust| cotton-resources | +
-| :::| 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 | +
-| :::| earthtojavamobs:ruby_ore| earthtojavamobs | +
-| :::| techreborn: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:salt| epicurean:salt| epicurean | +
-| c:saltpeter_dusts| techreborn:saltpeter_dust| techreborn | +
-| c:saltpeter_small_dusts| techreborn:saltpeter_small_dust| techreborn | +
-| c:sand_blocks| minecraft:sand| appliedenergistics2 | +
-| :::| minecraft:red_sand| appliedenergistics2 | +
-| 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 | +
-| 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:saw_dusts| techreborn:saw_dust| techreborn | +
-| c:saw_small_dusts| techreborn:saw_small_dust| techreborn | +
-| c:sheldonite_ores| techreborn:sheldonite_ore| techreborn | +
-| c:silicon_plates| techreborn:silicon_plate| techreborn | +
-| c:silver_blocks| astromine:silver_block| astromine-foundations | +
-| :::| c:silver_block| cotton-resources | +
-| :::| techreborn:silver_storage_block| techreborn | +
-| c:silver_clusters| astromine:asteroid_silver_cluster| astromine-foundations | +
-| c:silver_dusts| astromine:silver_dust| astromine-foundations | +
-| :::| c:silver_dust| cotton-resources | +
-| :::| techreborn:silver_dust| techreborn | +
-| c:silver_gears| astromine:silver_gear| astromine-foundations | +
-| :::| c:silver_gear| cotton-resources | +
-| c:silver_ingots| astromine:silver_ingot| astromine-foundations | +
-| :::| c:silver_ingot| cotton-resources, ironchest | +
-| :::| #c:silver_ingot| ironchest | +
-| :::| techreborn:silver_ingot| techreborn | +
-| c:silver_nuggets| astromine:silver_nugget| astromine-foundations | +
-| :::| c:silver_nugget| cotton-resources | +
-| :::| techreborn:silver_nugget| techreborn | +
-| c:silver_ores| astromine:silver_ore| astromine-foundations | +
-| :::| astromine:asteroid_silver_ore| astromine-foundations | +
-| :::| c:silver_ore| cotton-resources | +
-| :::| c:silver_nether_ore| cotton-resources | +
-| :::| c:silver_end_ore| cotton-resources | +
-| :::| techreborn:silver_ore| techreborn | +
-| c:silver_plates| astromine:silver_plates| astromine-foundations | +
-| :::| c:silver_plate| cotton-resources | +
-| :::| techreborn:silver_plate| techreborn | +
-| c:silver_small_dusts| techreborn:silver_small_dust| techreborn | +
-| c:silver_tiny_dusts| astromine:silver_tiny_dust| astromine-foundations | +
-| c:silver_wires| astromine:silver_wire| astromine-foundations | +
-| c:sodalite_dusts| techreborn:sodalite_dust| techreborn | +
-| c:sodalite_ores| techreborn:sodalite_ore| techreborn | +
-| c:sodalite_small_dusts| techreborn:sodalite_small_dust| techreborn | +
-| c:soybean| veggie_way:soybean| veggie_way | +
-| 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:steel_blocks| astromine:steel_block| astromine-foundations | +
-| :::| c:steel_block| cotton-resources | +
-| :::| techreborn:steel_storage_block| techreborn | +
-| c:steel_dusts| astromine:steel_dust| astromine-foundations | +
-| :::| c:steel_dust| cotton-resources | +
-| :::| indrev:steel_dust| indrev | +
-| :::| techreborn:steel_dust| techreborn | +
-| c:steel_gears| astromine:steel_gear| astromine-foundations | +
-| :::| c:steel_gear| cotton-resources | +
-| c:steel_ingots| astromine:steel_ingot| astromine-foundations | +
-| :::| c:steel_ingot| cotton-resources | +
-| :::| indrev:steel_ingot| indrev | +
-| :::| techreborn:steel_ingot| techreborn | +
-| c:steel_nuggets| astromine:steel_nugget| astromine-foundations | +
-| :::| c:steel_nugget| cotton-resources | +
-| :::| techreborn:steel_nugget| techreborn | +
-| c:steel_plates| astromine:steel_plates| astromine-foundations | +
-| :::| c:steel_plate| cotton-resources | +
-| :::| indrev:steel_plate| indrev | +
-| :::| techreborn:steel_plate| techreborn | +
-| c:steel_small_dusts| techreborn:steel_small_dust| techreborn | +
-| c:steel_tiny_dusts| astromine:steel_tiny_dust| astromine-foundations | +
-| c:steel_wires| astromine:steel_wire| astromine-foundations | +
-| c:stellum_blocks| astromine:stellum_block| astromine-foundations | +
-| c:stellum_clusters| astromine:asteroid_stellum_cluster| astromine-foundations | +
-| c:stellum_dusts| astromine:stellum_dust| astromine-foundations | +
-| c:stellum_gears| astromine:stellum_gear| astromine-foundations | +
-| c:stellum_ingots| astromine:stellum_ingot| astromine-foundations | +
-| c:stellum_nuggets| astromine:stellum_nugget| astromine-foundations | +
-| c:stellum_ores| astromine:asteroid_stellum_ore| astromine-foundations | +
-| c:stellum_plates| astromine:stellum_plates| astromine-foundations | +
-| c:stellum_tiny_dusts| astromine:stellum_tiny_dust| astromine-foundations | +
-| c:sterling_silver_blocks| astromine:sterling_silver_block| astromine-foundations | +
-| c:sterling_silver_dusts| astromine:sterling_silver_dust| astromine-foundations | +
-| c:sterling_silver_gears| astromine:sterling_silver_gear| astromine-foundations | +
-| c:sterling_silver_ingots| astromine:sterling_silver_ingot| astromine-foundations | +
-| c:sterling_silver_nuggets| astromine:sterling_silver_nugget| astromine-foundations | +
-| c:sterling_silver_plates| astromine:sterling_silver_plates| astromine-foundations | +
-| c:sterling_silver_tiny_dusts| astromine:sterling_silver_tiny_dust| astromine-foundations | +
-| c:stone_gears| c:stone_gear| cotton-resources | +
-| c:stone_rod| adorn:stone_rod| adorn | +
-| c:stones| minecraft:cobblestone| resourceful_tools | +
-| :::| minecraft:granite| resourceful_tools | +
-| :::| minecraft:diorite| resourceful_tools | +
-| :::| minecraft:andesite| resourceful_tools | +
-| c:sulfur_dusts| techreborn:sulfur_dust| techreborn | +
-| c:sulfur_ores| cinderscapes:sulfur_ore| cinderscapes | +
-| c:sulfur_small_dusts| techreborn:sulfur_small_dust| techreborn | +
-| c:sulfurs| cinderscapes:sulfur| cinderscapes | +
-| 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: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_blocks| astromine:tin_block| astromine-foundations | +
-| :::| c:tin_block| cotton-resources | +
-| :::| techreborn:tin_storage_block| techreborn | +
-| c:tin_clusters| astromine:asteroid_tin_cluster| astromine-foundations | +
-| c:tin_dusts| astromine:tin_dust| astromine-foundations | +
-| :::| c:tin_dust| cotton-resources | +
-| :::| indrev:tin_dust| indrev | +
-| :::| techreborn:tin_dust| techreborn | +
-| c:tin_gears| astromine:tin_gear| astromine-foundations | +
-| :::| c:tin_gear| cotton-resources | +
-| c:tin_ingots| astromine:tin_ingot| astromine-foundations | +
-| :::| c:tin_ingot| cotton-resources | +
-| :::| indrev:tin_ingot| indrev | +
-| :::| techreborn:tin_ingot| techreborn | +
-| c:tin_nuggets| astromine:tin_nugget| astromine-foundations | +
-| :::| c:tin_nugget| cotton-resources | +
-| :::| techreborn:tin_nugget| techreborn | +
-| c:tin_ores| astromine:tin_ore| astromine-foundations | +
-| :::| astromine:asteroid_tin_ore| astromine-foundations | +
-| :::| c:tin_ore| cotton-resources | +
-| :::| c:tin_nether_ore| cotton-resources | +
-| :::| c:tin_end_ore| cotton-resources | +
-| :::| indrev:tin_ore| indrev | +
-| :::| techreborn:tin_ore| techreborn | +
-| c:tin_plates| astromine:tin_plates| astromine-foundations | +
-| :::| c:tin_plate| cotton-resources | +
-| :::| indrev:tin_plate| indrev | +
-| :::| techreborn:tin_plate| techreborn | +
-| c:tin_small_dusts| techreborn:tin_small_dust| techreborn | +
-| c:tin_tiny_dusts| astromine:tin_tiny_dust| astromine-foundations | +
-| c:tin_wires| astromine:tin_wire| astromine-foundations | +
-| c:titanium_blocks| c:titanium_block| cotton-resources | +
-| :::| techreborn:titanium_storage_block| techreborn | +
-| c:titanium_dusts| c:titanium_dust| cotton-resources | +
-| :::| techreborn:titanium_dust| techreborn | +
-| c:titanium_gears| c:titanium_gear| cotton-resources | +
-| c:titanium_ingots| c:titanium_ingot| cotton-resources | +
-| :::| techreborn:titanium_ingot| techreborn | +
-| c:titanium_nuggets| c:titanium_nugget| cotton-resources | +
-| :::| techreborn:titanium_nugget| techreborn | +
-| c:titanium_ores| c:titanium_ore| cotton-resources | +
-| :::| c:titanium_nether_ore| cotton-resources | +
-| :::| c:titanium_end_ore| cotton-resources | +
-| c:titanium_plates| c:titanium_plate| cotton-resources | +
-| :::| techreborn:titanium_plate| techreborn | +
-| c:titanium_small_dusts| techreborn:titanium_small_dust| techreborn | +
-| c:tofu| epicurean:tofu| epicurean | +
-| 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:tourmaline| more_gems:tourmaline| more_gems | +
-| c:tungsten_blocks| c:tungsten_block| cotton-resources | +
-| :::| endreborn:tungsten_block| endreborn | +
-| :::| techreborn:tungsten_storage_block| techreborn | +
-| c:tungsten_dusts| c:tungsten_dust| cotton-resources | +
-| :::| techreborn:tungsten_dust| techreborn | +
-| c:tungsten_gears| c:tungsten_gear| cotton-resources | +
-| c:tungsten_ingots| c:tungsten_ingot| cotton-resources | +
-| :::| endreborn:tungsten_ingot| endreborn | +
-| :::| techreborn:tungsten_ingot| techreborn | +
-| c:tungsten_nuggets| c:tungsten_nugget| cotton-resources | +
-| :::| endreborn:tungsten_nugget| endreborn | +
-| :::| techreborn:tungsten_nugget| 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 | +
-| :::| techreborn:tungsten_ore| techreborn | +
-| c:tungsten_plates| c:tungsten_plate| cotton-resources | +
-| :::| techreborn:tungsten_plate| techreborn | +
-| c:tungsten_small_dusts| techreborn:tungsten_small_dust| techreborn | +
-| 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:univite_blocks| astromine:univite_block| astromine-foundations | +
-| c:univite_dusts| astromine:univite_dust| astromine-foundations | +
-| c:univite_gears| astromine:univite_gear| astromine-foundations | +
-| c:univite_ingots| astromine:univite_ingot| astromine-foundations | +
-| c:univite_nuggets| astromine:univite_nugget| astromine-foundations | +
-| c:univite_plates| astromine:univite_plates| astromine-foundations | +
-| c:univite_tiny_dusts| astromine:univite_tiny_dust| astromine-foundations | +
-| c:uranium_blocks| c:uranium_block| cotton-resources | +
-| c:uranium_dusts| c:uranium_dust| cotton-resources | +
-| c:uranium_gears| c:uranium_gear| cotton-resources | +
-| c:uranium_ingots| c:uranium_ingot| cotton-resources | +
-| c:uranium_nuggets| c:uranium_nugget| cotton-resources | +
-| c:uranium_ores| c:uranium_ore| cotton-resources | +
-| :::| c:uranium_nether_ore| cotton-resources | +
-| :::| c:uranium_end_ore| cotton-resources | +
-| c:uranium_plates| c:uranium_plate| cotton-resources | +
-| c:uvarovite_dusts| techreborn:uvarovite_dust| techreborn | +
-| c:uvarovite_small_dusts| techreborn:uvarovite_small_dust| techreborn | +
-| c:vegetables| minecraft:carrot| veggie_way | +
-| :::| minecraft:dried_kelp| veggie_way | +
-| :::| veggie_way:pumpkin_chunk| veggie_way | +
-| c:wheat_crops| minecraft:wheat| appliedenergistics2 | +
-| c:white_dyes| minecraft:white_dye| appliedenergistics2 | +
-| c:wood_gears| c:wood_gear| cotton-resources | +
-| c:wood_plates| techreborn:wood_plate| techreborn | +
-| c:wood_sticks| minecraft:stick| astromine-foundations | +
-| c:wooden_chests| minecraft:chest| appliedenergistics2, packages | +
-| :::| minecraft:trapped_chest| appliedenergistics2 | +
-| c:wooden_rods| minecraft:stick| appliedenergistics2 | +
-| c:yellow_dyes| minecraft:yellow_dye| appliedenergistics2 | +
-| 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:zinc_blocks| c:zinc_block| cotton-resources | +
-| :::| 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 | +
-| :::| techreborn:zinc_ingot| techreborn | +
-| c:zinc_nuggets| c:zinc_nugget| cotton-resources | +
-| :::| 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 | +
-| c:zinc_plates| c:zinc_plate| cotton-resources | +
-| :::| techreborn:zinc_plate| techreborn | +
-| c:zinc_small_dusts| techreborn:zinc_small_dust| techreborn |+
  
-===== Block Tags =====+Conventional tags are simply tags in the ''c'' namespace. These tags are expected to be used by multiple mods, so the name scheme for conventional tags should be consistent between mods. The general format for conventional tags is plural, with words separated with underscores. The following tags are good examples of this convention:
  
-^ Tag ID ^ Contained IDs ^ Defined by ^ +  * ''c:chests'' block tag 
-c:aluminum_blocks| c:aluminum_block| cotton-resources | +  * ''c:water_buckets'' item tag 
-| :::| techreborn:aluminum_storage_block| techreborn | +  * ''c:in_the_end'' biome tag
-c:aluminum_ores| 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-foundations | +
-| c:asterite_blocks| astromine:asterite_block| astromine-foundations | +
-| c:asterite_ores| astromine:asteroid_asterite_ore| astromine-foundations | +
-| c:basalt| minecraft:basalt| techreborn | +
-| :::| minecraft:polished_basalt| techreborn | +
-| c:bauxite_ores| techreborn:bauxite_ore| techreborn | +
-| c:bookshelves| minecraft:bookshelf| byg | +
-| :::| #byg:bookshelves| byg | +
-| c:brass_blocks| c:brass_block| cotton-resources | +
-| :::| techreborn:brass_storage_block| techreborn | +
-| c:bronze_blocks| astromine:bronze_block| astromine-foundations | +
-| :::| c:bronze_block| cotton-resources | +
-| :::| techreborn:bronze_storage_block| techreborn | +
-| c:chrome_blocks| techreborn:chrome_storage_block| techreborn | +
-| c:cinnabar_ores| techreborn:cinnabar_ore| techreborn | +
-| c:coal_coke_blocks| c:coal_coke_block| cotton-resources | +
-| c:coal_ores| astromine:asteroid_coal_ore| astromine-foundations | +
-| c:cobalt_blocks| c:cobalt_block| cotton-resources | +
-| c:cobalt_ores| c:cobalt_ore| cotton-resources | +
-| :::| c:cobalt_nether_ore| cotton-resources | +
-| :::| c:cobalt_end_ore| cotton-resources | +
-| c:cobblestones| minecraft:cobblestone| astromine-foundations | +
-| 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-foundations | +
-| :::| c:copper_block| cotton-resources | +
-| :::| techreborn:copper_storage_block| techreborn | +
-| c:copper_ore| mechanized:copper_ore| mechanized | +
-| c:copper_ores| astromine:copper_ore| astromine-foundations | +
-| :::| astromine:asteroid_copper_ore| astromine-foundations | +
-| :::| 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 | +
-| :::| techreborn:copper_ore| techreborn | +
-| c:diamond_ores| astromine:asteroid_diamond_ore| astromine-foundations | +
-| :::| minecraft:diamond_ore| astromine-foundations | +
-| c:electrum_blocks| astromine:electrum_block| astromine-foundations | +
-| :::| c:electrum_block| cotton-resources | +
-| :::| techreborn:electrum_storage_block| techreborn | +
-| c:emerald_ores| astromine:asteroid_emerald_ore| astromine-foundations | +
-| :::| minecraft:emerald_ore| astromine-foundations | +
-| c:end_stones| minecraft:end_stone| cotton-resources | +
-| c:fools_gold_blocks| astromine:fools_gold_block| astromine-foundations | +
-| c:galaxium_blocks| astromine:galaxium_block| astromine-foundations | +
-| c:galaxium_ores| astromine:asteroid_galaxium_ore| astromine-foundations | +
-| c:galena_ores| techreborn:galena_ore| techreborn | +
-| c:glass| minecraft:glass| artofalchemy | +
-| :::| minecraft:white_stained_glass| artofalchemy | +
-| :::| minecraft:orange_stained_glass| artofalchemy | +
-| :::| minecraft:magenta_stained_glass| artofalchemy | +
-| :::| minecraft:light_blue_stained_glass| artofalchemy | +
-| :::| minecraft:yellow_stained_glass| artofalchemy | +
-| :::| minecraft:lime_stained_glass| artofalchemy | +
-| :::| minecraft:pink_stained_glass| artofalchemy | +
-| :::| minecraft:gray_stained_glass| artofalchemy | +
-| :::| minecraft:light_gray_stained_glass| artofalchemy | +
-| :::| minecraft:cyan_stained_glass| artofalchemy | +
-| :::| minecraft:purple_stained_glass| artofalchemy | +
-| :::| minecraft:blue_stained_glass| artofalchemy | +
-| :::| minecraft:brown_stained_glass| artofalchemy | +
-| :::| minecraft:green_stained_glass| artofalchemy | +
-| :::| minecraft:red_stained_glass| artofalchemy | +
-| :::| minecraft:black_stained_glass| 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:gold_ores| astromine:asteroid_gold_ore| astromine-foundations | +
-| :::| #minecraft:gold_ores| astromine-foundations | +
-| 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 | +
-| 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_ores| astromine:asteroid_iron_ore| astromine-foundations | +
-| :::| minecraft:iron_ore| astromine-foundations | +
-| c:lapis_ores| astromine:asteroid_lapis_ore| astromine-foundations | +
-| :::| minecraft:lapis_ore| astromine-foundations | +
-| c:lead_blocks| astromine:lead_block| astromine-foundations | +
-| :::| c:lead_block| cotton-resources | +
-| :::| techreborn:lead_storage_block| techreborn | +
-| c:lead_ores| astromine:lead_ore| astromine-foundations | +
-| :::| astromine:asteroid_lead_ore| astromine-foundations | +
-| :::| c:lead_ore| cotton-resources | +
-| :::| c:lead_nether_ore| cotton-resources | +
-| :::| c:lead_end_ore| cotton-resources | +
-| :::| techreborn:lead_ore| techreborn | +
-| c:limestone| blockus:limestone| blockus | +
-| :::| blockus:limestone_bricks| blockus | +
-| :::| blockus:limestone_pillar| blockus | +
-| :::| blockus:chiseled_limestone| blockus | +
-| :::| blockus:limestone_circle_pavement| blockus | +
-| 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:metite_blocks| astromine:metite_block| astromine-foundations | +
-| c:metite_ores| astromine:meteor_metite_ore| astromine-foundations | +
-| :::| astromine:asteroid_metite_ore| astromine-foundations | +
-| c:natural_stones| minecraft:stone| cotton-resources | +
-| :::| minecraft:andesite| cotton-resources | +
-| :::| minecraft:diorite| cotton-resources | +
-| :::| minecraft:granite| cotton-resources | +
-| c:netherracks| minecraft:netherrack| cotton-resources | +
-| c:nickel_blocks| techreborn:nickel_storage_block| techreborn | +
-| c:osmium_blocks| c:osmium_block| cotton-resources | +
-| c:osmium_ores| c:osmium_ore| cotton-resources | +
-| :::| c:osmium_nether_ore| cotton-resources | +
-| :::| c:osmium_end_ore| cotton-resources | +
-| c:palladium_blocks| c:palladium_block| cotton-resources | +
-| c:palladium_ores| c:palladium_ore| cotton-resources | +
-| :::| c:palladium_nether_ore| cotton-resources | +
-| :::| c:palladium_end_ore| cotton-resources | +
-| 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 | +
-| c:platinum_blocks| c:platinum_block| cotton-resources | +
-| :::| techreborn:platinum_storage_block| techreborn | +
-| c:platinum_ores| c:platinum_ore| cotton-resources | +
-| :::| c:platinum_nether_ore| cotton-resources | +
-| :::| c:platinum_end_ore| cotton-resources | +
-| c:plutonium_blocks| c:plutonium_block| cotton-resources | +
-| c:pyrite_blocks| #c:fools_gold_blocks| astromine-foundations | +
-| c:pyrite_ores| techreborn:pyrite_ore| techreborn | +
-| c:quartz_ores| minecraft:nether_quartz_ore| astromine-foundations | +
-| c:red_garnet_blocks| techreborn:red_garnet_storage_block| techreborn | +
-| c:redstone_ores| astromine:asteroid_redstone_ore| astromine-foundations | +
-| :::| minecraft:redstone_ore| astromine-foundations | +
-| c:refined_iron_blocks| techreborn:refined_iron_storage_block| techreborn | +
-| c:rose_gold_blocks| astromine:rose_gold_block| astromine-foundations | +
-| c:ruby_blocks| c:ruby_block| cotton-resources | +
-| :::| earthtojavamobs:ruby_block| earthtojavamobs | +
-| :::| 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 | +
-| :::| earthtojavamobs:ruby_ore| earthtojavamobs | +
-| :::| techreborn:ruby_ore| techreborn | +
-| 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 | +
-| c:sheldonite_ores| techreborn:sheldonite_ore| techreborn | +
-| c:silver_blocks| astromine:silver_block| astromine-foundations | +
-| :::| c:silver_block| cotton-resources | +
-| :::| techreborn:silver_storage_block| techreborn | +
-| c:silver_ores| astromine:silver_ore| astromine-foundations | +
-| :::| astromine:asteroid_silver_ore| astromine-foundations | +
-| :::| c:silver_ore| cotton-resources | +
-| :::| c:silver_nether_ore| cotton-resources | +
-| :::| c:silver_end_ore| cotton-resources | +
-| :::| techreborn:silver_ore| techreborn | +
-| c:sodalite_ores| techreborn:sodalite_ore| techreborn | +
-| c:sphalerite_ores| techreborn:sphalerite_ore| techreborn | +
-| c:steel_blocks| astromine:steel_block| astromine-foundations | +
-| :::| c:steel_block| cotton-resources | +
-| :::| techreborn:steel_storage_block| techreborn | +
-| c:stellum_blocks| astromine:stellum_block| astromine-foundations | +
-| c:stellum_ores| astromine:asteroid_stellum_ore| astromine-foundations | +
-| c:sterling_silver_blocks| astromine:sterling_silver_block| astromine-foundations | +
-| 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:terracotta| 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:thorium_blocks| c:thorium_block| cotton-resources | +
-| c:tin_blocks| astromine:tin_block| astromine-foundations | +
-| :::| c:tin_block| cotton-resources | +
-| :::| techreborn:tin_storage_block| techreborn | +
-| c:tin_ores| astromine:tin_ore| astromine-foundations | +
-| :::| astromine:asteroid_tin_ore| astromine-foundations | +
-| :::| c:tin_ore| cotton-resources | +
-| :::| c:tin_nether_ore| cotton-resources | +
-| :::| c:tin_end_ore| cotton-resources | +
-| :::| indrev:tin_ore| indrev | +
-| :::| techreborn: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 | +
-| 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:tungsten_blocks| c:tungsten_block| cotton-resources | +
-| :::| endreborn:tungsten_block| endreborn | +
-| :::| 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 | +
-| :::| techreborn:tungsten_ore| techreborn | +
-| c:tungstensteel_blocks| techreborn:tungstensteel_storage_block| techreborn | +
-| c:univite_blocks| astromine:univite_block| astromine-foundations | +
-| c:uranium_blocks| c:uranium_block| cotton-resources | +
-| c:uranium_ores| c:uranium_ore| cotton-resources | +
-| :::| c:uranium_nether_ore| cotton-resources | +
-| :::| c:uranium_end_ore| cotton-resources | +
-| c:yellow_garnet_blocks| techreborn:yellow_garnet_storage_block| techreborn | +
-| c:zinc_blocks| c:zinc_block| cotton-resources | +
-| :::| 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 |+
  
-===== Fluid Tags =====+A flat structure is used rather than a hierarchal structure. For example, ''c:iron_ores'' is preferred over ''c:ores/iron''.
  
-^ Tag ID ^ Contained IDs ^ Defined by ^+==== Existing conventional tags =====
  
-===== Sources =====+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]].
  
-^ Mod ID ^ Name ^ Version ^ URL ^ +A (possibly outdated) directory of general known conventional tags is available on [[community:common_tags|a separate page]].
-| astromine-foundations | Astromine: Foundations | 1.7.0 | https://www.curseforge.com/minecraft/mc-mods/astromine-fabric | +
-| resourceful_tools | Resourceful Tools | 1.0.33 | https://www.curseforge.com/minecraft/mc-mods/resource-tools-fabric | +
-| artofalchemy | Art of Alchemy | 1.0.0-rc2+1.16.1 | https://www.curseforge.com/minecraft/mc-mods/art-of-alchemy | +
-| endreborn | End: Rebellion | 1.7 | https://github.com/EleC0TroN/ER | +
-| appliedenergistics2 | Applied Energistics 2 | 8.1.0-alpha.2 | https://ae-mod.info/+
-| cinderscapes | Cinderscapes | 1.0.7+build.43-1.16.1 | https://www.curseforge.com/minecraft/mc-mods/cinderscapes | +
-| epicurean | Epicurean | 2.2.4+1.15.2 | https://www.curseforge.com/minecraft/mc-mods/epicurean | +
-| indrev | Industrial Revolution | 1.5.1-BETA | https://github.com/StupPlayer/Industrial-Revolution | +
-| ironchest | Iron Chests | 1.1.2 | https://www.curseforge.com/minecraft/mc-mods/iron-chests-fabric | +
-| adorn | Adorn | 1.11.0+1.16.2 | https://minecraft.curseforge.com/projects/adorn | +
-| more_gems | More Gems | 1.0.48 | https://www.curseforge.com/minecraft/mc-mods/more-gems-fabric | +
-| byg | BYG | 1.0.1 | https://biomesyougo.weebly.com/+
-| blockus | Blockus | 1.6.3 | https://www.curseforge.com/minecraft/mc-mods/blockus | +
-| xb | Exotic Blocks | 1.6.149 | https://github.com/grondag/exotic-blocks | +
-| earthtojavamobs | Earth2Java | 1.2.0+1.16.2 | https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric | +
-| mechanized | Mechanized | 1.9.6 | https://www.curseforge.com/minecraft/mc-mods/mechanized-steam-power | +
-| cotton-resources | Cotton Resources | 1.7.1 | https://github.com/CottonMC/CottonResources | +
-| veggie_way | The Veggie Way | 1.0.29 | https://www.curseforge.com/minecraft/mc-mods/veggieway-fabric | +
-| techreborn | Tech Reborn | 3.5.1+build.101 | https://www.curseforge.com/minecraft/mc-mods/techreborn | +
-| packages | Packages | 1.1 | https://highlysuspect.agency | +
-| expandedstorage | ExpandedStorage | 5.4.20 | https://www.curseforge.com/minecraft/mc-mods/expanded-storage-fabric | +
-| flonters | Flonters | 1.1.0+1.16.1 | https://www.curseforge.com/minecraft/mc-mods/flonters |+
  
tutorial/tags.1598178333.txt.gz · Last modified: 2020/08/23 10:25 by user11681