25 lines
688 B
C#
25 lines
688 B
C#
using ReallifeGamemode.Server.Inventory.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
/**
|
|
* @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 Barsch : DropItem
|
|
{
|
|
public override int Id => 7;
|
|
public override string Name => "Kraftstoff";
|
|
public override string Description => "Der Stoff gibt dir Kraft.";
|
|
public override int Gewicht => 2600;
|
|
public override string Einheit => "g";
|
|
public override int HpAmount => 20;
|
|
public override uint Object => 786272259;
|
|
}
|
|
}
|