MCLivingDropsEvent

Link to mclivingdropsevent

The event is cancelable.

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

The event does not have a result.

Importare la Classe

Link to importare-la-classe

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.event.entity.living.MCLivingDropsEvent;

Extending MCLivingEvent

Link to extending-mclivingevent

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

Name: addDrop

Adds an item to the drops.

Return Type: void

ZenScript
Copy
MCLivingDropsEvent.addDrop(stack as IItemStack) as void
ParametroTipoDescrizione
Parametro
stack
Tipo
IItemStack
Descrizione
No Description Provided

Name: removeDrop

Removes items that match the given ingredient from drops.

Return Type: void

ZenScript
Copy
MCLivingDropsEvent.removeDrop(ingredient as IIngredient) as void
ParametroTipoDescrizione
Parametro
ingredient
Tipo
IIngredient
Descrizione
No Description Provided
NomeTipoHa GetterHa SetterDescrizione
Nome
drops
Tipo
stdlib.List<IItemStack>
Ha Getter
Ha Setter
Descrizione
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.
Nome
lootingLevel
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
recentlyHit
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
Whether the Entity doing the drop has recently been damaged.
Nome
sorgente
Tipo
DamageSource
Ha Getter
Ha Setter
no
Descrizione
No Description Provided