Item Drops

< Back


IDropTable

Namespace: TestProject

Interface for drop tables.

public interface IDropTable

Attributes NullableContextAttribute

Properties

Id

Gets the unique identifier for this drop table.

public abstract string Id { get; }

Property Value

String

MinDrops

Gets the minimum number of drops that can be generated.

public abstract int MinDrops { get; }

Property Value

Int32

MaxDrops

Gets the maximum number of drops that can be generated.

public abstract int MaxDrops { get; }

Property Value

Int32

DropChance

Gets the drop chance (0.0 to 1.0).

public abstract float DropChance { get; }

Property Value

Single


< Back