mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-01 16:19:53 +01:00
Fill in Taming subskill rank information
This commit is contained in:
parent
5ca027650e
commit
fd78ce278e
@ -17,4 +17,39 @@ public class ConfigRanks {
|
||||
|
||||
@Setting(value = "Axes", comment = "Configure when sub-skills unlock for Axes here.")
|
||||
private ConfigRanksAxes axes = new ConfigRanksAxes();
|
||||
|
||||
@Setting(value = "Taming", comment = "Configure when sub-skills unlock for Taming here.")
|
||||
private ConfigRanksTaming taming = new ConfigRanksTaming();
|
||||
|
||||
@Setting(value = "Smelting", comment = "Configure when sub-skills unlock for Smelting here.")
|
||||
private ConfigRanksSmelting smelting = new ConfigRanksSmelting();
|
||||
|
||||
@Setting(value = "Salvage", comment = "Configure when sub-skills unlock for Salvage here.")
|
||||
private ConfigRanksSalvage salvage = new ConfigRanksSalvage();
|
||||
|
||||
@Setting(value = "Mining", comment = "Configure when sub-skills unlock for Mining here.")
|
||||
private ConfigRanksMining mining = new ConfigRanksMining();
|
||||
|
||||
@Setting(value = "Herbalism", comment = "Configure when sub-skills unlock for Herbalism here.")
|
||||
private ConfigRanksHerbalism herbalism = new ConfigRanksHerbalism();
|
||||
|
||||
@Setting(value = "Fishing", comment = "Configure when sub-skills unlock for Fishing here.")
|
||||
private ConfigRanksFishing fishing = new ConfigRanksFishing();
|
||||
|
||||
@Setting(value = "Swords", comment = "Configure when sub-skills unlock for Swords here.")
|
||||
private ConfigRanksSwords swords = new ConfigRanksSwords();
|
||||
|
||||
@Setting(value = "Unarmed", comment = "Configure when sub-skills unlock for Unarmed here.")
|
||||
private ConfigRanksUnarmed unarmed = new ConfigRanksUnarmed();
|
||||
|
||||
@Setting(value = "Woodcutting", comment = "Configure when sub-skills unlock for Woodcutting here.")
|
||||
private ConfigRanksWoodcutting woodcutting = new ConfigRanksWoodcutting();
|
||||
|
||||
@Setting(value = "Excavation", comment = "Configure when sub-skills unlock for Excavation here.")
|
||||
private ConfigRanksExcavation excavation = new ConfigRanksExcavation();
|
||||
|
||||
@Setting(value = "Repair", comment = "Configure when sub-skills unlock for Repair here.")
|
||||
private ConfigRanksRepair repair = new ConfigRanksRepair();
|
||||
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksExcavation {
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksFishing {
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksHerbalism {
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksMining {
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksRepair {
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksSalvage {
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksSmelting {
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksSwords {
|
||||
|
||||
}
|
@ -0,0 +1,78 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.Setting;
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksTaming {
|
||||
|
||||
@Setting(value = "Beast-Lore")
|
||||
private SkillRankProperty beastLore = new SkillRankProperty(2);
|
||||
|
||||
@Setting(value = "Gore")
|
||||
private SkillRankProperty gore = new SkillRankProperty(15);
|
||||
|
||||
@Setting(value = "Call-Of-The-Wild")
|
||||
private SkillRankProperty callOfTheWild = new SkillRankProperty(5);
|
||||
|
||||
@Setting(value = "Pummel")
|
||||
private SkillRankProperty pummel = new SkillRankProperty(20);
|
||||
|
||||
@Setting(value = "FastFoodService")
|
||||
private SkillRankProperty fastFoodService = new SkillRankProperty(20);
|
||||
|
||||
@Setting(value = "Environmentally-Aware")
|
||||
private SkillRankProperty environmentallyAware = new SkillRankProperty(10);
|
||||
|
||||
@Setting(value = "Thick-Fur")
|
||||
private SkillRankProperty thickFur = new SkillRankProperty(25);
|
||||
|
||||
@Setting(value = "Holy-Hound")
|
||||
private SkillRankProperty holyHound = new SkillRankProperty(35);
|
||||
|
||||
@Setting(value = "Shock-Proof")
|
||||
private SkillRankProperty shockProof = new SkillRankProperty(50);
|
||||
|
||||
@Setting(value = "Sharpened-Claws")
|
||||
private SkillRankProperty sharpenedClaws = new SkillRankProperty(75);
|
||||
|
||||
public SkillRankProperty getBeastLore() {
|
||||
return beastLore;
|
||||
}
|
||||
|
||||
public SkillRankProperty getGore() {
|
||||
return gore;
|
||||
}
|
||||
|
||||
public SkillRankProperty getCallOfTheWild() {
|
||||
return callOfTheWild;
|
||||
}
|
||||
|
||||
public SkillRankProperty getPummel() {
|
||||
return pummel;
|
||||
}
|
||||
|
||||
public SkillRankProperty getFastFoodService() {
|
||||
return fastFoodService;
|
||||
}
|
||||
|
||||
public SkillRankProperty getEnvironmentallyAware() {
|
||||
return environmentallyAware;
|
||||
}
|
||||
|
||||
public SkillRankProperty getThickFur() {
|
||||
return thickFur;
|
||||
}
|
||||
|
||||
public SkillRankProperty getHolyHound() {
|
||||
return holyHound;
|
||||
}
|
||||
|
||||
public SkillRankProperty getShockProof() {
|
||||
return shockProof;
|
||||
}
|
||||
|
||||
public SkillRankProperty getSharpenedClaws() {
|
||||
return sharpenedClaws;
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksUnarmed {
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.gmail.nossr50.config.hocon.skills.ranks;
|
||||
|
||||
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
|
||||
|
||||
@ConfigSerializable
|
||||
public class ConfigRanksWoodcutting {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user