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 evi
named unenchantedChance
intermediary comp_2865
official b
named enchantedChance
intermediary comp_2866
official c
named enchantment
intermediary comp_2783
official g
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<RandomChanceWithEnchantedBonusLootCondition> private final EnchantmentLevelBasedValue
The field for theenchantedChance
record component.private final RegistryEntry
<Enchantment> The field for theenchantment
record component.private final float
The field for theunenchantedChance
record component.Fields inherited from interface net.minecraft.loot.condition.LootCondition
BASE_CODEC, ENTRY_CODEC
-
Constructor Summary
ConstructorDescriptionRandomChanceWithEnchantedBonusLootCondition
(float float2, EnchantmentLevelBasedValue enchantmentLevelBasedValue, RegistryEntry<Enchantment> registryEntry) -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builder
builder
(RegistryWrapper.WrapperLookup registryLookup, float base, float perLevelAboveFirst) Returns the value of theenchantedChance
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.float
Returns the value of theunenchantedChance
record component.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
-
unenchantedChance
private final float unenchantedChanceThe field for theunenchantedChance
record component. -
enchantedChance
The field for theenchantedChance
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
Levi;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
RandomChanceWithEnchantedBonusLootCondition
public RandomChanceWithEnchantedBonusLootCondition(float float2, EnchantmentLevelBasedValue enchantmentLevelBasedValue, 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
Levc;b()Levd;
-
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
Lers;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
Levi;a(Lerr;)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
Levi;a(Ljo$a;FF)Levc$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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
unenchantedChance
public float unenchantedChance()Returns the value of theunenchantedChance
record component.- Returns:
- the value of the
unenchantedChance
record component
-
enchantedChance
Returns the value of theenchantedChance
record component.- Returns:
- the value of the
enchantedChance
record component
-
enchantment
Returns the value of theenchantment
record component.- Returns:
- the value of the
enchantment
record component
-