Package net.minecraft.loot.condition
Record Class EntityScoresLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.EntityScoresLootCondition
- Record Components:
scores
-target
-
- All Implemented Interfaces:
Predicate<LootContext>
,LootCondition
,LootContextAware
public record EntityScoresLootCondition(Map<String,BoundedIntUnaryOperator> scores, LootContext.EntityTarget target)
extends Record
implements LootCondition
- Mappings:
Namespace Name official efk
intermediary net/minecraft/class_199
named net/minecraft/loot/condition/EntityScoresLootCondition
official b
intermediary comp_1871
named scores
official c
intermediary comp_1872
named target
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EntityScoresLootCondition>
private final Map<String,
BoundedIntUnaryOperator> The field for thescores
record component.private final LootContext.EntityTarget
The field for thetarget
record component. -
Constructor Summary
ConstructorDescriptionEntityScoresLootCondition
(Map<String, BoundedIntUnaryOperator> scores, LootContext.EntityTarget target) Creates an instance of aEntityScoresLootCondition
record class. -
Method Summary
Modifier and TypeMethodDescriptioncreate
(LootContext.EntityTarget target) protected boolean
entityScoreIsInRange
(LootContext context, Entity entity, Scoreboard scoreboard, String objectiveName, BoundedIntUnaryOperator range) final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.scores()
Returns the value of thescores
record component.target()
Returns the value of thetarget
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
-
scores
The field for thescores
record component. -
target
The field for thetarget
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lefk;a:Lcom/mojang/serialization/Codec;
intermediary field_45863
Lnet/minecraft/class_199;field_45863:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/loot/condition/EntityScoresLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
EntityScoresLootCondition
public EntityScoresLootCondition(Map<String, BoundedIntUnaryOperator> scores, LootContext.EntityTarget target) Creates an instance of aEntityScoresLootCondition
record class.
-
-
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
Lefk;a(Lecq;)Z
intermediary method_864
Lnet/minecraft/class_199;method_864(Lnet/minecraft/class_47;)Z
named test
Lnet/minecraft/loot/condition/EntityScoresLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
entityScoreIsInRange
protected boolean entityScoreIsInRange(LootContext context, Entity entity, Scoreboard scoreboard, String objectiveName, BoundedIntUnaryOperator range) - Mappings:
Namespace Name Mixin selector official a
Lefk;a(Lecq;Lbiq;Leim;Ljava/lang/String;Lecp;)Z
intermediary method_865
Lnet/minecraft/class_199;method_865(Lnet/minecraft/class_47;Lnet/minecraft/class_1297;Lnet/minecraft/class_269;Ljava/lang/String;Lnet/minecraft/class_42;)Z
named entityScoreIsInRange
Lnet/minecraft/loot/condition/EntityScoresLootCondition;entityScoreIsInRange(Lnet/minecraft/loot/context/LootContext;Lnet/minecraft/entity/Entity;Lnet/minecraft/scoreboard/Scoreboard;Ljava/lang/String;Lnet/minecraft/loot/operator/BoundedIntUnaryOperator;)Z
-
create
- Mappings:
Namespace Name Mixin selector official a
Lefk;a(Lecq$b;)Lefk$a;
intermediary method_35557
Lnet/minecraft/class_199;method_35557(Lnet/minecraft/class_47$class_50;)Lnet/minecraft/class_199$class_6163;
named create
Lnet/minecraft/loot/condition/EntityScoresLootCondition;create(Lnet/minecraft/loot/context/LootContext$EntityTarget;)Lnet/minecraft/loot/condition/EntityScoresLootCondition$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)
. -
scores
Returns the value of thescores
record component.- Returns:
- the value of the
scores
record component
-
target
Returns the value of thetarget
record component.- Returns:
- the value of the
target
record component
-