Package net.minecraft.loot.condition
Record Class WeatherCheckLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.WeatherCheckLootCondition
- Record Components:
raining-thundering-
- All Implemented Interfaces:
Predicate<LootContext>,LootCondition,LootContextAware
public record WeatherCheckLootCondition(Optional<Boolean> raining, Optional<Boolean> thundering)
extends Record
implements LootCondition
- Mappings:
Namespace Name official ekfintermediary net/minecraft/class_227named net/minecraft/loot/condition/WeatherCheckLootConditionofficial bintermediary comp_1889named rainingofficial cintermediary comp_1890named thundering
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<WeatherCheckLootCondition>The field for therainingrecord component.The field for thethunderingrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionWeatherCheckLootCondition(Optional<Boolean> optional, Optional<Boolean> optional2) -
Method Summary
Modifier and TypeMethodDescriptioncreate()final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.raining()Returns the value of therainingrecord component.booleantest(LootContext lootContext) Returns the value of thethunderingrecord component.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
getRequiredParameters, validate
-
Field Details
-
raining
The field for therainingrecord component. -
thundering
The field for thethunderingrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector official aLekf;a:Lcom/mojang/serialization/Codec;intermediary field_45878Lnet/minecraft/class_227;field_45878:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/loot/condition/WeatherCheckLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
WeatherCheckLootCondition
-
-
Method Details
-
getType
- Specified by:
getTypein interfaceLootCondition- Mappings:
Namespace Name Mixin selector official bLejv;b()Lejw;intermediary method_29325Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;named getTypeLnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;
-
test
- Specified by:
testin interfacePredicate<LootContext>- Mappings:
Namespace Name Mixin selector official aLekf;a(Legw;)Zintermediary method_957Lnet/minecraft/class_227;method_957(Lnet/minecraft/class_47;)Znamed testLnet/minecraft/loot/condition/WeatherCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
create
- Mappings:
Namespace Name Mixin selector official cLekf;c()Lekf$a;intermediary method_35564Lnet/minecraft/class_227;method_35564()Lnet/minecraft/class_227$class_6165;named createLnet/minecraft/loot/condition/WeatherCheckLootCondition;create()Lnet/minecraft/loot/condition/WeatherCheckLootCondition$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 withObjects::equals(Object,Object). -
raining
Returns the value of therainingrecord component.- Returns:
- the value of the
rainingrecord component
-
thundering
Returns the value of thethunderingrecord component.- Returns:
- the value of the
thunderingrecord component
-