LootContext
Link to lootcontext
Holds all information that may be obtainable from a loot table roll, allowing for identifying key information.
Not all parameters are present at all times, for obvious reasons. For example, information related to an entity will not be available if the loot table being rolled is the one for a block.
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.LootContext;
Properties
Link to properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name blockState | Type MCBlockState? | Has Getter true | Has Setter false | Description Gets the block state that was broken, if present; null otherwise. |
Name damageSource | Type DamageSource? | Has Getter true | Has Setter false | Description Gets the damage source that caused the death of the current entity, if present; null otherwise. |
Name directKillerEntity | Type MCEntity? | Has Getter true | Has Setter false | Description Gets the entity that effectively killed the current entity, if present; null otherwise. The difference between this and killerEntity resides on the direct-ness of the entity. For example, if a player kills a skeleton with an arrow, the player will be the killerEntity , while the arrow will be the directKillerEntity . |
Name explosionRadius | Type float | Has Getter true | Has Setter false | Description Gets the explosion radius that caused the death of the entity or the destruction of the block, if present; 0.0 otherwise. |
Name killerEntity | Type MCEntity? | Has Getter true | Has Setter false | Description Gets the entity that caused the death of the current entity, if present; null otherwise. The entity may or may not be a player. To get only the player, refer to lastDamagePlayer . |
Name lastDamagePlayer | Type MCPlayerEntity? | Has Getter true | Has Setter false | Description Gets the last player that damaged the current entity, if present; null otherwise. |
Name lootTableId | Type MCResourceLocation | Has Getter true | Has Setter false | Description Gets the loot table id of the current one being rolled, if available; a place-holder otherwise. |
Name lootingModifier | Type int | Has Getter true | Has Setter false | Description Gets the looting modifier, calculated based on the current parameters. |
Name luck | Type float | Has Getter true | Has Setter false | Description Gets the luck factor of the player, as computed by the current parameters. |
Name origin | Type MCVector3d? | Has Getter true | Has Setter false | Description Gets the origin, or location, of the loot roll, if present; null otherwise. |
Name random | Type Random | Has Getter true | Has Setter false | Description Gets the random generator used in loot table rolling |
Name thisEntity | Type MCEntity? | Has Getter true | Has Setter false | Description Gets the current entity, if present; null otherwise. |
Name tileEntity | Type MCTileEntity? | Has Getter true | Has Setter false | Description Gets the block entity that was present at the location of the broken block, if present; null otherwise. |
Name tool | Type IItemStack | Has Getter true | Has Setter false | Description Gets the tool that was used to break the block or perform additional behavior, if present; an empty stack otherwise. |
Name world | Type MCServerWorld | Has Getter true | Has Setter false | Description Gets the world where the interaction happened. |