# List of items which should be dropped if looted.
dropItemsList = (
	'Hell crystal', 'Twinkling emerald'
)

def onReceiveItemDescription(itemId, name):
	if name in dropItemsList:
		script.StatusMessage('Dropping item: ' + name)
		return 1 # Drop this item.
	return 0 # Don't drop this item.