• 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.

Sleight of Hand

retired modder
On Probation
14 Badges
Feb 14, 2012
12.114
5.868
  • Crusader Kings II
  • Darkest Hour
  • Europa Universalis IV: Call to arms event
  • For The Glory
  • Hearts of Iron III
  • March of the Eagles
  • Europa Universalis IV
  • Victoria 2
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis IV: Pre-order
  • Hearts of Iron IV Sign-up
  • Stellaris Sign-up
  • Steel Division: Normand 44 Sign-up
There are three members of House Buchanan (20085); the founder is a Scot, but his son and granddaughter are Irish. As they're based in Buchan in the north-east of Scotland and don't appear to have any real link to Ireland, I would suggest this is a bug.

The father is this guy, already in scottish.txt:

Code:
131006 = {  	
	name="Kenneth"
	dynasty=20085
	martial=6
	diplomacy=3
	intrigue=4
	stewardship=7
	religion="catholic"
	culture="scottish"
	add_trait="tough_soldier"
	1051.1.1={
		birth="1051.1.1"
	}
	1101.1.1={
		death="1101.1.1"
	}
}

So all we need to do is move his two kids over from irish.txt and change their names and cultures like so:

Code:
232598 = {
	name="[COLOR="#FF8C00"]Gartnait[/COLOR]"
	dynasty=20085
	religion="catholic"
	culture="[COLOR="#FF8C00"]scottish[/COLOR]"
	[COLOR="#FF8C00"]add_trait="martial_cleric"[/COLOR]
	father = 131006
	1080.1.1={
		birth="1080.1.1"
	}
	1135.1.1={
		death="1135.1.1"
	}
}

I gave him an education trait because he didn't have one.

Code:
232599 = {
	name="[COLOR="#FF8C00"]Eva[/COLOR]"
	female = yes
	dynasty=20085
	martial=4
	diplomacy=4
	intrigue=4
	stewardship=4
	religion="catholic"
	culture="[COLOR="#FF8C00"]scottish[/COLOR]"
	add_trait="arbitrary"
	add_trait="patient"
	add_trait="thrifty_clerk"
	father = 232598
	1118.1.1={
		birth="1118.1.1"
	}
	1180.1.1={
		death="1180.1.1"
	}
}

Done.
 
Upvote 0