CraftTweaker Sixik Utils AOA3 (Nevermine) (Outdated)
This addon was created to enhance the capabilities of Minecraft modpack developers, enabling more effective integration of the Advent of Ascension 3 (Nevermine) mod into your projects.
Key Features:
- Access to player skill levels and corresponding experience for creating custom mechanics
- Retrieval of resource quantities, including divine scales
- Obtaining experience-gaining events with the ability to modify the amount of experience received
Usage Examples:
player.aoa3.getLevel(<resource:aoa3:innervation>);
// Returns integer level
player.aoa3.getxp(<resource:aoa3:innervation>);
// Returns floating-point experience
player.aoa3.grantXp(<resource:aoa3:innervation>, 210);
// Returns void
println(Registries.getSkillList().toString());
// Displays all existing skills
println(Registries.getResourceList().toString());
// Shows all available resources
println(Registries.getAbilities().toString());
// Lists all existing abilities
Functionality is expanded as needed to meet developer requirements.