Added many things I can't recall but it has to do with inventory system and some minor fixes .. it's cool
This commit is contained in:
23
ReallifeGamemode.Server/Inventory/Items/Cannabis.cs
Normal file
23
ReallifeGamemode.Server/Inventory/Items/Cannabis.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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 => 1805779401;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user