How many doors are on each floor

dungeon-of-the-endless

Let's say I'm on Floor 2 in Dungeon of the Endless. I've opened 4 doors, and I need to decide whether my 3-per-door industry module will pay for itself by the time I reach the exit.

How many doors can I expect on each floor?

Best Answer

I analyzed the associated section from the GameConfig.xml according to some information that was provided here.

<!-- ============= DUNGEON ROOM COUNT ============= -->
<DungeonRoomCountMin>
    <CurveOperation Type="Multiplication">
        <Curve Abscissa="Level">
            <CurvePoint X="1" Y="12" Link="true" />
            <CurvePoint X="8" Y="26" Link="true" />
            <CurvePoint X="11" Y="28" Factor="0" />
        </Curve>
        <Curve Abscissa="PlayerCount" BaseValue="1">
        </Curve>
    </CurveOperation>
</DungeonRoomCountMin>

<DungeonRoomCountMax>
    <CurveOperation Type="Multiplication">
        <Curve Abscissa="Level">
            <CurvePoint X="1" Y="16" Link="true" />
            <CurvePoint X="9" Y="32" Link="true" />
            <CurvePoint X="12" Y="34" Factor="0" />
        </Curve>
        <Curve Abscissa="PlayerCount" BaseValue="1">
        </Curve>
    </CurveOperation>
</DungeonRoomCountMax>

I entered the given values (in bold) into a table and extrapolated the missing values. Link="true" means that linear interpolation between two successive values is used. Factor="0" sets the slope to 0, so following values stay the same.

Table

Graph