Package net.minecraft.loot.condition
Record Class RandomChanceWithEnchantedBonusLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.RandomChanceWithEnchantedBonusLootCondition
- Record Components:
- unenchantedChance-
- enchantedChance-
- enchantment-
- All Implemented Interfaces:
- Predicate<LootContext>,- LootCondition,- LootContextAware
public record RandomChanceWithEnchantedBonusLootCondition(float unenchantedChance, EnchantmentLevelBasedValue enchantedChance, RegistryEntry<Enchantment> enchantment)
extends Record
implements LootCondition
- Mappings:
- Namespace - Name - named - net/minecraft/loot/condition/RandomChanceWithEnchantedBonusLootCondition- intermediary - net/minecraft/class_225- official - ezh- named - unenchantedChance- intermediary - comp_2865- official - b- named - enchantedChance- intermediary - comp_2866- official - c- named - enchantment- intermediary - comp_2783- official - g
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.loot.condition.LootConditionLootCondition.Builder
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<RandomChanceWithEnchantedBonusLootCondition> private final EnchantmentLevelBasedValueThe field for theenchantedChancerecord component.private final RegistryEntry<Enchantment> The field for theenchantmentrecord component.private final floatThe field for theunenchantedChancerecord component.Fields inherited from interface net.minecraft.loot.condition.LootConditionBASE_CODEC, ENTRY_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionRandomChanceWithEnchantedBonusLootCondition(float float2, EnchantmentLevelBasedValue enchantmentLevelBasedValue, RegistryEntry<Enchantment> registryEntry) 
- 
Method SummaryModifier and TypeMethodDescriptionstatic LootCondition.Builderbuilder(RegistryWrapper.WrapperLookup registries, float base, float perLevelAboveFirst) Returns the value of theenchantedChancerecord component.Returns the value of theenchantmentrecord component.final booleanIndicates whether some other object is "equal to" this one.Set<ContextParameter<?>> getType()final inthashCode()Returns a hash code value for this object.booleantest(LootContext lootContext) final StringtoString()Returns a string representation of this record class.floatReturns the value of theunenchantedChancerecord component.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAwarevalidate
- 
Field Details- 
unenchantedChanceprivate final float unenchantedChanceThe field for theunenchantedChancerecord component.
- 
enchantedChanceThe field for theenchantedChancerecord component.
- 
enchantmentThe field for theenchantmentrecord component.
- 
CODECpublic static final com.mojang.serialization.MapCodec<RandomChanceWithEnchantedBonusLootCondition> CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/condition/RandomChanceWithEnchantedBonusLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45874- Lnet/minecraft/class_225;field_45874:Lcom/mojang/serialization/MapCodec;- official - a- Lezh;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
RandomChanceWithEnchantedBonusLootConditionpublic RandomChanceWithEnchantedBonusLootCondition(float float2, EnchantmentLevelBasedValue enchantmentLevelBasedValue, RegistryEntry<Enchantment> registryEntry) 
 
- 
- 
Method Details- 
getType- Specified by:
- getTypein interface- LootCondition
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;- intermediary - method_29325- Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;- official - b- Lezb;b()Lezc;
 
- 
getAllowedParameters- Specified by:
- getAllowedParametersin interface- LootContextAware
- Mappings:
- Namespace - Name - Mixin selector - named - getAllowedParameters- Lnet/minecraft/loot/context/LootContextAware;getAllowedParameters()Ljava/util/Set;- intermediary - method_293- Lnet/minecraft/class_46;method_293()Ljava/util/Set;- official - a- Levt;a()Ljava/util/Set;
 
- 
test- Specified by:
- testin interface- Predicate<LootContext>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/loot/condition/RandomChanceWithEnchantedBonusLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z- intermediary - method_950- Lnet/minecraft/class_225;method_950(Lnet/minecraft/class_47;)Z- official - a- Lezh;a(Levs;)Z
 
- 
builderpublic static LootCondition.Builder builder(RegistryWrapper.WrapperLookup registries, float base, float perLevelAboveFirst) - Mappings:
- Namespace - Name - Mixin selector - named - builder- Lnet/minecraft/loot/condition/RandomChanceWithEnchantedBonusLootCondition;builder(Lnet/minecraft/registry/RegistryWrapper$WrapperLookup;FF)Lnet/minecraft/loot/condition/LootCondition$Builder;- intermediary - method_953- Lnet/minecraft/class_225;method_953(Lnet/minecraft/class_7225$class_7874;FF)Lnet/minecraft/class_5341$class_210;- official - a- Lezh;a(Ljt$a;FF)Lezb$a;
 
- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
unenchantedChancepublic float unenchantedChance()Returns the value of theunenchantedChancerecord component.- Returns:
- the value of the unenchantedChancerecord component
 
- 
enchantedChanceReturns the value of theenchantedChancerecord component.- Returns:
- the value of the enchantedChancerecord component
 
- 
enchantmentReturns the value of theenchantmentrecord component.- Returns:
- the value of the enchantmentrecord component
 
 
-