Files
2021-03-24 22:53:36 +01:00

20 lines
563 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 Pistol50 : WeaponDealItem
{
public override int Id => 2;
public override string Name => "Pistol50";
public override string Description => "Waffe";
public override int Gewicht => 250;
public override string Einheit => "g";
public override uint Object => 3666746839; //3061944032
public override int Price => 0;
}
}