I’d like to request a change to the events output window. I would like to see all the entries of the form:
“x has reached level y.”
removed from the output. It’s overly distracting/annoying when you have a scenario with 20+ technologies and growth has gotten to double digits, because you end up with 10+ such entries every turn. Quite frankly, with the new 'application available' entries, I just ignore them anyway.
(...)
Maybe I’ve missed something in the tech model to infrastructure model interaction descriptions, but I think we’ll need to add another tag to the technology structure in the XML file, as an example, I’ll use the plow. (...) Why not name the levels of farming and have one of them named ‘plow’? This way, instead of seeing “Farming has reached level 0.5”, you’d see “Our farming technology is advancing! We have discovered the Plow.” Obviously at .1 increments, there would be far too many levels to name individually, so we’d only define major levels (and only display those major levels in the events output), like so:
code:
<technology>
<name>Farming</name>
<tier>3</tier>
<growthrate>1.0</growthrate>
<upkeep>1.0</upkeep>
<helper>
<name>Agriculture</name>
<requirement>0.0</requirement>
<effect>0.5</effect>
</helper>
<naming> *Start of new stuff
<namedlevel>
<level>0.5</level>
<name>Plow</name>
</namedlevel>
</naming> *End of new stuff
</technology>
Bookmarks