Sleepy_Head

Member
Jan 1, 2020
350
244
199
could I ask how do you get gugnir before taking diamond city?
Send your 5 highest damaging generals to the crystal at the north of the snow kingdom.
Beatrice is a good candidate since her spells stalls a lot.
Nora and Marion are also good if you got lucky and unlocked their good skills like million slashes or continous fire.
 

Kintty

Newbie
Mar 25, 2021
70
130
156
For the Romance Them All mod I did complete some parts. The female generals were able to become pregnant from Ares with dialogue stating the king doesn't have to know.
Hey. Don't know if you'll ever come back to this, but since you've shown to care about user interest, then I'm showing mine. Ever since I first played this game what now feels like an eternity ago, it's been endlessly frustrating that the protagonist couldn't impregnate anyone. I don't really care about having a harem, I just want to have a friendly competition with the king to see who pops out more babies.

With the release of D&B I'm feeling ready to give this game another go. Gonna give your mods a try and, gods be willing, maybe someday Ares will no longer be sterile.
 
  • Like
Reactions: An0nM4n

Kintty

Newbie
Mar 25, 2021
70
130
156
So, I decided I didn't want to wait. And then I did a thing.
You don't have permission to view the spoiler content. Log in or register now.
I'm still doing the thing. I think it's coming along relatively nicely for someone who has zero coding experience and for being my first mod ever. But as I plow along I realize just how freaking hard my self imposed task is. I've already picked the low hanging fruit, and if I want to do anything greater I'm going to need help.

Like, for starters, what is the coding language used in kirikiri? I'd like to educate myself on this matter, but I don't even know what I should be looking up. Anyone knows of a conveniently helpful manual or documentation about this?

And, if there's anyone artistically inclined still in this thread who cares about this game, perhaps you'd be willing to lend a hand? Nothing too onerous, just darkening some nipples.

I think I could release a rather basic version by next weekend, where you can impregnate the girls when you talk to them and that's about it. But I'm really hoping to achieve something a bit more complex.
 

Setcheck64

Member
Jun 1, 2019
152
246
78
So, I decided I didn't want to wait. And then I did a thing.
You don't have permission to view the spoiler content. Log in or register now.
I'm still doing the thing. I think it's coming along relatively nicely for someone who has zero coding experience and for being my first mod ever. But as I plow along I realize just how freaking hard my self imposed task is. I've already picked the low hanging fruit, and if I want to do anything greater I'm going to need help.

Like, for starters, what is the coding language used in kirikiri? I'd like to educate myself on this matter, but I don't even know what I should be looking up. Anyone knows of a conveniently helpful manual or documentation about this?

And, if there's anyone artistically inclined still in this thread who cares about this game, perhaps you'd be willing to lend a hand? Nothing too onerous, just darkening some nipples.

I think I could release a rather basic version by next weekend, where you can impregnate the girls when you talk to them and that's about it. But I'm really hoping to achieve something a bit more complex.
Zero coding experience diving into this is very inspiring, there is a lot of hidden bugs in the game that the devs may or may not be responsible for. Hard to tell since I CTD'd from things which I tested in other programs that didn't crash. If this is your passion project though I can tell you it's a modified version of C, I believe C# or "Csharp".

What does that mean for working on it? Well the way you code things is really simple if you visualize that the thing you're working on is a parent to the thing you are trying to do and that you can have a "stack" of parents to the original object. So for example if you wish to pull up the HP on Ares you need to know his name in Japanese. Once you know his name, it's o(for object) followed by a period to attach Ares as the object.

In the game it's o.アレス.limitLife... Translated it's o for object, アレス for Ares and LimitLife for Ares's HP. Getting Notepad++ also makes this significantly easier, because you can do searches for all the function calls related to an object rather than blindly trying to find where something is called. Trust me having to repeatedly look up the Japanese names for every object is work enough.

