Toramizu

Member
Game Developer
Oct 14, 2017
168
319


This month's update is more content for Debora. I'll focus on making her catch up to the others before continuing the main story and adding more events for all characters.

DOWNLOAD
Win/Linux
:
Mac :
Android:

Others:


What's new?
  • 4 new events for Debora : 2 Friendship, 1 Love & 1 Lust
Not the most thrilling update, I know. I spent a lot of (too much?) time on Moon's Daughter, and more polls & information on it will come soon. Go check out my for more info!
 
  • Like
Reactions: Popgoes668

timeracers

Newbie
Mar 24, 2018
40
12
I found a few bugs, and fixes.
Both forms of Nap Time ability deal negative arousal instead of calm, so if you have any focus you don't get healed but instead have focus increased. When changing pages of backup abilities going backwards below page 0 often errors because it will try to go to non-integer number page. Lastly swapping or otherwise interacting with backup abilities outside of page 0 will instead use the ability on page 0, so I added 9 * abilityPage + in 6 places in dreamDive.
 

timeracers

Newbie
Mar 24, 2018
40
12
I found some more bugs, and fixes.
Dubious Remedy doesn't follow convention, so is unclear what it's intended effect should be, by default poison is applied to opponent and calm is applied yourself (but the help section lists it incorrectly), what the card actually does is apply both effects to yourself.
Focus works differently for the player compared to the opponent, the opponent's focus can mitigate poison damage or other damage that bypasses defenses, but the player's focus can't. To add that ability this code needs to be added to the hpToPlayer function, otherwise if poison is intended to bypass focus then the corresponding code from hpToOpponent needs to be removed. EDIT: Adding this breaks some effects that are supposed to bypass focus.
Python:
        if pEffects.has_key(focusEff):
                val = focusEff.onDamaged(val, True, isReaction)
Also found that abilityPage wasn't automatically changed when necessary, such as when discarding abilities or starting a new dream dive, so for the former I changed this block of code in removeCard.
Python:
        if card in backupAbilities:
            backupAbilities.pop(backupAbilities.index(card))
            if abilityPage > 0 and abilityPage > (len(backupAbilities) - 1) / 9:
                previousPage()
On the side I noticed that the hippy can't accomplish anything if you have any aphro cards.
 
Last edited:
  • Like
Reactions: Toramizu

Toramizu

Member
Game Developer
Oct 14, 2017
168
319
I found a few bugs, and fixes.
Both forms of Nap Time ability deal negative arousal instead of calm, so if you have any focus you don't get healed but instead have focus increased. When changing pages of backup abilities going backwards below page 0 often errors because it will try to go to non-integer number page. Lastly swapping or otherwise interacting with backup abilities outside of page 0 will instead use the ability on page 0, so I added 9 * abilityPage + in 6 places in dreamDive.
I found some more bugs, and fixes.
Dubious Remedy doesn't follow convention, so is unclear what it's intended effect should be, by default poison is applied to opponent and calm is applied yourself (but the help section lists it incorrectly), what the card actually does is apply both effects to yourself.
Focus works differently for the player compared to the opponent, the opponent's focus can mitigate poison damage or other damage that bypasses defenses, but the player's focus can't. To add that ability this code needs to be added to the hpToPlayer function, otherwise if poison is intended to bypass focus then the corresponding code from hpToOpponent needs to be removed. EDIT: Adding this breaks some effects that are supposed to bypass focus.
Python:
        if pEffects.has_key(focusEff):
                val = focusEff.onDamaged(val, True, isReaction)
Also found that abilityPage wasn't automatically changed when necessary, such as when discarding abilities or starting a new dream dive, so for the former I changed this block of code in removeCard.
Python:
        if card in backupAbilities:
            backupAbilities.pop(backupAbilities.index(card))
            if abilityPage > 0 and abilityPage > (len(backupAbilities) - 1) / 9:
                previousPage()
