# Mob Drops

#### Introduction

The Ragnarok Classic aims to deliver a balanced and rewarding gameplay experience that stays true to the spirit of classic Ragnarok Online. As part of this vision, a global drop rate cap has been implemented to ensure that no single item becomes trivially easy to obtain. This system preserves the excitement of item hunting, maintains a healthy in-game economy, and keeps farming relevant at all stages of the game. Below you'll find a detailed explanation of how the drop rate cap works and what it means for your adventure.

#### Overview

On The Ragnarok Classic, all mob item drop rates are multiplied by a **server rate multiplier** (5x for most item types) and then **hard-capped** at a maximum based on the item type. This means that even if a monster's database entry shows a high drop rate for an item, the actual in-game drop chance will never exceed the cap for that item type.

#### How Drop Rates Are Calculated

Every item drop goes through a two-step calculation before the final in-game rate is determined.

**Formula**

```
Step 1: Calculated Rate = Base Drop Rate x Rate Multiplier
Step 2: Final Drop Rate = clamp(Calculated Rate, Minimum Cap, Maximum Cap)
```

Where:

* **Base Drop Rate** -- The original drop chance defined in the monster database (the "official" 1x rate).
* **Rate Multiplier** -- The server's multiplier for that item type. On The Ragnarok Classic, most item types use **5x**.
* **Minimum Cap** -- The lowest allowed drop rate (**0.01%** for all types).
* **Maximum Cap** -- The highest allowed drop rate, which varies by item type (see table below).

In simple terms: Multiply the base rate by 5, then cap it at the maximum for that item type.

**Quick Reference Formula**

For most items (non-boss, non-treasure):

```
Final Rate = min(Base Rate x 5, Maximum Cap for item type)
```

For MVP/Boss/Treasure items:

```
Final Rate = min(Base Rate x 1, Maximum Cap for item type)
```

#### Step-by-Step Calculation Examples (Poring)

**Example 1: Jellopy (Common Item) -- Capped**

| Step | Description              | Value             |
| ---- | ------------------------ | ----------------- |
| 1    | Base Drop Rate (from DB) | 70.00%            |
| 2    | Rate Multiplier (Common) | x 5               |
| 3    | Calculated Rate          | 350.00%           |
| 4    | Maximum Cap (Common)     | 50.00%            |
|      | **Final Drop Rate**      | **50.00%** Capped |

350% far exceeds the 50% maximum, so the rate is reduced to **50%**.

**Example 2: Sticky Mucus (Common Item) -- Not Capped**

| Step | Description              | Value                 |
| ---- | ------------------------ | --------------------- |
| 1    | Base Drop Rate (from DB) | 4.00%                 |
| 2    | Rate Multiplier (Common) | x 5                   |
| 3    | Calculated Rate          | 20.00%                |
| 4    | Maximum Cap (Common)     | 50.00%                |
|      | **Final Drop Rate**      | **20.00%** Not capped |

20% is below the 50% cap, so it stays at **20%**.

**Example 3: Knife \[4] (Equipment) -- Not Capped**

| Step | Description                 | Value                |
| ---- | --------------------------- | -------------------- |
| 1    | Base Drop Rate (from DB)    | 1.00%                |
| 2    | Rate Multiplier (Equipment) | x 5                  |
| 3    | Calculated Rate             | 5.00%                |
| 4    | Maximum Cap (Equipment)     | 50.00%               |
|      | **Final Drop Rate**         | **5.00%** Not capped |

Equipment has a stricter 30% cap, but 5% is well within it.

**Example 4: Apple (Healing Item) -- Capped at Exactly the Limit**

| Step | Description               | Value                     |
| ---- | ------------------------- | ------------------------- |
| 1    | Base Drop Rate (from DB)  | 10.00%                    |
| 2    | Rate Multiplier (Healing) | x 5                       |
| 3    | Calculated Rate           | 50.00%                    |
| 4    | Maximum Cap (Healing)     | 50.00%                    |
|      | **Final Drop Rate**       | **50.00%** At cap exactly |

50% hits the cap exactly -- any higher base rate would be reduced.

**Example 5: Poring Card (Card) -- Not Capped**

| Step | Description              | Value                |
| ---- | ------------------------ | -------------------- |
| 1    | Base Drop Rate (from DB) | 0.01%                |
| 2    | Rate Multiplier (Card)   | x 5                  |
| 3    | Calculated Rate          | 0.05%                |
| 4    | Maximum Cap (Card)       | 50.00%               |
|      | **Final Drop Rate**      | **0.05%** Not capped |

Even with the 5x multiplier, card rates remain extremely low.

#### Poring Drop Table

