Class GatheringDrop
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
MaxAmount
Maximum number of items to drop (inclusive).
[Min(1)]
public int MaxAmount
Field Value
MinAmount
Minimum number of items to drop (inclusive).
[Min(1)]
public int MinAmount
Field Value
Weight
Relative weight for weighted random selection. Higher values increase drop chance.
[Min(0.01)]
public float Weight