> For the complete documentation index, see [llms.txt](https://mtgmodders.gitbook.io/etg-modding-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mtgmodders.gitbook.io/etg-modding-guide/making-a-floor/rooms.md).

# Rooms

We now need to make our floors rooms, make sure to download RAT with custom enemy support, available here: <https://modworkshop.net/mod/30432>

![](/files/-Mg3Ij5_gia8tBP7tfU4)

each floor should have over a hundred rooms, around 150 is best. Once we have done that we need to add our rooms into our mod. Create a new file in your resources folder for rooms.

![](/files/-Mg3JYY9_wAyNaHA_cCs)

For this example, I will just be using expands rooms, so of course, don't copy this code exactly. Once all the rooms are in ModRooms we will need to go back to ModRoomPrefabs.

![](/files/-Mg3KxFuPWAdgpbm2qU9)

![](/files/-Mg3Kz9odb02jVnI_9cJ)

we now need to put the name of all of our rooms in here. ***do not include the path, just the room.***

Now we need to scroll down to here:&#x20;

![](/files/-Mg3LDAZ8_F9ORiRfsog)

we are going to uncomment these lines to give us the entrance and exit of our floor.

```csharp
Mod_Entrance_Room = RoomFactory.BuildFromResource("Mod/Resources/ModRooms/floorEntrance.room"); // these to need to be set up just like how you would get an item sprite
Mod_Exit_Room = RoomFactory.BuildFromResource("Mod/Resources/ModRooms/floorExit.room");
Mod_Entrance_Room.category = PrototypeDungeonRoom.RoomCategory.ENTRANCE;
```

***make sure to add line 3***

now come down here:

![](/files/-Mg3LolzYfKss7ukJeZY)

and appropriately change the path for your mod

.&#x20;

![](/files/-Mg3M-y4pEaLoePF-9-E)

change this one too. <br>

uncomment this

![](/files/-Mg3M8VMtkSliBZ7dbUz)

change the vector2 accordingly.


---

# 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://mtgmodders.gitbook.io/etg-modding-guide/making-a-floor/rooms.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.
