Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

blazedummy

91
Posts
1
Topics
106
Followers
280
Following
A member registered Oct 02, 2022 · View creator page →

Recent community posts

(1 edit)

[BUG?] Vaporeon has Surf and Mud Wave saying they're Electric, but the text is blue for water. Didn't test as I went all in on Boob/Fat focus.

(1 edit)

An option to have radial timer indicater on the chevrons would be nice. The exploding chevrons seem like they should have larger timers for their shrapnel When they explode into 5, I could not click the shrapnel fast enough without an auto-clicker. I think I had an instance where a evil chevron spawned under good chevron and upon clicking, I triggered the evil chevron. So a system to prevent overlapping chevron spawns could be good.

I'm moving Jude, but my eyes are on the elevator.

Cute. Interesting concept. Unfortunately, I hate playing games that reverse controls for contrived reasons. I should be able to press down (S key) to go down. And the opposite for up with the W key. I get that we're increasing her weight, but we're trying to go down.

Here's my autosaves:
https://drive.google.com/drive/folders/1kfSJOIGL_7N4C9_chXsHYG1NVtVHYv0M?usp=dri...

Bug: Once a succubus was detected and a fight was about to start, the next turn button became disabled and game could no longer progress. Even starting a new game kept the next turn button disabled.

(1 edit)

Much better. Glad I could help.

I also recommend adding the CSS style "user-select: none;" to the root of your DOM to prevent accidental text selection within the game. I lost a run due to that.

Also might want to consider "pointer-events: none;" for elements that shouldn't register input but are over the game area.

The frustration directed at Akali is amusing. Most League players will relate.

(1 edit)

As mentioned in other comments, the start of the game needs some work. Either a count down or the game should start paused or slowed and then resume at full speed once the first jump input is triggered.

More importantly than all that tho, you need change the input events you're using to register a jump. You are currently using either "click" or "mouseUp" events, and you should be using "mouseDown" and "keyDown" events. Those "down" events will trigger the frame the input is registered, where as the "up" events trigger the frame the input is released. That's why everyone is having a hard time with the jumps. Currently the jumps only trigger when you release the left mouse button, not when you first press it like expected.

- One or more of the random enemy moves is getting an undefined error when trying to access a 'description' field.

- Arbok's 3rd passive doesn't properly update that it increases Boob and Thigh growth rates. Tho it does properly apply the bonus in actuality.

(1 edit)
  • Poison Spit stats don't change with level up.
  • Hissing Growth changes from boosting Boobs and Thighs to Boobs and Belly. Arbok doesn't scale with Belly, so that's a downgrade in most cases. Also the effect of using the level 3 version actually boosts Boobs and Thighs 20%. So effectively no change from level 1.

Bug reports for v0.0.4.2

I guess that's one way to drive home this game is cancelled. Sheesh...

After playing a bit more, I've realized part of the problem is that it's subtle when a client has the relevant physical feature. Some futa have endowments that just look like puffy mons at first glance. Or you have to scrutinize the latex to determine "Is that a bulge or not?" The boob sizes are also fairly subtle, and with only 2 or 3 clients on screen at a time, it's not trivial to quickly compare and be certain that they're actually "big".

Increased font sizes on the customer requests would also be nice.

So... am I missing something? I've got to satisfy 3 customers with my initial 5 clients, but the customers are asking for futas and big boobs and I have no way of ensuring the clients have those features. And with only 5 clients I can't just wait until I get the appropriate "stock".

(1 edit)

Game appears to get stuck trying do too many player actions and the "Reset Blue Actions" button isn't working. I'd figure at the very least the action log on the right should indicate my player is attempting something, but it's only saying I'm getting shot at.

Also, right clicking to hit next turn should have a hold to confirm, or double or triple click to confirm. It just skipping without confirmation feels bad when you're not intending it.

Already, by the 2nd level, I'd say things are too hard. You get penalized for falling, but you get zero points if the timer runs out anyway. The fact that you have go back to the checkpoint should already be enough of a penalty with a timer in place. Additionally, it's not trivial to parse what are safe spots to jump to and what are pits. Especially the gray brick section in the latter half of the 2nd level. The timer feels quite tight even with no falls.

The ULT cooldown reduction moves appear to not be reducing the ULT cooldown.

Window scaling is quite bad. Not only does it start very small on Windows, if I change my resolution to try to make it bigger, the UI gets culled from the viewport. And then if I exit and go back to my starting resolution, it opens the app even smaller than before and continues to cull the UI from the viewport.

A bit exposition heavy currently. but I look forward to seeing where this one goes.

Double potion is currently unusable, but is purchasable.

It feels bad that using items uses energy.

Fully fed slime doesn't do anything???

Unsure if intentional, but my car's performance lowered after reducing its weight.

