mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-01 16:19:53 +01:00
Fill in Woodcutting rank config
This commit is contained in:
parent
0bafcb659b
commit
86a46babc1
@ -1,8 +1,29 @@
|
|||||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||||
|
|
||||||
|
import ninja.leaping.configurate.objectmapping.Setting;
|
||||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||||
|
|
||||||
@ConfigSerializable
|
@ConfigSerializable
|
||||||
public class ConfigRanksWoodcutting {
|
public class ConfigRanksWoodcutting {
|
||||||
|
|
||||||
|
@Setting(value = "Tree-Feller")
|
||||||
|
private SkillRankProperty treeFeller = new SkillRankProperty(5);
|
||||||
|
|
||||||
|
@Setting(value = "Harvest-Lumber")
|
||||||
|
private SkillRankProperty harvestLumber = new SkillRankProperty(5);
|
||||||
|
|
||||||
|
@Setting(value = "Leaf-Blower")
|
||||||
|
private SkillRankProperty leafBlower = new SkillRankProperty(30);
|
||||||
|
|
||||||
|
public SkillRankProperty getTreeFeller() {
|
||||||
|
return treeFeller;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SkillRankProperty getHarvestLumber() {
|
||||||
|
return harvestLumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SkillRankProperty getLeafBlower() {
|
||||||
|
return leafBlower;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user