Description: Female lovers can get each other pregnant and can even allow females over 45 to get pregnant.
Mods: None
DLC: All
Replication: Get a female lover as a female landed character and wait - it could take a while, changing the MTTH of an event could help. Events in question WoL.1160 & WoL.1161, I know I usually post all the event code but these events are fairly sizable so I am only focusing on the impregnantion code.
The events never check gender before this point. If you and your lover are both female, magical stuff happens.
Mods: None
DLC: All
Replication: Get a female lover as a female landed character and wait - it could take a while, changing the MTTH of an event could help. Events in question WoL.1160 & WoL.1161, I know I usually post all the event code but these events are fairly sizable so I am only focusing on the impregnantion code.
Code:
hidden_tooltip = {
if = {
limit = {
fertility = 0.33
FROM = { fertility = 0.33 }
OR = {
AND = {
is_female = yes
NOT = { age = 45 }
}
FROM = {
is_female = yes
NOT = { age = 45 }
}
}
}
random = {
chance = 50
if = {
limit = {
FROM = {
OR = {
is_married = yes
is_consort = yes
}
}
}
impregnate_cuckoo = FROM
break = yes
}
impregnate = FROM
}
}
}
The events never check gender before this point. If you and your lover are both female, magical stuff happens.
Upvote
0