Home Migration Guide Getting Started With Scripts Commands Examples
BracketHandlers

MCLivingDropsEvent

The event is cancelable.

If the event is canceled, the entity does not drop anything.

The event does not have a result.

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.

script.zs
import crafttweaker.api.event.entity.living.MCLivingDropsEvent;

Extending MCLivingEvent

MCLivingDropsEvent extends MCLivingEvent. That means all methods available in MCLivingEvent are also available in MCLivingDropsEvent

Methods

Adds an item to the drops.

Return Type: void

script.zs
MCLivingDropsEvent.addDrop(stack as IItemStack) as void
ParameterTypeDescription
Parameter
stack
Type
IItemStack
Description
No Description Provided

Removes items that match the given ingredient from drops.

Return Type: void

script.zs
MCLivingDropsEvent.removeDrop(ingredient as IIngredient) as void
ParameterTypeDescription
Parameter
ingredient
Type
IIngredient
Description
No Description Provided

Properties

NameTypeHas GetterHas SetterDescription
Name
drops
Type
stdlib.List<IItemStack>
Has Getter
true
Has Setter
true
Description
Returns the list of items will be dropped. The list is read-only, modifying this list does not change the drops.

You should use the drops setter, addDrop or removeDrop method to change the drops.
Name
lootingLevel
Type
int
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
recentlyHit
Type
boolean
Has Getter
true
Has Setter
false
Description
Whether the Entity doing the drop has recently been damaged.
Name
source
Type
DamageSource
Has Getter
true
Has Setter
false
Description
No Description Provided