21 lines
586 B
C#
21 lines
586 B
C#
/**
|
|
* @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 => 31;
|
|
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;
|
|
public override int Price => 0;
|
|
}
|
|
}
|