I attached some examples and I also attached the full source code for the game decompiled into easily readable notepad data to this message if anyone elects to want to help you mod some of this stuff. The pictures are too large to attach to this message.
 

Kintty

Newbie
Mar 25, 2021
70
130
156
Okay, it's here. I think I'm just gonna name it the

Power Fantasy Mod

Because I'm unimaginative like that.

And so, after more than 8 years, Ares has finally figured out how to cum inside and have children. Whenever Ares has sex with the girls (but only after you've completed ALL of their love route, even the little extra event they usually have after first sex), there's a random chance he'll impregnate them. Calculations for pregnancy are exactly the same as those everyone else uses. Also allows to romance multiple girls, even those of a different starting nation, provided you meet the requirements to trigger their routes.

Installation:
- Download the file attached to this post.
- Extract and copy to your game folder. I recommend using the vanilla version provided in this thread, I can't guarantee compatibility with other mods. If you're asked permission to overwrite, do so only if what you're overwriting is a previous version of my patch. Otherwise, rename my patch to patch4 or something.

Warning:
- This patch is NOT compatible with old save games! A new game is necessary. Both plain new game and new game+ should be fine, but let me know if you have problems.
- I'm a noob modder with virtually no experience beyond what I've done for this patch. Expect problems, and please be kind enough to explain to me in extenuating detail exactly how I've broken your game. It was hard enough to figure out how to do it right, it'll be hard enough to figure out what I did wrong.

So, hope you enjoy.

V1.4
  • Ending selector added. When entering the epilogue, you'll be able to select and ending among all the romanced heroines. Only one ending, but I guess it's easy enough to save-scum and choose others.
    • Leane, Beatrice, Cynthia and Seria can have good or bad endings. The ending selector doesn't let you choose between good or bad, that'll be decided by the events in your game.
  • Added Muriel's incest route.
    • Triggers when a) 30 days have passed since you've seen the last of her normal events and b) Ares has acquired at least four lovers.
    • No sex scenes, just a fade to black and the implication of one.
    • Muriel behaves the same as all other girls afterwards.
  • Fixed some weird line breaks here and there. Not all of them, not anywhere close to it, but just a few.
  • A number of changes under the hood on how the mod works. Power Fantasy is still functionally the same, but the changes serve as the groundwork for a new mod.

You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

zackrin6

Member
Jan 5, 2020
378
151
207
Okay, it's here. I think I'm just gonna name it the

Power Fantasy Mod

Because I'm unimaginative like that.

