mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-01 16:19:53 +01:00
Fill in Smelting rank information
This commit is contained in:
parent
fd78ce278e
commit
c33d6e62b7
@ -1,8 +1,22 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.Setting;
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksSmelting {
|
||||
|
||||
@Setting(value = "Fuel-Efficiency")
|
||||
private SkillRankProperty fuelEfficiency = new SkillRankProperty(10, 50, 75);
|
||||
|
||||
@Setting(value = "Understanding-The-Art")
|
||||
private SkillRankProperty understandingTheArt = new SkillRankProperty(10, 25, 35, 50, 65, 75, 85, 100);
|
||||
|
||||
public SkillRankProperty getFuelEfficiency() {
|
||||
return fuelEfficiency;
|
||||
}
|
||||
|
||||
public SkillRankProperty getUnderstandingTheArt() {
|
||||
return understandingTheArt;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user