[LP] (Not error) [1.0.12.43] Ramses ability wrong description?

Infixo

Deity
Joined
Jan 9, 2016
Messages
4,015
Location
Warsaw
Ramses UA: <Gain [ICON_CULTURE] Culture equal to 15% of the construction cost when finishing Buildings and 30% when completing Wonders.
In reality you loose 15% of Culture...
<Row>
<ModifierId>RAMSES_CULTURE_NEGATIVE_BUILDINGS</ModifierId>
<Name>BuildingProductionPercent</Name>
<Value>-15</Value>
</Row>
I think the description is wrong since even the modifier name suggests that it is negative impact.
 
It seems to work correctly. Notice that the modifier name is NEGATIVE and the value is negative so the result is positive? But I have no idea why it has been implemented like that.

For wonders it is positive name + positive value.

XML:
        <Row>
            <ModifierId>RAMSES_CULTURE_POSITIVE_WONDERS_BUILDINGS</ModifierId>
            <Name>YieldType</Name>
            <Value>YIELD_CULTURE</Value>
        </Row>
        <Row>
            <ModifierId>RAMSES_CULTURE_POSITIVE_WONDERS_BUILDINGS</ModifierId>
            <Name>BuildingProductionPercent</Name>
            <Value>30</Value>
        </Row>
 
But I have no idea why it has been implemented like that.
They've been hooking into other things throughout the pass so my guess is they've repurposed the Mali malus to producing buildings.
 
Top Bottom