|
aae5726f3d
|
Finish implementing Pirate Captain and Parrot behaviors. Refactor monster phase system to be per-strategy instead of a global phase for all strategies. Release Build 11666.
|
2024-10-08 21:54:16 -05:00 |
|
|
880b8e4335
|
Implement default audio event property to stages. Add fanfare transition and post-boss song event to the game. Add appropriate triggers for when boss fight completes. Addresses Issue #66. Release Build 11576.
|
2024-09-18 10:51:06 -05:00 |
|
|
3830ba8840
|
Adjust collision radius default based on monster's sheet frame size. Use defined collision radius of a monster instead of 12*SizeMult as that is the actual radius for HurtMonsterType() damage calls (fixes large stone hitting pillars a little too wide in the chapter 2 boss fight). Refactored Bullet check systems to include damage flags: DOT, PLAYER_ABILITY, and NONE. Player abilities flags assigned to all auto attack and abilities that players can launch, in preparation for marked target proccing. Mark Target buff detection added, Mark buff added. Reorganized bullet hierarchy, turning the default bullet into an interface and making the normal Bullet class a base child class all Bullets derive from. Added HurtDamageInfo structure, which is passed onto bullets to modify flags before being applied to the Hurt function when bullets hit targets. Changed all storage containers holding Bullet classes to now hold IBullet classes. Release Build 10248.
|
2024-07-21 16:11:41 -05:00 |
|
|
6c4992ab96
|
More casts to make gcc happy. Change 2nd chapter bonus boss mob counter from using std::reduce to std::accumulate (Apparently gcc is ambiguous about argument order?? wtf)
|
2024-06-18 15:57:00 -05:00 |
|
|
13b3e74591
|
Feather bullet attack speed increased. Clarify why a stage overlay mask is not automatically created if attempting to use one prematurely. Adjusted level tiles, moving bonus boss to its proper tile. Release Build 9578.
|
2024-06-06 17:43:54 -05:00 |
|
|
f24cf38f85
|
Add 0.25s fade time to generic bullets. Add feather bullet type. Add feather spawning to tornado attack for second bonus boss. Addresses Issue #56. Release Build 9576.
|
2024-06-06 09:11:27 -05:00 |
|
|
a1e04d38d9
|
Refactor redundant deactivation variable to now be tied to the fade out time. Make collision checks for bullets with radii of 0 no longer occur. Add mid phase tornado. Release Build 9546.
|
2024-06-02 15:51:35 -05:00 |
|
|
6be3e5e83d
|
Fix bug involving lingering tornado attack. Reduce size of boss arena so item drops and the end zone ring spawn within player reachable locations. Made item drop locations respect boss arenas. Added mid phase for 2nd chapter bonus boss. Fix boss indicator appearing when no boss is present. Release Build 9534.
|
2024-06-02 14:13:55 -05:00 |
|
|
78d2234ccc
|
Refactor manual typing of HP Ratios with an HP Ratio function for the monster and player classes. Release Build 9524.
|
2024-06-02 12:50:49 -05:00 |
|
|
59dcde475a
|
Fix a bug where hp recovery when at full health still applied passive hp recovery effects. Fix bug with volume transitions not respecting the user's set volume controls when adjusting audio events. Add debris spawning for second bonus boss. Release Build 9522.
|
2024-06-02 12:31:55 -05:00 |
|
|
e4e1a42fc1
|
On death, Chapter 2 bonus boss clears the wind and overlay if it was in the middle of that attack. Wind speed gets reset when casting timer ends. Add an extra layer to bullet rendering so there is some consistency with rendering even when bullet Draws are overriden. Fix bug w/opening debug.log file once the AiL class has been initialized. Double the iframe time from getting hit by a tornado to prevent double-hits. Setup wind debris projectiles. Release Build 9515.
|
2024-06-01 05:46:42 -05:00 |
|
|
46ee54d7c5
|
Fix bug with double rendering. Not using iterator marker to determine what else to draw. Fix bug with maximum health not healing to maximum when health is affected by Health %. Refactored wind speed to be a global value within the game's engine. Included speed reduction properties for wind when warrior blocks. Include projectiles/player being affected by wind and casting to be allowed when pushed by wind. Release Build 9507.
|
2024-05-30 18:01:38 -05:00 |
|
|
25a2879929
|
Add player projectile auto attack flag to identify bullets for wind affecting. Release Build 9497.
|
2024-05-30 10:42:47 -05:00 |
|
|
6016316503
|
Add player velocity adjustment function. Add Wind attack functionality for second bonus boss. Add overlay ease-in transparency. Release Build 9494.
|
2024-05-30 09:44:49 -05:00 |
|
|
831901cc08
|
Tuned wind streak spawns and settings. Good to go. Release Build 9491.
|
2024-05-29 17:15:03 -05:00 |
|
|
e83515e6a0
|
Setup wind debris random variables. On the Overworld map selection, the currently selected stage now shows the selection cursor when the mouse cursor is not hovering over another stage to better indicate what stage you are looking at. Release Build 9486.
|
2024-05-29 14:05:49 -05:00 |
|
|
3c47cb908e
|
Added an overlay control class. Optimize and rearrange rendering order of bullets and effects such that all bullets now appear above monsters. Fix a bug involving some objects that are supposed to appear behind the player end up in front when they are aligned on the same tile row. Preparations for wind attack. Release Build 9482.
|
2024-05-29 04:03:49 -05:00 |
|
|
32c0052971
|
Move fadeouttimer for bullets to be private scope. Account for hits multiple flag for bullets that strike a player and adds them to the hit list. Coincidentally, this need also address Issue #17. Fix a bug with multi-hit bullets not applying additional hit effects to monsters. Tornado Attack Implemented. Release Build 9473.
|
2024-05-29 01:42:11 -05:00 |
|
|
7cf8c0b138
|
Bullet fade in timer effects added. Added Tornado rings for second bonus boss. Release Build 9455.
|
2024-05-28 11:25:24 -05:00 |
|
|
b7372ec283
|
Define tornado bullet type and attack. Release Build 9451.
|
2024-05-28 01:26:10 -05:00 |
|
|
e53f7cb4cd
|
Add rotation parameter and hit iframe time to bullets. Iframe timers now compares current iframes to the new duration and keeps only the larger amount. Fix bug allowing monsters with jump attacks to still cause knockback and iframes even when the hit does not land. Fly Across attack implemented for second bonus boss. Release Build 9447.
|
2024-05-27 15:45:22 -05:00 |
|
|
bea3d5b6ee
|
Setup Zephy AI phases. Added slight recoil when monsters take damage. Release Build 9434.
|
2024-05-27 04:12:00 -05:00 |
|
|
d6409f4604
|
Setup framework and stats for Major Hawk and Bonus Chapter 2 Boss. Add in override Hawk strategy behaviors for Major Hawk strategy. Release Build 9353.
|
2024-05-20 09:16:23 -05:00 |
|