
Large Map

Small Map
XML Question 1
The division sign / would need to be an obelus Ć·. So far "\u00F7" works with the in XML test.

XML Question 2
Transforms are explained in-depth in the XML Guide except for their placement. Pi will use them in <territory> only (not globally).
Example for white buttons random decay
<transforms>
<transform>
<type>R</type>
<applyto>N</applyto>
<inc>-</inc>
<lower>0.5</lower>
<upper>1.5</upper>
</transform>
</transforms>
The XML Test didn't like the placement.
Keep getting a <transform> - Did not expect element transforms there
Example:
<territory>
<name>EVEN</name>
<borders>
<border>Pi4</border>
<border>Pi2</border>
<border>Pi6</border>
</borders>
<coordinates>
<smallx>61</smallx>
<smally>375</smally>
<largex>82</largex>
<largey>493</largey>
</coordinates>
<neutral>10</neutral>
<transforms>
<transform>
<type>R</type>
<applyto>N</applyto>
<inc>-</inc>
<lower>0.5</lower>
<upper>1.5</upper>
</transform>
</transforms>
</territory>
HitRed