# Configuration

CobbleTooHot auto-merges its config on load (missing keys get filled) and writes a cleaned-up canonical JSON.

### File

* `config/CobbleTooHot/config.json`

### Top-Level Options

* `enabled` (boolean): master enable/disable switch.
* `radiusBlocks` (number): how far around a player to look for nearby Pokémon entities.
* `maxTotalShift` (int): caps combined effect after summing nearby Pokémon influences.
* `updateIntervalTicks` (int): how often to re-scan nearby Pokémon per player (20 = once/second).

### `perPokemon` (recommended)

Map of species id → TAN temperature level:

* Keys: `cobblemon:charizard`, `cobblemon:articuno`, etc.
* Values: `ICY | COLD | NEUTRAL | WARM | HOT`

### `perType` (optional)

Fallback map of type → TAN temperature level, used only when a species is not present in `perPokemon`.

* Keys: Cobblemon type showdown ids like `fire`, `ice`, `water`
* Values: `ICY | COLD | NEUTRAL | WARM | HOT`

Dual-types are averaged between the two type influences.

### Example Config:

```json
{
  "enabled": true,
  "radiusBlocks": 8.0,
  "maxTotalShift": 4,
  "updateIntervalTicks": 20,
  "perPokemon": {
    "cobblemon:charizard": "HOT",
    "cobblemon:charmander": "WARM",
    "cobblemon:articuno": "ICY",
    "cobblemon:abomasnow": "COLD"
  },
  "perType": {
    "fire": "HOT",
    "ice": "ICY"
  }
}
```


---

# 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://dawnshade.gitbook.io/dawnshade-docs/docs/cobble-too-hot/summary/configuration.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.
