forked from Archy-X/AuraSkills
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
1752 lines (1671 loc) · 100 KB
/
Changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Version Beta 1.3.23
New Features:
- Add support for Minecraft 1.20.2
Bug Fixes:
- Fix bug with mana and stat modifiers
Version Beta 1.3.22
Bug Fixes:
- Ensure all String case calls use ROOT locale to fix config bugs
- Fix level progression menu bugs with non-default items_per_page
- Fix multiplier permissions set to false being functional
- Fix excessive health stat error
- Fix disabled XP multiplier abilities applying in sources menu
- Fix Archery spawner-multiplier option not working
- Fix split slimes and magma cubes not applying spawner-multiplier
- Fix Bleed applying when not unlocked
- Fix XP multiplier abilities apply sometimes when not unlocked
- Fix combined skill leaderboard placeholder not working
- Fix empty sources menu pages with many disabled sources
- Make source item base XP and multiplied XP rounding consistent
- Fix Sorcery giving XP when blocked or disabled
- Fix resethealth command not working with RCON
- Fix MiniMessage hex color support in menus
- Remove automatic loot file updating
- Fix Wise Effect overflow mana when allow-over-max-mana is false
Version Beta 1.3.21
New Features:
- Add reset-xp-on-death option to reset skill xp when a player dies
Bug Fixes:
- Fix nbt in menus not working in 1.20
- Fix Piercing ability arrows bouncing on non-lethal arrow damage
Version Beta 1.3.20
New Features:
- Add support for Minecraft 1.20
- New Foraging Sources:
- Cherry Log
- Cherry Leaves
- Pink Petals
- New Farming Sources:
- Torchflower
- Pitcher Plant
- New Fighting/Archery Sources:
- Camel
- Sniffer
Changes:
- Add Japanese messages
- Delay update checking and improve logic so new updates aren't marked as outdated
- Remove preemptive player skull loading since it is no longer necessary
- Add disable_health_check option to Sharp Hook (false by default)
- When true, Sharp Hook will activate regardless of whether the entity was actually damaged
- Update Brazilian Portuguese and French messages
Bug Fixes:
- Fix incorrect items being displayed in the level progression menu at some skill levels
- Fix reset PlayerData not saving when save-blank-profiles was false
- Fix modifiers not being removed when item is put in chest on login
- Fix Farming XP being doubled when breaking crops
- Fix desc_upgrade_value message not applying to mana ability item in abilities menu
- Fix armor stands giving Fighting/Archery XP when damage-based is true
- Fix some PlayerData memory leaks
Version Beta 1.3.19
New Features:
- Add PlaceholderAPI support to menu titles
- Add support for context-specific display names and lore on template items
Changes:
- Update Russian, Polish, and Simplified Chinese messages
Bug Fixes:
- Fix AureliumAPI.addArmorMultiplier adding item multiplier instead of armor
- Fix allow-over-max-mana set to false not working with Wise Effect
- Fix errors with skull_meta.placeholder_uuid when PlaceholderAPI is not on the server
Version Beta 1.3.18
Changes:
- Add scale_base_chance option to Fishing and Excavation loot abilities
- Option added to Treasure Hunter, Epic Catch, Metal Detector, and Lucky Spades abilities
- If true, calculating drop chance will multiply ability value by base_chance in loot pool instead of adding
Bug Fixes:
- Fix "Plugin is creating timing - this is deprecated behavior" warning on Paper
- Fix command parameter names not showing in command help
Version Beta 1.3.17
Bug Fixes:
- Revert skill leveler event priority changes to fix placed block XP dupe
- Fix Speed Mine and Treecapitator activating on placed blocks
Version Beta 1.3.16
Changes:
- Rename hooks config option from enable to enabled
Bug Fixes:
- Fix armor modifiers to support 1.19.4 hotbar swap feature
- Fix DecentHolograms name already exists error
- Fix plugin not loading for Java 8-16
Version Beta 1.3.15
New Features:
- Add support for Minecraft 1.19.4
- Add DecentHolograms support
- Set which hologram plugin to use in the hooks section of config.yml
- Add placeholder %aureliumskills_actionbar_status%
- Add reset-skills-on-death option
Changes:
- Update Polish messages
- Switch to Gradle and reorganize codebase into submodule bukkit
- Remove commons-lang usage from menu library
Bug Fixes:
- Fix dispensers bypassing armor requirements
- Fix transfer command corrupting YAML playerdata
- Increase skill leveler event priority to fix incompatibilities
Version Beta 1.3.14
Changes:
- Add Dutch messages
API Changes:
- The addXp methods in AureliumAPI will no longer grant XP for disabled skills
Bug Fixes:
- Fix mana ability raise sending empty chat messages
- Fix NaN showing on rank item when leaderboard is empty
- Fix error when using boss bar single mode
- Fix region memory leak when worlds are unloaded or deleted
- Fix arrow duplication crash with some protected regions
- Fix Bleed activating when it shouldn't in some protected regions
- Fix error when using Archery damage-based leveler
- Fix Disenchanter grindstone exp exploit
Version Beta 1.3.13
New Features:
- Add PlaceholderAPI support to boss bars
- Add Terraform max_blocks option to change the number of blocks broken
- Add transfer command to migrate player data between accounts
- Add use-suffix option for action and boss bar to toggle level xp suffix formatting
- Add WorldGuard flags for controlling each individual skill's XP gain
- Flag name is aureliumskils-xp-gain-skillname
Changes:
- No longer send ability chat messages if message string is empty
- Make xp_gained placeholder work in boss bar messages
- Remove unnecessary .0 in numbers with suffix formatting
Bug Fixes:
- Fix memory leak with spawner multiplier option
- Fix mana not regenerating due to Absorption activation not being removed
- Fix potential NPE in SkillBossBar
- Fix blank lines in menu for disabled abilities when using non-English languages
Version Beta 1.3.12
Changes:
- Add support for Minecraft 1.19.3
- Update Simplified Chinese, Russian, and Korean messages
API Changes:
- Add EntityXpGainEvent for modifying XP of Fighting/Archery before multipliers
Bug Fixes:
- Cancel out block loot if Slimefun block
- Prevent re-looting the same blocks over and over
Version Beta 1.3.11
New Features:
- Add values list option for XP requirements instead of an equation
- Add average placeholders to get the average skill level of a player
- Add %aureliumskills_average%, %aureliumskills_average_int%, and %aureliumskills_average_1% placeholders
Changes:
- Sweeping attacks are now ignored when checking for Lightning Blade activation to reduce chat spam
- Make upgrade description format in abilities menu configurable using 'menus.abilities.desc_upgrade_value' message
- Allow leaderboard placeholders to work without specifying a player
Bug Fixes:
- Fix some newer blocks not working as custom block XP sources
- Fix boss bar memory leak
Version Beta 1.3.10
New Features:
- Add /skills profile skills and /skills profile stats commands to view the skill and stat levels of other players, including offline players
- Requires aureliumskills.profile permission, op by default
API Changes:
- Add getTotalLevel method to get combined skill level of a player
Bug Fixes:
- Relocate Adventure API to fix warnings with other plugins that use Adventure
- Set new player skill levels to 1 on first join
Version Beta 1.3.9
Bug Fixes:
- Fix NoSuchMethod MiniMessage error on some server versions
Version Beta 1.3.8
New Features:
- Add MiniMessage formatting support to menus
Changes:
- Arrows created by the Piercing ability can no longer be picked up
- Update action bar compatibility for 1.19
Bug Fixes:
- Fix Sharp Hook logic error
- Fix NoSuchMethod error on versions 1.14-1.14.3
Version Beta 1.3.7
New Features:
- Add cooldown_ticks option to First Strike ability
- Add blocked-grindstone-enchants Forging option to stop XP gain from custom curses
- Add aureliumskills-custom-loot WorldGuard flag to toggle custom loot table functionality
Bug Fixes:
- Fix Piercing arrows multiplying by blocking shield
- Fix sources menu showing multiplied XP incorrectly
Version Beta 1.3.6
Bug Fixes:
- Fix missing names in sources menu for 1.19 sources
Version Beta 1.3.5
New Features:
- Add 1.19 support
- New Sorcery XP sources:
- Sculk
- Sculk Catalyst
- Sculk Shrieker
- Sculk Vein
- Sculk Sensor
- New Foraging XP sources:
- Mangrove Log
- Mangrove Leaves
- Mangrove Roots
- New Excavation XP sources:
- Mud
- Muddy Mangrove Roots
- New Fighting and Archery XP sources:
- Allay
- Frog
- Tadpole
- Warden
- New Mining XP source:
- Reinforced Deepslate
Changes:
- Update French messages
- Add sorcery.check-cancelled option for new Sorcery block sources
- Update NBT API to 2.10.0-SNAPSHOT
Version Beta 1.3.4
New Features:
- Add json NBT string parsing for loot and menus
Bug Fixes:
- Fix loot and menu item nbt custom model data and nesting not working
Version Beta 1.3.3
New Features:
- Add ability to stack multiple stat modifiers using the same command
- Set the optional stack argument at the end of the /skills modifier add command to true (must also specify silent argument)
- This will create a new stat modifier with a numbered name in parenthesis at the end
- Add loot pool option require_open_water to only give fishing loot if hook is in open water (prevents AFK fishing)
Changes:
- Move loot system to new Loot Manager library
Version Beta 1.3.2
Changes:
- Update Polish messages
- Update Spanish messages
- Update Chinese Simplified messages
- Deny skills menu from opening if player has no skills profile
Bug Fixes:
- Fix sources messages spelling errors
Version Beta 1.3.1
Bug Fixes:
- Fix PlaceholderAPI not working in menus
- Fix abilities menu displaying as maxed incorrectly
Version Beta 1.3.0
New Features:
- Sources menu:
- The sources menu shows every way players can gain XP in a skill and how much XP they will earn for each source
- Accessible by clicking the sources item (experience bottle) in the level progression menu or using /skills sources <skill> [sortType]
- Each source item will show the base XP earned and the multiplied XP, which accounts for abilities and multipliers, if applicable
- Sort the items in the menu by clicking on the hopper to cycle sorting modes
- Available sort types: ascending by XP, descending by XP, alphabetical, and reverse alphabetical
- The material shown for each source is generated by default but can be overridden by adding a context with the name of the source and a material field under it
- Supports multiple pages if sources cannot fit in one page
- Fully configurable in menus/sources.yml
- Leaderboard menu:
- Displays the top 10 players in a skill
- Each item is a player head with the skin of the player and includes the player's username and level
- Accessible by clicking the rank item (paper by default) in the level progression menu
- Fully configurable in menus/leaderboards.yml
- The head will be replaced with an alternate item in versions 1.12-1.16 to due to a vanilla bug that causes lag, can be disabled using the auto_replace_heads_on_legacy option
- Abilities menu:
- Displays information about each ability and mana ability in a skill
- Includes the name, description, player level, unlock status, and level up progress of the ability
- Accessible by clicking the abilities item (light blue dye) in the level progression menu
- Shows different materials and information depending on whether the ability is unlocked or not
- Fully configurable in menus/abilities.yml
- New item options:
- Add 'enchantments' key as a list of strings, formatted as 'name level', such as 'sharpness 5'
- The key 'potion_type' has been renamed to 'potion_data', added the 'extended' and 'upgraded' optional boolean sub-keys
- Add the 'custom_effects' key as a map list of effects with sub-keys 'type', 'duration', and 'amplifier'
- Add the 'nbt' key to add custom NBT data to the item (automatically infers types and supports nested data)
- Use CustomModelData under nbt to add custom model data
- Add the 'flags' key to add item flags, such as 'hide_enchants' and 'hide_potion_effects'
- Add the 'durability' key to set the durability of the item (0 means almost broken, goes up to the max durability to the item)
- Add the 'skull_meta' key with either 'uuid', 'base64', or 'url' subfields to define the skin used
- Add the 'key' key to use a registered item (/skills item register); 'material' and other item keys are not required if used
- New options in level progression menu:
- Item options are accessible under the options section of a menu configuration file
- Add items_per_page option to control how many skill level items are shown per page
- Add use_level_as_amount option to match the item amount with the corresponding skill level it represents
- Add over_max_stack_amount option to control the amount shown if the skill level is higher than the max stack of the item (64)
- The position of skill items can be overridden by adding context sections named after the level number (i.e. '10') and 'pos' keys under each
- Click actions:
- Define custom functionality when a player clicks an item in the menu
- Supported actions:
- Executing a command (either through the player or console)
- Closing the menu
- Opening another Aurelium Skills menu
- Going to the next page or previous page
- Supported triggers (key in parenthesis):
- Any click ('on_click')
- Left click ('on_left_click')
- Right click ('on_right_click')
- Middle click ('on_middle_click')
- Drop key ('on_drop')
- Actions are defined by adding a the key of a trigger listed about as a new field under any item or template
- Actions are listed in map list format with certain fields used to define type and functionality:
- type - required field that is either 'command' for executing a command or 'menu' for everything menu related
- Command action fields:
- command - The text of the command (without slash), supports {player} placeholder and all PlaceholderAPI placeholders
- executor - The executor of the command, either 'console' or 'player' (defaults to console)
- Menu action fields:
- action - The action type, can be 'open', 'close', 'next_page', or 'previous_page'
- menu - The name of the menu to open (only required for the 'open' action)
- properties - A subsection of properties used to define variables when opening a menu ('open' action only)
- A list of properties used to open each Aurelium Skills menu can be found in the wiki
- Custom types can be used as a property using the 'type:value' format (see wiki for list of types and values)
- Custom menu items:
- Completely new items can be added to any menu simply by creating a subsection in the items section
- The name of the section can be anything except item names already used in that items section
- The format of custom items is exactly the same as default items (material, pos, display_name, lore, etc)
- Add functionality to custom items using click actions mentioned above
- Lore and display name supports PlaceholderAPI placeholders like all other items
- Add hex color support to menus
Changes:
- Menu file format changes:
- menus.yml has been replaced by an individual file for each menu in the menus folder
- Existing changes to menus.yml will be automatically migrated to the new files
- Exception: the lore of the rank item in the level progression menu will be reset due to new additions to it
- The old menus.yml has been renamed to menus-OLD.yml and should not be used
- The 'rows' menu entry has been renamed to 'size'
- Material names are now in lowercase (uppercase is still allowed though)
- The 'row' and 'column' entries for items has been replaced with the 'pos' entry with two acceptable formats:
- The row,column format, such as 3,0 for row 3, column 0 (the first row/column is 0)
- The slot format, which is a single number for the slot number from 0 up to 53 (starting at the top left slot increasing left to right then top to bottom)
- Each context (skill, stat) in a template has been moved to its own subsection under the template name
- Values such as the material, pos, and item meta of each context are separate fields under the subsection with the context name
- For example, the path 'templates.skill.farming.material' in menus/skills.yml is the material used for Farming in the skils menu
- Item meta options, such as potion_data, are now separate fields under the item section (alongside material, lore) for items and in the context subsection for templates
- Legacy material data for 1.12 is still defined in the material field, using the material:data format
- Reduce kelp XP from 0.5 to 0.3
- Update NBT API version
- Add Czech messages
- Update German messages
- Update Polish messages
- Update Brazilian Portuguese messages
Bug Fixes:
- Fix Lucky Catch not working with custom loot tables
- Fix incorrectly named ACF message key
- Fix missing percent in Runner description
Version Beta 1.2.11
Changes:
- Use new prevent-interact option for blocking item interactions for requirements instead of prevent-tool-use
Bug Fixes:
- Fix PlayerHarvestBlockEvent does not exist error on versions below 1.16
- Fix power placeholder not ignoring disabled skills
- Fix stripped logs not working as a custom XP source if stripped with an axe
Version Beta 1.2.10
Changes:
- Disable item NBT functionality if version unsupported
- Update NBT API for 1.18.2
- Allow leveler message title and subtitle placeholders to be interchangeable
- Update Spanish messages
- Update Chinese (Simplified) messages
Bug Fixes:
- Fix berries right click exploit in some protected regions
Version Beta 1.2.9
Bug Fixes:
- Fix critical item duplication exploit on 1.12
Version Beta 1.2.8
New Features:
- Add alchemy.ignore-custom-potions option to disable duration boosts for custom effects
Changes:
- Add Korean messages
Bug Fixes:
- Fix Forging XP dupe exploit
- Fix red sand, podzol, and coarse dirt blocks dropping with NBT tags when dug with silk touch and Bigger Scoop
- Fix bamboo XP dupe and placed block inconsistency
API Changes:
- Add missing LootDropEvent calls for fishing
- Add methods to add item and armor multipliers
Version Beta 1.2.7
Bug Fixes:
- Fix Aurelium Skills action bar overriding other action bars (requires ProtocolLib)
- Fix ItemListener memory leak
- Fix Towny incompatibility
Version Beta 1.2.6
Changes:
- Add support for Minecraft 1.18
- Update German messages
- Update Spanish messages
- Correct some Polish messages (requires message file regen)
Bug Fixes:
- Fix Repairing resulting in negative durability
- Fix disabled skills still showing in stats menu
- Fix deepslate ores not in lucky_miner_applicable tag
- Fix SlimeFun block placer bug
- Fix MyPet error
Version Beta 1.2.5
New Features:
- Add hex color message support in &# format
- Add Treecapitator max_blocks_multiplier option to scale the number of blocks broken
- Add auto save for online players
- Useful if your server experiences skill data losses due to server crashes
- You must set auto-save.enabled to true and restart the server to enable it
- The auto-save.interval-ticks option controls how often (in ticks) to auto-save
Changes:
- Endurance XP gain is now disabled in spectator mode
Bug Fixes:
- Add armor modifier timer options to fix rare bug where un-equipping armor did not remove modifiers
- Fix some numbers and placeholders truncating instead of rounding half up
Version Beta 1.2.4
New Features:
- Add XP requirement equation customization:
- Configure the expression used for XP requirements in the new xp_requirements.yml file
- The "default" section configures the expression for all skills
- The "expression" is used to calculate the XP required for each level. Supports any valid EvalEx expression. The level variable is the level that is unlocked upon reaching the required XP (starts at 2)
- Custom variables are supported as long as their values (must be a number) are specified under the section (multiplier and base are examples of custom variables added by default)
- Create different requirements for each skill by adding a "skills.[skillName]" section that will override the "default" section
- Add item and armor XP multipliers:
- Item multipliers increase XP when holding the item
- Armor multipliers increase XP when wearing the item
- Multipliers can be either global or only for a specific skill
- New commands (target can be either global or a skill name):
- /skills armor multiplier add <target> <value> [lore]
- /skills armor multiplier remove <target>
- /skills armor multiplier list
- /skills armor multiplier removeall
- /skills item multiplier add <target> <value> [lore]
- /skills item multiplier remove <target>
- /skills item multiplier list
- /skills item multiplier removeall
- Add health.keep-full-on-increase option to keep full health when the health stat increases
Changes:
- The /skills multiplier command will now show skill-specific multipliers if they are different from the global multiplier
- Update Russian messages
Bug Fixes:
- Fix stat and skill not found error messages being null
- Fix custom loot giving negative XP
- Fix deleted loot tables not being removed on reload
- Fix Sharp Hook damage shown on skill item not using hp-indicator-scaling
- Fix custom Foraging loot tables not working
Version Beta 1.2.3
Changes:
- Add Italian messages
- Update Polish messages
- Update Russian messages
API Changes:
- Add getPlugin method to more easily get AureliumSkills instance (not official API, use at own risk)
Bug Fixes:
- Fix sweet berry bush right click not checking for blocked situations
- Fix glow berries XP dupe
- Fix some skills resetting on Turkish systems
Version Beta 1.2.2
New Features:
- Add requirement.enabled to set whether requirements should checked
Changes:
- Update French messages
- Various performance optimizations
- Update Chinese Simplified messages
Bug Fixes:
- Fix loot selection "bound must be positive" error
- Fix excessive velocity crash with Grappler
- Fix lingering potion NoSuchMethod error on 1.12 and 1.13
- Fix Revival stat bonuses not being removed on disconnect
Version Beta 1.2.1
New Features:
- Add /skills version command
- Add durability item loot meta
- Add placeholder support to reward messages
- Add check-multiplier-permissions options to disable potentially laggy frequent permission checks
- Add skull meta item loot parsing:
- Create a skull_meta section and add one of the following keys
- uuid - The UUID of the player's skin you want
- base64 - The base64 texture string
- url - The full Mojang texture link
- Add ManaAbilityRefreshEvent for when a mana ability cooldown finishes
Changes:
- Update French messages
- Reduce default kelp XP
- Optimize mana abilities and agility
- Allow console to use item give command
- Change default health.hp-indicator-scaling to 1 to be more consistent with Minecraft damage numbers
Bug Fixes:
- Fix Terraform crash with EcoEnchants
Version Beta 1.2.0
New Features:
- Reworked loot tables:
- Loot tables are now separated into files for each skill in the loot folder
- Each loot table can have multiple pools, which are lists of loot entries
- Pool keys:
- base_chance - The chance to select this pool without any added ability bonuses (1 = 1% chance) (defaults to 1)
- selection_priority - The order the pools are potentially selected, a higher priority means that it will attempt to select before lower priority pools (defaults to 1)
- override_vanilla_loot - Whether the regular loot from the block should be replaced with the selected loot. Does not apply to fishing. (defaults to false)
- chance_per_luck - The amount the chance should increase per luck stat level the player has (0.1 = 0.1% added chance per luck) (defaults to 0)
- Each pool has a loot section containing a map list of the loot entries
- Currently, there are two types of loot: item loot and command loot
- Universal loot entry keys:
- type - The type of loot, either item or command
- weight - The weight of the entry compared to other loot in the same pool, higher weight means more likely to be selected (defaults to 10)
- message - Chat message to send to player when they get the loot, supports color codes and PlaceholderAPI (optional)
- sources - A list of sources or source tags that this loot should exclusively apply to (optional)
- xp - The amount of skill xp to give when this loot is dropped (defaults to the original source amount if not specified)
- Item loot keys:
- amount - Controls the amount of item to give. This can either be a single number like '5' or a range of number such as '1-5', which gives a random amount from 1 to 5 (defaults to 1)
- material - The material of the item, must be valid bukkit material name (not case sensitive). Use material:id to specify legacy data if on 1.12
- key - References an item key registered using /skills item register. If this is specified, material and all keys below do not apply
- display_name - The display name of the item, supports & for color codes unless escaped with \& (optional)
- lore - The lore of the item, must be a list of each line, supports & for color codes unless escaped with \& (optional)
- enchantments - A list of enchantments, one enchantment per line. Use a space between the enchantment name and the level, such as 'sharpness 5' (optional)
- potion_data - A section containing potion data, see below for keys (optional):
- type - The type of potion, must be a bukkit PotionType
- extended - Whether the potion has an extended duration
- upgraded - Whether the potion has an upgraded level
- custom_effects - A map list of effects, keys for each section below (optional):
- type - The name of the effect, must be a bukkit PotionEffectType
- duration - The duration of the effect, in ticks
- amplifier - The amplifier of the effect (0 means level 1)
- glow - Set to true to make the item glow without enchantments showing (optional)
- nbt - Section for any custom NBT data (optional)
- flags - List of item flags to add to the item (optional)
- ignore_legacy - If true, the plugin will skip loading the item if the server version is below 1.13 to prevent material parsing errors (optional)
- Command loot keys:
- executor - Who should execute the command, either console or player (defaults to console)
- command - The command without the beginning /, supports {player} placeholder and all PlaceholderAPI placeholders
- Add loot tables you can create for Mining and Foraging (create mining.yml or foraging.yml in the loot folder)
- The existing loot.yml will be converted to the new format and the old file will be renamed to loot-OLD.yml
- Add new Replenish options:
- show_particles - display green bone-meal particles when a crop is replanted (defaults to true)
- prevent_unripe_break - prevent breaking a crop that is not fully grown while Replenish is active (defaults to true)
- Add haste_level option to Speed Mine to change the level of haste given
- Add red particles when an entity is damaged by Bleed
- Add new Bleed options:
- base_ticks - The number of bleed ticks added when the entity is not bleeding
- added_ticks - The number of bleed ticks added when the entity is already bleeding
- max_ticks - The maximum number of bleed ticks (inclusive) that an entity can have stacked up
- tick_period - The number of minecraft ticks between the activation of bleed ticks
- show_particles - Whether or not to show bleeding particles
Changes:
- Improve Treecapitator algorithm to work better with all tree types
- Add new items to default loot tables (does not affect existing configs)
- Re-enable idle action bar by default
- Change HP in action bar messages to heart symbol
- Tweak modifier command message format
- Balance changes (does not affect existing configs):
- Health modifier: 0.5 -> 0.4 (this makes it 1 Health = 2 HP)
- Changed health.hearts to better match modifier (20 hearts at about max level in all skills)
- Strength modifier: 0.63 -> 0.5
- Crit Damage per level: 4 -> 3
- First Strike damage per level: 10 -> 8
- Bleed chance per level: 4 -> 3
- Regeneration mana modifier: 0.25 -> 0.1
- New players will not join with full mana
- Mana regen shown in stats menu will now include base mana regen
API Changes:
- Add AureliumAPI#getManaRegen
Bug Fixes:
- Fix inconsistent wisdom experience multiplier with some plugins
- Fix Healer and Forger abilities not working
- Fix Sharp Hook activating when PVP/PVE was disabled
- Fix health scaling reset when adding or removing health modifiers
- Fix inaccurate damage hologram rounding
- Fix level 0 Wise Effect stat modifiers being added
Version Beta 1.1.4
New Features:
- Add silent argument to xp commands to disable message (add true to the end of command)
- Add healing.exclude-negative-potions option to disable potions that give negative effects from giving Healing XP
- Add alchemy.give-xp-on-potion-combat option to give Alchemy XP when using splash/lingering potions to kill/damage mobs (follows archery options and xp source values)
Changes:
- Splash/lingering potions will no longer give Archery XP
Bug Fixes:
- Fix stat menu skills lore not updating based on rewards
- Fix damage holograms not displaying for thrown tridents and other projectiles
- Fix damage holograms displaying projectile damage on self
- Fix strength not working on thrown tridents and special arrows
- Fix item modifiers in offhand not being removed sometimes
- Fix incorrect French stat_level message
- Fix negative item modifiers not displaying properly
- Fix skill-level-requirements-multiplier not rounding properly
- Fix Replenish not replanting the first crop broken
Version Beta 1.1.3
Changes:
- Update es, fr, pl, ru, and zh-CN messages
- Region saving will now use a 5 minute timer instead of on WorldSaveEvent
Bug Fixes:
- Fix Russian language missing from default config
- Fix error by deleting corrupt region files and prevent loading regions while saving
- Fix Terraform broken blocks not giving loot drops
Version Beta 1.1.2
New Features:
- Add global.yml rewards file that applies rewards in it to all skills
- Add boss-bar.display-maxed option to hide boss bar when skill is maxed
- Add %aureliumskills_mana_max_int% placeholder
Changes:
- Command rewards will now default to console if executor is not specified
- Disenchanting enchanted books in a grindstone will now give Forging XP
- Treecaptitator broken blocks will now give Foraging XP
Bug Fixes:
- Fix extra line on skills menu when all stat rewards are removed
- Fix error when playerdata file is missing uuid or empty
- Fix NoSuchFieldError on 1.12
- Fix Forging XP dupe
- Fix Forging XP not being given in rare cases
Version Beta 1.1.1
Changes:
- Remove MythicMobs support:
- MythicMobs has removed public access to their maven repository due to abuse
- This makes it impossible for new users/machines and JitPack to build the plugin
- This is a necessary change to keep the plugin open source and the AureliumSkills API working
- Update aureliumskills.* permission with new permissions
Bug Fixes:
- Fix mana ability cooldown_per_level not working
- Fix modifier removeall ConcurrentModificationException
- Fix missing aureliumskills.item.give permission
Version Beta 1.1.0
New Features:
- Add customizable rewards for leveling up skills (commands, permissions, stats, items, and money):
- Rewards are configurable for each skill in the files in the rewards folder
- Each rewards file name corresponds to the skill it defines rewards for (eg. farming.yml defines only Farming rewards)
- See the example rewards file for syntax help: https://github.com/Archy-X/AureliumSkills/blob/master/src/main/resources/rewards/example_rewards.yml
- Rewards files have two sections:
- The 'patterns' section defines rewards that repeat multiple times
- Each reward must have a 'pattern' section that can have a 'start', 'interval', and 'stop'
- The 'levels' section defines rewards for individual levels
- Each reward must define a 'type' key/value
- Reward types:
- command:
- Executes a command on level up defined with 'command'
- The 'executor' can define whether the command should be run through 'console' or by the 'player' (defaults to console)
- Commands support {player}, {skill}, {level} placeholders and all PlaceholderAPI placeholders
- Can optionally define a 'revert_command' and 'revert_executor' to execute when a player loses that level because of admin commands
- Color codes will work using & unless escaped using \&
- stat:
- Levels up an Aurelium Skill stat (health, strength, luck, etc.) defined in the 'stat' value
- The 'value' defines how much the stat should increase by (defaults to 1)
- You can remove or change the default stats for each skill
- permission:
- Gives the player a permission (only works with LuckPerms right now) defined with 'permission'
- Optional 'value' to specify true/false (defaults to true)
- Permissions are automatically removed when skill levels are lost
- Permissions are automatically added to players on join when a new permission reward is added to a level players already have unlocked
- item:
- Gives an item to the player defined with 'key'
- The 'key' refers to a registered item registered using /skills item register [key]
- The optional 'amount' defines the amount of the item to give, defaults to the amount of the originally registered item
- If the player does not have enough inventory space to give the item, they can claim it using /skills claimitems
- Unclaimed items are saved between restarts
- money:
- Gives the player money through Vault Economy
- The 'amount' defines the amount of money to give
- Messages are handled automatically and are compatible with legacy money rewards
- Command, permission, and item rewards can define custom 'menu_message' and 'chat_message':
- 'menu_message' is displayed in the level progression menu on the level the reward is unlocked at
- 'chat_message' is displayed in chat with the other rewards when the player levels up
- These can be either a literal string or refer to a custom message key in the messages file
- Messages are optional and will just be an empty string if not defined
- 'message' can be used as a shorthand instead when you want both menu and chat messages to be the same
- Reward messages will not be displayed on new lines automatically, you must use \n if you want a new line
- Add Lightning Blade mana ability for Fighting:
- Increases attack speed by _% for _ seconds
- Right click sword and attack mob to activate
- Add item registry system:
- Register the item in your main hand using /skills item register [key]
- Unregister an item using /skills item unregister [key]
- This system makes it easy to use items with complex lore and meta in item rewards
- Registered items are stored in items.yml, this file should not be edited unless you know what you are doing
- Registered items can be given to players using /skills item give [player] [key] (amount)
Changes:
- Lore placeholders for skill items/templates in menus.yml have be changed for stat rewards compatibility
- Update XSeries version
Bug Fixes:
- Fix give-xp-on-takeout Alchemy option not working when using 1 ingredient
- Fix six-sided wood and hyphae not giving Foraging XP
Version Beta 1.0.8
New Features:
- Add Alchemy option give-xp-on-takeout to reward XP when the potion is taken out of the brewing stand
- Requirements can now disable fishing rod use
- Add ssl option for MySQL
API Changes:
- Move many internal classes to new packages, everything should still work as long as you only use the official API
Bug Fixes:
- Fix Fleeting speed boost not being removed on server shutdown
- Delay region saving status update by 20 ticks (hopefully fix errors)
Version Beta 1.0.7
Bug Fixes:
- Fix ProtocolLib action bar errors on 1.17
- Fix Fleeting not being disabled properly
Version Beta 1.0.6
New Features:
- Add 1.17 support
- New Fighting and Archery XP sources:
- Axolotl
- Glow Squid
- Goat
- New Mining XP sources:
- Deepslate
- Copper Ore
- Tuff
- Calcite
- Smooth Basalt
- Block of Amethyst
- Amethyst Cluster
- Deepslate Ores (coal, iron, copper, gold, redstone, lapis, emerald, diamond)
- Dripstone Block
- Ice (requires silk touch)
- Packed Ice (requires silk touch)
- Blue Ice (requires silk touch)
- New Foraging XP sources:
- Moss Block
- Moss Carpet
- Azalea
- Flowering Azalea
- Azalea Leaves
- Flowering Azalea Leaves
- Add Glow Berries as Farming XP source
- Add Rooted Dirt as Excavation XP source
- Add Source Tags:
- Source tags are configurable lists of XP sources used for certain plugin mechanics, such as which blocks abilities work on
- Loaded from new tags section in sources_config.yml
- Three ways to define an entry in a source tag:
- Use an exact source name defined in the sources section above (eg. 'dirt')
- Use a '*' to add all the sources in the skill
- Use a source name with an '!' in front, which removes the entry from the list (eg. '!dirt')
- Tags added:
- Farming: bountiful_harvest_applicable, triple_harvest_applicable
- Foraging: lumberjack_applicable
- Mining: lucky_miner_applicable, speed_mine_applicable
- Excavation: bigger_scoop_applicable, metal_detector_applicable, lucky_spades_applicable, terraform_applicable
- Note: This does not work for custom block/mob sources yet
Changes:
- Rename quartz_ore to nether_quartz_ore in sources_config.yml
- Recode internal sources system, add sources registry
- Updated NBT API to 2.8.0
Bug Fixes:
- Fix Archery damage based getting wrong xp amount
- Fix Enchanting Enchanter ability not working
- Fix Replenish changing blocks in protected regions
- Fix MySQL table creation not working on older MySQL versions
Version Beta 1.0.5
Changes:
- Updated French (fr) messages
Bug Fixes:
- Fix MySQL ClassNotFoundException when using older MySQL connector
- Fix health being applied multiple times in skill commands
Version Beta 1.0.4
Bug Fixes:
- Fix multiple Forging XP exploits
- Fix Disenchanter experience exploit
- Fix global requirements not showing up in requirement deny messages
- Fix incorrect item requirement use message
- Fix MySQL deprecation warning on Java 16
Version Beta 1.0.3
Bug Fixes:
- Fixed Forging XP dupe
Version Beta 1.0.2
New Features:
- Added lingering potions as Healing XP sources (includes regular, extended, and upgraded options in sources_config.yml)
- Added health_percent_required option for the fleeting ability to control the health the ability activates at
Changes:
- Updated French (fr), Portuguese-Brazilian (pt-BR), and Spanish (es) messages
- The skill levels required will now be listed in the message when players do not meet the requirements for an item
- Requires adding {requirements} placeholder to 'commands.armor.requirement.equip' and 'commands.item.requirement.use' messages or regen of messages file to work
API Changes:
- Added addItemModifier and addArmorModifier methods to API
Bug Fixes:
- Fixed falling block (sand/gravel) dupe
Version Beta 1.0.1
Changes:
- Automatic backups will no longer try to save player data again on shutdown
- The /skills save command now runs asynchronously
Bug Fixes:
- Fixed duplication when mining placed Excavation or Luck double drop blocks
Version Beta 1.0.0
New Features:
- Backups:
- Save a backup with /backup save
- Load a backup in the backups folder with /back load [file]
- You must specify the exact file name with the file extension, such as /backup load backup-date_time.yml
- Automatic backups will be taken by default at least 24 hours apart on server shutdowns
- Added automatic-backups.enabled and automatic-backups.minimum-interval-hours options
- Region storage:
- Placed blocks are now stored on file, which means gaining xp for placed blocks after a restart is no longer possible
- Stored in the regiondata folder organized by world and regions (32x32 chunk areas)
- Regions are dynamically loaded and unloaded as they are used to conserve memory
- Added new Farming XP sources:
- Cactus
- Brown/Red mushroom
- Kelp
- Sea pickle
- Sweet berry bush
- MySQL improvements:
- Added mysql.load-delay option to delay loading player data from database until a certain number of ticks passes
- Added mysql.always-load-on-join to load player data on join no matter if it is already cached in memory
- Added custom WorldGuard flags:
- Added aureliumskills-xp-gain flag to allow/deny XP gain in regions (works the same as blocked-regions in config)
- Only works in WorldGuard 7.0+ (1.13+)
- Added skill average leaderboards (/skills top average)
- Added grindstone disenchanting as Forging XP source
- Added check-for-updates option to toggle update checking
- Added aureliumskills.checkupdates permission to toggle sending plugin update messages on join
- Added replenish.replant_delay option in abilities_config.yml
Changes:
- Moved Yaml player data into individual files for each player in the playerdata folder
- Changed MySQL database format, NOT backwards compatible
- Each player's data will now be loaded on join and saved on leave
- Stat modifiers are now persistent
- Mana is now persistent
- Player language settings are now persistent
- Certain ability data is now persistent
- Complete recode and cleanup of the data and storage system
- Abstracted skills and stats, created skill and stat registry system
- Added Lithuanian (lt) messages
API Changes:
- Renamed Stat enum to Stats
- Renamed Skill enum to Skills
- Skill and Stat are now interfaces that can represent more than just the default skills/stats
- Moved util classes into more specific subpackages
Bug Fixes:
- Fixed Replenish consuming wrong mana amount
- Fixed players unable to do certain tasks (breaking/placing blocks) if their player data was not loaded
- Added chipped_anvil, damaged_anvil, flower_pot, and signs to blocked materials when equipping armor with modifiers
- Fixed wisdom.max-mana-per-wisdom changes not regenerating mana properly
Version Alpha 1.6.8
Changes:
- Made default English not enough mana messages more specific to show current and max mana
- Disabled idle action bar by default, changed default ability action bar messages
- Added new mana ability options to mana abilities that raise/lower a tool:
- Added check_offhand option to stop readying if a block is being placed in the offhand (true by default)
- Added sneak_offhand option to allow the player to bypass the offhand block check by sneaking (true by default)
- Added require_sneak option to require sneaking in all cases to ready an ability (false by default)
Bug Fixes:
- Fixed loot dropping with Terraform in protected Towny regions (added Towny support)
- Fixed melons dropping melon slices with silk touch in bountiful harvest/triple harvest abilities
- Fixed gaining fighting and archery xp in disabled worlds/regions if damage_based is enabled
Version Alpha 1.6.7
New Features:
- Added PlaceholderAPI support to menus:
- Added menus.placeholder-api config option (true by default)
- Works on all display names, lores, and messages used in menus
- Added per skill multiplier permissions:
- Format: aureliumskills.multiplier.[skill].[percent]
- Reminder that percent is the percent extra xp, so aureliumskills.multiplier.farming.100 would give 100% (2x) more Farming XP
- Added %aureliumskills_multiplier_[skill]% and %aureliumskills_multiplier_percent_[skill]% placeholders
- Added potion_type and custom_effect data tags for loot
- Format: potion_type:[PotionType]
- Format: custom_effect:[PotionEffectType],[duration],[amplifier]
- Added PlaceholderAPI support to loot commands
- Added ManaAbilityActivateEvent
- Added %aureliumskills_[stat]_int% placeholder to get stat levels as an integer
Bug Fixes:
- Fixed Bleed not being removed on some deaths
- Fixed enchanted book loot enchants not working in anvils
- Sharp hook will no longer work if the attacker is too far away or in a different world
Version Alpha 1.6.6
New Features:
- Added archery/fighting.damage-based options to grant XP every time a player attacks per damage dealt instead of killing the mob:
- WARNING: This still uses the values in sources_config.yml as the XP granted PER VANILLA DAMAGE for each type of mob
- You should significantly lower and equalize the archery and fighting values in sources_config.yml if you want to keep the progression similar to before
- These options are false by default
- Added archery/fighting.spawner-multiplier options to change the XP gained from mobs spawned from spawners:
- Set to 0 to disable XP from mob spawners; set to 1 to match regular mobs (1 by default)
- The XP gained is the spawner-multiplier value multiplied by the XP a normal mob of that type would give
- Added defense.allow-shield-blocking option to allow Defense XP gain when blocking a shield (false by default)
- Added cocoa as a Farming XP source
- Added %aureliumskills_mana_int% placeholder for the mana of a player rounded to an integer
Changes:
- Updated id messages
Bug Fixes:
- Fixed server crash with the Terraform mana ability when using VeinMiner
- Added TerraformBlockBreakEvent called when blocks broken with Terraform
- Fixed mana ability max level not being displayed in menus
- Fixed default language not setting on case sensitive operating systems with locales that specify a country code
- Fixed tridents giving both Fighting and Archery XP (now only gives Archery)
Version Alpha 1.6.5
Changes:
- Changed menu inventory click event priority to highest (should prevent plugin compat issues where players are able to take items out)
- Updated zh-CN messages
Bug Fixes:
- Exploding fireworks will now give Archery XP instead of Fighting
- Fixed Disenchanter no enum constant error
- Fixed action bar hp and max hp discrepancy
- Fixed experience duplication death exploit
- Players can longer earn Archery/Fighting/Defense XP by damaging/killing themselves
- Fixed ability config migration error
Version Alpha 1.6.4
New Features:
- Added hearts customization:
- Use the health.hearts in config.yml section to change the hearts shown for different health ranges.
- The key is the number of hearts and the value is the minecraft health that amount of hearts is unlocked at.
- For example, if two entries are '12': 29 and '13': 37, this means the player will have 12 hearts shown on their screen when their minecraft health is from 29 (inclusive) to 37 (exclusive).
- The values are not the HP shown on the action bar. To find the HP from the action bar the value is, multiply it by the health.hp-indicator-scaling option (default is 5).
- This supports hearts below 10 and hearts above 20, just add entries with the key as the number of hearts.
- The order of keys and values should be sequential, otherwise higher heart entries will override lower ones.
- This is purely cosmetic, changing these options does not change the actual hp you have.
- This only works if you have health.health-scaling set to true.
- Added CustomRegenEvent to the API for health regeneration when custom-regen-mechanics is enabled
Bug Fixes:
- Fixed Fleeting speed boost not being removed if custom-regen-mechanics was enabled
- Fixed grindstone Disenchanter ability error with Sweeping Edge
- Fixed Recovery ability not working if custom-regen-mechanics was enabled
- Fixed sugar cane Farming XP fast place duping (breaking any player placed sugar cane will not give XP for above blocks)
Version Alpha 1.6.3
Changes:
- Fully updated es, fr, and pt-BR messages (version 13)
- Partially updated de, id, pl, tr, zh-CN, and zh-TW messages to fix format bug (version 9)
Bug Fixes:
- Fixed level up message format issues on languages that did not have updated message files (every language except en)
- Fixed doubled level up message when money reward was enabled
- Fixed Terraform mana ability options not being on abilities_config.yml
Version Alpha 1.6.2
Bug Fixes:
- Fixed file loading issues (console spam) and other potential problems on systems with Turkish as the default language
Version Alpha 1.6.1
Bug Fixes:
- The custom_model_data tag for the fill item now works
- Fixed action bar NullPointerException
Version Alpha 1.6.0
New Features:
- New abilities_config:
- Moved ability options from config.yml to new abilities_config.yml file
- Added 'unlock' option (the skill level the ability unlocks at)
- Added 'level_up' option (every x levels the ability should level up)
- Added 'max_level' option to control the maximum allowed ability level (set to 0 for no limit) (skill level limits still apply)
- Added various specific options for some abilities such as 'enable_message', 'enable_sound', etc.
- Changing the new options will automatically change the order on menus and level up messages
- Your existing ability options will be automatically migrated to the new abilities_config.yml file when updating and old options will be deleted
- Enchanting abilities:
- XP Convert - Earn 1 Minecraft experience for every certain amount of skill XP you gain.
- Enchanter - Earn more Enchanting XP.
- XP Warrior - Mobs you kill have a chance of dropping double experience.
- Enchanted Strength - Gain Strength for every unique enchantment on the item held.
- Lucky Table - Items you enchant using the enchantment table have a chance of upgrading the enchantment level by 1 if not max level.
- Healing abilities:
- Life Essence - Instant Health potions heal more.
- Healer - Earn more Healing XP.
- Life Steal - Heal a percentage of the max HP of hostile mobs and players you kill.
- Golden Heart - Damage done to your absorption hearts is reduced.
- Revival - Gain Health and Regeneration stat boosts for 30 seconds after respawning.
- Forging abilities:
- Disenchanter - Gain more experience when disenchanting items using a grindstone. (1.14+ only)
- Forger - Earn more Forging XP.
- Repairing - Repairing items in an anvil using the raw material the item was made from repairs more durability.
- Anvil Master - Increases the maximum repair cost of an anvil before it is too expensive. (1.13+ only)
- Skill Mender - Gaining skill XP has a chance to repair a held item or worn armor piece with the Mending enchantment by 1 durability per 2 skill XP.
- Terraform mana ability for Excavation
- Break blocks instantly in a 4 block radius in the same layer when digging
- You must use a shovel and extra blocks broken must be the same type and in a single connected vein
- Right click shovel and dig block to activate
- Blocks broken will call BlockBreakEvent so there shouldn't be plugin compatibility issues
- Charged Shot mana ability for Archery
- Arrows you shoot will deal more damage based on how far the bow was pulled back, consuming mana in the process.
- Left click a bow to toggle charged shot mode
- Damage percent increase is based on the amount of mana consumed, mana is consumed up to the max mana cost
- Absorption mana ability for Defense
- Incoming damage will decrease mana by 2x Minecraft damage instead of health for a duration.
- Mana will not regenerate while Absorption is active.
- Left click a shield and take damage to activate