[+] Improved Inventory System based on old Inventory Manager and new GUI. (test version)
This commit is contained in:
24
ReallifeGamemode.Server/Inventory/Items/Flunder.cs
Normal file
24
ReallifeGamemode.Server/Inventory/Items/Flunder.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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 Flunder : DropItem
|
||||
{
|
||||
public override int Id => 5;
|
||||
public override string Name => "Flunder";
|
||||
public override string Description => "Ein Fisch";
|
||||
public override int Gewicht => 7700;
|
||||
public override string Einheit => "g";
|
||||
public override int HpAmount => 20;
|
||||
public override uint Object => 786272259;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user