Add Rubbellos without function, add message /giveitem, add UseItem variable

This commit is contained in:
CroniX
2020-06-20 21:01:26 +02:00
parent ab2f247b2c
commit 13cf942b76
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace ReallifeGamemode.Server.Inventory.Items
{
public class Rubellos : UseItem
{
public override int Id => 200;
public override string Name => "Rubellos";
public override string Description => "Glücksspiel kann süchtig machen";
public override int Gewicht => 10;
public override string Einheit => "g";
public override uint Object => 875075437;
public override int Price => 0;
}
}