19 lines
477 B
C#
19 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Inventory.Items
|
|
{
|
|
class Stungun : WeaponDealItem
|
|
{
|
|
public override int Id => 11;
|
|
public override string Name => "Stungun";
|
|
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;
|
|
|
|
}
|
|
}
|