- Aug 7, 2019
- 1,869
- 4,408
how does one learn martial arts/switch to martial arts class? or is that not a thing yet still?
Well, that's a familiar face.how does one learn martial arts/switch to martial arts class? or is that not a thing yet still?
Yup, hi hi o/ That's a bit sad...I've been hyper focusing on both maya and metatron thinking they were the ones and it hasn't popped up when I have their affection/trust 15+ I thought I was really missing something. Btw, speaking of weird things, metatrons picture won't leave/persists through the boss fight of the third stage and its very weird if you run the 3rd stage with maya and she still challenges you to her little duel, even when on your team, and even more weird when she's your partner.Well, that's a familiar face.
Maya and Metatron will start teaching their martial arts soon(tm), but it's not ingame yet. The last few updates have been me catching up on a lot of stuff before I could move forward.
Sorry about that fam. I'm excited for them too, just took longer to get to than I hoped. Absolutely still planned though, I'd say within the next 1-2 updates I should be able to get those rolling.Yup, hi hi o/ That's a bit sad...I've been hyper focusing on both maya and metatron thinking they were the ones and it hasn't popped up when I have their affection/trust 15+ I thought I was really missing something. Btw, speaking of weird things, metatrons picture won't leave/persists through the boss fight of the third stage and its very weird if you run the 3rd stage with maya and she still challenges you to her little duel, even when on your team, and even more weird when she's your partner.
If you choose to fight her when she's your partner, she actually can't be/won't heal after that battle and so you're basically solo for the rest of the level from then on if you don't leave
So no harem? Or to get it player should....GRIND?The idea is that if you just go through the game normally, you should be able to fully romance and keep up with at least 1, maybe 2 girls, without any grinding, just following the story.
Which is....? "Three vaginas, seven teats, sixteen hands, body of olympic gymnast and a face of thermonuclear war" kind of things?SUPER monstrous monster girls
Overlay of bleeding wounds on top of enemies?!?!?Switching to having art for enemies meant we lost visible health bars for them, and right now it's kind of a mystery what anything is doing.
The idea was that 1-2 girls is the default, rather than the entire party. If you want to do more, turning on easy mode lets you waifu everyone with minimal grinding.So no harem? Or to get it player should....GRIND?
Shit, forgot to quote that in the other reply. I'm glad that came out well! It was kinda hard to tell on my end, I didn't want to do the generic 'forgettable holy guy' or 'asshole Westboro crazy' vibes that priests tend to fall into lol.Ok I really need to post just to give praise about the writing during the scene with Charles at the church. Must have took serious effort to make a chubby middle-aged priest without even a graphic give off such a powerful presence.
No worries about asking!Okay, guess I'm going to be the annoying guy asking for it here... but is there any foot fetish content in the game? Like footjob or foot worship? I don't think those are necessarily hardcore femdom things(Hell, those can be totally playful and not linked to any domination play even... or comedic like when a girl tries to be dominant but realizes her feet are too ticklish to be worshipped and so she struggles to keep a straight face during it... but I'm going off to strange fantasies I guess XD) so technically they could be there according to the Planned Content tab in first post.
Thanks for the reply, and well, I just noticed some people here going to game threads and asking like "Are there footjobs? ADD MOAR FOOTJOBS!" so I figured asking that could be annoying XDNo worries about asking!
There's one footjob in the game right now, from Ashley. And I think 2 thighjobs if leg content counts lol.
I don't mind adding more foot-focused content, but it's hard for me to tell how good they come out since it's not really my forte. It's grown on me enough over time that I can appreciate it in limited doses, but honestly, I'd need feedback on how the scenes come out to really get a feel for how to write it better.
I do like the ticklish idea though, that sounds like a mix of funny, cute, and kinda hot.
When I said no harsh femdom in the opening, I meant more stuff like ballbusting or torture. I'm completely fine with femdom in general, as long as it's consensual and doesn't seem too painful/gross I could probably at least give it a shot.
Ah... yeah, I definitely appreciate the decency. I've had some pretty... pushy comments about pegging/futa in particular, but I don't want to let a few bad experiences ruin the idea of people talking about what they'd like to see. I try to make a point of being open to ideas in general, and that includes fetish requests (within reason).Thanks for the reply, and well, I just noticed some people here going to game threads and asking like "Are there footjobs? ADD MOAR FOOTJOBS!" so I figured asking that could be annoying XD
Well, I can check out the game once I have a moment and try to give some feedback then! Assuming I will be able to find the FJ scene, thighjobs are okay with me though they aren't exactly my preference.
Glad you like the random idea I just had while writing my post then XD
And well, I preferred to make it clear, since I know some people, some of whom are into foot fetish stuff like myself, who believe that "foot fetish must mean you are a total masochist who wants to be stepped on!", which is something I completely disagree with, since I don't consider myself a masochist(And find things like trampling rather boring... and ballbusting just terrifying, gross, and unwanted XD), I like some femdom when girl takes the lead, but I really don't like when it becomes domination to level of abuse(Like actual violence, actual insults, and other things I've seen masochistic people make characters do in Writing.com fetish interactive stories... it always frustrated me because it was seeming like they kept writing all female characters as the same psychotic bitch who would happily kill you if it amused her... but I'm going a bit offtopic there.). So I think we are pretty much on the same level regarding what is acceptable and what is not XD
Good catch. I took a preliminary look and was able to replicate the issue, but couldn't find an obvious issue in the code yet. I'll figure it out for 0.20 though!I feel like I've hit a bug. I don't know if someone's reported this already.
It seems like I can trigger events that require affection from multiple characters by only having the required affection for one of them. I can trigger an event with Metatron and Maya requiring 2 affection from both even though I haven't even met Maya yet.
This doesn't seem intentional?
Have you checked logical operators? It should beGood catch. I took a preliminary look and was able to replicate the issue, but couldn't find an obvious issue in the code yet. I'll figure it out for 0.20 though!
def checkEventAffectionReqs(event):
if event.affectionReqs:
for key in event.affectionReqs:
if checkAffection(key, event.affectionReqs[key]):
return True
else:
return False
return True
def checkEventAffectionReqs(event):
should_trigger = false;
if event.affectionReqs:
for key in event.affectionReqs:
if checkAffection(key, event.affectionReqs[key]) :
should_trigger = true;
else:
should_trigger = false;
return should_trigger;
A simpler way would be:Python:def checkEventAffectionReqs(event): should_trigger = false; if event.affectionReqs: for key in event.affectionReqs: if checkAffection(key, event.affectionReqs[key]) : should_trigger = true; else: should_trigger = false; return should_trigger;
def checkEventAffectionReqs(event):
for key in event.affectionReqs:
if not checkAffection(key, event.affectionReqs[key]):
return False
return True
Tomorrow at 6 a.m. at my place. Bring beer and shipi-chipi-chips.So when can we have seggs with ma girl Metatron
AP/TP balance is still a work in progress. TP was much rarer until recently for example. If you get into magic I guarantee that AP income will not seem enough lmao, but weapon users have much less to spend it on. I might look into some kind of conversion, but it'd be pretty inefficient to ensure it wasn't always the best choice.One issue I have is having too many ability points, at lvl25 I'm left with 9, it would be great if I could use those points on traits, I sure love my passives.
While I had... admittedly been hoping to get to that months ago, my plan is to get to it in the next update now that her romance has finally progressed far enough to make it viable!So when can we have seggs with ma girl Metatron