On the side I noticed that the hippy can't accomplish anything if you have any aphro cards.
Thanks for noticing all that, it's really helpful, especially if you fix most of it yourself :p.
All that should be fixed now.
  • Nap Time is fixed, an old leftover from when I didn't have a dedicated calm effect.
  • Swapping pages crashed because 1.0 wasn't equal to 1, bad assumption on my part.
  • I also added 9 * abilityPage + to fix grabbing the page 0 (now page 1) when on another page.
  • Dubious Remedy worked as intended, but it's text clarifies it. It should poison you in addition to heal, so you can use it when close to victory but loses it's advantage if you take too long after.
  • Poison should bypass focus, I just forgot to remove the "if oEffects.has_key(focusEff):..." part from the opponent damage calculation.
  • Emptying a page should swap to the previous one, and I fixed a small softlock if you swapped your 10th ability to an empty slot.

DOWNLOAD
Win/Linux
:
Mac :
Android:

Others:
 

Toramizu

Member
Game Developer
Oct 14, 2017
168
319

New bugfixes, thanks to Demoet for finding them. I simply forgot a couple line of code in 0.3.2 and all of its content was locked...

  • Debora's Friendship 3-4, Love 1 & Lust 1 will now play correctly, she was too busy until now.
  • Succubi were a bit too eager recently and always played their scene when defeated. They will now restrain themselves again... until you edge them.
  • The Queen's Minions shouldn't keep fighting you endlessly, they are loyal, but not that much.

DOWNLOAD
Win/Linux
:
Mac :
Android:

Others:
 

Toramizu

Member
Game Developer
Oct 14, 2017
168
319


Demoet found new bugs, and here are the fixes.
  • Debora kept coming back to the Princess' Harem to check up on you... next time, Lucia will remind her that she already did.
  • The Knight and one of the Queen's Minion had a Slash ability and were unable to share when you saved. Due to Copyright, the new girl had to find a new name.
Also, I've started posting weekly news on my . They're about my progress on Moon's Daughter, my next game still in early development. I'll post polls and previews as the game progresses, and everything is available for free, so don't hesitate to join us over there!

DOWNLOAD
Win/Linux
:
Mac :
Android:

Others:
 

Toramizu

Member
Game Developer
Oct 14, 2017
168
319
Just a small fix preventing Debora's Love and Lust events from triggering. Hopefully it's the last important bug for this version.
  • Debora can love again.

DOWNLOAD
Win/Linux
:
Mac :
Android:

Others:
 
  • Like
Reactions: ThisIsMe88

Toramizu

Member
Game Developer
Oct 14, 2017
168
319


The Queen will finally stop toying with you and start fighting for real. You'll need to use multiple succubi to continue the story, so be sure to play with a few different characters.
Hopefully there will be less bugs in this version, thanks to Demoet for the beta testing. If you find any, don't hesitate to report them.


What's new?
  • Continuation of the main story
  • Queen 2.0
What's fixed?
  • Debora's love stops resetting each time you load the game
  • The Merchant should stop crashing when you trade with her
  • You can correctly offer a drink to the Drunk. Now is it a good idea, I'm not sure...
What's next?
  • Preparations for the next and last character.
  • More of Debora
  • New events during the night
  • New activity during the day

DOWNLOAD
Win/Linux
:
Mac :
Android:

Others:
 
  • Like
Reactions: AlexFenec and Jlame

Jlame

New Member
Aug 4, 2024
6
9
I get an error at the beginning after the narration about a fun and unexpected side effect of the barrier ignoring the error skips to a tutorial about battles 1724973760391.png 1724973808341.png 1724973879158.png attached is a dump of the error log
I pulled this off the go file link, will try others and online
update:tried the online error not present, tried mega link from dev's most recent post. No error either. Conclusion: gofile upload is bjorked.
 
Last edited:
  • Like
Reactions: Toramizu

Toramizu

Member
Game Developer
Oct 14, 2017
168
319
I get an error at the beginning after the narration about a fun and unexpected side effect of the barrier ignoring the error skips to a tutorial about battles View attachment 3980735 View attachment 3980738 View attachment 3980742 attached is a dump of the error log
I pulled this off the go file link, will try others and online
update:tried the online error not present, tried mega link from dev's most recent post. No error either. Conclusion: gofile upload is bjorked.
I'll check it out, thanks.

Edit : I've downloaded that file, and no problem. It was probably a bug in your download, can't say.
But at least, it's fixed =D
 
Last edited:
  • Like
Reactions: Jlame
3.70 star(s) 3 Votes