LootConditions
Link to lootconditions
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.loot.condition.LootConditions;
Static Methods
Link to static-methods
Name: allOf
Return Type: LootConditions
ZenScript CopyLootConditions.allOf(builders as LootConditionBuilder[]) as LootConditions
Parameter | Type |
---|---|
Parameter builders | Type LootConditionBuilder[] |
Name: allOf
Return Type: LootConditions
ZenScript CopyLootConditions.allOf(conditions as LootCondition[]) as LootConditions
Parameter | Type |
---|---|
Parameter conditions | Type LootCondition[] |
Name: anyOf
Return Type: LootConditions
ZenScript CopyLootConditions.anyOf(builders as LootConditionBuilder[]) as LootConditions
Parameter | Type |
---|---|
Parameter builders | Type LootConditionBuilder[] |
Name: none
Return Type: LootConditions
ZenScript Copy// LootConditions.none() as LootConditions
LootConditions.none();
Name: noneOf
Return Type: LootConditions
ZenScript CopyLootConditions.noneOf(builders as LootConditionBuilder[]) as LootConditions
Parameter | Type |
---|---|
Parameter builders | Type LootConditionBuilder[] |
Name: noneOf
Return Type: LootConditions
ZenScript CopyLootConditions.noneOf(conditions as LootCondition[]) as LootConditions
Parameter | Type |
---|---|
Parameter conditions | Type LootCondition[] |
Name: notAllOf
Return Type: LootConditions
ZenScript CopyLootConditions.notAllOf(builders as LootConditionBuilder[]) as LootConditions
Parameter | Type |
---|---|
Parameter builders | Type LootConditionBuilder[] |
Name: only
Return Type: LootConditions
ZenScript CopyLootConditions.only(builder as LootConditionBuilder) as LootConditions
Parameter | Type |
---|---|
Parameter builder | Type LootConditionBuilder |
Name: only
Return Type: LootConditions
ZenScript CopyLootConditions.only(condition as LootCondition) as LootConditions
Parameter | Type |
---|---|
Parameter condition | Type LootCondition |
Name: randomlyIn
Return Type: LootConditions
ZenScript CopyLootConditions.randomlyIn(percentageChance as double) as LootConditions
Parameter | Type |
---|---|
Parameter percentageChance | Type double |