Package net.minecraft.loot.condition
Record Class RandomChanceWithEnchantedBonusLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.RandomChanceWithEnchantedBonusLootCondition
- Record Components:
chance
-enchantment
-
- All Implemented Interfaces:
Predicate<LootContext>
,LootCondition
,LootContextAware
public record RandomChanceWithEnchantedBonusLootCondition(EnchantmentLevelBasedValueType chance, RegistryEntry<Enchantment> enchantment)
extends Record
implements LootCondition
- Mappings:
Namespace Name named net/minecraft/loot/condition/RandomChanceWithEnchantedBonusLootCondition
intermediary net/minecraft/class_225
official eun
named chance
intermediary comp_2782
official b
named enchantment
intermediary comp_2783
official c
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder
-
Field Summary
Modifier and TypeFieldDescriptionprivate final EnchantmentLevelBasedValueType
The field for thechance
record component.static final com.mojang.serialization.MapCodec
<RandomChanceWithEnchantedBonusLootCondition> private final RegistryEntry
<Enchantment> The field for theenchantment
record component.Fields inherited from interface net.minecraft.loot.condition.LootCondition
BASE_CODEC, ENTRY_CODEC
-
Constructor Summary
ConstructorDescriptionRandomChanceWithEnchantedBonusLootCondition
(EnchantmentLevelBasedValueType enchantmentLevelBasedValueType, RegistryEntry<Enchantment> registryEntry) -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builder
builder
(RegistryWrapper.WrapperLookup registryLookup, float base, float perLevelAboveFirst) chance()
Returns the value of thechance
record component.Returns the value of theenchantment
record component.final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.boolean
test
(LootContext lootContext) final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.loot.context.LootContextAware
validate
-
Field Details
-
chance
The field for thechance
record component. -
enchantment
The field for theenchantment
record component. -
CODEC
public 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
Leun;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
RandomChanceWithEnchantedBonusLootCondition
public RandomChanceWithEnchantedBonusLootCondition(EnchantmentLevelBasedValueType enchantmentLevelBasedValueType, RegistryEntry<Enchantment> registryEntry)
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootCondition
- 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
Leuh;b()Leui;
-
getRequiredParameters
- Specified by:
getRequiredParameters
in interfaceLootContextAware
- Mappings:
Namespace Name Mixin selector named getRequiredParameters
Lnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;
intermediary method_293
Lnet/minecraft/class_46;method_293()Ljava/util/Set;
official a
Leqx;a()Ljava/util/Set;
-
test
- Specified by:
test
in interfacePredicate<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
Leun;a(Leqw;)Z
-
builder
public static LootCondition.Builder builder(RegistryWrapper.WrapperLookup registryLookup, 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
Leun;a(Ljl$a;FF)Leuh$a;
-
toString
Returns 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. -
hashCode
public 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. -
equals
Indicates 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. All components in this record class are compared withObjects::equals(Object,Object)
. -
chance
Returns the value of thechance
record component.- Returns:
- the value of the
chance
record component
-
enchantment
Returns the value of theenchantment
record component.- Returns:
- the value of the
enchantment
record component
-