Right now we are only having the predicate of if the specific item is in the Inventory. But what if we want to have a stackable item like for example chickens and want to check if we have 20 of those chickens (with the same ID to have them stackable) in the Inventory?
case "HasInventoryItem":
return HasItem(InventoryItem.GetFromID(parameters[0]));
that’s what we have right now. But we somehow need to get the GetNumberInSlot function right? or is there a simple and easy solution for that?