Represents a modifier that gets applied to the loot dropped by a loot table.

A modifier is something that can act on and change the loot dropped by a loot table, represented as a list of IItemStack, leveraging the original LootContext that caused the loot drop.

Импорт класса

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
Copy
import crafttweaker.api.loot.modifier.ILootModifier;

Name: modify

Applies the modifier to the drops of a loot table.

Returns: A list containing the modified loot.
Return Type: stdlib.List<IItemStack>

ZenScript
Copy
ILootModifier.modify(loot as stdlib.List<IItemStack>, context as LootContext) as stdlib.List<IItemStack>
ПараметрТипОписание
Параметр
loot
Тип
stdlib.List<IItemStack>
Описание
The loot dropped by a loot table.
Параметр
контекст
Тип
LootContext
Описание
The context that caused the loot table to drop the loot.