add item Chips & Apfel

This commit is contained in:
Michael
2020-06-23 18:57:52 +02:00
parent c11fe57160
commit 27fccd807c
5 changed files with 98 additions and 1 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 => "Chips";
public override int Gewicht => 100;
public override string Einheit => "g";
public override int HpAmount => 10;
public override uint Object => 2240524752;
public override int Price => 20;
}
}