Alpha 0.1.1.1



Greetings bordel mortals. Today we get a bunch of polishing and upgrades, plus a bit more modding potential.
The chopstick, ballpen and unarmed are now fully reworked ! I wanted to push an update with a reworked gluestick and a completed hexkey, but due to the workload I preferred to release something now to keep some regularity.
The following month would see these two pop up, with extra work on controllers and the sound system.
Anyway, this is getting reaaally sexy, nothing like the crappy demo 3 years ago.
Yep, the project is 5 years old in late December !
I want to be honest with you. I'm using AI to help me converting the markdown text into steam BBCode and itch.io HTML. All the patch logs are written by a human !

-Settings

☼ Menu reworked in the back-end to be more easily expanded in future updates
☼ Some settings can be changed with the accept command (like *Enter*, by default) on top of current left/right keys.
☼ New setting : Player color
► Manages how player color during combat (class previews in menus not affected)
Adaptative Current behavior, if the player 2 has a too similar color to the player 1, player 2 toggles its alternate color
Alternative Player 2 always has an alternate color if the stance has a specific color
Basic Player 1 (right) is always orange and Player 2 (left) is always blue
High contrast Player 1 (right) is always black and Player 2 (left) is always white, adding some accessibility to the game !

-Combat

☼ The game is frozen for 25 frames (0.5 seconds) when one hand is killed to put some epicness
☼ When a frame with delta movement needs a hit to activate the movement, the movement now triggers on hit instead of waiting for the next animation frame if there's any.
☼ All classes have now dodge animations
☼ Game loop is now fragmented into 0.25 frames bits max before refreshing the display
► This makes physics a bit more precise in low FPS settings, but it doesn't erase all problems
► For example, 100 FPS already loops with a factor of 0.5 frames, now its twice 0.25
► If the framerate is already high, this doesn't have any effects

-UI

Combo

Combo display in small mode is now correctly under the timer

HUD

☼ Player icon is bigger on screen larger than 1300px wide

-Chopstick

All animations are now reworked.

Neutral Neutral [Neutral]

Backward movement is now triggered if the attack has hit as intended

Down

☼ Completely remade from scratch.
☼ Damage increased from 4 to 6x3
☼ Damage type changed from blunt to pierce - blunt - blunt
☼ Duration increased from 30 to 37 frames
☼ Combo shortcut set to 33

Down [Down Back Side]

Added.

Heavy [Back]

Reworked.

Side Side [Back Side]

Reworked.

-Ballpen

Neutral Down Side

Reworked.

Neutral Down Back

Reworked.

Side [Neutral Neutral Neutral]

Completely remade from scratch.

Down [Neutral Side]

☼ Reworked.
☼ The Neutral is no longer counted as a combo end as intended
☼ The Side is now counted as a combo end as intended

-Unarmed

Side [Side]

☼ Reworked
☼ The second Side is now split into a Up & Side combo

Up [Down]

Reworked.

Back [Side Back Heavy]

Reworked.

Heavy Neutral [Side]

Reworked.

Heavy Neutral [Back]

Reworked.

Heavy Neutral [Down]

Reworked.

Back [Heavy Side]

Reworked.

Back [Heavy Up]

Reworked.

-Hex key

Neutral Neutral Neutral Side

First Neutral

☼ Damage duration at frame 4 reduced from 8 to 5 as intended

Second Neutral

☼ Frame 2 and 3 duration reduced from 3 to 2 (total duration reduced from 24 to 22)
☼ Combo shortcut reduced from frame 18 to 15
☼ Damage duration at frame 3 reduced from 12 to 5 as intended

Third Neutral

☼ Frame 1 duration reduced from 6 to 5 (total duration reduced from 21 to 20)
☼ Combo shortcut set to 14 as intended
☼ Damage duration at frame 3 reduced from 12 to 6 as intended

Down

☼ Frame 2, 3 and 4 duration reduced from 5 to 4 (total duration reduced from 30 to 27)
☼ Counted as a combo end as intended
☼ Plays an impact sound when hitting the ground, as well as shaking the screen

This basic combo has now a better reactivity to hit and to follow, without making it too agile

-Plain stylet

Removed from the game, as it takes space for quite nothing while aging like milk.
It was intended for a solo mode but was discontinued long ago.
But it's not a big loss !

-Configuration

In the data.json file, new constants are added for players to tweak the game. I encourage advanced users to play around with values and bring interesting balance suggestions.
More constants would appear in the future, this is only a first of a long list of batches ! Use Ctrl+F to find the constant value.
However, putting absurd values might destroy the gameplay, or even provoking crashes... don't forget to make backups. The game will only read the file named exactly data.json in the root folder. If you messed up you can reinstall the game with a cleaned up default data file.
I know the rest of the data is quite opaque right now, but I will make some guides in the future too. Stay tuned, modders !

