dev.aurelium.auraskills.api.loot.LootValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auraskills-api Show documentation
Show all versions of auraskills-api Show documentation
API for AuraSkills, the ultra-versatile RPG skills plugin for Minecraft
package dev.aurelium.auraskills.api.loot;
import java.util.Map;
import java.util.Set;
public class LootValues extends LootOptioned {
private final int weight;
private final String message;
private final Map> contexts;
public LootValues(int weight, String message, Map> contexts, Map options) {
super(options);
this.weight = weight;
this.message = message;
this.contexts = contexts;
}
public int getWeight() {
return weight;
}
public String getMessage() {
return message;
}
public Map> getContexts() {
return contexts;
}
}