# 冒险

<figure><img src="/files/gNpcBlBMPxrWiRxi7J4t" alt=""><figcaption></figcaption></figure>

欢迎来到冒险功能，在这里，您可以探索不同的地图和战利品掉落，感受刺激和惊喜！

随着您穿越不同的地图，您将遇到各种挑战和障碍。但是，每个挑战都伴随着发现有价值的战利品和稀有宝藏的机会。您需要发挥您作为宝可本训练家的所有技能，穿越危险的地形，击败强大的敌人，取得胜利。

### 准备资金

最低准备资金为 2 EBEN。

*75%的准备资金会被烧毁，25%会进入该地图的隐藏宝藏。*

### 首领

任何人都可以向一个未占领的地图派遣首领。挑战者能有一定的概率在冒险期间俘虏首领。

目前支持的首领：

* Cackles

派遣首领的行为会将首领NFT永久捐赠给该地图，派遣者并不会从中受益。 然而，首领派遣者可以自定义一段台词，它将在地图页面上和首领一起呈现。 *<mark style="color:red;">如果我们认为有些台词特别不合适，我们保留从地图取回该首领的权利，不过在这种情况下我们会将首领NFT退还给派遣者。</mark>*

### 概率计算

提升等级的几率（最高50%）：&#x20;

```
const total = 4 * (10**rarity);
const max = total / 2;
const chance = Math.min(cost, max) / total;
```

找到隐藏宝藏的几率（最高50%）：

```
const total = 20000;
const max = total / 2;
const chance = Math.min(cost, max) / total;
```

掉落物品的几率（最高50%）：

```
const total = 28 * (10**(itemRarity+1));
const max = total / 2;
const chance = Math.min(Math.sqrt((Math.sqrt(power)) * cost, max) / total;
```

俘虏首领的几率（最高10%）：

```
const total = 15000;
const max = total / 10;
const chance = Math.min(Math.sqrt((Math.sqrt(power)) * cost, max) / total;
```

预计得到的PBC奖励：

```
const rewards = Math.random() * 500 * cost;
```


---

# 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://docs.benswap.cash/zhong-wen/features/pokeben/adventure.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.
