Files
2021-04-13 20:30:02 +02:00

20 lines
552 B
C#

/**
* @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 Thunfisch : DropItem
{
public override int Id => 25;
public override string Name => "Thunfisch";
public override string Description => "Ein Fisch";
public override int Gewicht => 11000;
public override string Einheit => "g";
public override uint Object => 786272259;
public override int Price => 0;
}
}