And so, after more than 8 years, Ares has finally figured out how to cum inside and have children. Whenever Ares has sex with the girls (but only after you've completed ALL of their love route, even the little extra event they usually have after first sex), there's a random chance he'll impregnate them. Calculations for pregnancy are exactly the same as those everyone else uses. Also allows to romance multiple girls, even those of a different starting nation, provided you meet the requirements to trigger their routes.

Installation:
- Download the file attached to this post.
- Extract and copy to your game folder. I recommend using the vanilla version provided in this thread, I can't guarantee compatibility with other mods. If my patch overwrites something, don't; change the number in my patch to 4 or something else.

Warning:
- This patch is NOT compatible with old save games! A new game is necessary. Both plain new game and new game+ should be fine, but let me know if you have problems.
- I'm a noob modder with virtually no experience beyond what I've done for this patch. Expect problems, and please be kind enough to explain to me in extenuating detail exactly how I've broken your game. It was hard enough to figure out how to do it right, it'll be hard enough to figure out what I did wrong.
- Cynthia is still unfuckable. Her lore doesn't allow you to have sex during the game, so I made the choice to not modify her like I did the other girls. Might change in the future, but I make no promises.

So, hope you enjoy.

You don't have permission to view the spoiler content. Log in or register now.
Tried it a bit and jolly god I love it you my friend cooked hard and brought my passion to play this game again from the start without new game + high as hell I wish you luck on your future modding career.
 

MultiMythos

Member
Jan 3, 2021
284
319
206
1762693446957.png
Getting this error for both this game and Leane of Evil Blade, anyone able to help or point me in the right direction?
 

An0nM4n

Member
Dec 29, 2019
224
89
151
  • Multiple romances allowed.
So are all the romances unlocked? Cause after the demons showed up I got locked out of some but could keep doing others for some reason.

Also, how do the endings work? Is it still the last girl you romance ending like the other romance everyone mod or something different?
 

Kintty

Newbie
Mar 25, 2021
70
130
156
So are all the romances unlocked? Cause after the demons showed up I got locked out of some but could keep doing others for some reason.

Also, how do the endings work? Is it still the last girl you romance ending like the other romance everyone mod or something different?
Romances should all be unlocked, but I think maybe some of them check if Baroque's still alive? Chloe certainly needs Baroque alive. Can you tell me which heroines were locked for you? Also, this were girls you hadn't seduced yet? Or were they already lovers and then stopped being so?

The ending is still the last girl you seduced. If that girl is later taken by the hippians I think it defaults to Muriel.

On another note, I'm working on a couple of new events for Cynthia, so that she and Ares can have sex. I'll write no sex scenes, only a fade to black and the implication that sex happened, but it satisfies my need for internal coherence.
 
Last edited:
  • Like
Reactions: An0nM4n

InstaPrincess

Member
Apr 24, 2023
291
1,462
276
Okay, it's here. I think I'm just gonna name it the

Power Fantasy Mod

Because I'm unimaginative like that.

And so, after more than 8 years, Ares has finally figured out how to cum inside and have children. Whenever Ares has sex with the girls (but only after you've completed ALL of their love route, even the little extra event they usually have after first sex), there's a random chance he'll impregnate them. Calculations for pregnancy are exactly the same as those everyone else uses. Also allows to romance multiple girls, even those of a different starting nation, provided you meet the requirements to trigger their routes.

Installation:
- Download the file attached to this post.
- Extract and copy to your game folder. I recommend using the vanilla version provided in this thread, I can't guarantee compatibility with other mods. If my patch overwrites something, don't; change the number in my patch to 4 or something else.

Warning:
- This patch is NOT compatible with old save games! A new game is necessary. Both plain new game and new game+ should be fine, but let me know if you have problems.
- I'm a noob modder with virtually no experience beyond what I've done for this patch. Expect problems, and please be kind enough to explain to me in extenuating detail exactly how I've broken your game. It was hard enough to figure out how to do it right, it'll be hard enough to figure out what I did wrong.
- Cynthia is still unfuckable. Her lore doesn't allow you to have sex during the game, so I made the choice to not modify her like I did the other girls. Might change in the future, but I make no promises.

So, hope you enjoy.

You don't have permission to view the spoiler content. Log in or register now.
How great is that?! Thank you for working on this!

Is there any chance you can do a patch that undoes all restrictions, i.e. a sandbox that allows for the king, Hippians and Ares to have access to the generals at all times regardless of their status? (No virginity Check, no Hippian Check etc.)
 

Kintty

Newbie
Mar 25, 2021
70
130
156
How great is that?! Thank you for working on this!

Is there any chance you can do a patch that undoes all restrictions, i.e. a sandbox that allows for the king, Hippians and Ares to have access to the generals at all times regardless of their status? (No virginity Check, no Hippian Check etc.)
I wanted to tell you that yes, it's actually very easy, but then I realized that the game doesn't track who the father of the child is, only who's the girl's current lover. So if you rescue a girl impregnated by the hippians... then they'll go give birth to the king's harem... I think? Or if you've done their love routes, it'll probably count as one of Ares... maybe.

Or maybe all girls impregnated by Ares will go give birth to Baroque's little princes and princesses. It's a cuck festival lol.

I need to study this. I'll probably give it a try, but as before, I make no promises.
 

InstaPrincess

Member
Apr 24, 2023
291
1,462
276
I wanted to tell you that yes, it's actually very easy, but then I realized that the game doesn't track who the father of the child is, only who's the girl's current lover. So if you rescue a girl impregnated by the hippians... then they'll go give birth to the king's harem... I think? Or if you've done their love routes, it'll probably count as one of Ares... maybe.

Or maybe all girls impregnated by Ares will go give birth to Baroque's little princes and princesses. It's a cuck festival lol.

I need to study this. I'll probably give it a try, but as before, I make no promises.
Interesting. Yeah, it might be. It'd still be progress for a sandbox style setup. It'd be nice to be able to see scenes regardless of who did what first. I appreciate your effort anyway!
 
  • Like
Reactions: Kintty

An0nM4n

Member
Dec 29, 2019
224
89
151
Romances should all be unlocked, but I think maybe some of them check if Baroque's still alive? Chloe certainly needs Baroque alive. Can you tell me which heroines were locked for you? Also, this were girls you hadn't seduced yet? Or were they already lovers and then stopped being so?
The girls were not seduced yet and they were Dorothy, Cynthia, Seria, and Chole.

Chole I get, but not sure why the others have to check if Baroque's alive.
 
  • Like
Reactions: The NTRtainer

Kintty

Newbie
Mar 25, 2021
70
130
156
The girls were not seduced yet and they were Dorothy, Cynthia, Seria, and Chole.

Chole I get, but not sure why the others have to check if Baroque's alive.
I think I fixed most of the problem. Cynthia, Seria and Chloe are part of a group of girls that become unavailable once you enter the demon army phase, and I somehow missed all those flags. I'm leaving Chloe and Nora as is, since their routes very pointedly involve Baroque, but I'm unlocking the others. I'm putting up a new patch in my post above with the fix.

Which also includes another feature I was working on: girls return automatically to Ares after giving birth, although the action can be interrupted if you select them and manually tell them to go somewhere else.

You'd have to load a save file from before the demon army shows up, and then transition again. I'm afraid I can't do anything if you have a save file from after the transition.

With regards to Dorothy, I fear I'm not finding anything. Have you tried stuffing her full of food? You need not only her loyalty at 95, but also her love (which is invisible) at... 60, I think. Feeding her 20 articles of HaveMeal should guarantee to increase her love to at least 60 (each increases love by 3). Feed her 10 more just to be safe.

If it's not that, then I'll have to dig deep to try and find what's blocking Dorothy.
 

The NTRtainer

Member
May 22, 2020
120
167
187
Okay, it's here. I think I'm just gonna name it the

Power Fantasy Mod

Because I'm unimaginative like that.

And so, after more than 8 years, Ares has finally figured out how to cum inside and have children. Whenever Ares has sex with the girls (but only after you've completed ALL of their love route, even the little extra event they usually have after first sex), there's a random chance he'll impregnate them. Calculations for pregnancy are exactly the same as those everyone else uses. Also allows to romance multiple girls, even those of a different starting nation, provided you meet the requirements to trigger their routes.

Installation:
- Download the file attached to this post.
- Extract and copy to your game folder. I recommend using the vanilla version provided in this thread, I can't guarantee compatibility with other mods. If you're asked permission to overwrite, do so only if what you're overwriting is a previous version of my patch. Otherwise, rename my patch to patch4 or something.

Warning:
- This patch is NOT compatible with old save games! A new game is necessary. Both plain new game and new game+ should be fine, but let me know if you have problems.
- I'm a noob modder with virtually no experience beyond what I've done for this patch. Expect problems, and please be kind enough to explain to me in extenuating detail exactly how I've broken your game. It was hard enough to figure out how to do it right, it'll be hard enough to figure out what I did wrong.
- Cynthia is still unfuckable. Her lore doesn't allow you to have sex during the game, so I made the choice to not modify her like I did the other girls. Might change in the future, but I make no promises.

So, hope you enjoy.

V1.1
  • Erased a few flags that made some girls unavailable to romance when the demon army shows up.
  • Girls now automatically return to Ares after giving birth. They'll chase him around until they manage to make contact in some fort. The action can be interrupted if you select them and manually order them to move somewhere else.
  • Increased the timer for Carla's marriage from 3 to 60 days, which was always my plan but somehow forgot to do that for the first release.
You don't have permission to view the spoiler content. Log in or register now.

The way the game was meant to be, if you ask me. Thanks for all this, to both you and Setcheck64. I never expected a miracle where there's new artwork or Ares harem ending or whatever bells and whistles would balance the scales between Ares and Baroque but this is as close to perfection as we'll get in my opinion.
 

Kintty

Newbie
Mar 25, 2021
70
130
156
I completed a couple of events for Cynthia, so I can be satisfied that there's a narrative justification for she and Ares having sex. Events trigger after rescuing her from Bullbear's clutches and preserving her virginity. Afterwards, she behaves like every other girl. Update's in the post above.

A non-virgin route for Cynthia is planned for IF and WHEN I figure out how to complete InstaPrincess' suggestion of a sluttier mod; which should be doable. I have hopes, and I'm still riding the high of having succesfully (for the most part) modded a game. Let's see how far this high takes me.
 

KilljoyTRV

Active Member
Game Developer
Oct 24, 2018
688
597
278
Okay, it's here. I think I'm just gonna name it the

Power Fantasy Mod

Because I'm unimaginative like that.

And so, after more than 8 years, Ares has finally figured out how to cum inside and have children. Whenever Ares has sex with the girls (but only after you've completed ALL of their love route, even the little extra event they usually have after first sex), there's a random chance he'll impregnate them. Calculations for pregnancy are exactly the same as those everyone else uses. Also allows to romance multiple girls, even those of a different starting nation, provided you meet the requirements to trigger their routes.

Installation:
- Download the file attached to this post.
- Extract and copy to your game folder. I recommend using the vanilla version provided in this thread, I can't guarantee compatibility with other mods. If you're asked permission to overwrite, do so only if what you're overwriting is a previous version of my patch. Otherwise, rename my patch to patch4 or something.

Warning:
- This patch is NOT compatible with old save games! A new game is necessary. Both plain new game and new game+ should be fine, but let me know if you have problems.
- I'm a noob modder with virtually no experience beyond what I've done for this patch. Expect problems, and please be kind enough to explain to me in extenuating detail exactly how I've broken your game. It was hard enough to figure out how to do it right, it'll be hard enough to figure out what I did wrong.

So, hope you enjoy.

V1.2
  • Cynthia has a couple of new events to justify why she can now have sex with Ares.
    • First event triggers some time after you rescue her from Misty Castle, and only IF she's still a virgin.
    • Second event triggers by talking to her after you've seen the previous event.
    • Afterwards, Cynthia behaves like all the other girls.
    • Added some dialogue variations in line with what the other girls got.
    • Loading a save game where you've already completed Cynthia's route won't enable the changes. You must apply the mod first and do her route later.
You don't have permission to view the spoiler content. Log in or register now.
Dude, you ROCK! It would also be cool if you could make it to where the girls will fuck anyone and still fuck Ares. No need to, just saying. Thanks for this mod, bro!
 
  • Like
Reactions: Kintty

An0nM4n

Member
Dec 29, 2019
224
89
151
With regards to Dorothy, I fear I'm not finding anything. Have you tried stuffing her full of food? You need not only her loyalty at 95, but also her love (which is invisible) at... 60, I think. Feeding her 20 articles of HaveMeal should guarantee to increase her love to at least 60 (each increases love by 3). Feed her 10 more just to be safe.

If it's not that, then I'll have to dig deep to try and find what's blocking Dorothy.
I gave her like 60+ of the FullCourse item since it gives 6 loyalty and 3 love per item iirc. I'll have to test it again.

Edit: Yeah, Dorothy flat out isn't unlocking. For the record, I'm on the Stormlance route.
 
Last edited:
3.30 star(s) 44 Votes