Class Item
- All Implemented Interfaces:
ItemConvertible
,ToggleableFeature
- Direct Known Subclasses:
AirBlockItem
,AnimalArmorItem
,ArmorItem
,ArmorStandItem
,ArrowItem
,BannerPatternItem
,BlockItem
,BoatItem
,BoneMealItem
,BrushItem
,BucketItem
,BundleItem
,CompassItem
,DebugStickItem
,DecorationItem
,DiscFragmentItem
,DyeItem
,EggItem
,EmptyMapItem
,EndCrystalItem
,EnderEyeItem
,EnderPearlItem
,ExperienceBottleItem
,FilledMapItem
,FireChargeItem
,FireworkRocketItem
,FireworkStarItem
,FishingRodItem
,FlintAndSteelItem
,GlassBottleItem
,GlowInkSacItem
,GoatHornItem
,HoneycombItem
,InkSacItem
,KnowledgeBookItem
,LeadItem
,MaceItem
,MinecartItem
,MiningToolItem
,NameTagItem
,OnAStickItem
,PotionItem
,RangedWeaponItem
,SaddleItem
,ShearsItem
,ShieldItem
,SmithingTemplateItem
,SnowballItem
,SpawnEggItem
,SpyglassItem
,SwordItem
,TridentItem
,WindChargeItem
,WritableBookItem
,WrittenBookItem
Like Block
, this class handles logics for a type of item, and does not
hold any data. Any data about a particular stack of item in a world, such as item count,
is held by an ItemStack
which represents a stack of specific item. Therefore,
there is one - and only one - instance of Item for one item (like apples, oak planks, etc),
while there can be infinite amounts of ItemStack
instances. This also means that
items themselves cannot hold NBT data.
Items with no custom behavior, like diamonds, can call the constructor of Item
directly. If a custom behavior is needed, this should be subclassed. Items also have
to be registered in the Registries.ITEM
registry.
Many methods of this class are called on both the logical client and logical server,
so take caution when using those methods. The logical side can be checked using
World.isClient
. See also
the Fabric Wiki article. It is also important that methods that take LivingEntity
as an argument can be called by non-players (such as foxes eating food), which causes
a crash if the code performs unchecked casting.
- See Also:
- Mappings:
Namespace Name named net/minecraft/item/Item
intermediary net/minecraft/class_1792
official cxk
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Item settings configure behaviors common to all items, such as the stack's max count.static interface
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Identifier
static final Identifier
private final ComponentMap
static final int
static final com.mojang.serialization.Codec
<RegistryEntry<Item>> static final int
private static final Logger
static final int
private final RegistryEntry.Reference
<Item> private final FeatureSet
protected final String
Fields inherited from interface net.minecraft.resource.featuretoggle.ToggleableFeature
FEATURE_ENABLED_REGISTRY_KEYS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
appendTooltip
(ItemStack stack, Item.TooltipContext context, List<Text> tooltip, TooltipType type) Called by the client to append tooltips to an item.asItem()
Gets this object in its item form.static Item
byRawId
(int id) Returns the item from its raw ID.boolean
boolean
canMine
(BlockState state, World world, BlockPos pos, PlayerEntity miner) Returns whether a player can break a block while holding the item.finishUsing
(ItemStack stack, World world, LivingEntity user) Called when an entity finishes using the item, such as eating food or drinking a potion.static Item
Deprecated.float
getBonusAttackDamage
(Entity target, float baseAttackDamage, DamageSource damageSource) getDamageSource
(LivingEntity user) Returns the default stack for this item.int
getItemBarColor
(ItemStack stack) Returns the RGB color of the item bar, usually used for durability display.int
getItemBarStep
(ItemStack stack) Returns the step, or the length of the colored area of the item bar, forstack
.int
Returns the maximum stack count of any ItemStack with this item.int
getMaxUseTime
(ItemStack stack, LivingEntity user) Returns the maximum use (right-click) time of this item, in ticks.float
getMiningSpeed
(ItemStack stack, BlockState state) final Text
getName()
static int
Returns the raw ID ofitem
, or 0 if passednull
.final ItemStack
Gets the remainder item that should be left behind when this item is used as a crafting ingredient.Deprecated.getTooltipData
(ItemStack stack) final String
Gets the translation key of this item.getUseAction
(ItemStack stack) Returns the use action the item should perform.boolean
Checks if the glint effect should be applied when the item is rendered.void
inventoryTick
(ItemStack stack, World world, Entity entity, int slot, boolean selected) Called on both the client and the server every tick if the item is in the player's inventory.boolean
isCorrectForDrops
(ItemStack stack, BlockState state) boolean
isItemBarVisible
(ItemStack stack) Returns whether to show the item bar forstack
.boolean
isUsedOnRelease
(ItemStack stack) boolean
onClicked
(ItemStack stack, ItemStack otherStack, Slot slot, ClickType clickType, PlayerEntity player, StackReference cursorStackReference) Called when the item atslot
gets clicked by the cursor holdingotherStack
.void
Called when the item is made by crafting, smelting, smithing, etc.void
onCraftByPlayer
(ItemStack stack, World world, PlayerEntity player) Called when a player acquires the item by crafting, smelting, smithing, etc.void
onItemEntityDestroyed
(ItemEntity entity) Called on the server when anItemEntity
holding this item gets destroyed.boolean
onStackClicked
(ItemStack stack, Slot slot, ClickType clickType, PlayerEntity player) Called when the item at the cursor is clicked atslot
.boolean
onStoppedUsing
(ItemStack stack, World world, LivingEntity user, int remainingUseTicks) Called on both the client and the server when an entity stops using an item before reaching the maximum use time.void
postDamageEntity
(ItemStack stack, LivingEntity target, LivingEntity attacker) boolean
postHit
(ItemStack stack, LivingEntity target, LivingEntity attacker) Called on the server when the item is used to hit an entity.boolean
postMine
(ItemStack stack, World world, BlockState state, BlockPos pos, LivingEntity miner) Called on the server when the item is used to break a block.void
postProcessComponents
(ItemStack stack) Processes the components applied to an item stack of this item.protected static BlockHitResult
raycast
(World world, PlayerEntity player, RaycastContext.FluidHandling fluidHandling) toString()
void
usageTick
(World world, LivingEntity user, ItemStack stack, int remainingUseTicks) Called on both the server and the client every tick while an entity uses the item.use
(World world, PlayerEntity user, Hand hand) Called when the player uses (or starts using) the item.useOnBlock
(ItemUsageContext context) Called when an item is used on a block.useOnEntity
(ItemStack stack, PlayerEntity user, LivingEntity entity, Hand hand) Called on both the client and the server when a player uses the item on an entity.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.resource.featuretoggle.ToggleableFeature
isEnabled
-
Field Details
-
ENTRY_CODEC
- Mappings:
Namespace Name Mixin selector named ENTRY_CODEC
Lnet/minecraft/item/Item;ENTRY_CODEC:Lcom/mojang/serialization/Codec;
intermediary field_54952
Lnet/minecraft/class_1792;field_54952:Lcom/mojang/serialization/Codec;
official e
Lcxk;e:Lcom/mojang/serialization/Codec;
-
LOGGER
- Mappings:
Namespace Name Mixin selector named LOGGER
Lnet/minecraft/item/Item;LOGGER:Lorg/slf4j/Logger;
intermediary field_27017
Lnet/minecraft/class_1792;field_27017:Lorg/slf4j/Logger;
official a
Lcxk;a:Lorg/slf4j/Logger;
-
BLOCK_ITEMS
- Mappings:
Namespace Name Mixin selector named BLOCK_ITEMS
Lnet/minecraft/item/Item;BLOCK_ITEMS:Ljava/util/Map;
intermediary field_8003
Lnet/minecraft/class_1792;field_8003:Ljava/util/Map;
official f
Lcxk;f:Ljava/util/Map;
-
BASE_ATTACK_DAMAGE_MODIFIER_ID
- Mappings:
Namespace Name Mixin selector named BASE_ATTACK_DAMAGE_MODIFIER_ID
Lnet/minecraft/item/Item;BASE_ATTACK_DAMAGE_MODIFIER_ID:Lnet/minecraft/util/Identifier;
intermediary field_8006
Lnet/minecraft/class_1792;field_8006:Lnet/minecraft/class_2960;
official g
Lcxk;g:Lalz;
-
BASE_ATTACK_SPEED_MODIFIER_ID
- Mappings:
Namespace Name Mixin selector named BASE_ATTACK_SPEED_MODIFIER_ID
Lnet/minecraft/item/Item;BASE_ATTACK_SPEED_MODIFIER_ID:Lnet/minecraft/util/Identifier;
intermediary field_8001
Lnet/minecraft/class_1792;field_8001:Lnet/minecraft/class_2960;
official h
Lcxk;h:Lalz;
-
DEFAULT_MAX_COUNT
public static final int DEFAULT_MAX_COUNT- See Also:
- Mappings:
Namespace Name Mixin selector named DEFAULT_MAX_COUNT
Lnet/minecraft/item/Item;DEFAULT_MAX_COUNT:I
intermediary field_30887
Lnet/minecraft/class_1792;field_30887:I
official i
Lcxk;i:I
-
MAX_MAX_COUNT
public static final int MAX_MAX_COUNT- See Also:
- Mappings:
Namespace Name Mixin selector named MAX_MAX_COUNT
Lnet/minecraft/item/Item;MAX_MAX_COUNT:I
intermediary field_49998
Lnet/minecraft/class_1792;field_49998:I
official j
Lcxk;j:I
-
ITEM_BAR_STEPS
public static final int ITEM_BAR_STEPS- See Also:
- Mappings:
Namespace Name Mixin selector named ITEM_BAR_STEPS
Lnet/minecraft/item/Item;ITEM_BAR_STEPS:I
intermediary field_30889
Lnet/minecraft/class_1792;field_30889:I
official k
Lcxk;k:I
-
registryEntry
- Mappings:
Namespace Name Mixin selector named registryEntry
Lnet/minecraft/item/Item;registryEntry:Lnet/minecraft/registry/entry/RegistryEntry$Reference;
intermediary field_36401
Lnet/minecraft/class_1792;field_36401:Lnet/minecraft/class_6880$class_6883;
official b
Lcxk;b:Ljq$c;
-
components
- Mappings:
Namespace Name Mixin selector named components
Lnet/minecraft/item/Item;components:Lnet/minecraft/component/ComponentMap;
intermediary field_49263
Lnet/minecraft/class_1792;field_49263:Lnet/minecraft/class_9323;
official c
Lcxk;c:Lkq;
-
recipeRemainder
- Mappings:
Namespace Name Mixin selector named recipeRemainder
Lnet/minecraft/item/Item;recipeRemainder:Lnet/minecraft/item/Item;
intermediary field_8008
Lnet/minecraft/class_1792;field_8008:Lnet/minecraft/class_1792;
official d
Lcxk;d:Lcxk;
-
translationKey
- Mappings:
Namespace Name Mixin selector named translationKey
Lnet/minecraft/item/Item;translationKey:Ljava/lang/String;
intermediary field_8014
Lnet/minecraft/class_1792;field_8014:Ljava/lang/String;
official l
Lcxk;l:Ljava/lang/String;
-
requiredFeatures
- Mappings:
Namespace Name Mixin selector named requiredFeatures
Lnet/minecraft/item/Item;requiredFeatures:Lnet/minecraft/resource/featuretoggle/FeatureSet;
intermediary field_40209
Lnet/minecraft/class_1792;field_40209:Lnet/minecraft/class_7699;
official m
Lcxk;m:Lcss;
-
-
Constructor Details
-
Item
- Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/item/Item;<init>(Lnet/minecraft/item/Item$Settings;)V
intermediary <init>
Lnet/minecraft/class_1792;<init>(Lnet/minecraft/class_1792$class_1793;)V
official <init>
Lcxk;<init>(Lcxk$a;)V
-
-
Method Details
-
getRawId
Returns the raw ID ofitem
, or 0 if passednull
.- Returns:
- the raw ID of
item
, or 0 if passednull
- Mappings:
Namespace Name Mixin selector named getRawId
Lnet/minecraft/item/Item;getRawId(Lnet/minecraft/item/Item;)I
intermediary method_7880
Lnet/minecraft/class_1792;method_7880(Lnet/minecraft/class_1792;)I
official a
Lcxk;a(Lcxk;)I
-
byRawId
Returns the item from its raw ID.- Returns:
- the item from its raw ID
- Mappings:
Namespace Name Mixin selector named byRawId
Lnet/minecraft/item/Item;byRawId(I)Lnet/minecraft/item/Item;
intermediary method_7875
Lnet/minecraft/class_1792;method_7875(I)Lnet/minecraft/class_1792;
official b
Lcxk;b(I)Lcxk;
-
fromBlock
Deprecated.Please useBlock.asItem()
- Mappings:
Namespace Name Mixin selector named fromBlock
Lnet/minecraft/item/Item;fromBlock(Lnet/minecraft/block/Block;)Lnet/minecraft/item/Item;
intermediary method_7867
Lnet/minecraft/class_1792;method_7867(Lnet/minecraft/class_2248;)Lnet/minecraft/class_1792;
official a
Lcxk;a(Ldkl;)Lcxk;
-
getRegistryEntry
Deprecated.- Mappings:
Namespace Name Mixin selector named getRegistryEntry
Lnet/minecraft/item/Item;getRegistryEntry()Lnet/minecraft/registry/entry/RegistryEntry$Reference;
intermediary method_40131
Lnet/minecraft/class_1792;method_40131()Lnet/minecraft/class_6880$class_6883;
official f
Lcxk;f()Ljq$c;
-
getComponents
- Mappings:
Namespace Name Mixin selector named getComponents
Lnet/minecraft/item/Item;getComponents()Lnet/minecraft/component/ComponentMap;
intermediary method_57347
Lnet/minecraft/class_1792;method_57347()Lnet/minecraft/class_9323;
official g
Lcxk;g()Lkq;
-
getMaxCount
public int getMaxCount()Returns the maximum stack count of any ItemStack with this item. Can be configured throughsettings.maxCount()
.- Returns:
- the maximum stack count of any ItemStack with this item
- Mappings:
Namespace Name Mixin selector named getMaxCount
Lnet/minecraft/item/Item;getMaxCount()I
intermediary method_7882
Lnet/minecraft/class_1792;method_7882()I
official h
Lcxk;h()I
-
usageTick
Called on both the server and the client every tick while an entity uses the item. Currently used byCrossbowItem
to charge the crossbow. If this is overridden,getMaxUseTime(net.minecraft.item.ItemStack, net.minecraft.entity.LivingEntity)
should also be overridden to return a positive value.- Parameters:
remainingUseTicks
- how long it's left until the entity finishes using the item, in ticks- See Also:
- Mappings:
Namespace Name Mixin selector named usageTick
Lnet/minecraft/item/Item;usageTick(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/item/ItemStack;I)V
intermediary method_7852
Lnet/minecraft/class_1792;method_7852(Lnet/minecraft/class_1937;Lnet/minecraft/class_1309;Lnet/minecraft/class_1799;I)V
official a
Lcxk;a(Ldhh;Lbwf;Lcxo;I)V
-
onItemEntityDestroyed
Called on the server when anItemEntity
holding this item gets destroyed. This can happen due to fire, lava, cactus, explosion, etc. Items that can hold other items should override this to drop its contents.- See Also:
- Mappings:
Namespace Name Mixin selector named onItemEntityDestroyed
Lnet/minecraft/item/Item;onItemEntityDestroyed(Lnet/minecraft/entity/ItemEntity;)V
intermediary method_33261
Lnet/minecraft/class_1792;method_33261(Lnet/minecraft/class_1542;)V
official a
Lcxk;a(Lcma;)V
-
postProcessComponents
Processes the components applied to an item stack of this item.This is only used in vanilla to process player head component data.
- Mappings:
Namespace Name Mixin selector named postProcessComponents
Lnet/minecraft/item/Item;postProcessComponents(Lnet/minecraft/item/ItemStack;)V
intermediary method_7860
Lnet/minecraft/class_1792;method_7860(Lnet/minecraft/class_1799;)V
official l
Lcxk;l(Lcxo;)V
-
canMine
Returns whether a player can break a block while holding the item.This is to check whether the player can start breaking the block in the first place; this does not check if the item is a correct tool to mine the block. Melee weapons should override this to return
false
, unless it is also intended to be used as a tool.- Returns:
- whether a player can break a block while holding the item
- Mappings:
Namespace Name Mixin selector named canMine
Lnet/minecraft/item/Item;canMine(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/PlayerEntity;)Z
intermediary method_7885
Lnet/minecraft/class_1792;method_7885(Lnet/minecraft/class_2680;Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Lnet/minecraft/class_1657;)Z
official a
Lcxk;a(Ldxu;Ldhh;Ljh;Lcpw;)Z
-
asItem
Gets this object in its item form.- Specified by:
asItem
in interfaceItemConvertible
- Mappings:
Namespace Name Mixin selector named asItem
Lnet/minecraft/item/ItemConvertible;asItem()Lnet/minecraft/item/Item;
intermediary method_8389
Lnet/minecraft/class_1935;method_8389()Lnet/minecraft/class_1792;
official j
Ldhg;j()Lcxk;
-
useOnBlock
Called when an item is used on a block.This method is called on both the logical client and logical server, so take caution when using this method. The logical side can be checked using
context.getWorld().isClient()
.- Parameters:
context
- the usage context- Returns:
- an action result that specifies if using the item on a block was successful.
- Mappings:
Namespace Name Mixin selector named useOnBlock
Lnet/minecraft/item/Item;useOnBlock(Lnet/minecraft/item/ItemUsageContext;)Lnet/minecraft/util/ActionResult;
intermediary method_7884
Lnet/minecraft/class_1792;method_7884(Lnet/minecraft/class_1838;)Lnet/minecraft/class_1269;
official a
Lcxk;a(Ldbh;)Lbti;
-
getMiningSpeed
- Mappings:
Namespace Name Mixin selector named getMiningSpeed
Lnet/minecraft/item/Item;getMiningSpeed(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;)F
intermediary method_58404
Lnet/minecraft/class_1792;method_58404(Lnet/minecraft/class_1799;Lnet/minecraft/class_2680;)F
official a
Lcxk;a(Lcxo;Ldxu;)F
-
use
Called when the player uses (or starts using) the item. The use action, by default, is bound to the right mouse button. This method checks the player's hunger when the item is a food, and will pass in all other cases by default.If the item can be used for multiple ticks, then this will only be called when the player starts using it. After that,
usageTick(net.minecraft.world.World, net.minecraft.entity.LivingEntity, net.minecraft.item.ItemStack, int)
is called every tick until the player finishes using the item.This method is called on both the logical client and logical server, so take caution when overriding this method. The logical side can be checked using
world.isClient()
.- Parameters:
world
- the world the item was used inuser
- the player who used the itemhand
- the hand used- Returns:
- a typed action result that specifies whether using the item was successful. The action result contains the new item stack that the player's hand will be set to.
- Mappings:
Namespace Name Mixin selector named use
Lnet/minecraft/item/Item;use(Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResult;
intermediary method_7836
Lnet/minecraft/class_1792;method_7836(Lnet/minecraft/class_1937;Lnet/minecraft/class_1657;Lnet/minecraft/class_1268;)Lnet/minecraft/class_1269;
official a
Lcxk;a(Ldhh;Lcpw;Lbth;)Lbti;
-
finishUsing
Called when an entity finishes using the item, such as eating food or drinking a potion. This method handles eating food by default.This method is called on both the logical client and logical server, so take caution when overriding this method. The logical side can be checked using
World.isClient
.user
might not be a player in some cases. For example, this occurs when a fox eats food or when a wandering trader drinks milk.- Returns:
- the new item stack after using the item
- Mappings:
Namespace Name Mixin selector named finishUsing
Lnet/minecraft/item/Item;finishUsing(Lnet/minecraft/item/ItemStack;Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;)Lnet/minecraft/item/ItemStack;
intermediary method_7861
Lnet/minecraft/class_1792;method_7861(Lnet/minecraft/class_1799;Lnet/minecraft/class_1937;Lnet/minecraft/class_1309;)Lnet/minecraft/class_1799;
official a
Lcxk;a(Lcxo;Ldhh;Lbwf;)Lcxo;
-
isItemBarVisible
Returns whether to show the item bar forstack
.Item bar is usually used to display durability of the stack.
When overriding this,
getItemBarStep(net.minecraft.item.ItemStack)
andgetItemBarColor(net.minecraft.item.ItemStack)
should also be overridden.- Returns:
- whether to show the item bar for
stack
- Mappings:
Namespace Name Mixin selector named isItemBarVisible
Lnet/minecraft/item/Item;isItemBarVisible(Lnet/minecraft/item/ItemStack;)Z
intermediary method_31567
Lnet/minecraft/class_1792;method_31567(Lnet/minecraft/class_1799;)Z
official d
Lcxk;d(Lcxo;)Z
-
getItemBarStep
Returns the step, or the length of the colored area of the item bar, forstack
.This is between
0.0f
and {code 13.0f}. By default, this isdurability * 13.0f / maxDurability
.When overriding this,
isItemBarVisible(net.minecraft.item.ItemStack)
andgetItemBarColor(net.minecraft.item.ItemStack)
should also be overridden.- Returns:
- the step, or the length of the colored area of the item bar, for
stack
- Mappings:
Namespace Name Mixin selector named getItemBarStep
Lnet/minecraft/item/Item;getItemBarStep(Lnet/minecraft/item/ItemStack;)I
intermediary method_31569
Lnet/minecraft/class_1792;method_31569(Lnet/minecraft/class_1799;)I
official e
Lcxk;e(Lcxo;)I
-
getItemBarColor
Returns the RGB color of the item bar, usually used for durability display.When overriding this,
isItemBarVisible(net.minecraft.item.ItemStack)
andgetItemBarStep(net.minecraft.item.ItemStack)
should also be overridden.- Returns:
- the RGB color of the item bar, usually used for durability display
- Mappings:
Namespace Name Mixin selector named getItemBarColor
Lnet/minecraft/item/Item;getItemBarColor(Lnet/minecraft/item/ItemStack;)I
intermediary method_31571
Lnet/minecraft/class_1792;method_31571(Lnet/minecraft/class_1799;)I
official f
Lcxk;f(Lcxo;)I
-
onStackClicked
Called when the item at the cursor is clicked atslot
.While this method is usually called on the logical server, it can also be called on the logical client, so take caution when overriding this method. The logical side can be checked using
World.isClient
.For example, this is called on
BundleItem
when the cursor holds a bundle and the player clicks on the slot.- Parameters:
stack
- the stack the cursor holdsslot
- the clicked slot- Returns:
- whether the action was successful
- Mappings:
Namespace Name Mixin selector named onStackClicked
Lnet/minecraft/item/Item;onStackClicked(Lnet/minecraft/item/ItemStack;Lnet/minecraft/screen/slot/Slot;Lnet/minecraft/util/ClickType;Lnet/minecraft/entity/player/PlayerEntity;)Z
intermediary method_31565
Lnet/minecraft/class_1792;method_31565(Lnet/minecraft/class_1799;Lnet/minecraft/class_1735;Lnet/minecraft/class_5536;Lnet/minecraft/class_1657;)Z
official a
Lcxk;a(Lcxo;Lcuy;Lctl;Lcpw;)Z
-
onClicked
public boolean onClicked(ItemStack stack, ItemStack otherStack, Slot slot, ClickType clickType, PlayerEntity player, StackReference cursorStackReference) Called when the item atslot
gets clicked by the cursor holdingotherStack
.While this method is usually called on the logical server, it can also be called on the logical client, so take caution when overriding this method. The logical side can be checked using
World.isClient
.For example, this is called on
BundleItem
when the cursor holds an item and the player clicks on the slot that has a bundle.- Parameters:
stack
- the slot's stackotherStack
- the stack the cursor holdsslot
- the clicked slot- Returns:
- whether the action was successful
- Mappings:
Namespace Name Mixin selector named onClicked
Lnet/minecraft/item/Item;onClicked(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lnet/minecraft/screen/slot/Slot;Lnet/minecraft/util/ClickType;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/inventory/StackReference;)Z
intermediary method_31566
Lnet/minecraft/class_1792;method_31566(Lnet/minecraft/class_1799;Lnet/minecraft/class_1799;Lnet/minecraft/class_1735;Lnet/minecraft/class_5536;Lnet/minecraft/class_1657;Lnet/minecraft/class_5630;)Z
official a
Lcxk;a(Lcxo;Lcxo;Lcuy;Lctl;Lcpw;Lbwx;)Z
-
getBonusAttackDamage
- Mappings:
Namespace Name Mixin selector named getBonusAttackDamage
Lnet/minecraft/item/Item;getBonusAttackDamage(Lnet/minecraft/entity/Entity;FLnet/minecraft/entity/damage/DamageSource;)F
intermediary method_58403
Lnet/minecraft/class_1792;method_58403(Lnet/minecraft/class_1297;FLnet/minecraft/class_1282;)F
official a
Lcxk;a(Lbvj;FLbtz;)F
-
getDamageSource
- Mappings:
Namespace Name Mixin selector named getDamageSource
Lnet/minecraft/item/Item;getDamageSource(Lnet/minecraft/entity/LivingEntity;)Lnet/minecraft/entity/damage/DamageSource;
intermediary method_64193
Lnet/minecraft/class_1792;method_64193(Lnet/minecraft/class_1309;)Lnet/minecraft/class_1282;
official a
Lcxk;a(Lbwf;)Lbtz;
-
postHit
Called on the server when the item is used to hit an entity.Tools and melee weapons should override this to damage the stack.
- Returns:
- whether the item's use stat should be incremented
- See Also:
- Mappings:
Namespace Name Mixin selector named postHit
Lnet/minecraft/item/Item;postHit(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/entity/LivingEntity;)Z
intermediary method_7873
Lnet/minecraft/class_1792;method_7873(Lnet/minecraft/class_1799;Lnet/minecraft/class_1309;Lnet/minecraft/class_1309;)Z
official a
Lcxk;a(Lcxo;Lbwf;Lbwf;)Z
-
postDamageEntity
- Mappings:
Namespace Name Mixin selector named postDamageEntity
Lnet/minecraft/item/Item;postDamageEntity(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/entity/LivingEntity;)V
intermediary method_59978
Lnet/minecraft/class_1792;method_59978(Lnet/minecraft/class_1799;Lnet/minecraft/class_1309;Lnet/minecraft/class_1309;)V
official b
Lcxk;b(Lcxo;Lbwf;Lbwf;)V
-
postMine
public boolean postMine(ItemStack stack, World world, BlockState state, BlockPos pos, LivingEntity miner) Called on the server when the item is used to break a block.Tools and melee weapons should override this to damage the stack, after checking if the block's hardness is larger than
0.0f
.- Returns:
- whether the item's use stat should be incremented
- See Also:
- Mappings:
Namespace Name Mixin selector named postMine
Lnet/minecraft/item/Item;postMine(Lnet/minecraft/item/ItemStack;Lnet/minecraft/world/World;Lnet/minecraft/block/BlockState;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/LivingEntity;)Z
intermediary method_7879
Lnet/minecraft/class_1792;method_7879(Lnet/minecraft/class_1799;Lnet/minecraft/class_1937;Lnet/minecraft/class_2680;Lnet/minecraft/class_2338;Lnet/minecraft/class_1309;)Z
official a
Lcxk;a(Lcxo;Ldhh;Ldxu;Ljh;Lbwf;)Z
-
isCorrectForDrops
- Mappings:
Namespace Name Mixin selector named isCorrectForDrops
Lnet/minecraft/item/Item;isCorrectForDrops(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;)Z
intermediary method_58405
Lnet/minecraft/class_1792;method_58405(Lnet/minecraft/class_1799;Lnet/minecraft/class_2680;)Z
official b
Lcxk;b(Lcxo;Ldxu;)Z
-
useOnEntity
Called on both the client and the server when a player uses the item on an entity.This method is called on both the logical client and logical server, so take caution when overriding this method. The logical side can be checked using
World.isClient
.This should be used if the item can be used on multiple types of entities, such as name tags or saddles.
- Returns:
- the action result
- Mappings:
Namespace Name Mixin selector named useOnEntity
Lnet/minecraft/item/Item;useOnEntity(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResult;
intermediary method_7847
Lnet/minecraft/class_1792;method_7847(Lnet/minecraft/class_1799;Lnet/minecraft/class_1657;Lnet/minecraft/class_1309;Lnet/minecraft/class_1268;)Lnet/minecraft/class_1269;
official a
Lcxk;a(Lcxo;Lcpw;Lbwf;Lbth;)Lbti;
-
toString
-
getRecipeRemainder
Gets the remainder item that should be left behind when this item is used as a crafting ingredient.- Mappings:
Namespace Name Mixin selector named getRecipeRemainder
Lnet/minecraft/item/Item;getRecipeRemainder()Lnet/minecraft/item/ItemStack;
intermediary method_7858
Lnet/minecraft/class_1792;method_7858()Lnet/minecraft/class_1799;
official k
Lcxk;k()Lcxo;
-
inventoryTick
Called on both the client and the server every tick if the item is in the player's inventory.This method is called on both the logical client and logical server, so take caution when overriding this method. The logical side can be checked using
World.isClient
.- Parameters:
entity
- the entity holding the item; usually a playerselected
- whether the item is in the selected hotbar slot- Mappings:
Namespace Name Mixin selector named inventoryTick
Lnet/minecraft/item/Item;inventoryTick(Lnet/minecraft/item/ItemStack;Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;IZ)V
intermediary method_7888
Lnet/minecraft/class_1792;method_7888(Lnet/minecraft/class_1799;Lnet/minecraft/class_1937;Lnet/minecraft/class_1297;IZ)V
official a
Lcxk;a(Lcxo;Ldhh;Lbvj;IZ)V
-
onCraftByPlayer
Called when a player acquires the item by crafting, smelting, smithing, etc.Not called when the item is automatically created, such as via a crafter.
- Mappings:
Namespace Name Mixin selector named onCraftByPlayer
Lnet/minecraft/item/Item;onCraftByPlayer(Lnet/minecraft/item/ItemStack;Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;)V
intermediary method_54465
Lnet/minecraft/class_1792;method_54465(Lnet/minecraft/class_1799;Lnet/minecraft/class_1937;Lnet/minecraft/class_1657;)V
official a
Lcxk;a(Lcxo;Ldhh;Lcpw;)V
-
onCraft
Called when the item is made by crafting, smelting, smithing, etc.- Mappings:
Namespace Name Mixin selector named onCraft
Lnet/minecraft/item/Item;onCraft(Lnet/minecraft/item/ItemStack;Lnet/minecraft/world/World;)V
intermediary method_7843
Lnet/minecraft/class_1792;method_7843(Lnet/minecraft/class_1799;Lnet/minecraft/class_1937;)V
official a
Lcxk;a(Lcxo;Ldhh;)V
-
getUseAction
Returns the use action the item should perform.- Returns:
- the use action the item should perform
- Mappings:
Namespace Name Mixin selector named getUseAction
Lnet/minecraft/item/Item;getUseAction(Lnet/minecraft/item/ItemStack;)Lnet/minecraft/item/consume/UseAction;
intermediary method_7853
Lnet/minecraft/class_1792;method_7853(Lnet/minecraft/class_1799;)Lnet/minecraft/class_1839;
official b
Lcxk;b(Lcxo;)Lcxq;
-
getMaxUseTime
Returns the maximum use (right-click) time of this item, in ticks. Once a player has used an item for said number of ticks, they stop using it, andfinishUsing(net.minecraft.item.ItemStack, net.minecraft.world.World, net.minecraft.entity.LivingEntity)
is called.- Returns:
- the maximum use (right-click) time of this item, in ticks
- Mappings:
Namespace Name Mixin selector named getMaxUseTime
Lnet/minecraft/item/Item;getMaxUseTime(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/LivingEntity;)I
intermediary method_7881
Lnet/minecraft/class_1792;method_7881(Lnet/minecraft/class_1799;Lnet/minecraft/class_1309;)I
official a
Lcxk;a(Lcxo;Lbwf;)I
-
onStoppedUsing
public boolean onStoppedUsing(ItemStack stack, World world, LivingEntity user, int remainingUseTicks) Called on both the client and the server when an entity stops using an item before reaching the maximum use time. If the time was reached,finishUsing(net.minecraft.item.ItemStack, net.minecraft.world.World, net.minecraft.entity.LivingEntity)
is called instead.This method is called on both the logical client and logical server, so take caution when overriding this method. The logical side can be checked using
World.isClient
.user
might not be a player in some cases. For example, this occurs when an entity uses a crossbow.- Mappings:
Namespace Name Mixin selector named onStoppedUsing
Lnet/minecraft/item/Item;onStoppedUsing(Lnet/minecraft/item/ItemStack;Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;I)Z
intermediary method_7840
Lnet/minecraft/class_1792;method_7840(Lnet/minecraft/class_1799;Lnet/minecraft/class_1937;Lnet/minecraft/class_1309;I)Z
official a
Lcxk;a(Lcxo;Ldhh;Lbwf;I)Z
-
appendTooltip
public void appendTooltip(ItemStack stack, Item.TooltipContext context, List<Text> tooltip, TooltipType type) Called by the client to append tooltips to an item. Subclasses can override this and add custom tooltips totooltip
list.- Parameters:
tooltip
- the list of tooltips to show- Mappings:
Namespace Name Mixin selector named appendTooltip
Lnet/minecraft/item/Item;appendTooltip(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/Item$TooltipContext;Ljava/util/List;Lnet/minecraft/item/tooltip/TooltipType;)V
intermediary method_7851
Lnet/minecraft/class_1792;method_7851(Lnet/minecraft/class_1799;Lnet/minecraft/class_1792$class_9635;Ljava/util/List;Lnet/minecraft/class_1836;)V
official a
Lcxk;a(Lcxo;Lcxk$b;Ljava/util/List;Lczg;)V
-
getTooltipData
- Mappings:
Namespace Name Mixin selector named getTooltipData
Lnet/minecraft/item/Item;getTooltipData(Lnet/minecraft/item/ItemStack;)Ljava/util/Optional;
intermediary method_32346
Lnet/minecraft/class_1792;method_32346(Lnet/minecraft/class_1799;)Ljava/util/Optional;
official k
Lcxk;k(Lcxo;)Ljava/util/Optional;
-
getTranslationKey
Gets the translation key of this item.- Mappings:
Namespace Name Mixin selector named getTranslationKey
Lnet/minecraft/item/Item;getTranslationKey()Ljava/lang/String;
intermediary method_7876
Lnet/minecraft/class_1792;method_7876()Ljava/lang/String;
official l
Lcxk;l()Ljava/lang/String;
-
getName
- Mappings:
Namespace Name Mixin selector named getName
Lnet/minecraft/item/Item;getName()Lnet/minecraft/text/Text;
intermediary method_63680
Lnet/minecraft/class_1792;method_63680()Lnet/minecraft/class_2561;
official m
Lcxk;m()Lxv;
-
getName
- Mappings:
Namespace Name Mixin selector named getName
Lnet/minecraft/item/Item;getName(Lnet/minecraft/item/ItemStack;)Lnet/minecraft/text/Text;
intermediary method_7864
Lnet/minecraft/class_1792;method_7864(Lnet/minecraft/class_1799;)Lnet/minecraft/class_2561;
official a
Lcxk;a(Lcxo;)Lxv;
-
hasGlint
Checks if the glint effect should be applied when the item is rendered.By default, returns true if the item has enchantments.
- Mappings:
Namespace Name Mixin selector named hasGlint
Lnet/minecraft/item/Item;hasGlint(Lnet/minecraft/item/ItemStack;)Z
intermediary method_7886
Lnet/minecraft/class_1792;method_7886(Lnet/minecraft/class_1799;)Z
official c_
Lcxk;c_(Lcxo;)Z
-
raycast
protected static BlockHitResult raycast(World world, PlayerEntity player, RaycastContext.FluidHandling fluidHandling) - Mappings:
Namespace Name Mixin selector named raycast
Lnet/minecraft/item/Item;raycast(Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/RaycastContext$FluidHandling;)Lnet/minecraft/util/hit/BlockHitResult;
intermediary method_7872
Lnet/minecraft/class_1792;method_7872(Lnet/minecraft/class_1937;Lnet/minecraft/class_1657;Lnet/minecraft/class_3959$class_242;)Lnet/minecraft/class_3965;
official a
Lcxk;a(Ldhh;Lcpw;Ldgp$b;)Lfbt;
-
isUsedOnRelease
- Mappings:
Namespace Name Mixin selector named isUsedOnRelease
Lnet/minecraft/item/Item;isUsedOnRelease(Lnet/minecraft/item/ItemStack;)Z
intermediary method_7838
Lnet/minecraft/class_1792;method_7838(Lnet/minecraft/class_1799;)Z
official d_
Lcxk;d_(Lcxo;)Z
-
getDefaultStack
Returns the default stack for this item.Items that expect certain components in the item stack should override this method to return the stack with the component data.
- Returns:
- the default stack for this item
- Mappings:
Namespace Name Mixin selector named getDefaultStack
Lnet/minecraft/item/Item;getDefaultStack()Lnet/minecraft/item/ItemStack;
intermediary method_7854
Lnet/minecraft/class_1792;method_7854()Lnet/minecraft/class_1799;
official n
Lcxk;n()Lcxo;
-
getBreakSound
- Mappings:
Namespace Name Mixin selector named getBreakSound
Lnet/minecraft/item/Item;getBreakSound()Lnet/minecraft/sound/SoundEvent;
intermediary method_57336
Lnet/minecraft/class_1792;method_57336()Lnet/minecraft/class_3414;
official a
Lcxk;a()Laxe;
-
canBeNested
public boolean canBeNested()- Returns:
- true if the item can be placed inside of shulker boxes or bundles.
- Mappings:
Namespace Name Mixin selector named canBeNested
Lnet/minecraft/item/Item;canBeNested()Z
intermediary method_31568
Lnet/minecraft/class_1792;method_31568()Z
official e
Lcxk;e()Z
-
getRequiredFeatures
- Specified by:
getRequiredFeatures
in interfaceToggleableFeature
- Mappings:
Namespace Name Mixin selector named getRequiredFeatures
Lnet/minecraft/resource/featuretoggle/ToggleableFeature;getRequiredFeatures()Lnet/minecraft/resource/featuretoggle/FeatureSet;
intermediary method_45322
Lnet/minecraft/class_7695;method_45322()Lnet/minecraft/class_7699;
official i
Lcsp;i()Lcss;
-
Block.asItem()