Package net.minecraft.loot.condition
Record Class RandomChanceLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.RandomChanceLootCondition
- Record Components:
- chance-
- All Implemented Interfaces:
- Predicate<LootContext>,- LootCondition,- LootContextAware
public record RandomChanceLootCondition(LootNumberProvider chance)
extends Record
implements LootCondition
- Mappings:
- Namespace - Name - named - net/minecraft/loot/condition/RandomChanceLootCondition- intermediary - net/minecraft/class_219- official - ezg- named - chance- intermediary - comp_2781- official - b
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.loot.condition.LootConditionLootCondition.Builder
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final LootNumberProviderThe field for thechancerecord component.static final com.mojang.serialization.MapCodec<RandomChanceLootCondition> Fields inherited from interface net.minecraft.loot.condition.LootConditionBASE_CODEC, ENTRY_CODEC
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic LootCondition.Builderbuilder(float chance) static LootCondition.Builderbuilder(LootNumberProvider chance) chance()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.booleantest(LootContext lootContext) final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAwaregetAllowedParameters, validate
- 
Field Details- 
chanceThe field for thechancerecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/condition/RandomChanceLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45873- Lnet/minecraft/class_219;field_45873:Lcom/mojang/serialization/MapCodec;- official - a- Lezg;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
RandomChanceLootCondition
 
- 
- 
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;
 
- 
test- Specified by:
- testin interface- Predicate<LootContext>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/loot/condition/RandomChanceLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z- intermediary - method_934- Lnet/minecraft/class_219;method_934(Lnet/minecraft/class_47;)Z- official - a- Lezg;a(Levs;)Z
 
- 
builder- Mappings:
- Namespace - Name - Mixin selector - named - builder- Lnet/minecraft/loot/condition/RandomChanceLootCondition;builder(F)Lnet/minecraft/loot/condition/LootCondition$Builder;- intermediary - method_932- Lnet/minecraft/class_219;method_932(F)Lnet/minecraft/class_5341$class_210;- official - a- Lezg;a(F)Lezb$a;
 
- 
builder- Mappings:
- Namespace - Name - Mixin selector - named - builder- Lnet/minecraft/loot/condition/RandomChanceLootCondition;builder(Lnet/minecraft/loot/provider/number/LootNumberProvider;)Lnet/minecraft/loot/condition/LootCondition$Builder;- intermediary - method_60310- Lnet/minecraft/class_219;method_60310(Lnet/minecraft/class_5658;)Lnet/minecraft/class_5341$class_210;- official - a- Lezg;a(Lezx;)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. All components in this record class are compared withObjects::equals(Object,Object).
- 
chanceReturns the value of thechancerecord component.- Returns:
- the value of the chancerecord component
 
 
-