If Random(75, 200) < fertility + Actor:fertility
"She's having twins!"
Actor3 = Player.generateRelativeMatchRace()
Actor3.setRelativeType(Child)
If Actor2.isValid()
addNpcRelationship(ParentChild, Actor2, Actor3)
Endif
"It's a <Actor3.boy_or_girl>! What should I name my <Actor3.son_or_daughter>?"
Actor3.enterFirstName()
Actor3:age => 0
Player:children += 1
If Random(110, 300) < fertility + Actor:fertility
"She's having triplets!"
Actor4 = Player.generateRelativeMatchRace()
Actor4.setRelativeType(Child)
If Actor2.isValid()
addNpcRelationship(ParentChild, Actor2, Actor4)
Endif
"It's a <Actor4.boy_or_girl>! What should I name my <Actor3.son_or_daughter>?"
Actor4.enterFirstName()
Actor4:age => 0
Player:children += 1
Endif
Endif