public void AddInvetory(string itemName)
 {
     if (InventoryList.Count < this.InvetoryMax)
     {
         InventoryList.Add(itemName);
         InventoryFull?.Invoke(this, $"{itemName} was discarded");
     }
 }