AdvancementRequirements
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.advancement.AdvancementRequirements;
Members
count(test as function(t as string) as bool) as int
Counts the advancement requirementsscript.zs
Returns: The count of the advancement requirements
// AdvancementRequirements.count(test as function(t as string) as bool) as int;myAdvancementRequirements.count(myPredicate);
Parameters:
test: function(t as string) as bool
Type: function(t as string) as bool
- The predicate to count the advancement requirements with
Return Type:
int
Getter
Checks if the advancement requirements is emptyscript.zs
// AdvancementRequirements.isEmpty as boolmyAdvancementRequirements.isEmpty
Return Type:
bool
Getter
Gets the names of the advancement requirementsscript.zs
// AdvancementRequirements.names as Set<string>myAdvancementRequirements.names
Return Type:
Set<string>
Getter
Gets the requirements of the advancementscript.zs
// AdvancementRequirements.requirements as List<List<string>>myAdvancementRequirements.requirements
Return Type:
List<List<string>>
Getter
Gets the size of the advancement requirementsscript.zs
// AdvancementRequirements.size as intmyAdvancementRequirements.size
Return Type:
int
test(test as function(t as string) as bool) as bool
Tests the advancement requirementsscript.zs
Returns: true if the advancement requirements test passes, false otherwise
// AdvancementRequirements.test(test as function(t as string) as bool) as bool;myAdvancementRequirements.test(myPredicate);
Parameters:
test: function(t as string) as bool
Type: function(t as string) as bool
- The predicate to test the advancement requirements with
Return Type:
bool