LootTableIdRegex
Link to loottableidregex
Builder for a 'LootTableIdRegex' loot condition.
This condition will pass if and only if the ID of the loot table currently being queried matches the target regex.
While this condition is provided merely as a convenience, it is suggested not to rely on this condition only. Due to backwards compatibility, some loot tables may in fact lack an ID or have overlapping ones. Other conditions should be used instead.
The 'LootTableIdRegex' condition requires a regex to be built.
导入类
Link to 导入类
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.conditions.crafttweaker.LootTableIdRegex;
已实现的接口
Link to 已实现的接口
LootTableIdRegex implements the following interfaces. That means all methods defined in these interfaces are also available in LootTableIdRegex
使用方式
Link to 使用方式
Name: withRegex
Sets the regex of the loot table that should be targeted.
This parameter is required.
Returns: This builder for chaining.
Return Type: LootTableIdRegex
ZenScript CopyLootTableIdRegex.withRegex(regex as string) as LootTableIdRegex
参数 | 类型 | 描述 |
---|---|---|
参数 regex | 类型 string | 描述 The regex of the loot table to match. |