• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
Showing developer posts only. Show all posts in this thread.
I'm pretty sure you can lock to a certain province/title. But I don't have the files at home so I can't check. Post the requirements of any of the other special buildings here and I can probably figure it out fro that.
 
That might do the trick:
Code:
polish_propaganda = {

	potential = {
		or = {
			province = 429 #- Gnieznienskie
			province = 430 #- Lubusz
			province = 431 #- Poznanskie
			province = 432 #- Kaliskie
		}
		FROM = { title = d_greater_poland }
	}
	
	build_cost = 50
	build_time = 50
	
	tax_income = 3 #Replace by desired building effects
	
	ai_creation_factor = 100
		start = {
	}
}
 
It seems that province checks are not allowed on building scope. :(

edit:
nope, can't get it to work. And time is short.
Someone else has to take over... >_<
 
Last edited:
That might do the trick:
Code:
polish_propaganda = {

	potential = {
		or = {
			province = 429 #- Gnieznienskie
			province = 430 #- Lubusz
			province = 431 #- Poznanskie
			province = 432 #- Kaliskie
		}
		FROM = { title = d_greater_poland }
	}
	
	build_cost = 50
	build_time = 50
	
	tax_income = 3 #Replace by desired building effects
	
	ai_creation_factor = 100
		start = {
	}
}

The buildings are not in a province scope but the barony title scope. So you need a location = {} around that or case. And instead of FROM = { title = d_greater_poland } try duchy = { title = d_greater_poland }.
 
Last edited:
Code:
polish_propaganda = {

	potential = {
		location = {
			OR = {
				province = 429 #- Gnieznienskie
				province = 430 #- Lubusz
				province = 431 #- Poznanskie
				province = 432 #- Kaliskie
			}
		}
		duchy = { title = d_greater_poland }
	}
[...]