Add Hanf items, some inventory mess removed
This commit is contained in:
17
ReallifeGamemode.Server/Inventory/Items/CannabisSeeds.cs
Normal file
17
ReallifeGamemode.Server/Inventory/Items/CannabisSeeds.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Inventory.Items
|
||||
{
|
||||
public class CannabisSeeds : BaseItem
|
||||
{
|
||||
public override int Id { get; } = 109;
|
||||
public override string Name { get; } = "Cannabis Samen";
|
||||
public override string Description { get; } = "vierhundertzwanzig lodere es";
|
||||
public override int Gewicht { get; } = 10;
|
||||
public override string Einheit { get; } = "g";
|
||||
public override int Price { get; } = 0;
|
||||
public override bool Legal => false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user