Pentamana

Quick rating

Pentamana

No reviews yet

A mana API providing mana calculation hooks and mana rendering.

Magic
API/Library
Mod Loaders
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Optional
Server Required

About

Project Details

Type
Mod
License
GNU General Public License v3.0 or later
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

Modrinth ID

Resources

External Links

About

Description

Pentamana

Pentamana is a library adds non-registered mana status for living entities.

Compound data: Parent tag.
 |- Float mana: Any
 \- Float mana_capacity: Any

Manabar.png

Configuration

config/pentamana/server.json:

{
  "manaCapacityBase": 20.0,
  "manaRegenerationBase": 0.0625
}

config/pentamana/client.json:

{
  "manaBarOffsetX": 0,
  "manaBarOffsetY": -69,
  "manaBarDirection": "right",
  "manaBarAlignment": "middle",
  "manaBarMaxStars": 20
}

Command

Server Command

The commands below require premission level 2 to execute.

  • /mana get Print mana supply. Returns mana supply in point.
  • /mana set Set mana supply. Returns modified mana supply in point.
  • /mana add Add mana supply. Returns modified mana supply in point.
  • /mana subtract Subtract mana supply. Returns modified mana supply in point.
  • /pentamana reload Reload server config file.
  • /pentamana set ... <...> Set server config and save to config file.
  • /pentamana reset [...] Set server config to default and save to config file.

Client Command

  • /manabar set ... <...> Set manabar config and save to config file.
  • /manabar reset [...] Set manabar config to default and save to config file.

Tutorial

Codes in this tutorial are licenced under CC-0.

Installation

gradle.properties:

pentamana_version=2.0.0-beta.14

build.gradle:

repositories {
    exclusiveContent {
        forRepository {
            maven {
                name = "Modrinth"
                url = "https://api.modrinth.com/maven"
            }
        }
        filter {
            includeGroup "maven.modrinth"
        }
    }
}

dependencies {
    implementation "maven.modrinth:pentamana:${project.pentamana_version}"
}

Consume mana

livingEntity.consumeMana(1.234f) // Return true if successful.

Change how mana capacity is calculated

ManaEvents.CALCULATE_CAPACITY.register((livingEntity, capacity) -> {
    float f = capacity.floatValue() // Base value.
    // TO-DO: Do your modifies to f.
    capacity.setValue(f);
    return InteractionResult.PASS;
})
  • ManaEvents.CALCULATE_CAPACITY
  • ManaEvents.CALCULATE_REGENERATION
  • ManaEvents.CALCULATE_CONSUMPTION
  • ManaEvents.CALCULATE_DAMAGE

Pentamana Extra uses this.

Get Casting Damage

livingEntity.getCastingDamageAgainst(entity, 1.234f)

Screenshots

Gallery

  • Manabar, 27/40 MP
    Manabar, 27/40 MP Positioned (0, -69) relative to botton-center of GUI, middle aligned, left-to-right progress direction

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~1,000
Downloads
Last Updated
CurseForge
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works