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:
24
ReallifeGamemode.Server/Inventory/Items/Cocain.cs
Normal file
24
ReallifeGamemode.Server/Inventory/Items/Cocain.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 Chickenburger (Chickenburger.cs)
|
||||
* @author VegaZ
|
||||
* @copyright (c) 2008 - 2018 Life of German
|
||||
*/
|
||||
|
||||
namespace ReallifeGamemode.Server.Inventory.Items
|
||||
{
|
||||
public class Cocain : FoodItem
|
||||
{
|
||||
public override int Id => 3;
|
||||
public override string Name => "Kosks";
|
||||
public override string Description => "Rave";
|
||||
public override int Gewicht => 50;
|
||||
public override string Einheit => "g";
|
||||
public override int HpAmount => 25;
|
||||
public override uint Object => 2240524752;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user