Package net.minecraft.loot.condition
Record Class RandomChanceWithLootingLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.RandomChanceWithLootingLootCondition
- Record Components:
chance-lootingMultiplier-
- All Implemented Interfaces:
Predicate<LootContext>,LootCondition,LootContextAware
public record RandomChanceWithLootingLootCondition(float chance, float lootingMultiplier)
extends Record
implements LootCondition
- Mappings:
Namespace Name named net/minecraft/loot/condition/RandomChanceWithLootingLootConditionintermediary net/minecraft/class_225official euanamed chanceintermediary comp_1882official bnamed lootingMultiplierintermediary comp_1883official c
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final floatThe field for thechancerecord component.static final com.mojang.serialization.MapCodec<RandomChanceWithLootingLootCondition> private final floatThe field for thelootingMultiplierrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionRandomChanceWithLootingLootCondition(float chance, float lootingMultiplier) Creates an instance of aRandomChanceWithLootingLootConditionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builderbuilder(float chance, float lootingMultiplier) floatchance()Returns the value of thechancerecord component.final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.floatReturns the value of thelootingMultiplierrecord component.booleantest(LootContext lootContext) final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAware
validate
-
Field Details
-
chance
private final float chanceThe field for thechancerecord component. -
lootingMultiplier
private final float lootingMultiplierThe field for thelootingMultiplierrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/loot/condition/RandomChanceWithLootingLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;intermediary field_45874Lnet/minecraft/class_225;field_45874:Lcom/mojang/serialization/MapCodec;official aLeua;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
RandomChanceWithLootingLootCondition
public RandomChanceWithLootingLootCondition(float chance, float lootingMultiplier) Creates an instance of aRandomChanceWithLootingLootConditionrecord class.- Parameters:
chance- the value for thechancerecord componentlootingMultiplier- the value for thelootingMultiplierrecord component
-
-
Method Details
-
getType
- Specified by:
getTypein interfaceLootCondition- Mappings:
Namespace Name Mixin selector named getTypeLnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;intermediary method_29325Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;official bLetu;b()Letv;
-
getRequiredParameters
- Specified by:
getRequiredParametersin interfaceLootContextAware- Mappings:
Namespace Name Mixin selector named getRequiredParametersLnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;intermediary method_293Lnet/minecraft/class_46;method_293()Ljava/util/Set;official aLeql;a()Ljava/util/Set;
-
test
- Specified by:
testin interfacePredicate<LootContext>- Mappings:
Namespace Name Mixin selector named testLnet/minecraft/loot/condition/RandomChanceWithLootingLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Zintermediary method_950Lnet/minecraft/class_225;method_950(Lnet/minecraft/class_47;)Zofficial aLeua;a(Leqk;)Z
-
builder
- Mappings:
Namespace Name Mixin selector named builderLnet/minecraft/loot/condition/RandomChanceWithLootingLootCondition;builder(FF)Lnet/minecraft/loot/condition/LootCondition$Builder;intermediary method_953Lnet/minecraft/class_225;method_953(FF)Lnet/minecraft/class_5341$class_210;official aLeua;a(FF)Letu$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 with '=='. -
chance
public float chance()Returns the value of thechancerecord component.- Returns:
- the value of the
chancerecord component
-
lootingMultiplier
public float lootingMultiplier()Returns the value of thelootingMultiplierrecord component.- Returns:
- the value of the
lootingMultiplierrecord component
-