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 Cannabis : IDroppableItem { public int Id => 4; public string Name => "Grünes Gift"; public string Description => "puff puff and pass"; public int Gewicht => 50; public string Einheit => "g"; public uint Object => 3076948544; public int Price => 0; } }