> For the complete documentation index, see [llms.txt](https://gtfo-modding.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gtfo-modding.gitbook.io/wiki/mods-documentation/noteworthymods.md).

# Noteworthy Mods

## [EEC](https://gtfo.thunderstore.io/package/EEC/EEC_I/)

EEC aka ExtraEnemyCustomization adds a lot more flexibility for designing enemies.

## [LGTuner](https://gtfo.thunderstore.io/package/Flowaria/LGTuner/)

LGTuner is a plugin that adds support to modify results of LevelGeneration by swapping their tiles and plugs. It allows multiple complexes in a level.

LGTuner also helps preserve your LevelLayout between rundowns - level layout constructed with LGTuner should be mostly unchanged. Some things might still be changed, such as markers.&#x20;

## [MTFO.Ext.PartialData](https://gtfo.thunderstore.io/package/Flowaria/MTFO_Extension_PartialData/)

PartialData is a plugin that helps Rundown Developers manage datablocks. It includes the following features:

1. ***Splitting up datablocks***. It allows you to, for example, store `LevelLayoutData` for different layers/levels in separate files. Also allows separated files to be stored in different folders, enabling datablock categorization.
2. ***Proxy for*** `PersistentID` ***management***. It allows you to use strings, which is more readable and make the datablocks more manageable, as the uint `persistentID`. PartialData will help you map persistentID strings to actual uint IDs and detect duplicate IDs.
3. ***Live Editing***. Something similar to "Hot Reload" in MTFO. The difference is that you don't have to press the "Reload Gamedata" button - PartialData checks and applies those changes immediately after you have edited the datablock file, though for most datablocks you still have to regenerate the level to check the changes.\
   Particularly, changes of `LightSettings` of a zone will be applied immediately without regenerating the level.


---

# 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://gtfo-modding.gitbook.io/wiki/mods-documentation/noteworthymods.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.
