Results 1 to 5 of 5

Thread: Population: Is THERE population actually?

  1. #1

    Default Population: Is THERE population actually?

    because while toying around with some of the files (In campmap, I think) I came across a string that said that there was a predetermined population for provinces which affected their income and the effects special events such as plagues or Inçuisitions had on them.

    Also, I remember reading a report saying that an inçuisition resulted in a lowering of the yearly income of a province, a while ago
    Iä Cthulhu!

  2. #2

    Default Re: Population: Is THERE population actually?

    No, disasters effectively halve farm income, it's pretty much as simple as that. Inquisitions reduce zeal. The income of a province is determined in the startpos file only. For example:

    Code:
    SetAttributes::	ID_ALGERIA			"Algeria"			0		MUSLIM_CULTURE		ARID	AT_ISLAMIC				-1			300		"Algeria Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    You can see the income for Algeria here.
    “The majestic equality of the laws prohibits the rich and the poor alike from sleeping under bridges, begging in the streets and stealing bread.” - Anatole France

    "The law is like a spider’s web. The small are caught, and the great tear it up.” - Anacharsis

  3. #3
    Sage Member Wasp's Avatar
    Join Date
    Feb 2007
    Location
    Brabant, the Netherlands
    Posts
    319

    Default Re: Population: Is THERE population actually?

    I think there is no population. You can train as many units as you want in one province (maybe they import people?), and inquisitors that start burning people never seem to burn everyone.

    It would make things a lot more complicated, I think.
    The purpose of a fish trap is to catch fish, and when the fish are caught, the trap is forgotten. The purpose of a rabbit snare is to catch rabbits. When the rabbits are caught, the snare is forgotten. The purpose of words is to convey ideas. When the ideas are grasped, the words are forgotten. Where can I find a man who has forgotten words? He is the one I would like to talk to.

  4. #4

    Default Re: Population: Is THERE population actually?

    //========================================
    //Region Attributes
    //The special characteristics for a region
    //========================================
    //NOTES:
    // region id = code reference for this region
    // name = name of region ( pointer to string in "Names.txt" )
    // pop = population ( used for disaster calculations )
    // culture = culture of this region ( taken into account for rebellions, faith, happiness, etc )
    // terrain = Battlemap terrain attribute ( can be LUSH, ARID or ROCK_DESERT )
    // architechture = battlemap building styles ( can be AT_WESTERN_EUROPEAN, AT_SOUTHERN_EUROPEAN, AT_EASTERN_EUROPEAN or AT_ISLAMIC )
    // mapgroup = which group of maps this region looks up when a castle map is called for. values are from 0 -> ?. -1 specifies a random group.
    // income = the income the owner of this region gets every year from un-augmented harvests.
    // castle_name = name of the castle in this region ( pointer to string in "Names.txt" )
    // region attributes = the type of map a battle would be fought on should it occur in this region:
    // location - can be INLAND or COAST
    // vista - can be FLAT, PLAINS, HILLY, or MOUNTAIN

    This is what I found
    Iä Cthulhu!

  5. #5

    Default Re: Population: Is THERE population actually?

    Those are comments, notes on the table below. Population, though mentioned isn't used and column three actually contains the rebellious factor of a province and not it's population. It looks like old redundant information.
    Code:
    //========================================
    //Region Attributes
    //The special characteristics for a region
    //========================================
    //NOTES:
    //  region id = code reference for this region
    //  name = name of region ( pointer to string in "Names.txt" )
    //  pop = population ( used for disaster calculations )
    //  culture = culture of this region ( taken into account for rebellions, faith, happiness, etc )
    //  terrain = Battlemap terrain attribute ( can be LUSH, ARID or ROCK_DESERT )
    //  architechture = battlemap building styles ( can be AT_WESTERN_EUROPEAN, AT_SOUTHERN_EUROPEAN, AT_EASTERN_EUROPEAN or AT_ISLAMIC )
    //  mapgroup = which group of maps this region looks up when a castle map is called for. values are from 0 -> ?. -1 specifies a random group.
    //  income = the income the owner of this region gets every year from un-augmented harvests.
    //  castle_name = name of the castle in this region ( pointer to string in "Names.txt" )
    //  region attributes = the type of map a battle would be fought on should it occur in this region:
    //						location - can be INLAND or COAST
    //						vista - can be FLAT, PLAINS, HILLY, or MOUNTAIN
    
    		//region id			NAME			REBELLIOUS.	CULTURE				TERRAIN	ARCHITECHTURE			MAPGROUP	INCOME	CASTLE NAME					REGION ATTRIBUTES		VICTORY CONDITION
    
    SetAttributes::	ID_AFRICA			"Sahara"			0		MUSLIM_CULTURE		SAND_DESERT	AT_ISLAMIC			-1			90		"Africa Castle_xzy"		INLAND	FLAT		NO_RIVER	TRUE
    SetAttributes::	ID_ALGERIA			"Algeria"			0		MUSLIM_CULTURE		ARID	AT_ISLAMIC				-1			300		"Algeria Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_ANATOLIA			"Anatolia"			0		ORTHODOX_CULTURE	ARID	AT_EASTERN_EUROPEAN		-1			380		"Anatolia Castle_xzy"		INLAND	MOUNTAIN	NO_RIVER	TRUE
    SetAttributes::	ID_ANJOU			"Anjou"			    0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			315		"Anjou Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_ANTIOCH			"Antioch"			0		MUSLIM_CULTURE		ROCK_DESERT	AT_ISLAMIC				-1			585		"Antioch Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_AQUITAINE		"Aquitaine"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			334		"Aquitaine Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_ARAGON			"Aragon"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			490		"Aragon Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_ARMENIA			"Armenia"			0		MUSLIM_CULTURE		ARID	AT_EASTERN_EUROPEAN		-1			385		"Armenia Castle_xzy"		INLAND	MOUNTAIN	NO_RIVER	TRUE
    SetAttributes::	ID_AUSTRIA			"Austria"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			270		"Austria Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_BAVARIA			"Bavaria"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			300		"Bavaria Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_BOHEMIA			"Bohemia"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			280		"Bohemia Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_BRANDENBURG		"Brandenburg"		0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			285		"Brandenburg Castle_xzy"	INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_BRITTANY			"Brittany"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			270		"Brittany Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_BULGARIA			"Bulgaria"			0		ORTHODOX_CULTURE	LUSH	AT_EASTERN_EUROPEAN		-1			300		"Bulgaria Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_BURGUNDY			"Burgundy"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			310		"Burgundy Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_CARPATHIA		"Carpathia"			0		CATHOLIC_CULTURE	TEMPERATE	AT_EASTERN_EUROPEAN   	-1			360		"Carpathia Castle_xzy"     	INLAND    PLAINS     NO_RIVER	TRUE
    SetAttributes::	ID_CASTILE			"Castile"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			620		"Castile Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_CHAMPAGNE		"Champagne"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			310		"Champagne Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_CHERNIGOV		"Chernigov"			0		PAGAN_CULTURE		LUSH	AT_EASTERN_EUROPEAN		-1			316		"Chernigov Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_CONSTANTINOPLE	"Constantinople"	0		ORTHODOX_CULTURE	ARID	AT_EASTERN_EUROPEAN		-1			690		"Constantinople Castle_xzy"	INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_CORDOBA			"Cordoba"			0		MUSLIM_CULTURE		ARID	AT_SOUTHERN_EUROPEAN	-1			450		"Cordoba Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_CORSICA			"Corsica"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			95		"Corsica Castle_xzy"		COAST	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_CRETE			"Crete"			    0		ORTHODOX_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			285		"Crete Castle_xzy"			COAST	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_CROATIA			"Croatia"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			305		"Croatia Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_CRIMEA			"Crimea"			0		PAGAN_CULTURE		LUSH	AT_EASTERN_EUROPEAN 	-1			240		"Crimea Castle_xzy"        	INLAND    HILLY      NO_RIVER	TRUE
    SetAttributes::	ID_CYPRUS			"Cyprus"			0		ORTHODOX_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			180		"Cyprus Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_DENMARK			"Denmark"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			290		"Denmark Castle_xzy"		COAST	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_ARABIA			"Arabia"			0		MUSLIM_CULTURE		SAND_DESERT	AT_ISLAMIC				-1			85		"Arabia Castle_xzy"	INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_EDESSA			"Edessa"			0		MUSLIM_CULTURE		ROCK_DESERT	AT_ISLAMIC				-1			395		"Edessa Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_EGYPT			"Egypt"			    0		MUSLIM_CULTURE		SAND_DESERT	AT_ISLAMIC				-1			650		"Egypt Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_FINLAND			"Finland"			0		PAGAN_CULTURE		TEMPERATE	AT_WESTERN_EUROPEAN		-1			125		"Finland Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_FLANDERS			"Flanders"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			670		"Flanders Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_FRANCONIA		"Franconia"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			315		"Franconia Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_FREISLAND		"Friesland"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			160		"Friesland Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_GENOA			"Genoa"			    0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			316 	"Genoa Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_GEORGIA			"Georgia"			0		ORTHODOX_CULTURE	ARID	AT_EASTERN_EUROPEAN		-1			195		"Georgia Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_GRANADA			"Granada"			0		MUSLIM_CULTURE		ARID	AT_ISLAMIC				-1			400		"Granada Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_GREECE			"Greece"			0		ORTHODOX_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			450		"Greece Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_HUNGARY			"Hungary"			0		CATHOLIC_CULTURE	LUSH	AT_EASTERN_EUROPEAN		-1			575		"Hungary Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_ILE_DE_FRANCE	"Ile de France"		0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			450		"Ile de France Castle_xzy"	INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_IRELAND			"Ireland"			1		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			200		"Ireland Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_JERUSALEM		"Jerusalem"			0		MUSLIM_CULTURE		ROCK_DESERT	AT_ISLAMIC				-1			525		"Jerusalem Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_KHAZAR			"Khazar"			1		PAGAN_CULTURE		ARID	AT_EASTERN_EUROPEAN 	-1			350		"Khazar Castle_xzy"        	INLAND    PLAINS     NO_RIVER	TRUE
    SetAttributes::	ID_KIEV				"Kiev"			    0		PAGAN_CULTURE		LUSH	AT_EASTERN_EUROPEAN		-1			405		"Kiev Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_LEON				"Leon"			    0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			540		"Leon Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_LESSER_ARMENIA	"Lesser Armenia"	0		ORTHODOX_CULTURE	ARID	AT_EASTERN_EUROPEAN		-1			285		"Lesser Armenia Castle_xzy"	INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_LIBYA			"Cyrenacia"		    0		MUSLIM_CULTURE		SAND_DESERT	AT_ISLAMIC				-1			90		"Libya Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_LITHUANIA		"Lithuania"			3		ORTHODOX_CULTURE	TEMPERATE	AT_EASTERN_EUROPEAN		-1			330		"Lithuania Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_LIVONIA			"Livonia"			4		ORTHODOX_CULTURE	TEMPERATE	AT_EASTERN_EUROPEAN		-1			290		"Livonia Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_LORRAINE			"Lorraine"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			350		"Lorraine Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_MALTA			"Malta"			    0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			285		"Malta Castle_xzy"			COAST	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_MERCIA			"Mercia"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			270		"Mercia Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_MILAN			"Milan"			    0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			390		"Milan Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_MOLDAVIA			"Moldavia"			0		ORTHODOX_CULTURE	LUSH	AT_EASTERN_EUROPEAN		-1			170		"Moldavia Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_MOROCCO			"Morocco"			0		MUSLIM_CULTURE		ARID	AT_ISLAMIC				-1			255		"Morocco Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_MUSCOVY			"Muscovy"			0		PAGAN_CULTURE		TEMPERATE	AT_EASTERN_EUROPEAN		-1			355		"Muscovy Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_NAPLES			"Naples"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			260		"Naples Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_NAVARRE			"Navarre"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			295		"Navarre Castle_xzy"		INLAND	MOUNTAIN	NO_RIVER	TRUE
    SetAttributes::	ID_NICAEA			"Nicaea"			0		ORTHODOX_CULTURE	ARID	AT_EASTERN_EUROPEAN		-1			420		"Nicaea Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_NORMANDY			"Normandy"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			410		"Normandy Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_NORTH_UMBRIA		"Northumbria"		0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			230		"Northumbria Castle_xzy"	INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_NORWAY			"Norway"			0		CATHOLIC_CULTURE		TEMPERATE	AT_WESTERN_EUROPEAN		-1			85		"Norway Castle_xzy"			INLAND	MOUNTAIN	NO_RIVER	TRUE
    SetAttributes::	ID_NOVGOROD			"Novgorod"			0		ORTHODOX_CULTURE		TEMPERATE	AT_EASTERN_EUROPEAN		-1			430		"Novgorod Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_PAPAL_STATES		"Papal States"		0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			220		"Papal States Castle_xzy"	INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_PEREYASLAVL	 	"Pereyaslavl"		0		PAGAN_CULTURE		LUSH	AT_EASTERN_EUROPEAN 	-1			190		"Pereyaslavl Castle_xzy"   	INLAND    PLAINS	 RIVER  	TRUE 
    SetAttributes::	ID_POLAND			"Poland"			0		CATHOLIC_CULTURE	LUSH	AT_EASTERN_EUROPEAN		-1			420		"Poland Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_POMERANIA		"Pomerania"			1		PAGAN_CULTURE		LUSH	AT_WESTERN_EUROPEAN		-1			270		"Pomerania Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_PORTUGAL			"Portugal"			4		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			310		"Portugal Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_PROVENCE			"Provence"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			410		"Provence Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_PRUSSIA			"Prussia"			2		PAGAN_CULTURE		TEMPERATE	AT_EASTERN_EUROPEAN		-1			200		"Prussia Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_RHODES			"Rhodes"			0		ORTHODOX_CULTURE	ARID	AT_EASTERN_EUROPEAN		-1			190		"Rhodes Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_ROME				"Rome"			    0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			400		"Rome Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_RUM				"Rum"			    0		MUSLIM_CULTURE		ARID	AT_ISLAMIC				-1			515		"Rum Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_RYAZAN			"Ryazan"			0		PAGAN_CULTURE		LUSH	AT_EASTERN_EUROPEAN		-1			216		"Ryazan Castle_xzy"		INLAND	PLAINS	NO_RIVER	TRUE
    SetAttributes::	ID_SARDINIA			"Sardinia"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			120		"Sardinia Castle_xzy"		COAST	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_SAXONY			"Saxony"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			230		"Saxony Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_SCOTLAND			"Scotland"			2		CATHOLIC_CULTURE	TEMPERATE	AT_WESTERN_EUROPEAN		-1			190		"Scotland Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_SERBIA			"Serbia"			1		ORTHODOX_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			355		"Serbia Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_SICILY			"Sicily"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			540		"Sicily Castle_xzy"			COAST	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_SILESIA			"Silesia"			0		CATHOLIC_CULTURE	LUSH	AT_EASTERN_EUROPEAN		-1			320		"Silesia Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_SINAI			"Sinai"			    0		MUSLIM_CULTURE		ROCK_DESERT	AT_ISLAMIC				-1			90		"Sinai Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_SMOLENSK			"Smolensk"			0		PAGAN_CULTURE		TEMPERATE	AT_EASTERN_EUROPEAN		-1			370		"Smolensk Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_SWABIA			"Swabia"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			269		"Swabia Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_SWEDEN			"Sweden"			0		CATHOLIC_CULTURE	TEMPERATE	AT_WESTERN_EUROPEAN		-1			365		"Sweden Castle_xzy"			HILLY	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_SWITZERLAND		"Switzerland"		0		CATHOLIC_CULTURE	TEMPERATE	AT_WESTERN_EUROPEAN		-1			121		"Switzerland Castle_xzy"	INLAND	MOUNTAIN	NO_RIVER	TRUE
    SetAttributes::	ID_SYRIA			"Syria"			    0		MUSLIM_CULTURE		SAND_DESERT	AT_ISLAMIC				-1		390		"Syria Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_TOULOUSE			"Toulouse"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			390		"Toulouse Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_TREBIZOND		"Trebizond"			0		ORTHODOX_CULTURE	ARID	AT_EASTERN_EUROPEAN		-1			290		"Trebizond Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_TRIPOLI			"Tripoli"			0		MUSLIM_CULTURE		ROCK_DESERT	AT_ISLAMIC				-1			590		"Tripoli Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_TUNISIA			"Tunisia"			0		MUSLIM_CULTURE		ROCK_DESERT	AT_ISLAMIC				-1			300		"Tunisia Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_TUSCANY			"Tuscany"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			360		"Tuscany Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_TYROLIA			"Tyrolia"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			215		"Tyrolia Castle_xzy"		INLAND	MOUNTAIN	NO_RIVER	TRUE
    SetAttributes::	ID_VENICE			"Venice"			0		CATHOLIC_CULTURE	ARID	AT_SOUTHERN_EUROPEAN	-1			430		"Venice Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_VALENCIA	     	"Valencia"			0		CATHOLIC_CULTURE 	ARID	AT_SOUTHERN_EUROPEAN	-1			545		"Valencia Castle_xzy"      	INLAND    HILLY		 RIVER  	TRUE 
    SetAttributes::	ID_VOLGA_BULGARIA	"Volga-Bulgaria"	0		PAGAN_CULTURE		ARID	AT_EASTERN_EUROPEAN 	-1			310		"Volga-Bulgaria Castle_xzy"	INLAND    FLAT       NO_RIVER	TRUE
    SetAttributes::	ID_VOLHYNIA			"Volhynia"			0		PAGAN_CULTURE		LUSH	AT_EASTERN_EUROPEAN		-1			230		"Volhynia Castle_xzy"		INLAND	FLAT	NO_RIVER	TRUE
    SetAttributes::	ID_WALES			"Wales"			    0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			235		"Wales Castle_xzy"			INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes::	ID_WALLACHIA		"Wallachia"			0		ORTHODOX_CULTURE	LUSH	AT_EASTERN_EUROPEAN		-1			280		"Wallachia Castle_xzy"		INLAND	HILLY	NO_RIVER	TRUE
    SetAttributes:: ID_WESSEX   		"Wessex"			0		CATHOLIC_CULTURE	LUSH	AT_WESTERN_EUROPEAN		-1			350		"Wessex Castle_xzy"			INLAND	FLAT	NO_RIVER	TRUE
    “The majestic equality of the laws prohibits the rich and the poor alike from sleeping under bridges, begging in the streets and stealing bread.” - Anatole France

    "The law is like a spider’s web. The small are caught, and the great tear it up.” - Anacharsis

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Single Sign On provided by vBSSO