Package appeng.api.ids
Class AETags
java.lang.Object
appeng.api.ids.AETags
Tags that AE uses for functional purposes. For recipe tags that you may use in your recipe data generation, please
see the non-api class ConventionTags.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final net.minecraft.tags.TagKey
<net.minecraft.world.level.block.Block> Contains blocks that are blacklisted from being picked up by an item annihilation plane.static final net.minecraft.tags.TagKey
<net.minecraft.world.level.material.Fluid> Contains items that are blacklisted from being picked up by a fluid annihilation plane.static final net.minecraft.tags.TagKey
<net.minecraft.world.item.Item> Contains items that are blacklisted from being picked up by an item annihilation plane.static final net.minecraft.tags.TagKey
<net.minecraft.world.level.block.Block> Block tag used to explicitly whitelist blocks for use in facades, even if they don't meet the general criteria for being used in facades.static final net.minecraft.tags.TagKey
<net.minecraft.world.level.block.Block> Crystal growth accelerators will trigger additional random ticks for blocks in that tag, regardless of what the blocks are.static net.minecraft.tags.TagKey
<net.minecraft.world.item.Item> Used by the quartz knife to decide which ingots can be crafted into nameplates, as well as the crafting recipe for cable anchors.static final net.minecraft.tags.TagKey
<net.minecraft.world.level.block.Block> Contains blocks that are blacklisted from being moved in and out of spatial storage. -
Method Summary
-
Field Details
-
SPATIAL_BLACKLIST
public static final net.minecraft.tags.TagKey<net.minecraft.world.level.block.Block> SPATIAL_BLACKLISTContains blocks that are blacklisted from being moved in and out of spatial storage. To blacklist block entities from being moved, you need to add the hosting block to this tag. -
ANNIHILATION_PLANE_BLOCK_BLACKLIST
public static final net.minecraft.tags.TagKey<net.minecraft.world.level.block.Block> ANNIHILATION_PLANE_BLOCK_BLACKLISTContains blocks that are blacklisted from being picked up by an item annihilation plane. -
ANNIHILATION_PLANE_ITEM_BLACKLIST
public static final net.minecraft.tags.TagKey<net.minecraft.world.item.Item> ANNIHILATION_PLANE_ITEM_BLACKLISTContains items that are blacklisted from being picked up by an item annihilation plane. -
ANNIHILATION_PLANE_FLUID_BLACKLIST
public static final net.minecraft.tags.TagKey<net.minecraft.world.level.material.Fluid> ANNIHILATION_PLANE_FLUID_BLACKLISTContains items that are blacklisted from being picked up by a fluid annihilation plane. -
METAL_INGOTS
public static net.minecraft.tags.TagKey<net.minecraft.world.item.Item> METAL_INGOTSUsed by the quartz knife to decide which ingots can be crafted into nameplates, as well as the crafting recipe for cable anchors. -
FACADE_BLOCK_WHITELIST
public static final net.minecraft.tags.TagKey<net.minecraft.world.level.block.Block> FACADE_BLOCK_WHITELISTBlock tag used to explicitly whitelist blocks for use in facades, even if they don't meet the general criteria for being used in facades. -
GROWTH_ACCELERATABLE
public static final net.minecraft.tags.TagKey<net.minecraft.world.level.block.Block> GROWTH_ACCELERATABLECrystal growth accelerators will trigger additional random ticks for blocks in that tag, regardless of what the blocks are. By default, includesc:budding_blocks
which includes budding amethyst and the various budding certus quartz blocks.
-