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 official efv
intermediary net/minecraft/class_225
named net/minecraft/loot/condition/RandomChanceWithLootingLootCondition
official b
intermediary comp_1882
named chance
official c
intermediary comp_1883
named lootingMultiplier
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder
-
Field Summary
Modifier and TypeFieldDescriptionprivate final float
The field for thechance
record component.static final com.mojang.serialization.Codec<RandomChanceWithLootingLootCondition>
private final float
The field for thelootingMultiplier
record component. -
Constructor Summary
ConstructorDescriptionRandomChanceWithLootingLootCondition
(float chance, float lootingMultiplier) Creates an instance of aRandomChanceWithLootingLootCondition
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builder
builder
(float chance, float lootingMultiplier) float
chance()
Returns the value of thechance
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.float
Returns the value of thelootingMultiplier
record component.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
private final float chanceThe field for thechance
record component. -
lootingMultiplier
private final float lootingMultiplierThe field for thelootingMultiplier
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lefv;a:Lcom/mojang/serialization/Codec;
intermediary field_45874
Lnet/minecraft/class_225;field_45874:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/loot/condition/RandomChanceWithLootingLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
RandomChanceWithLootingLootCondition
public RandomChanceWithLootingLootCondition(float chance, float lootingMultiplier) Creates an instance of aRandomChanceWithLootingLootCondition
record class.- Parameters:
chance
- the value for thechance
record componentlootingMultiplier
- the value for thelootingMultiplier
record component
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootCondition
- Mappings:
Namespace Name Mixin selector official b
Lefp;b()Lefq;
intermediary method_29325
Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;
named getType
Lnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;
-
getRequiredParameters
- Specified by:
getRequiredParameters
in interfaceLootContextAware
- Mappings:
Namespace Name Mixin selector official a
Lecr;a()Ljava/util/Set;
intermediary method_293
Lnet/minecraft/class_46;method_293()Ljava/util/Set;
named getRequiredParameters
Lnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;
-
test
- Specified by:
test
in interfacePredicate<LootContext>
- Mappings:
Namespace Name Mixin selector official a
Lefv;a(Lecq;)Z
intermediary method_950
Lnet/minecraft/class_225;method_950(Lnet/minecraft/class_47;)Z
named test
Lnet/minecraft/loot/condition/RandomChanceWithLootingLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
builder
- Mappings:
Namespace Name Mixin selector official a
Lefv;a(FF)Lefp$a;
intermediary method_953
Lnet/minecraft/class_225;method_953(FF)Lnet/minecraft/class_5341$class_210;
named builder
Lnet/minecraft/loot/condition/RandomChanceWithLootingLootCondition;builder(FF)Lnet/minecraft/loot/condition/LootCondition$Builder;
-
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 thechance
record component.- Returns:
- the value of the
chance
record component
-
lootingMultiplier
public float lootingMultiplier()Returns the value of thelootingMultiplier
record component.- Returns:
- the value of the
lootingMultiplier
record component
-