-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge axe damage and attack cooldown tweaks
- Loading branch information
1 parent
3f99383
commit b9a7848
Showing
7 changed files
with
43 additions
and
31 deletions.
There are no files selected for viewing
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
37 changes: 37 additions & 0 deletions
37
src/main/java/xyz/violaflower/legacy_tweaks/tweaks/impl/LegacyAttack.java
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,37 @@ | ||
package xyz.violaflower.legacy_tweaks.tweaks.impl; | ||
|
||
import xyz.violaflower.legacy_tweaks.tweaks.Tweak; | ||
import xyz.violaflower.legacy_tweaks.tweaks.TweakManager; | ||
|
||
public class LegacyAttack extends Tweak { | ||
public LegacyAttack() { | ||
setTweakID("Legacy Attack"); | ||
setTweakAuthor("Jab125", "DexrnZacAttack"); | ||
// pls change later | ||
setTweakDescription("Various tweaks to fighting."); | ||
setTweakVersion("1.0.0"); | ||
setDefaultEnabled(false); | ||
setGroup(); | ||
addSubTweak(new LegacyAttack.LessAxeDamage()); | ||
addSubTweak(new LegacyAttack.RemoveCooldown()); | ||
} | ||
|
||
public static class RemoveCooldown extends Tweak { | ||
public RemoveCooldown() { | ||
setTweakID("No Attack Cooldown"); | ||
setTweakAuthor("Jab125"); | ||
setTweakDescription("Removes attack cooldown from every item, excluding the Mace."); | ||
setTweakVersion("1.0.0"); | ||
setDefaultEnabled(false); | ||
} | ||
} | ||
public static class LessAxeDamage extends Tweak { | ||
public LessAxeDamage() { | ||
setTweakID("Less Axe Damage"); | ||
setTweakAuthor("Jab125"); | ||
setTweakDescription("Restores the Axe's damage to its pre-Combat Update (1.9) values."); | ||
setTweakVersion("1.0.0"); | ||
setDefaultEnabled(false); | ||
} | ||
} | ||
} |
13 changes: 0 additions & 13 deletions
13
src/main/java/xyz/violaflower/legacy_tweaks/tweaks/impl/LessAxeDamage.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/main/java/xyz/violaflower/legacy_tweaks/tweaks/impl/RemoveAttackCooldown.java
This file was deleted.
Oops, something went wrong.