Add drop to Inventory

This commit is contained in:
VegaZ
2018-12-19 20:22:00 +01:00
parent a542409855
commit a04cd81ede
11 changed files with 76 additions and 26 deletions

View File

@@ -11,7 +11,7 @@ using System.Text;
namespace reallife_gamemode.Server.Inventory.Items
{
public class Cheeseburger : FoodItem
public class Cheeseburger : DropItem
{
public override int Id => 2;
public override string Name => "Cheeseburger";
@@ -19,5 +19,6 @@ namespace reallife_gamemode.Server.Inventory.Items
public override int Gewicht => 320;
public override string Einheit => "g";
public override int HpAmount => 20;
public override uint Object => 2240524752;
}
}