Table of Contents

Class GatheringDrop

Namespace
FishMMO.Shared
Assembly
FishMMO.Shared.dll

Defines a single drop entry for a GatheringNodeTemplate. Each entry specifies an item template, amount range, and weight for weighted random selection.

[Serializable]
public class GatheringDrop
Inheritance
GatheringDrop
Inherited Members

Fields

Item

The item template to drop.

public BaseItemTemplate Item

Field Value

BaseItemTemplate

MaxAmount

Maximum number of items to drop (inclusive).

[Min(1)]
public int MaxAmount

Field Value

int

MinAmount

Minimum number of items to drop (inclusive).

[Min(1)]
public int MinAmount

Field Value

int

Weight

Relative weight for weighted random selection. Higher values increase drop chance.

[Min(0.01)]
public float Weight

Field Value

float