Refactored inventory system
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user