inventar test

This commit is contained in:
hydrant
2021-04-11 15:22:44 +02:00
parent 0a02b3d508
commit d27b205242
2 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Inventory.Items
{
class AChips : FoodItem
{
public override int Id => 104;
public override string Name => "Aviates Chips";
public override string Description => "aviate liebt sie.";
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;
}
}