A small :P problem with the ruleset
-
- Member
- Posts: 1781
- Joined: Thu Jan 01, 1970 12:00 am
A small :P problem with the ruleset
Small wonders seem to have a global effect or so I was told. Does anyone have idea how is this possible? I'm trying to figure it out but no luck yet.
- HanduMan
- Member
- Posts: 115
- Joined: Thu Jan 01, 1970 12:00 am
Those missing effects will not fix the pyramids issue though. There is a problem with the definition of the penalty effects. In effects.ruleset, the regs are ANDed but nregs are ORed.
The effect for Despotism is:
So, there is a -1 penalty on worked tile with resource value more than 2 if player is running their civilization on Despotism.
The effect is cancelled if the player has built the pyramids OR any player has invented the railroad tech.
I think the railroad should be removed from nreqs and new effects (for both despo & tribal) added to re-instate the effect in case of pyramids gone obsolete:
The effect for Despotism is:
Code: Select all
; Railroad because makes Pyramids obsolete
[effect_gov_tile_penalty_despotism]
name = "Output_Penalty_Tile"
value = 2
reqs =
{ "type", "name", "range"
"Gov", "Despotism", "Player"
}
nreqs =
{ "type", "name", "range"
"Building", "Pyramids", "Player"
"Tech", "Railroad", "World"
}
The effect is cancelled if the player has built the pyramids OR any player has invented the railroad tech.
I think the railroad should be removed from nreqs and new effects (for both despo & tribal) added to re-instate the effect in case of pyramids gone obsolete:
Code: Select all
; The basic penalty effect cancelled by pyramids
[effect_gov_tile_penalty_despotism]
name = "Output_Penalty_Tile"
value = 2
reqs =
{ "type", "name", "range"
"Gov", "Despotism", "Player"
}
nreqs =
{ "type", "name", "range"
"Building", "Pyramids", "Player"
}
; Railroad makes Pyramids obsolete
[effect_gov_tile_penalty_despotism_0]
name = "Output_Penalty_Tile"
value = 2
reqs =
{ "type", "name", "range"
"Gov", "Despotism", "Player"
"Building", "Pyramids", "Player"
"Tech", "Railroad", "World"
}
;nreqs =
; { "type", "name", "range"
; }
-
- Member
- Posts: 1781
- Joined: Thu Jan 01, 1970 12:00 am