Start work on Inventory System
This commit is contained in:
23
Server/Inventory/Items/Hamburger.cs
Normal file
23
Server/Inventory/Items/Hamburger.cs
Normal 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 Hamburger : FoodItem, IItem
|
||||
{
|
||||
public int Id => 1;
|
||||
public string Name => "Hamburger";
|
||||
public string Description => "Ein leckerer Hamburger.";
|
||||
public int Gewicht => 300;
|
||||
public string Einheit => "g";
|
||||
public override int HpAmount => 50;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user