merijn_v1
Black Belt
@ Absinthered
Is is possible to have regions in the list of which areas of another region, or can it only by provinces? I created some additional regions for the generic mercs, that consist of some other, already existing regions and some provinces. (the last few lines of the example) Will this be recognized by the python? Or should I only have provinces in the list?
I hope this is clear enough.
(This is from the XML consts. Allmost at the bottom of the file.)
Is is possible to have regions in the list of which areas of another region, or can it only by provinces? I created some additional regions for the generic mercs, that consist of some other, already existing regions and some provinces. (the last few lines of the example) Will this be recognized by the python? Or should I only have provinces in the list?
I hope this is clear enough.
Spoiler :
The reason I created this regions is to have a little competition between the civs for a merc. Right now, a merc is availabe only in, for example, lRegionFrance. This makes it somewhat a free mercs for France. No one else can hire it because they have no city in the required are. If a merc in available in the territory of multiple civs, there will be a challenge to get the merc first.
(This is from the XML consts. Allmost at the bottom of the file.)
Code:
# those regions are for easier access for UHV and Mercs
lRegionIberia = [ iP_GaliciaSpain, iP_Castile, iP_Leon, iP_Lusitania, iP_Catalonia, iP_Aragon, iP_Valencia, iP_Andalusia, iP_Navarre, iP_LaMancha ]
lRegionFrance = [ iP_Normandy, iP_Bretagne, iP_IleDeFrance, iP_Orleans, iP_Picardy ]
lRegionBurgundy = [ iP_Provence, iP_Burgundy, iP_Champagne, iP_Flanders ]
lRegionBritain = [ iP_London, iP_Wales, iP_Wessex, iP_Scotland, iP_EastAnglia, iP_Mercia, iP_Northumbria, iP_Ireland ]
lRegionScandinavia = [ iP_Denmark, iP_Osterland, iP_Norway, iP_Vestfold, iP_Gotaland, iP_Svealand, iP_Norrland, iP_Oppland, iP_Skaneland, iP_Gotland ]
lRegionGermany = [ iP_Lorraine, iP_Swabia, iP_Saxony, iP_Bavaria, iP_Franconia, iP_Brandenburg ]
lRegionPoland = [ iP_Pomerania, iP_GaliciaPoland, iP_GreaterPoland, iP_LesserPoland, iP_Silesia, iP_Masovia ]
lRegionLithuania = [ iP_Lithuania, iP_Livonia, iP_Estonia ]
lRegionAustria = [ iP_Carinthia, iP_Austria, iP_Moravia, iP_Bohemia, iP_Silesia ]
lRegionHungary = [ iP_Transylvania, iP_Hungary, iP_Slavonia, iP_Croatia, iP_Pannonia, iP_UpperHungary ]
lRegionBalkans = [ iP_Serbia, iP_Thrace, iP_Macedonia, iP_Moesia, iP_Arberia, iP_Croatia, iP_Bosnia ]
lRegionGreece = [ iP_Constantinople, iP_Thessaly, iP_Epirus, iP_Morea, iP_Thessaloniki ]
lRegionAsiaMinor = [ iP_Colonea, iP_Charsiadon, iP_Cilicia, iP_Armeniakon, iP_Anatolikon, iP_Paphlagonia, iP_Thrakesion, iP_Opsikion ]
lRegionMiddleEast = [ iP_Antiochia, iP_Syria, iP_Lebanon, iP_Arabia, iP_Jerusalem ]
lRegionAfrica = [ iP_Oran, iP_Algiers, iP_Ifriqiya, iP_Cyrenaica, iP_Tripolitania, iP_Tetouan, iP_Morocco, iP_Marrakesh, iP_Fez ]
lRegionKiev = [ iP_Moldova, iP_Kiev, iP_Crimea, iP_Zaporizhia, iP_Sloboda, iP_Pereyaslavl, iP_Chernigov, iP_Podolia, iP_Minsk ]
lRegionItaly = [ iP_Lombardy, iP_Verona, iP_Tuscany, iP_Latium, iP_Calabria, iP_Apulia, iP_Malta ]
lRegionSwiss = [ iP_Bavaria, iP_Austria, iP_Swabia, iP_Burgundy, iP_Lorraine, iP_Champagne, iP_Provence, iP_Lombardy, iP_Verona, iP_Franconia, iP_Bohemia ]
lRegionRussia = [ iP_Vologda, iP_Karelia, iP_Novgorod, iP_NizhnyNovgorod, iP_Rostov, iP_Moscow, iP_Smolensk, iP_Polotsk, iP_Murom, iP_Simbirsk ]
lRegionMercWest = [ lRegionFrance, lRegionBritain, iP_Aquitania, iP_Flanders, iP_Holland, iP_Champagne, iP_Burgundy, iP_Saxony, iP_Franconia, iP_Swabia],
lRegionMercSouth = [ lRegionIberia, lRegionItaly, iP_Provence ]
lRegionMercArabia = [ lRegionAsiaMinor, lRegionMiddleEast, iP_Egypt ]
lRegionMercBaltic = [ lRegionPoland, lRegionLithuania, lRegionAustria, iP_Brandenburg ]
lRegionMercBaltic = [ lRegionHungary, lRegionBalkans, lRegionGreece ]
lRegionMercRus = [ lRegionKiev, lRegionRussia, iP_Brest, iP_Kuban, iP_Donets, iP_Volhynia ]