Two issues.
For my own personal mod I'm adding Warhammer Slaaneshi daemons (care of the Geheimnisnacht mod) as a new culture off the western coast of Europe. First, I want to add a slaanesh_daemon and slaanesh_daemonette trait that males and females of the culture always have instantly instead of using the command console to add it to them in-game, if that's possible. In my tests so far, I create a slaanesh character but male or female, they lack the trait, but I can add it using add_trait. Each code looks like this currently:
I don't know if something there in the conditions is wrong or missing. Or can what I'm trying to do even be done? Does there need to be a chance = 100?
The second question is that I've created a daemon_blood trait for offspring of human/daemon partners. The agnatic/enatic works fine if the parent has the trait, as I want it to always be passed on generation after generation. However I don't know how, again if possible, to have a character born with the trait from the initial human/daemon mating. The code for daemon_blood currently looks like this:
So, if anyone has any thoughts on how I can make these work how I'd like please let me know. And if I'm asking for something that just can't be done as I'm imagining, please let me know. And if you like the idea and want to use it yourself, go right ahead (just credit me if it's a public mod.)
For my own personal mod I'm adding Warhammer Slaaneshi daemons (care of the Geheimnisnacht mod) as a new culture off the western coast of Europe. First, I want to add a slaanesh_daemon and slaanesh_daemonette trait that males and females of the culture always have instantly instead of using the command console to add it to them in-game, if that's possible. In my tests so far, I create a slaanesh character but male or female, they lack the trait, but I can add it using add_trait. Each code looks like this currently:
Code:
slaanesh_daemonette = {
potential = {
culture = slaaneshi
is_female = yes
}
opposites = {
slaanesh_daemon
}
same_opinion = 10
opposite_opinion = 10
general_opinion = 15
sex_appeal_opinion = 50
fertility = 0.25
health = 100
combat_rating = 4
martial = 5
diplomacy = 5
intrigue = 6
customizer = no
}
slaanesh_daemon = {
potential = {
culture = slaaneshi
is_female = no
}
opposites = {
slaanesh_daemonette
}
same_opinion = 10
opposite_opinion = 10
general_opinion = 15
sex_appeal_opinion = 50
fertility = 0.25
health = 100
combat_rating = 4
martial = 5
diplomacy = 5
intrigue = 6
customizer = no
}
I don't know if something there in the conditions is wrong or missing. Or can what I'm trying to do even be done? Does there need to be a chance = 100?
The second question is that I've created a daemon_blood trait for offspring of human/daemon partners. The agnatic/enatic works fine if the parent has the trait, as I want it to always be passed on generation after generation. However I don't know how, again if possible, to have a character born with the trait from the initial human/daemon mating. The code for daemon_blood currently looks like this:
Code:
daemon_blood = {
potential = {
OR = {
culture = slaaneshi
}
}
agnatic = yes
enatic = yes
same_opinion = 5
vassal_opinion = 5
general_opinion = 10
sex_appeal_opinion = 25
fertility = 0.1
health = 100
combat_rating = 3
martial = 5
diplomacy = 5
intrigue = 6
}
So, if anyone has any thoughts on how I can make these work how I'd like please let me know. And if I'm asking for something that just can't be done as I'm imagining, please let me know. And if you like the idea and want to use it yourself, go right ahead (just credit me if it's a public mod.)