Gameplay XML for beliefs

bc1

Joined
Jan 12, 2004
Messages
1,315
Does anyone know how the game determines that "Dance of the aurora" does not generate faith on tundra tiles with forests ? I have only found that faith should be generated on tundra tiles, in ...\Gameplay\XML\CIV5Beliefs.xml:
Code:
	<Belief_TerrainYieldChanges>
		<Row>
			<BeliefType>BELIEF_DANCE_AURORA</BeliefType>
			<TerrainType>TERRAIN_TUNDRA</TerrainType>
			<YieldType>YIELD_FAITH</YieldType>
			<Yield>1</Yield>
		</Row>
	</Belief_TerrainYieldChanges>
but nothing about forests...
Thanks
 
It's handled by the YieldNotAdditive tag on FEATURE_FOREST. It means ignore the yields we get due to terrain.
 
Back
Top Bottom