Initial commit

This commit is contained in:
Paldiu
2022-03-17 16:16:52 -05:00
commit dcd7f7401c
46 changed files with 1811 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package io.github.simplex.api;
import org.bukkit.attribute.Attribute;
import org.bukkit.entity.Player;
public interface LuckContainer {
Attribute asAttribute();
double getNumber();
boolean isMatch(double number);
boolean isClose(double number, int range);
double multiplier();
Player associatedPlayer();
double baseValue();
}