Add legal option to items

This commit is contained in:
hydrant
2021-05-20 11:58:15 +02:00
parent 6782751d09
commit 467e0a4248
7 changed files with 52 additions and 41 deletions

View File

@@ -9,13 +9,13 @@ using ReallifeGamemode.Server.Inventory.Interfaces;
namespace ReallifeGamemode.Server.Inventory.Items
{
public class Cannabis : ConsumableItem
public class Cannabis : DropItem
{
public override int Id => 108;
public override string Name => "Grünes Gift";
public override string Name => "Cannabis";
public override string Description => "puff puff and pass";
public override string Description => "kein brokkoli";
public override int Gewicht => 2;
@@ -24,14 +24,5 @@ namespace ReallifeGamemode.Server.Inventory.Items
public override uint Object => 3076948544;
public override int Price => 0;
public override int HpAmount => -5;
public override float Cooldown => 20000;
public override void Consume(UserItem uItem)
{
//nothing
}
}
}