Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Items/Apfel.cs
michael.reiswich 99e546b617 new Items
2021-02-09 18:02:29 +01:00

19 lines
498 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Inventory.Items
{
class Apfel : FoodItem
{
public override int Id => 101;
public override string Name => "Apfel";
public override string Description => "Ein Apfel";
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;
}
}