UX could be better by removing Yes/No prompts when attempting a race. Tutorial is needed of course, but once that's been done, the player doesn't need to be asked again. And asking if the player wants to race after they've already click the race option is redundant.

Game has potential, I look forward to future updates.

My experience was it that you had to chat with them and provide their expected answer 5+ times. If you're already in an alliance when the prompt for them to join should triggered, it will skip the prompt.

For adding commas, if you're using javascript, you can simply use:

number.toLocaleString()

and it will return the number formatted for whatever the user's language prefers, eg. comma separation for US locale, period separation for many European locales, etc. You can pass a string to the function to specify the locale if you want to be opinionated, such as 'en-US' for US locales.

If you want to do scientific notation you could do:

number.toExponential()

If you want to use your own abbreviations, you could do something like:

const num = 1234567890;
const commaNum = number.toLocaleString('en-US'); // Returns 1,234,567,890 regardless of user's locale
const splitNum = commaNum.split(','); // Splits the string into an array of strings using the commas as the split points
const displayNum = splitNum[0]; // Set the display num to the most significant digits; 1 in this case
if (splitNum.length === 1) {
    return displayNum // No commas means no abbreviation necessary
}
else
if (splitNum.length === 2) {
    return displayNum + "K"; // 1 comma means we're dealling with thousands
}
else
if (splitNum.length === 3) {
    return displayNum + "M"; // 2 commas means we're dealling with millions
}
else
if (splitNum.length === 4) {
    return displayNum + "B"; // 3 commas means we're dealling with billions; which we are in this specific case
}
else
if (splitNum.length === 5) {
    // Continue the pattern until numbers get so large that scientific notation is the only thing that's reasonable any more...
}

The above code will only return 1-3 whole number digits followed by an abbreviation letter.

Phenomenal. So BIG!

Improvements:

  • Fullscreen and window resizing are desperately needed.
  • Commas are needed once numbers get into the millions.
  • A max buy button would be nice once the player has 1m+ points to spend.

Fun game. Cute graphics. Frustrating upgrade system.

The upgrades can't really be engaged with until you have a few battles under your belt, so the mention of them at the beginning doesn't align with game flow. Mildly stymieing.

Upgrades increasing in power cost never feels good to the player. Upgrades should be all positive. If you're going to increase the resource cost to use an upgrade, then at the very least, leave the option to use the lower grade versions so that the more expensive version becomes optional instead of feeling like a trap. Repair lvl 3 feels particularly egregious in this regard.

The stat increases with upgrade levels is nice, but not being able to see what a level up will grant stats-wise is annoying.

Infect ability doesn't really feel worth it action economy-wise.

Having to land all the QTEs for the multi-hit attacks or take the full damage feels wrong. Partial success shouldn't be all or nothing. In that same vein, the basic Pulse would probably feel better to upgrade into a multi-hit variant instead of more damage. Infect could become more or less potent depending on successes. Same for healing. Multiple successes doesn't have to translate into a 1:1 multiplier on potency. Something like 1 success = 100%, 2 successes = 150%, 3 successes = 200%, or 50%, 75%, 100% would be fine.

(1 edit)

Fun game. Wish there was more detail and levels of body part growth.

I highly recommend adding page zoom support as this is unplayable at 4k resolution and without zoom support, the user is forced to lower their montior's resolution which is very annoying.

Great game loop. It's be nice if we had more distinct indication of the time left in the shift, but I can understand if the vagueness is intentional.

Early game is currently quite grindy. Might want to make the first level only need 50 xp so you can start better bulk producing potions. Also, the random drops when forest searching are frustrating early on because you can only use White Flowers, but you only have 5 stamina. Save scumming makes this a non-issue, but it's still tedious to save and reload. Some sort of targeted search for specific ingredients would be nice.

Woah! The update actually appeared on my Itch feed. Nice!

Phenomenal. Realizing I could eat ANYTHING except the hole to the next floor was a game changer. Yummy, yummy ice...

Issues: No resolution scaling makes playing this on anything more than 1080p resolution very difficult.

Improvements: I WANT TO GET BIGGER. Might be cool if there was a reward to killing things the old fashion way so then there'd be an actual choice between eating something or attacking/interacting with it. The limitation of needing to find a bed to digest is good, but once you find it, that just means you end up eating everything from then on.

On Windows 11:
- Right click Desktop
- Display Settings
- Display Resolution Dropdown
- 1600 x 900

Fun game. Seems to have problems rendering in fullscreen at higher resolutions. 1600x900 worked for me tho. Mouse controls would be greatly appreciated.

(1 edit)

Bug: Profiteer failed to allow the use of Corruption tokens on Charisma hero's power.

(1 edit)

BUG:
Pressing ESC in the food inventory blanks out the inventory. Inventory can't be restored without reloading the apartment scene.

What furry? Haven't seen an option for that in any of the routes I've taken.

I maxed out the drug research before training Emily. Seemed to get stuck with inability to progress.