add airmakes faction changes (wt)

This commit is contained in:
michael.reiswich
2021-04-11 00:19:07 +02:00
parent 8c0e440d2e
commit a672428446
9 changed files with 71 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Inventory.Items
{
class AssaultRifle : WeaponDealItem
{
public override int Id => 13;
public override string Name => "AssaultRifle";
public override string Description => "Waffe";
public override int Gewicht => 500;
public override string Einheit => "g";
public override uint Object => 3666746839; //3061944032
public override int Price => 0;
}
}