24 lines
646 B
C#
24 lines
646 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 Kraftstoff : FoodItem, IItem
|
|
{
|
|
public int Id => 5;
|
|
public string Name => "Kraftstoff";
|
|
public string Description => "Der Stoff gibt dir Kraft.";
|
|
public int Gewicht => 1000;
|
|
public string Einheit => "g";
|
|
public override int HpAmount => 20;
|
|
}
|
|
}
|