25 lines
711 B
C#
25 lines
711 B
C#
using reallife_gamemode.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 reallife_gamemode.Server.Inventory.Items
|
|
{
|
|
public class Holz : DropItem
|
|
{
|
|
public override int Id => 4;
|
|
public override string Name => "Holz";
|
|
public override string Description => "Ich und mein Holz.";
|
|
public override int Gewicht => 1000;
|
|
public override string Einheit => "g";
|
|
public override int HpAmount => 20;
|
|
public override uint Object => 1805779401;
|
|
}
|
|
}
|