| Monster | Item         | Type      | Base Rate | Multiplier | Calculated | Max Cap | Final Rate | Result |
| ------- | ------------ | --------- | --------- | ---------- | ---------- | ------- | ---------- | ------ |
| Poring  | Jellopy      | Common    | 70.00%    | x 5        | 350.00%    | 50%     | **50.00%** | Capped |
| Poring  | Sticky Mucus | Common    | 4.00%     | x 5        | 20.00%     | 50%     | **20.00%** | Normal |
| Poring  | Apple        | Healing   | 10.00%    | x 5        | 50.00%     | 50%     | **50.00%** | At cap |
| Poring  | Apple        | Healing   | 1.50%     | x 5        | 7.50%      | 50%     | **7.50%**  | Normal |
| Poring  | Knife \[4]   | Equipment | 1.00%     | x 5        | 5.00%      | 30%     | **5.00%**  | Normal |
| Poring  | Unripe Apple | Usable    | 0.20%     | x 5        | 1.00%      | 50%     | **1.00%**  | Normal |
| Poring  | Poring Card  | Card      | 0.01%     | x 5        | 0.05%      | 30%     | **0.05%**  | Normal |

#### Drop Rate Caps by Item Type

| Item Type          | Rate Multiplier | Maximum Cap | Min Cap | Examples                      |
| ------------------ | --------------- | ----------- | ------- | ----------------------------- |
| Common (ETC) Items | 5x              | **50%**     | 0.01%   | Jellopies, Ores, Materials    |
| Healing Items      | 5x              | **50%**     | 0.01%   | Red Potions, Blue Herbs       |
| Usable Items       | 5x              | **50%**     | 0.01%   | Fly Wings, Butterfly Wings    |
| Equipment          | 5x              | 5**0%**     | 0.01%   | Weapons, Armor, Accessories   |
| Cards              | 5x              | 5**0%**     | 0.01%   | All monster cards             |
| MVP Rewards        | 1x              | **30%**     | 0.01%   | MVP-exclusive drops           |
| Card-Granted Drops | 1x              | **10%**     | 0.01%   | Bonus drops from card effects |

#### Player Bonus Cap

In addition to the item type caps above, there is a separate **player bonus cap** of **90%**. This limits how much player bonuses (like Bubble Gum, LUK bonuses, etc.) can boost a drop rate. If a drop rate after player bonuses exceeds 90%, and the original rate was below 90%, it will be clamped to 90%.

```
Final Rate (with bonuses) = min(Rate after bonuses, 90%)
   (only if original rate was below 90%)
```

#### Why Is This in Place?

The drop rate cap is a deliberate balance decision for The Ragnarok Classic:

* **Prevents guaranteed drops** -- No item drops 100% of the time, keeping farming meaningful.
* **Maintains economy balance** -- Common materials don't flood the market.
* **Preserves the classic grind** -- Players still need to hunt for items, even common ones.
* **Keeps item value** -- Items retain their worth since supply is controlled.

#### What This Means for Players

* **Common items still drop frequently** -- A 50% chance means you'll get the item about every other kill.
* **Equipment and cards have a stricter cap** -- These top out at 50%, keeping gear and cards valuable.
* **Rare items are barely affected** -- Items with low base rates (like cards at 0.01%) only go up to 0.05% with the 5x multiplier.
* **Treasure Boxes are extra limited** -- Treasure box contents cap at just 12%.
* **Boss and MVP drops** -- Use 1x rates (no multiplier) with a 30% cap.

#### Frequently Asked Questions

**Q: I see a monster drops Jellopy at 70% on the official wiki, but I'm not getting it that often. Why?** A: The server applies a 5x multiplier to the base rate (70% x 5 = 350%), but then caps it at 50% for common items. So Jellopy effectively drops at a 50% rate.

**Q: Are card drop rates affected by the multiplier?** A: Yes, cards also receive the 5x multiplier. However, since card base rates are extremely low (typically 0.01%), the multiplied rate (0.05%) is still far below the 50% cap. The practical difference is minimal.

**Q: Does this apply to MVP drops too?** A: Yes, but MVP reward items use a 1x multiplier (no bonus) and are capped at 30%.

**Q: Do player bonuses (like Bubble Gum) work with this system?** A: Player bonuses are applied after the multiplier and item type cap. However, a separate player bonus cap of 90% prevents any single drop from exceeding 90% through bonuses alone. The item type caps (50%, 30%, etc.) are applied first and take priority.

**Q: How do I calculate the final drop rate for any item?** A: Use this formula: Take the base rate from the database, multiply by the rate multiplier for that item type (usually 5x), then cap at the maximum for that type. For example: a 6% base rate common item = 6% x 5 = 30% final rate (under the 50% cap, so unchanged).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://the-ragnarok-classic-1.gitbook.io/wiki/custom-implementation/mob-drops.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
