Add Inventory-Backend

This commit is contained in:
VegaZ
2018-12-09 22:44:52 +01:00
parent 47694ea343
commit f783a889c7
7 changed files with 143 additions and 44 deletions

View File

@@ -0,0 +1,23 @@
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 : FoodItem, IItem
{
public int Id => 4;
public string Name => "Holz";
public string Description => "Ich und mein Holz.";
public int Gewicht => 1000;
public string Einheit => "g";
public override int HpAmount => 20;
}
}