☼ Integer player.PLAYER_HP_BASE by default 200, greater or equal to 1 at game launch. The HP bar is proportional to the defined max HP value.
☼ Integer player.PLAYER_HP_BONUS by default 15, greater or equal to 0 at game launch. It represents the bonus HP per Life stat points. For example the gluestick has 4 Life so +60HP by default.
☼ Integer player.PLAYER_STUN_MAX by default 10, greater or equal to 0 at game launch. It represents the amount of stun accumulated by receiving damage going through the guard.
☼ Integer player.PLAYER_DODGE_BASE by default 50, greater or equal to 1 at game launch. It represents the total number of frames between starting and ending a dodge.
☼ Integer player.PLAYER_DODGE_MARGIN by default 10, greater or equal to 0 at game launch. It represents the number of startup & exit frames during dodge while the player is vulnerable. For example by default the player has 10 startup frames, 30 invulnerability frames, 10 exit frames.
☼ Decimal player.PLAYER_GUARD_BASE By default 10, greater or equal to 1 at game launch. Also corresponds to the negative margin.
☼ Decimal player.PLAYER_GUARD_PER_WEIGHT By default 5, greater or equal to 0 at game launch. If equals to 0, the HUD guard bar is scaled like if it's equal to 1.
☼ Decimal player.PLAYER_GUARD_PER_SECOND By default 10, greater or equal to 1 at game launch.
☼ Decimal player.PLAYER_GUARD_PER_SECOND_PER_ENDURANCE By default 2.5, greater or equal to 0 at game launch.
☼ Integer player.PLAYER_REGEN_THRESHOLD By default player.PLAYER_HP_BASE, greater or equal to 0 at game launch. It represents a threshold which the player regenerates health if it's bellow this value.
☼ Integer player.PLAYER_REGEN_TOTAL_BASE By default 20, greater or equal to 0 at game launch. It represents the total HP a player can regen during a game.
☼ Integer player.PLAYER_REGEN_TOTAL_INCREMENT By default 10, greater or equal to 0 at game launch. It represents the bonus HP the player can regen during a game per stamina point. For example the gluestick has a max HP regen of 20+10x4 = 60.
☼ Integer player.PLAYER_REGEN_TICK_BASE By default 200, greater or equal to 0 at game launch. It's a duration in frames between each HP regen.
☼ Integer player.PLAYER_REGEN_TICK_DECREMENT By default 20, greater or equal to 0 at game launch. It represents the tick length reduction per stamina point. For example the gluestick has a tick length of 200-20x4 = 120.
☼ Integer player.AI_CHEAT_BONUS By default 1, greater or equal to 0 at game launch. It represents the bonus to all stats (except reach & difficulty) of an hard AI level.

-Behind the scenes

☼ An animation frame can now have negative sprite offset, impossible before due to how data is compressed. Without going into the details some wind effects can now be shifted from -999 to 999 instead of from 0 to 999 pixels on each axis.
☼ An animation frame can now have a specific path for its hurtbox, by default empty ; instead of looking for the image with "hurt" in the end of its name

-Bug fixes

☼ [0.1.1] It is not possible to use debug commands during battle intro and outro Fixed.
☼ [0.1.1] A bot isn't disabled after a VS bot when starting a VS player game Fixed. The player 1 bot is always disabled at game start, while the player 2 bot is disabled at VS Player start.
☼ [0.1.1] Player key are frozen to the latest state during game start Fixed. You won't get some wild looped attacks until done again at game start.
☼ [0.1.1] Going to random selection in the terrain menu crashes the game Fixed.
☼ [0.1.1] Cannot use controllers in the tutorial Fixed.
☼ [0.1.0.7] Dodge animation shadow is based on the current idle animation Fixed.
☼ [0.1.0.?] Generated wind effects ignore the animation movement of the frame 0 Partly fixed, in very few cases there's a tiny memory leak.
☼ [0.1.0.?] Some nuances of gray (no pun intended) colors shared by both player do not triggers an alternate color for the player 2 Fixed.
☼ [0.1.0.?] Stance color intensity in selection screen wasn't reinitialized when switching to another stance which doesn't have color intensity Fixed.

-Known issues

☼ [Demo] Gravity kicks in only when a movement attack ends
☼ [0.1.0.5] x86 version unavailable until further notice
☼ [0.1.0.7] When a lighter hand jumps between the space between the heavier player and a wall, the push physic is incorrect for few moments
☼ [0.1.0.7] The 5th attack combo with big icon might be cut for very small screens
☼ [0.1.0.7] Some older controllers may have different inputs and even affect both players at the same time
☼ [0.1.1] Cannot pause with controller in the fight intro
☼ [0.1.1.1] Lagg or picking 50FPS or bellow makes physics a bit less precise

Files

Hand2Hand Project Alpha 0.1.1.1.zip 39 MB
61 days ago

Get Hand2Hand Project

Leave a comment

Log in with itch.io to leave a comment.