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
named net/minecraft/loot/condition/WeatherCheckLootCondition
intermediary net/minecraft/class_227
official eue
named raining
intermediary comp_1889
official b
named thundering
intermediary comp_1890
official c
  • Field Details

    • raining

      private final Optional<Boolean> raining
      The field for the raining record component.
    • thundering

      private final Optional<Boolean> thundering
      The field for the thundering record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<WeatherCheckLootCondition> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/loot/condition/WeatherCheckLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_45878 Lnet/minecraft/class_227;field_45878:Lcom/mojang/serialization/MapCodec;
      official a Leue;a:Lcom/mojang/serialization/MapCodec;
  • Constructor Details

  • Method Details

    • getType

      public LootConditionType getType()
      Specified by:
      getType in 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 Letu;b()Letv;
    • test

      public boolean test(LootContext lootContext)
      Specified by:
      test in interface Predicate<LootContext>
      Mappings:
      Namespace Name Mixin selector
      named test Lnet/minecraft/loot/condition/WeatherCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
      intermediary method_957 Lnet/minecraft/class_227;method_957(Lnet/minecraft/class_47;)Z
      official a Leue;a(Leqk;)Z
    • create

      public static WeatherCheckLootCondition.Builder create()
      Mappings:
      Namespace Name Mixin selector
      named create Lnet/minecraft/loot/condition/WeatherCheckLootCondition;create()Lnet/minecraft/loot/condition/WeatherCheckLootCondition$Builder;
      intermediary method_35564 Lnet/minecraft/class_227;method_35564()Lnet/minecraft/class_227$class_6165;
      official c Leue;c()Leue$a;
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • raining

      public Optional<Boolean> raining()
      Returns the value of the raining record component.
      Returns:
      the value of the raining record component
    • thundering

      public Optional<Boolean> thundering()
      Returns the value of the thundering record component.
      Returns:
      the value of the thundering record component