Beta 20220417-SNAPSHOT

Changelog:
 - Reorganized the listener registration method to register the listeners in alphabetical order
 - Added the IllOmen effect, which will apply a -25% debuff to a user's luck stat when they have the Bad Omen status effect.
 - Added the ability for Guardian lasers to inflict negative damage to a users luck stat.
 - Added a cache to the Luck class to store user values in the event that they have the Ill Omen debuff applied.
This commit is contained in:
Paldiu
2022-04-17 14:00:22 -05:00
parent b424a83062
commit 5b1fb352bb
4 changed files with 121 additions and 11 deletions

View File

@ -58,15 +58,16 @@ public final class FeelingLucky extends JavaPlugin {
}
private void registerListeners() {
new PlayerListener(this);
new BlockDrops(this);
new ItemDrops(this);
new TakeDamage(this);
new RestoreHunger(this);
new BonemealFullCrop(this);
new CheatDeath(this);
new EnchantmentBoost(this);
new ExpBoost(this);
new CheatDeath(this);
new BonemealFullCrop(this);
new IllOmen(this);
new ItemDrops(this);
new PlayerListener(this);
new RestoreHunger(this);
new TakeDamage(this);
new UnbreakableTool(this);
}