Reworking Dance of the aurora and Desert folklore

Littlebob86

Prince
Joined
Oct 24, 2016
Messages
332
Hey team!

How would I edit the base game files to change these 2 pantheons to +1 for every 2 adjacent tile or hill tile?

I feel +1 of 1 is too OP

Thanks in advance!
 
Based on how Indonesia bonus, looks like you just need to add in a piece within the ModifierArgument table to require 2 tiles instead of using the default 1 tile.

Code:
<ModifierArguments>
...
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>DistrictType</Name>
            <Value>DISTRICT_HOLY_SITE</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>TerrainType</Name>
            <Value>TERRAIN_COAST</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>YieldType</Name>
            <Value>YIELD_FAITH</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>Amount</Name>
            <Value>1</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>TilesRequired</Name>
            <Value>2</Value>
        </Row>
...
</ModifierArguments>

So in your mod, you should just need to add the following section to apply that to the Dance of the Aurora belief so that 2 tiles are required.

Code:
<ModifierArguments>
...
        <Row>
            <ModifierId>DANCE_OF_THE_AURORA_FAITHTUNDRAADJACENCY</ModifierId>
            <Name>TilesRequired</Name>
            <Value>2</Value>
        </Row>
...
</ModifierArguments>
 
Based on how Indonesia bonus, looks like you just need to add in a piece within the ModifierArgument table to require 2 tiles instead of using the default 1 tile.

Code:
<ModifierArguments>
...
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>DistrictType</Name>
            <Value>DISTRICT_HOLY_SITE</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>TerrainType</Name>
            <Value>TERRAIN_COAST</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>YieldType</Name>
            <Value>YIELD_FAITH</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>Amount</Name>
            <Value>1</Value>
        </Row>
        <Row>
            <ModifierId>TRAIT_NUSANTARA_COAST_HOLY_SITE</ModifierId>
            <Name>TilesRequired</Name>
            <Value>2</Value>
        </Row>
...
</ModifierArguments>

So in your mod, you should just need to add the following section to apply that to the Dance of the Aurora belief so that 2 tiles are required.

Code:
<ModifierArguments>
...
        <Row>
            <ModifierId>DANCE_OF_THE_AURORA_FAITHTUNDRAADJACENCY</ModifierId>
            <Name>TilesRequired</Name>
            <Value>2</Value>
        </Row>
...
</ModifierArguments>
Thanks! Someone on discord replied saying pantheons couldn't do the 2 tiled required adjacency bonus, as it was only for districts..

But I'll give this a shot.

Otherwise I may just set them to require hills in both the terrains
 
Thanks, it has worked! Although, I think it may be better to change pantheons to +1 for every 2 adjacent plain tile and +1 for every hill tile. SQL for this:
INSERT OR IGNORE INTO ModifierArguments (ModifierId, Name, Value) VALUES ('DESERT_FOLKLORE_FAITHDESERTADJACENCY', 'TilesRequired', 2);
INSERT OR IGNORE INTO ModifierArguments (ModifierId, Name, Value) VALUES ('DANCE_OF_THE_AURORA_FAITHTUNDRAADJACENCY', 'TilesRequired', 2);
 
Wow, thanks so much. I'll give these a go when I can. I don't know how to upload onto the steam workshop, otherwise I would and credit you guys :)
 
Back
Top Bottom