Refactored inventory system

This commit is contained in:
hydrant
2018-12-18 22:23:33 +01:00
parent 4b81803883
commit 402b7d4f41
8 changed files with 42 additions and 37 deletions

View File

@@ -11,13 +11,13 @@ using System.Text;
namespace reallife_gamemode.Server.Inventory.Items
{
public class Chickenburger : FoodItem, IItem
{
public int Id => 3;
public string Name => "Chickenburger";
public string Description => "Hühnchenburger";
public int Gewicht => 330;
public string Einheit => "g";
public class Chickenburger : FoodItem
{
public override int Id => 3;
public override string Name => "Chickenburger";
public override string Description => "Hühnchenburger";
public override int Gewicht => 330;
public override string Einheit => "g";
public override int HpAmount => 25;
}
}