hanf vielleicht fertig

This commit is contained in:
hydrant
2021-05-27 21:06:20 +02:00
parent 211269d03a
commit 60f55e0eeb
20 changed files with 2996 additions and 56 deletions

View File

@@ -9,7 +9,7 @@ using ReallifeGamemode.Server.Inventory.Interfaces;
namespace ReallifeGamemode.Server.Inventory.Items
{
public class Cannabis : DropItem
public class Cannabis : DropItem, IIllegalItem
{
public override int Id => 108;
@@ -24,5 +24,9 @@ namespace ReallifeGamemode.Server.Inventory.Items
public override uint Object => 3076948544;
public override int Price => 0;
public override bool Legal => false;
public int PriceForConfiscation { get; } = 5;
}
}