new Items

This commit is contained in:
michael.reiswich
2021-02-09 18:02:29 +01:00
parent f26824aaee
commit 99e546b617
8 changed files with 212 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Inventory.Items
{
class Chips : FoodItem
{
public override int Id => 100;
public override string Name => "Chips";
public override string Description => "Eine tüte Chips";
public override int Gewicht => 10;
public override string Einheit => "g";
public override int HpAmount => 10;
public override uint Object => 2240524752;
public override int Price => 20;
}
}