-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Option: Target Dummy (no longer touch spellable or polymorphable, boss dummy hides health bar) Update custom damage numbers and dps tracker to update every frame instead of every time they take damage (tiny optimization) Add Game Modifier: Uber Boss Update loadouts that used deprecated spells Update Loadout: Gunner Update Action: Burst Fire (remove magic hand logic) Fix crash when using custom damage numbers Update projectile capture spells so they no longer happen out of order Update Action: Projectile Orbit to have orbit radius based on spread Update Option: Combine Gold (reduce range) Fix Game Modifier: Guaranteed Always Cast Fix wand generation options to not effect held wands (fixes wands spawned directly on the player from shuffling held wands)
- Loading branch information
1 parent
f8f4dd0
commit a4d9f86
Showing
29 changed files
with
524 additions
and
339 deletions.
There are no files selected for viewing
18 changes: 15 additions & 3 deletions
18
files/gkbrkn/actions/projectile_orbit/projectile_update.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
dofile_once( "mods/gkbrkn_noita/files/gkbrkn/lib/flags.lua"); | ||
if GameHasFlagRun( FLAGS.UberBoss ) then | ||
local _GameGetOrbCountThisRun = GameGetOrbCountThisRun; | ||
function GameGetOrbCountThisRun() | ||
_GameGetOrbCountThisRun(); | ||
return 33; | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.