> For the complete documentation index, see [llms.txt](https://lokagamers.gitbook.io/rowiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lokagamers.gitbook.io/rowiki/unique-feature/pokemon-pet-system/pokemon-mechanics-and-formula.md).

# Pokemon Mechanics & Formula

## Mechanics

#### Intimacy

<pre><code><strong>STATUS         RATE
</strong>Loyal           910  ~ 1000
Cordial         750  ~  909
Neutral         250  ~  749
Shy             100  ~  249
Awkward           0  ~   99
</code></pre>

#### Hunger

<pre><code><strong>STATUS         RATE
</strong>Stuffed          91  ~  100
Satisfied        76  ~   90
Neutral          26  ~   75
Hungry           11  ~   25
Very Hungry       0  ~   10
</code></pre>

#### Settings

<pre><code><strong>SETTING          UE   E1   E2   ME   My   Le
</strong>Fullness          5    4    3    ?    ?    ?
IntimacyStart   250  250  250    ?    ?    ?
IntimacyFed       5    4    3    ?    ?    ?
HungerIncrease   20   20   20    ?    ?    ?
IntimacyOverfed -50  -40  -30    ?    ?    ?
IntimacyOwnerDie  0    0    0    ?    ?    ?

<strong>DETAILS
</strong>UE = Unevolved
E1 = First Evolution
E2 = Second Evolution
ME = Mega Evolution
My = Mythical
Le = Legendary

Fullness: The amount of hunger is decreased every [HungryDelay] seconds.
IntimacyStart: Amount of Intimacy the pet starts with.
IntimacyFed: Amount of Intimacy that is increased when fed.
HungerIncrease: The amount of hunger that is increased every time the pet is fed.
IntimacyOverfed: Amount of Intimacy that is increased when over-fed.
IntimacyOwnerDie: Pet’s intimacy decreases when its owner dies.
</code></pre>

{% hint style="info" %}
**Note:**\
**-** If a pet is starving, its intimacy decreases by 20 every 20 seconds.\
\- Pet auto feeding trigger hunger rate: 89
{% endhint %}

***

## Formula

#### Stats Formula \[Loyal]

* **Max HP** = 10 \* [Real Pokemon HP Stats](https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_base_stats_in_Generation_IX)
* **Max SP** = 1.5\* [Real Pokemon HP Stats](https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_base_stats_in_Generation_IX)
* **ATK** = 0.2 \* [Real Pokemon Attack Stats](https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_base_stats_in_Generation_IX)
* **MATK** = 0.2 \* [Real Pokemon Sp. Attack Stats](https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_base_stats_in_Generation_IX)
* **DEF** = 0.15 \* [Real Pokemon Defense Stats](https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_base_stats_in_Generation_IX)
* **MDEF** = 0.15 \* [Real Pokemon Sp. Defense Stats](https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_base_stats_in_Generation_IX)
* **MSPD (%)** = (0.1 \* [Real Pokemon Speed Stats](https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_base_stats_in_Generation_IX)) / 100

{% hint style="info" %}
You can see all the pokemon stats bonus list [here](/rowiki/unique-feature/pokemon-pet-system/pokemon-egg/egg-and-stats-bonus-list.md#pokemon-stats-bonus-list).
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://lokagamers.gitbook.io/rowiki/unique-feature/pokemon-pet-system/pokemon-mechanics-and-formula.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
