21 lines
581 B
C#
21 lines
581 B
C#
/**
|
|
* @overview Life of German Reallife - Inventory Items Hamburger (Hamburger.cs)
|
|
* @author VegaZ
|
|
* @copyright (c) 2008 - 2018 Life of German
|
|
*/
|
|
|
|
namespace ReallifeGamemode.Server.Inventory.Items
|
|
{
|
|
public class Lachs : DropItem
|
|
{
|
|
public override int Id => 8;
|
|
public override string Name => "Lachs";
|
|
public override string Description => "Du Lachs";
|
|
public override int Gewicht => 4200;
|
|
public override string Einheit => "g";
|
|
public override int HpAmount => 20;
|
|
public override uint Object => 786272259;
|
|
public override int Price => 0;
|
|
}
|
|
}
|