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 ekf
intermediary net/minecraft/class_227
named net/minecraft/loot/condition/WeatherCheckLootCondition
official b
intermediary comp_1889
named raining
official c
intermediary comp_1890
named thundering
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<WeatherCheckLootCondition>
The field for theraining
record component.The field for thethundering
record component. -
Constructor Summary
ConstructorDescriptionWeatherCheckLootCondition
(Optional<Boolean> optional, Optional<Boolean> optional2) -
Method Summary
Modifier and TypeMethodDescriptioncreate()
final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.raining()
Returns the value of theraining
record component.boolean
test
(LootContext lootContext) Returns the value of thethundering
record component.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
getRequiredParameters, validate
-
Field Details
-
raining
The field for theraining
record component. -
thundering
The field for thethundering
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lekf;a:Lcom/mojang/serialization/Codec;
intermediary field_45878
Lnet/minecraft/class_227;field_45878:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/loot/condition/WeatherCheckLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
WeatherCheckLootCondition
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootCondition
- Mappings:
Namespace Name Mixin selector official b
Lejv;b()Lejw;
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;
-
test
- Specified by:
test
in interfacePredicate<LootContext>
- Mappings:
Namespace Name Mixin selector official a
Lekf;a(Legw;)Z
intermediary method_957
Lnet/minecraft/class_227;method_957(Lnet/minecraft/class_47;)Z
named test
Lnet/minecraft/loot/condition/WeatherCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
create
- Mappings:
Namespace Name Mixin selector official c
Lekf;c()Lekf$a;
intermediary method_35564
Lnet/minecraft/class_227;method_35564()Lnet/minecraft/class_227$class_6165;
named create
Lnet/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 theraining
record component.- Returns:
- the value of the
raining
record component
-
thundering
Returns the value of thethundering
record component.- Returns:
- the value of the
thundering
record component
-