Salvage
Salvaging breaks down crafted equipment into raw materials. The amount returned is based on the original recipe cost.
Material Returns
returnQty = floor(originalQty * 0.6)
Each material from the original recipe is returned at 60% of the original quantity (rounded down). At least one unit of the primary material is always returned.
| Constant | Value | Description |
|---|---|---|
SALVAGE_BASE_REFUND_RATE | 60% | Percentage of original materials returned |
SALVAGE_MIN_PRIMARY_RETURN | 1 | Minimum quantity returned for the primary material |
Turn Cost
Each salvage operation costs 50 turns.
Batch Salvage
Multiple items can be salvaged in a single request, up to a maximum of 50 items per batch. Turn cost is charged per item.
| Constant | Value | Description |
|---|---|---|
SALVAGE_TURN_COST | 50 | Turns per item salvaged |
SALVAGE_BATCH_LIMIT | 50 | Maximum items per batch salvage request |