mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 18:24:43 +02:00
Endgame Update (#4840)
General Added Crossbows Skill, this skill is a WIP and feedback on discord is appreciated. Added Tridents Skill, this skill is a WIP and feedback on discord is appreciated. Added the "endgame" triple drop subskill 'Mother Lode' to Mining Added the "endgame" triple drop subskill 'Clean Cuts' to Woodcutting Added the "endgame" triple drop subskill 'Verdant Bounty' to Herbalism Added /mmopower command which simply shows your power level (aliases /mmopowerlevel /powerlevel) Config Added 'Send_To_Console' settings to chat.yml to toggle sending party or admin chat messages to console. Replaced 'Experience_Formula.Modifier' in experience.yml with 'Experience_Formula.Skill_Multiplier' which is easier to understand and less prone to divide by zero bugs. child.yml config is gone now, feel free to delete it. Tweaks Tree Feller now drops 90% less non-wood block rewards (leaves/etc) on average from Knock on Wood. Treasure drop rate from Shake, Fishing, Hylian, and Excavation now benefit from the Luck perk. Updated advanced.yml with entries for the new skills Permission nodes Added 'mcmmo.commands.mmopower' permission node for the new /mmopower command Added 'mcmmo.commands.crossbows' permission node Added 'mcmmo.ability.crossbows.crossbowslimitbreak' permission node Added 'mcmmo.ability.crossbows.trickshot' permission node Added 'mcmmo.ability.herbalism.verdantbounty' permission node Added 'mcmmo.ability.mining.motherlode' permission node Added 'mcmmo.ability.woodcutting.cleancuts' permission node Locale Added locale entries for motherlode, cleancuts, and verdant bounty. Codebase Major rewrite for how random chance was handled in the code. Many skills with RNG elements now send out a SubSkillEvent (which can be used to modify probability or cancel the results), some skills without RNG still send out this event when activated, this event is cancellable so it can be used to make a skill fail. A lot of new unit tests were added to help keep mcMMO stable as part of this update, of course, more could always be added. NOTES: One feature of this update is to provide an endgame benefits to some skills that you can grind for a long time, ideally for a long while. I will likely expand upon this idea in future updates. A few skills have these endgame-oriented subskills, these new subskills provide a small benefit at first that grows and scales up to level 10,000 (or 1,000 for Standard mode which no one uses) and does not have ranks (other than the initial rank to unlock it). These endgame sub skills unlock at level 1000 for users with default mcMMO settings, or 100 for those using the optional Standard scaling. You can tweak the benefits of these skills in advanced.yml, the default settings are meant to be a good starting point. Crossbows and Tridents are WIP skills, I would like feedback on discord about them. More info on the new Triple Drop skills (Mother Lode, Clean Cuts, Verdant Bounty): Currently these start at about 5% chance and can reach a maximum 50% chance if a player acquired 10,000 skill, you can adjust this in advanced.yml These skills respect double drop settings from config.yml just like the corresponding Double Drop skills do, if a double drop is disabled for an item, then it's disabled for triple drops too. I added a new Power Level Command, for now this just shows you your current power level. If I ever add features based on power level, this command will likely display output related to those features. Regarding Maces, I will likely add that as a WIP skill when the next Minecraft update drops.
This commit is contained in:

committed by
GitHub

parent
bead5feb14
commit
2594dc1bca
@ -5,7 +5,7 @@
|
||||
# For advanced users only! There is no need to change anything here.
|
||||
#
|
||||
# You can customize almost every aspect of every skill here.
|
||||
# Its mainly here if you've customized the experience formula.
|
||||
# It's mainly here if you've customized the experience formula.
|
||||
# Configure at what level you get better with certain abilities.
|
||||
#
|
||||
#####
|
||||
@ -20,7 +20,7 @@ Feedback:
|
||||
PlayerTips: true
|
||||
SkillCommand:
|
||||
BlankLinesAboveHeader: true
|
||||
# If sendtitles is true messages will be sent using the title api (BIG TEXT ON SCREEN)
|
||||
# If sendtitles is true, messages will be sent using the title api (BIG TEXT ON SCREEN)
|
||||
Events:
|
||||
XP:
|
||||
SendTitles: true
|
||||
@ -264,6 +264,11 @@ Skills:
|
||||
MaxBonusLevel:
|
||||
Standard: 100
|
||||
RetroMode: 1000
|
||||
VerdantBounty:
|
||||
ChanceMax: 50.0
|
||||
MaxBonusLevel:
|
||||
Standard: 1000
|
||||
RetroMode: 10000
|
||||
|
||||
HylianLuck:
|
||||
# ChanceMax: Maximum chance of Hylian Luck when on <MaxBonusLevel> or higher
|
||||
@ -284,6 +289,11 @@ Skills:
|
||||
# Settings for Mining
|
||||
###
|
||||
Mining:
|
||||
MotherLode:
|
||||
MaxBonusLevel:
|
||||
Standard: 1000
|
||||
RetroMode: 10000
|
||||
ChanceMax: 50.0
|
||||
SuperBreaker:
|
||||
AllowTripleDrops: true
|
||||
DoubleDrops:
|
||||
@ -608,9 +618,16 @@ Skills:
|
||||
Knock_On_Wood:
|
||||
Add_XP_Orbs_To_Drops: true
|
||||
|
||||
# Triple Drops
|
||||
CleanCuts:
|
||||
# ChanceMax: Maximum chance of receiving triple drops (100 = 100%)
|
||||
# MaxBonusLevel: Level when the maximum chance of receiving triple drops is reached
|
||||
ChanceMax: 50.0
|
||||
MaxBonusLevel:
|
||||
Standard: 1000
|
||||
RetroMode: 10000
|
||||
# Double Drops
|
||||
HarvestLumber:
|
||||
# ChanceMax & MaxBonusLevel are only used for Classic, I'll make that more clear in the future.
|
||||
# ChanceMax: Maximum chance of receiving double drops (100 = 100%)
|
||||
# MaxBonusLevel: Level when the maximum chance of receiving double drops is reached
|
||||
ChanceMax: 100.0
|
||||
|
@ -8,10 +8,12 @@ Chat:
|
||||
Enable: true
|
||||
# Whether to use the current display name of a player
|
||||
Use_Display_Names: true
|
||||
Send_To_Console: true
|
||||
Spies:
|
||||
# Whether players with the chat spy permission join the server with chat spying toggled on
|
||||
Automatically_Enable_Spying: false
|
||||
Admin:
|
||||
Send_To_Console: true
|
||||
# Enable or disable admin chat
|
||||
Enable: true
|
||||
# Whether to use the current display name of a player
|
||||
|
@ -1,16 +0,0 @@
|
||||
#
|
||||
# mcMMO child skill configuration
|
||||
# Last updated on ${project.version}-b${BUILD_NUMBER}
|
||||
#
|
||||
# You do not need to modify this file except to change parents of child skills
|
||||
#
|
||||
# If you wish a child skill to be the parent of another child skill, you must also make your changes to the child.yml within the jar
|
||||
# WARNING: THIS IS NOT SUPPORTED, IF YOU DO SO YOU ARE RESPONSIBLE FOR THE ISSUES THAT MAY ARISE. That said, watch out for circular dependencies, those are bad.
|
||||
#
|
||||
#####
|
||||
Salvage:
|
||||
- Fishing
|
||||
- Repair
|
||||
Smelting:
|
||||
- Mining
|
||||
- Repair
|
@ -49,6 +49,10 @@ General:
|
||||
RetroMode:
|
||||
Enabled: true
|
||||
Locale: en_US
|
||||
PowerLevel:
|
||||
Skill_Mastery:
|
||||
Enabled: true
|
||||
AprilFoolsEvent: true
|
||||
MOTD_Enabled: true
|
||||
EventBroadcasts: true
|
||||
EventInfoOnPlayerJoin: true
|
||||
|
@ -77,6 +77,10 @@ Experience_Bars:
|
||||
Enable: true
|
||||
Color: BLUE
|
||||
BarStyle: SEGMENTED_6
|
||||
Crossbows:
|
||||
Enable: true
|
||||
Color: BLUE
|
||||
BarStyle: SEGMENTED_6
|
||||
Excavation:
|
||||
Enable: true
|
||||
Color: YELLOW
|
||||
@ -113,6 +117,10 @@ Experience_Bars:
|
||||
Enable: true
|
||||
Color: RED
|
||||
BarStyle: SEGMENTED_6
|
||||
Tridents:
|
||||
Enable: true
|
||||
Color: BLUE
|
||||
BarStyle: SEGMENTED_6
|
||||
Unarmed:
|
||||
Enable: true
|
||||
Color: BLUE
|
||||
@ -159,8 +167,10 @@ Experience_Formula:
|
||||
Breeding:
|
||||
Multiplier: 1.0
|
||||
|
||||
# Experience gained will get divided by these values. 1.0 by default, 2.0 means two times less XP gained.
|
||||
Modifier:
|
||||
# Experience gained will get multiplied by these values. 1.0 by default, 0.5 means half XP gained. This happens right before multiplying the XP by the global multiplier.
|
||||
Skill_Multiplier:
|
||||
Crossbows: 1.0
|
||||
Tridents: 1.0
|
||||
Swords: 1.0
|
||||
Taming: 1.0
|
||||
Acrobatics: 1.0
|
||||
|
@ -21,6 +21,7 @@ JSON.Acrobatics=Acrobatics
|
||||
JSON.Alchemy=Alchemy
|
||||
JSON.Archery=Archery
|
||||
JSON.Axes=Axes
|
||||
JSON.Crossbows=Crossbows
|
||||
JSON.Excavation=Excavation
|
||||
JSON.Fishing=Fishing
|
||||
JSON.Herbalism=Herbalism
|
||||
@ -29,6 +30,7 @@ JSON.Repair=Repair
|
||||
JSON.Salvage=Salvage
|
||||
JSON.Swords=Swords
|
||||
JSON.Taming=Taming
|
||||
JSON.Tridents=Tridents
|
||||
JSON.Unarmed=Unarmed
|
||||
JSON.Woodcutting=Woodcutting
|
||||
JSON.URL.Website=The official mcMMO Website!
|
||||
@ -88,6 +90,7 @@ Overhaul.Name.Acrobatics=Acrobatics
|
||||
Overhaul.Name.Alchemy=Alchemy
|
||||
Overhaul.Name.Archery=Archery
|
||||
Overhaul.Name.Axes=Axes
|
||||
Overhaul.Name.Crossbows=Crossbows
|
||||
Overhaul.Name.Excavation=Excavation
|
||||
Overhaul.Name.Fishing=Fishing
|
||||
Overhaul.Name.Herbalism=Herbalism
|
||||
@ -97,6 +100,7 @@ Overhaul.Name.Salvage=Salvage
|
||||
Overhaul.Name.Smelting=Smelting
|
||||
Overhaul.Name.Swords=Swords
|
||||
Overhaul.Name.Taming=Taming
|
||||
Overhaul.Name.Tridents=Tridents
|
||||
Overhaul.Name.Unarmed=Unarmed
|
||||
Overhaul.Name.Woodcutting=Woodcutting
|
||||
# /mcMMO Command Style Stuff
|
||||
@ -112,6 +116,7 @@ XPBar.Acrobatics=Acrobatics Lv.&6{0}
|
||||
XPBar.Alchemy=Alchemy Lv.&6{0}
|
||||
XPBar.Archery=Archery Lv.&6{0}
|
||||
XPBar.Axes=Axes Lv.&6{0}
|
||||
XPBar.Crossbows=Crossbows Lv.&6{0}
|
||||
XPBar.Excavation=Excavation Lv.&6{0}
|
||||
XPBar.Fishing=Fishing Lv.&6{0}
|
||||
XPBar.Herbalism=Herbalism Lv.&6{0}
|
||||
@ -121,6 +126,7 @@ XPBar.Salvage=Salvage Lv.&6{0}
|
||||
XPBar.Smelting=Smelting Lv.&6{0}
|
||||
XPBar.Swords=Swords Lv.&6{0}
|
||||
XPBar.Taming=Taming Lv.&6{0}
|
||||
XPBar.Tridents=Tridents Lv.&6{0}
|
||||
XPBar.Unarmed=Unarmed Lv.&6{0}
|
||||
XPBar.Woodcutting=Woodcutting Lv.&6{0}
|
||||
#This is just a preset template that gets used if the 'ExtraDetails' setting is turned on in experience.yml (off by default), you can ignore this template and just edit the strings above
|
||||
@ -176,6 +182,13 @@ Archery.SubSkill.ArcheryLimitBreak.Description=Breaking your limits. Increased d
|
||||
Archery.SubSkill.ArcheryLimitBreak.Stat=Limit Break Max DMG
|
||||
Archery.Listener=Archery:
|
||||
Archery.SkillName=ARCHERY
|
||||
Archery.SubSkill.ExplosiveShot.Name=Explosive Shot
|
||||
Archery.SubSkill.ExplosiveShot.Description=Fire an explosive arrow
|
||||
Archery.Skills.ExplosiveShot.Off=
|
||||
Archery.Skills.ExplosiveShot.On=&a**EXPLOSIVE SHOT ACTIVATED**
|
||||
Archery.Skills.ExplosiveShot.Other.Off=Explosive Shot&a has worn off for &e{0}
|
||||
Archery.Skills.ExplosiveShot.Other.On=&a{0}&2 has used &cExplosive Shot!
|
||||
Archery.Skills.ExplosiveShot.Refresh=&aYour &Explosive Shot &ability is refreshed!
|
||||
#AXES
|
||||
Axes.Ability.Bonus.0=Axe Mastery
|
||||
Axes.Ability.Bonus.1=Bonus {0} damage
|
||||
@ -285,8 +298,11 @@ Herbalism.SubSkill.FarmersDiet.Name=Farmer's Diet
|
||||
Herbalism.SubSkill.FarmersDiet.Description=Improves hunger restored from farmed foods
|
||||
Herbalism.SubSkill.FarmersDiet.Stat=Farmer's Diet: &aRank {0}
|
||||
Herbalism.SubSkill.DoubleDrops.Name=Double Drops
|
||||
Herbalism.SubSkill.DoubleDrops.Description=Double the normal loot
|
||||
Herbalism.SubSkill.DoubleDrops.Description=Skillfully harvest double the loot
|
||||
Herbalism.SubSkill.DoubleDrops.Stat=Double Drop Chance
|
||||
Herbalism.SubSkill.VerdantBounty.Name=Verdant Bounty
|
||||
Herbalism.SubSkill.VerdantBounty.Description=Masterfully harvest triple the loot
|
||||
Herbalism.SubSkill.VerdantBounty.Stat=Triple Drop Chance
|
||||
Herbalism.SubSkill.HylianLuck.Name=Hylian Luck
|
||||
Herbalism.SubSkill.HylianLuck.Description=Gives a small chance of finding rare items
|
||||
Herbalism.SubSkill.HylianLuck.Stat=Hylian Luck Chance
|
||||
@ -311,8 +327,11 @@ Mining.SubSkill.SuperBreaker.Name=Super Breaker
|
||||
Mining.SubSkill.SuperBreaker.Description=Speed+, Triple Drop Chance
|
||||
Mining.SubSkill.SuperBreaker.Stat=Super Breaker Length
|
||||
Mining.SubSkill.DoubleDrops.Name=Double Drops
|
||||
Mining.SubSkill.DoubleDrops.Description=Double the normal loot
|
||||
Mining.SubSkill.DoubleDrops.Description=Skillfully mine double the loot
|
||||
Mining.SubSkill.DoubleDrops.Stat=Double Drop Chance
|
||||
Mining.SubSkill.MotherLode.Name=Mother Lode
|
||||
Mining.SubSkill.MotherLode.Description=Masterfully mine triple the loot
|
||||
Mining.SubSkill.MotherLode.Stat=Triple Drop Chance
|
||||
Mining.SubSkill.BlastMining.Name=Blast Mining
|
||||
Mining.SubSkill.BlastMining.Description=Bonuses to mining with TNT
|
||||
Mining.SubSkill.BlastMining.Stat=Blast Mining:&a Rank {0}/{1} &7({2})
|
||||
@ -395,7 +414,7 @@ Salvage.Skills.Adept.Level=You must be level &e{0}&c to salvage &e{1}
|
||||
Salvage.Skills.TooDamaged=&4This item is too damaged to be salvaged.
|
||||
Salvage.Skills.ArcaneFailed=&cYou were unable to extract the knowledge contained within this item.
|
||||
Salvage.Skills.ArcanePartial=&cYou were only able to extract some of the knowledge contained within this item.
|
||||
Salvage.Skills.ArcaneSuccess=&aYou able to extract all of the knowledge contained within this item!
|
||||
Salvage.Skills.ArcaneSuccess=&aYou were able to extract all the knowledge contained within this item!
|
||||
Salvage.Listener.Anvil=&4You have placed a Salvage anvil, use this to Salvage tools and armor.
|
||||
Salvage.Listener=Salvage:
|
||||
Salvage.SkillName=SALVAGE
|
||||
@ -404,6 +423,51 @@ Salvage.Skills.Lottery.Perfect=&a&lPerfect!&r&6 You salvaged &3{1}&6 effortlessl
|
||||
Salvage.Skills.Lottery.Untrained=&7You aren't properly trained in salvaging. You were only able to recover &c{0}&7 materials from &a{1}&7.
|
||||
#Anvil (Shared between SALVAGE and REPAIR)
|
||||
Anvil.Unbreakable=This item is unbreakable!
|
||||
#CROSSBOWS
|
||||
Crossbows.SkillName=CROSSBOWS
|
||||
Crossbows.Ability.Lower=&7You lower your crossbow.
|
||||
Crossbows.Ability.Ready=&3You &6ready&3 your Crossbow.
|
||||
Crossbows.Skills.SSG.Refresh=&aYour &eSuper Shotgun &aability is refreshed!
|
||||
Crossbows.Skills.SSG.Other.On=&a{0}&2 used &Super Shotgun!
|
||||
Crossbows.SubSkill.PoweredShot.Name=Powered Shot
|
||||
Crossbows.SubSkill.PoweredShot.Description=Increases damage done with crossbows
|
||||
Crossbows.SubSkill.PoweredShot.Stat=Powered Shot Bonus Damage
|
||||
Crossbows.SubSkill.CrossbowsLimitBreak.Name=Crossbows Limit Break
|
||||
Crossbows.SubSkill.CrossbowsLimitBreak.Description=Breaking your limits. Increased damage against tough opponents. Intended for PVP, up to server settings for whether it will boost damage in PVE.
|
||||
Crossbows.SubSkill.CrossbowsLimitBreak.Stat=Limit Break Max DMG
|
||||
Crossbows.SubSkill.TrickShot.Name=Trick Shot
|
||||
Crossbows.SubSkill.TrickShot.Description=Richochet arrows with steep angles
|
||||
Crossbows.SubSkill.TrickShot.Stat=Trick Shot Max Bounces
|
||||
Crossbows.SubSkill.TrickShot.Stat.Extra=Trick Shot Max Bounces: &a{0}
|
||||
Crossbows.SubSkill.TrickShot.Stat.Extra2=Trick Shot Reduced DMG per Bounce: &a{0}
|
||||
Crossbows.SubSkill.SuperShotgun.Name=Super Shotgun
|
||||
Crossbows.Listener=Crossbows:
|
||||
|
||||
#TRIDENTS
|
||||
Tridents.SkillName=TRIDENTS
|
||||
Tridents.Ability.Lower=&7You lower your trident.
|
||||
Tridents.Ability.Ready=&3You &6ready&3 your Trident.
|
||||
Tridents.SubSkill.Impale.Name=Impale
|
||||
Tridents.SubSkill.Impale.Description=Increases damage done with tridents
|
||||
Tridents.SubSkill.Impale.Stat=Impale Bonus Damage
|
||||
Tridents.SubSkill.TridentsLimitBreak.Name=Tridents Limit Break
|
||||
Tridents.SubSkill.TridentsLimitBreak.Description=Breaking your limits. Increased damage against tough opponents. Intended for PVP, up to server settings for whether it will boost damage in PVE.
|
||||
Tridents.SubSkill.TridentsLimitBreak.Stat=Limit Break Max DMG
|
||||
Tridents.SubSkill.TridentAbility.Name=WIP
|
||||
Tridents.Listener=Tridents:
|
||||
|
||||
#MACES
|
||||
Maces.SkillName=MACES
|
||||
Maces.Ability.Lower=&7You lower your mace.
|
||||
Maces.Ability.Ready=&3You &6ready&3 your Mace.
|
||||
Maces.Skills.MaceSmash.Refresh=&aYour &eGiga Smash &aability is refreshed!
|
||||
Maces.Skills.MaceSmash.Other.On=&a{0}&2 used &cGiga Smash!
|
||||
Maces.SubSkill.GigaSmash.Name=Giga Smash
|
||||
Maces.SubSkill.MacesLimitBreak.Name=Maces Limit Break
|
||||
Maces.SubSkill.MacesLimitBreak.Description=Breaking your limits. Increased damage against tough opponents. Intended for PVP, up to server settings for whether it will boost damage in PVE.
|
||||
Maces.SubSkill.MacesLimitBreak.Stat=Limit Break Max DMG
|
||||
Maces.Listener=Maces:
|
||||
|
||||
#SWORDS
|
||||
Swords.Ability.Lower=&7You lower your sword.
|
||||
Swords.Ability.Ready=&3You &6ready&3 your Sword.
|
||||
@ -542,8 +606,11 @@ Woodcutting.SubSkill.KnockOnWood.Stat=Knock on Wood
|
||||
Woodcutting.SubSkill.KnockOnWood.Loot.Normal=Standard loot from trees
|
||||
Woodcutting.SubSkill.KnockOnWood.Loot.Rank2=Standard loot from trees and experience orbs
|
||||
Woodcutting.SubSkill.HarvestLumber.Name=Harvest Lumber
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Skillfully extract more Lumber
|
||||
Woodcutting.SubSkill.HarvestLumber.Description=Skillfully extract up to double the Lumber
|
||||
Woodcutting.SubSkill.HarvestLumber.Stat=Double Drop Chance
|
||||
Woodcutting.SubSkill.CleanCuts.Name=Clean Cuts
|
||||
Woodcutting.SubSkill.CleanCuts.Description=Masterfully extract up to triple the Lumber
|
||||
Woodcutting.SubSkill.CleanCuts.Stat=Triple Drop Chance
|
||||
Woodcutting.SubSkill.Splinter.Name=Splinter
|
||||
Woodcutting.SubSkill.Splinter.Description=Cut down trees more efficiently.
|
||||
Woodcutting.SubSkill.BarkSurgeon.Name=Bark Surgeon
|
||||
@ -830,6 +897,7 @@ Commands.XPGain.Alchemy=Brewing Potions
|
||||
Commands.XPGain.Archery=Attacking Monsters
|
||||
Commands.XPGain.Axes=Attacking Monsters
|
||||
Commands.XPGain.Child=Gains levels from Parent Skills
|
||||
Commands.XPGain.Crossbows=Attacking Monsters
|
||||
Commands.XPGain.Excavation=Digging and finding treasures
|
||||
Commands.XPGain.Fishing=Fishing (Go figure!)
|
||||
Commands.XPGain.Herbalism=Harvesting Herbs
|
||||
@ -837,6 +905,7 @@ Commands.XPGain.Mining=Mining Stone & Ore
|
||||
Commands.XPGain.Repair=Repairing
|
||||
Commands.XPGain.Swords=Attacking Monsters
|
||||
Commands.XPGain.Taming=Animal Taming, or combat w/ your wolves
|
||||
Commands.XPGain.Tridents=Attacking Monsters
|
||||
Commands.XPGain.Unarmed=Attacking Monsters
|
||||
Commands.XPGain.Woodcutting=Chopping down trees
|
||||
Commands.XPGain=&8XP GAIN: &f{0}
|
||||
@ -970,6 +1039,13 @@ Guides.Woodcutting.Section.0=&3About Woodcutting:\n&eWoodcutting is all about ch
|
||||
Guides.Woodcutting.Section.1=&3How does Tree Feller work?\n&eTree Feller is an active ability, you can right-click\n&ewhile holding an ax to activate Tree Feller. This will\n&ecause the entire tree to break instantly, dropping all\n&eof its logs at once.
|
||||
Guides.Woodcutting.Section.2=&3How does Leaf Blower work?\n&eLeaf Blower is a passive ability that will cause leaf\n&eblocks to break instantly when hit with an axe. By default,\nðis ability unlocks at level 100.
|
||||
Guides.Woodcutting.Section.3=&3How do Double Drops work?\n&eThis passive ability gives you a chance to obtain an extra\n&eblock for every log you chop.
|
||||
# Crossbows
|
||||
Guides.Crossbows.Section.0=&3About Crossbows:\n&eCrossbows is all about shooting with your crossbow.\n\n&3XP GAIN:\n&eXP is gained whenever you shoot mobs with a crossbow.
|
||||
Guides.Crossbows.Section.1=&3How does Trickshot work?\n&eTrickshot is an passive ability, you shoot your bolts at a shallow angle with a crossbow to attempt a Trickshot. This will cause the arrow to ricochet off of blocks and potentially hit a target. The number of potential bounces from a ricochet depend on the rank of Trickshot.
|
||||
# Tridents
|
||||
Guides.Tridents.Section.0=&3About Tridents:\n&eTridents skill involves impaling foes with your trident.\n\n&3XP GAIN:\n&eXP is gained whenever you hit mobs with a trident.
|
||||
|
||||
|
||||
#INSPECT
|
||||
Inspect.Offline= &cYou do not have permission to inspect offline players!
|
||||
Inspect.OfflineStats=mcMMO Stats for Offline Player &e{0}
|
||||
|
@ -20,9 +20,6 @@ folia-supported: true
|
||||
api-version: 1.13
|
||||
|
||||
commands:
|
||||
# mmodroptreasures:
|
||||
# description: An admin command used to spawn treasure drops
|
||||
# permission: mcmmo.commands.droptreasures
|
||||
mmoxpbar:
|
||||
aliases: xpbarsettings
|
||||
description: Change XP bar settings
|
||||
@ -124,12 +121,18 @@ commands:
|
||||
archery:
|
||||
description: Detailed mcMMO skill info
|
||||
permission: mcmmo.commands.archery
|
||||
crossbows:
|
||||
description: Detailed mcMMO skill info
|
||||
permission: mcmmo.commands.crossbows
|
||||
swords:
|
||||
description: Detailed mcMMO skill info
|
||||
permission: mcmmo.commands.swords
|
||||
taming:
|
||||
description: Detailed mcMMO skill info
|
||||
permission: mcmmo.commands.taming
|
||||
tridents:
|
||||
description: Detailed mcMMO skill info
|
||||
permission: mcmmo.commands.tridents
|
||||
unarmed:
|
||||
description: Detailed mcMMO skill info
|
||||
permission: mcmmo.commands.unarmed
|
||||
@ -151,6 +154,10 @@ commands:
|
||||
salvage:
|
||||
description: Detailed mcMMO skill info
|
||||
permission: mcmmo.commands.salvage
|
||||
mmopower:
|
||||
description: Shows skill mastery and power level info
|
||||
permission: mcmmo.commands.mmopower
|
||||
aliases: [mmopowerlevel, powerlevel]
|
||||
adminchat:
|
||||
aliases: [ac, a]
|
||||
description: Toggle Admin chat or send admin chat messages
|
||||
@ -234,6 +241,7 @@ permissions:
|
||||
mcmmo.ability.alchemy.all: true
|
||||
mcmmo.ability.archery.all: true
|
||||
mcmmo.ability.axes.all: true
|
||||
mcmmo.ability.crossbows.all: true
|
||||
mcmmo.ability.excavation.all: true
|
||||
mcmmo.ability.fishing.all: true
|
||||
mcmmo.ability.herbalism.all: true
|
||||
@ -243,6 +251,7 @@ permissions:
|
||||
mcmmo.ability.smelting.all: true
|
||||
mcmmo.ability.swords.all: true
|
||||
mcmmo.ability.taming.all: true
|
||||
mcmmo.ability.tridents.all: true
|
||||
mcmmo.ability.unarmed.all: true
|
||||
mcmmo.ability.woodcutting.all: true
|
||||
mcmmo.ability.acrobatics.*:
|
||||
@ -281,12 +290,15 @@ permissions:
|
||||
mcmmo.ability.archery.all:
|
||||
description: Allows access to all Archery abilities
|
||||
children:
|
||||
mcmmo.ability.archery.explosiveshot: true
|
||||
mcmmo.ability.archery.skillshot: true
|
||||
mcmmo.ability.archery.daze: true
|
||||
mcmmo.ability.archery.arrowretrieval: true
|
||||
mcmmo.ability.archery.archerylimitbreak: true
|
||||
mcmmo.ability.archery.explosiveshot:
|
||||
description: Allows access to the Explosive Shot super ability for Archery
|
||||
mcmmo.ability.archery.archerylimitbreak:
|
||||
description: Adds damage to bows and crossbows
|
||||
description: Adds damage to bows
|
||||
mcmmo.ability.archery.skillshot:
|
||||
description: Allows bonus damage from the Archery SkillShot ability
|
||||
mcmmo.ability.archery.daze:
|
||||
@ -319,6 +331,22 @@ permissions:
|
||||
description: Allows access to the Impact ability
|
||||
mcmmo.ability.axes.skullsplitter:
|
||||
description: Allows access to the Skull Splitter ability
|
||||
mcmmo.ability.crossbows.*:
|
||||
description: Allows access to all Crossbows abilities
|
||||
children:
|
||||
mcmmo.ability.crossbows.all: true
|
||||
mcmmo.ability.crossbows.all:
|
||||
description: Allows access to all Crossbows abilities
|
||||
children:
|
||||
mcmmo.ability.crossbows.trickshot: true
|
||||
mcmmo.ability.crossbows.poweredshot: true
|
||||
mcmmo.ability.crossbows.crossbowslimitbreak: true
|
||||
mcmmo.ability.crossbows.crossbowslimitbreak:
|
||||
description: Adds damage to crossbows
|
||||
mcmmo.ability.crossbows.trickshot:
|
||||
description: Allows access to the Trick Shot ability
|
||||
mcmmo.ability.crossbows.poweredshot:
|
||||
description: Allows access to the Powered Shot ability
|
||||
mcmmo.ability.excavation.*:
|
||||
default: false
|
||||
description: Allows access to all Excavation abilities
|
||||
@ -376,6 +404,9 @@ permissions:
|
||||
mcmmo.ability.herbalism.greenthumb.all: true
|
||||
mcmmo.ability.herbalism.hylianluck: true
|
||||
mcmmo.ability.herbalism.shroomthumb: true
|
||||
mcmmo.ability.herbalism.verdantbounty: true
|
||||
mcmmo.ability.herbalism.verdantbounty:
|
||||
description: Allows access to end game progression for Herbalism
|
||||
mcmmo.ability.herbalism.doubledrops:
|
||||
description: Allows double drop chance from Herbalism
|
||||
mcmmo.ability.herbalism.farmersdiet:
|
||||
@ -456,6 +487,7 @@ permissions:
|
||||
mcmmo.ability.mining.blastmining.all: true
|
||||
mcmmo.ability.mining.doubledrops: true
|
||||
mcmmo.ability.mining.superbreaker: true
|
||||
mcmmo.ability.mining.motherlode: true
|
||||
mcmmo.ability.mining.blastmining.*:
|
||||
default: false
|
||||
description: Allows access to all Blast Mining abilities
|
||||
@ -473,6 +505,8 @@ permissions:
|
||||
description: Allows access to the Demolitions Expertise ability
|
||||
mcmmo.ability.mining.blastmining.detonate:
|
||||
description: Allows for remote TNT detonation
|
||||
mcmmo.ability.mining.motherlode:
|
||||
description: Allows access to mother lode subskill
|
||||
mcmmo.ability.mining.doubledrops:
|
||||
description: Allows double drop chance when mining
|
||||
mcmmo.ability.mining.superbreaker:
|
||||
@ -677,6 +711,20 @@ permissions:
|
||||
description: Allows access to the Thick Fur ability
|
||||
mcmmo.ability.taming.pummel:
|
||||
description: Allows access to the Pummel ability
|
||||
mcmmo.ability.tridents.*:
|
||||
default: false
|
||||
description: Allows access to all Trident abilities
|
||||
children:
|
||||
mcmmo.ability.tridents.all: true
|
||||
mcmmo.ability.tridents.all:
|
||||
description: Allows access to all Trident abilities
|
||||
children:
|
||||
mcmmo.ability.tridents.impale: true
|
||||
mcmmo.ability.tridents.tridentslimitbreak: true
|
||||
mcmmo.ability.tridents.impale:
|
||||
description: Allows access to tridents Impale ability
|
||||
mcmmo.ability.tridents.tridentslimitbreak:
|
||||
description: Adds damage to tridents
|
||||
mcmmo.ability.unarmed.*:
|
||||
default: false
|
||||
description: Allows access to all Unarmed abilities
|
||||
@ -721,6 +769,9 @@ permissions:
|
||||
mcmmo.ability.woodcutting.knockonwood: true
|
||||
mcmmo.ability.woodcutting.leafblower: true
|
||||
mcmmo.ability.woodcutting.treefeller: true
|
||||
mcmmo.ability.woodcutting.cleancuts: true
|
||||
mcmmo.ability.woodcutting.cleancuts:
|
||||
description: Allows access to end game progression for Woodcutting
|
||||
mcmmo.ability.woodcutting.knockonwood:
|
||||
description: Allows access to Knock on Wood subskill
|
||||
mcmmo.ability.woodcutting.splinter:
|
||||
@ -802,6 +853,8 @@ permissions:
|
||||
mcmmo.commands.alchemy: true
|
||||
mcmmo.commands.archery: true
|
||||
mcmmo.commands.axes: true
|
||||
mcmmo.commands.crossbows: true
|
||||
mcmmo.commands.tridents: true
|
||||
mcmmo.commands.excavation: true
|
||||
mcmmo.commands.fishing: true
|
||||
mcmmo.commands.herbalism: true
|
||||
@ -824,6 +877,7 @@ permissions:
|
||||
mcmmo.commands.taming: true
|
||||
mcmmo.commands.unarmed: true
|
||||
mcmmo.commands.woodcutting: true
|
||||
mcmmo.commands.mmopower: true
|
||||
mcmmo.commands.defaultsop:
|
||||
description: Implies all default op mcmmo.commands permissions.
|
||||
children:
|
||||
@ -871,29 +925,16 @@ permissions:
|
||||
description: Allows access to the archery command
|
||||
mcmmo.commands.axes:
|
||||
description: Allows access to the axes command
|
||||
mcmmo.commands.crossbows:
|
||||
description: Allows access to the crossbows command
|
||||
mcmmo.commands.excavation:
|
||||
description: Allows access to the excavation command
|
||||
mcmmo.commands.fishing:
|
||||
description: Allows access to the fishing command
|
||||
# mcmmo.commands.hardcore.*:
|
||||
# default: false
|
||||
# description: Implies access to all mcmmo.commands.hardcore permissions
|
||||
# children:
|
||||
# mcmmo.commands.hardcore.all: true
|
||||
# mcmmo.commands.hardcore.all:
|
||||
# description: Implies access to all mcmmo.commands.hardcore permissions
|
||||
# children:
|
||||
# mcmmo.commands.hardcore: true
|
||||
# mcmmo.commands.hardcore.modify: true
|
||||
# mcmmo.commands.hardcore.toggle: true
|
||||
# mcmmo.commands.hardcore:
|
||||
# description: Allows access to the hardcore command
|
||||
# mcmmo.commands.hardcore.modify:
|
||||
# description: Allows access to the hardcore command to modify the hardcore rate
|
||||
# mcmmo.commands.hardcore.toggle:
|
||||
# description: Allows access to the hardcore command to toggle hardcore on/off
|
||||
mcmmo.commands.herbalism:
|
||||
description: Allows access to the herbalism command
|
||||
mcmmo.commands.tridents:
|
||||
description: Allows access to the tridents command
|
||||
mcmmo.commands.inspect.*:
|
||||
default: false
|
||||
description: Implies access to all mcmmo.commands.inspect permissions
|
||||
@ -999,6 +1040,7 @@ permissions:
|
||||
mcmmo.commands.mctop.alchemy: true
|
||||
mcmmo.commands.mctop.archery: true
|
||||
mcmmo.commands.mctop.axes: true
|
||||
mcmmo.commands.mctop.crossbows: true
|
||||
mcmmo.commands.mctop.excavation: true
|
||||
mcmmo.commands.mctop.fishing: true
|
||||
mcmmo.commands.mctop.herbalism: true
|
||||
@ -1008,6 +1050,7 @@ permissions:
|
||||
mcmmo.commands.mctop.smelting: true
|
||||
mcmmo.commands.mctop.swords: true
|
||||
mcmmo.commands.mctop.taming: true
|
||||
mcmmo.commands.mctop.tridents: true
|
||||
mcmmo.commands.mctop.unarmed: true
|
||||
mcmmo.commands.mctop.woodcutting: true
|
||||
mcmmo.commands.mctop:
|
||||
@ -1020,6 +1063,8 @@ permissions:
|
||||
description: Allows access to the mctop command for archery
|
||||
mcmmo.commands.mctop.axes:
|
||||
description: Allows access to the mctop command for axes
|
||||
mcmmo.commands.mctop.crossbows:
|
||||
description: Allows access to the mctop command for crossbows
|
||||
mcmmo.commands.mctop.excavation:
|
||||
description: Allows access to the mctop command for excavation
|
||||
mcmmo.commands.mctop.fishing:
|
||||
@ -1038,6 +1083,8 @@ permissions:
|
||||
description: Allows access to the mctop command for swords
|
||||
mcmmo.commands.mctop.taming:
|
||||
description: Allows access to the mctop command for taming
|
||||
mcmmo.commands.mctop.tridents:
|
||||
description: Allows access to the mctop command for tridents
|
||||
mcmmo.commands.mctop.unarmed:
|
||||
description: Allows access to the mctop command for unarmed
|
||||
mcmmo.commands.mctop.woodcutting:
|
||||
@ -1452,6 +1499,9 @@ permissions:
|
||||
mcmmo.perks.lucky.axes:
|
||||
default: false
|
||||
description: Gives Axes abilities & skills a 33.3% better chance to activate.
|
||||
mcmmo.perks.lucky.crossbows:
|
||||
default: false
|
||||
description: Gives Crossbows abilities & skills a 33.3% better chance to activate.
|
||||
mcmmo.perks.lucky.excavation:
|
||||
default: false
|
||||
description: Gives Excavation abilities & skills a 33.3% better chance to activate.
|
||||
@ -1479,6 +1529,9 @@ permissions:
|
||||
mcmmo.perks.lucky.taming:
|
||||
default: false
|
||||
description: Gives Taming abilities & skills a 33.3% better chance to activate.
|
||||
mcmmo.perks.lucky.tridents:
|
||||
default: false
|
||||
description: Gives Tridents abilities & skills a 33.3% better chance to activate.
|
||||
mcmmo.perks.lucky.unarmed:
|
||||
default: false
|
||||
description: Gives Unarmed abilities & skills a 33.3% better chance to activate.
|
||||
@ -1520,6 +1573,7 @@ permissions:
|
||||
mcmmo.perks.xp.150percentboost.alchemy: true
|
||||
mcmmo.perks.xp.150percentboost.archery: true
|
||||
mcmmo.perks.xp.150percentboost.axes: true
|
||||
mcmmo.perks.xp.150percentboost.crossbows: true
|
||||
mcmmo.perks.xp.150percentboost.excavation: true
|
||||
mcmmo.perks.xp.150percentboost.fishing: true
|
||||
mcmmo.perks.xp.150percentboost.herbalism: true
|
||||
@ -1528,6 +1582,7 @@ permissions:
|
||||
mcmmo.perks.xp.150percentboost.smelting: true
|
||||
mcmmo.perks.xp.150percentboost.swords: true
|
||||
mcmmo.perks.xp.150percentboost.taming: true
|
||||
mcmmo.perks.xp.150percentboost.tridents: true
|
||||
mcmmo.perks.xp.150percentboost.unarmed: true
|
||||
mcmmo.perks.xp.150percentboost.woodcutting: true
|
||||
mcmmo.perks.xp.150percentboost.acrobatics:
|
||||
@ -1542,6 +1597,9 @@ permissions:
|
||||
mcmmo.perks.xp.150percentboost.axes:
|
||||
default: false
|
||||
description: Multiplies incoming Axes XP by 2.5
|
||||
mcmmo.perks.xp.150percentboost.crossbows:
|
||||
default: false
|
||||
description: Multiplies incoming Crossbows XP by 2.5
|
||||
mcmmo.perks.xp.150percentboost.excavation:
|
||||
default: false
|
||||
description: Multiplies incoming Excavation XP by 2.5
|
||||
@ -1566,6 +1624,9 @@ permissions:
|
||||
mcmmo.perks.xp.150percentboost.taming:
|
||||
default: false
|
||||
description: Multiplies incoming Taming XP by 2.5
|
||||
mcmmo.perks.xp.150percentboost.tridents:
|
||||
default: false
|
||||
description: Multiplies incoming Tridents XP by 2.5
|
||||
mcmmo.perks.xp.150percentboost.unarmed:
|
||||
default: false
|
||||
description: Multiplies incoming Unarmed XP by 2.5
|
||||
@ -1590,6 +1651,7 @@ permissions:
|
||||
mcmmo.perks.xp.50percentboost.alchemy: true
|
||||
mcmmo.perks.xp.50percentboost.archery: true
|
||||
mcmmo.perks.xp.50percentboost.axes: true
|
||||
mcmmo.perks.xp.50percentboost.crossbows: true
|
||||
mcmmo.perks.xp.50percentboost.excavation: true
|
||||
mcmmo.perks.xp.50percentboost.fishing: true
|
||||
mcmmo.perks.xp.50percentboost.herbalism: true
|
||||
@ -1598,6 +1660,7 @@ permissions:
|
||||
mcmmo.perks.xp.50percentboost.smelting: true
|
||||
mcmmo.perks.xp.50percentboost.swords: true
|
||||
mcmmo.perks.xp.50percentboost.taming: true
|
||||
mcmmo.perks.xp.50percentboost.tridents: true
|
||||
mcmmo.perks.xp.50percentboost.unarmed: true
|
||||
mcmmo.perks.xp.50percentboost.woodcutting: true
|
||||
mcmmo.perks.xp.50percentboost.acrobatics:
|
||||
@ -1612,6 +1675,9 @@ permissions:
|
||||
mcmmo.perks.xp.50percentboost.axes:
|
||||
default: false
|
||||
description: Multiplies incoming Axes XP by 1.5
|
||||
mcmmo.perks.xp.50percentboost.crossbows:
|
||||
default: false
|
||||
description: Multiplies incoming Crossbows XP by 1.5
|
||||
mcmmo.perks.xp.50percentboost.excavation:
|
||||
default: false
|
||||
description: Multiplies incoming Excavation XP by 1.5
|
||||
@ -1636,6 +1702,9 @@ permissions:
|
||||
mcmmo.perks.xp.50percentboost.taming:
|
||||
default: false
|
||||
description: Multiplies incoming Taming XP by 1.5
|
||||
mcmmo.perks.xp.50percentboost.tridents:
|
||||
default: false
|
||||
description: Multiplies incoming Tridents XP by 1.5
|
||||
mcmmo.perks.xp.50percentboost.unarmed:
|
||||
default: false
|
||||
description: Multiplies incoming Unarmed XP by 1.5
|
||||
@ -1656,20 +1725,22 @@ permissions:
|
||||
default: false
|
||||
description: Multiplies incoming XP by 1.25
|
||||
children:
|
||||
mcmmo.perks.xp.25percentboost.acrobatics: true
|
||||
mcmmo.perks.xp.25percentboost.alchemy: true
|
||||
mcmmo.perks.xp.25percentboost.archery: true
|
||||
mcmmo.perks.xp.25percentboost.axes: true
|
||||
mcmmo.perks.xp.25percentboost.excavation: true
|
||||
mcmmo.perks.xp.25percentboost.fishing: true
|
||||
mcmmo.perks.xp.25percentboost.herbalism: true
|
||||
mcmmo.perks.xp.25percentboost.mining: true
|
||||
mcmmo.perks.xp.25percentboost.repair: true
|
||||
mcmmo.perks.xp.25percentboost.smelting: true
|
||||
mcmmo.perks.xp.25percentboost.swords: true
|
||||
mcmmo.perks.xp.25percentboost.taming: true
|
||||
mcmmo.perks.xp.25percentboost.unarmed: true
|
||||
mcmmo.perks.xp.25percentboost.woodcutting: true
|
||||
mcmmo.perks.xp.25percentboost.acrobatics: true
|
||||
mcmmo.perks.xp.25percentboost.alchemy: true
|
||||
mcmmo.perks.xp.25percentboost.archery: true
|
||||
mcmmo.perks.xp.25percentboost.axes: true
|
||||
mcmmo.perks.xp.25percentboost.crossbows: true
|
||||
mcmmo.perks.xp.25percentboost.excavation: true
|
||||
mcmmo.perks.xp.25percentboost.fishing: true
|
||||
mcmmo.perks.xp.25percentboost.herbalism: true
|
||||
mcmmo.perks.xp.25percentboost.mining: true
|
||||
mcmmo.perks.xp.25percentboost.repair: true
|
||||
mcmmo.perks.xp.25percentboost.smelting: true
|
||||
mcmmo.perks.xp.25percentboost.swords: true
|
||||
mcmmo.perks.xp.25percentboost.taming: true
|
||||
mcmmo.perks.xp.25percentboost.tridents: true
|
||||
mcmmo.perks.xp.25percentboost.unarmed: true
|
||||
mcmmo.perks.xp.25percentboost.woodcutting: true
|
||||
mcmmo.perks.xp.25percentboost.acrobatics:
|
||||
default: false
|
||||
description: Multiplies incoming Acrobatics XP by 1.25
|
||||
@ -1682,6 +1753,9 @@ permissions:
|
||||
mcmmo.perks.xp.25percentboost.axes:
|
||||
default: false
|
||||
description: Multiplies incoming Axes XP by 1.25
|
||||
mcmmo.perks.xp.25percentboost.crossbows:
|
||||
default: false
|
||||
description: Multiplies incoming Crossbows XP by 1.25
|
||||
mcmmo.perks.xp.25percentboost.excavation:
|
||||
default: false
|
||||
description: Multiplies incoming Excavation XP by 1.25
|
||||
@ -1706,6 +1780,9 @@ permissions:
|
||||
mcmmo.perks.xp.25percentboost.taming:
|
||||
default: false
|
||||
description: Multiplies incoming Taming XP by 1.25
|
||||
mcmmo.perks.xp.25percentboost.tridents:
|
||||
default: false
|
||||
description: Multiplies incoming Tridents XP by 1.25
|
||||
mcmmo.perks.xp.25percentboost.unarmed:
|
||||
default: false
|
||||
description: Multiplies incoming Unarmed XP by 1.5
|
||||
@ -1730,6 +1807,7 @@ permissions:
|
||||
mcmmo.perks.xp.10percentboost.alchemy: true
|
||||
mcmmo.perks.xp.10percentboost.archery: true
|
||||
mcmmo.perks.xp.10percentboost.axes: true
|
||||
mcmmo.perks.xp.10percentboost.crossbows: true
|
||||
mcmmo.perks.xp.10percentboost.excavation: true
|
||||
mcmmo.perks.xp.10percentboost.fishing: true
|
||||
mcmmo.perks.xp.10percentboost.herbalism: true
|
||||
@ -1738,6 +1816,7 @@ permissions:
|
||||
mcmmo.perks.xp.10percentboost.smelting: true
|
||||
mcmmo.perks.xp.10percentboost.swords: true
|
||||
mcmmo.perks.xp.10percentboost.taming: true
|
||||
mcmmo.perks.xp.10percentboost.tridents: true
|
||||
mcmmo.perks.xp.10percentboost.unarmed: true
|
||||
mcmmo.perks.xp.10percentboost.woodcutting: true
|
||||
mcmmo.perks.xp.10percentboost.acrobatics:
|
||||
@ -1752,6 +1831,9 @@ permissions:
|
||||
mcmmo.perks.xp.10percentboost.axes:
|
||||
default: false
|
||||
description: Multiplies incoming Axes XP by 1.1
|
||||
mcmmo.perks.xp.10percentboost.crossbows:
|
||||
default: false
|
||||
description: Multiplies incoming Crossbows XP by 1.1
|
||||
mcmmo.perks.xp.10percentboost.excavation:
|
||||
default: false
|
||||
description: Multiplies incoming Excavation XP by 1.1
|
||||
@ -1776,6 +1858,9 @@ permissions:
|
||||
mcmmo.perks.xp.10percentboost.taming:
|
||||
default: false
|
||||
description: Multiplies incoming Taming XP by 1.1
|
||||
mcmmo.perks.xp.10percentboost.tridents:
|
||||
default: false
|
||||
description: Multiplies incoming Tridents XP by 1.1
|
||||
mcmmo.perks.xp.10percentboost.unarmed:
|
||||
default: false
|
||||
description: Multiplies incoming Unarmed XP by 1.1
|
||||
@ -1800,6 +1885,7 @@ permissions:
|
||||
mcmmo.perks.xp.customboost.alchemy: true
|
||||
mcmmo.perks.xp.customboost.archery: true
|
||||
mcmmo.perks.xp.customboost.axes: true
|
||||
mcmmo.perks.xp.customboost.crossbows: true
|
||||
mcmmo.perks.xp.customboost.excavation: true
|
||||
mcmmo.perks.xp.customboost.fishing: true
|
||||
mcmmo.perks.xp.customboost.herbalism: true
|
||||
@ -1808,6 +1894,7 @@ permissions:
|
||||
mcmmo.perks.xp.customboost.smelting: true
|
||||
mcmmo.perks.xp.customboost.swords: true
|
||||
mcmmo.perks.xp.customboost.taming: true
|
||||
mcmmo.perks.xp.customboost.tridents: true
|
||||
mcmmo.perks.xp.customboost.unarmed: true
|
||||
mcmmo.perks.xp.customboost.woodcutting: true
|
||||
mcmmo.perks.xp.customboost.acrobatics:
|
||||
@ -1822,6 +1909,9 @@ permissions:
|
||||
mcmmo.perks.xp.customboost.axes:
|
||||
default: false
|
||||
description: Multiplies incoming Axes XP by the boost amount defined in the experience config
|
||||
mcmmo.perks.xp.customboost.crossbows:
|
||||
default: false
|
||||
description: Multiplies incoming Crossbows XP by the boost amount defined in the experience config
|
||||
mcmmo.perks.xp.customboost.excavation:
|
||||
default: false
|
||||
description: Multiplies incoming Excavation XP by the boost amount defined in the experience config
|
||||
@ -1846,6 +1936,9 @@ permissions:
|
||||
mcmmo.perks.xp.customboost.taming:
|
||||
default: false
|
||||
description: Multiplies incoming Taming XP by the boost amount defined in the experience config
|
||||
mcmmo.perks.xp.customboost.tridents:
|
||||
default: false
|
||||
description: Multiplies incoming Tridents XP by the boost amount defined in the experience config
|
||||
mcmmo.perks.xp.customboost.unarmed:
|
||||
default: false
|
||||
description: Multiplies incoming Unarmed XP by the boost amount defined in the experience config
|
||||
@ -1870,6 +1963,7 @@ permissions:
|
||||
mcmmo.perks.xp.double.alchemy: true
|
||||
mcmmo.perks.xp.double.archery: true
|
||||
mcmmo.perks.xp.double.axes: true
|
||||
mcmmo.perks.xp.double.crossbows: true
|
||||
mcmmo.perks.xp.double.excavation: true
|
||||
mcmmo.perks.xp.double.fishing: true
|
||||
mcmmo.perks.xp.double.herbalism: true
|
||||
@ -1878,6 +1972,7 @@ permissions:
|
||||
mcmmo.perks.xp.double.smelting: true
|
||||
mcmmo.perks.xp.double.swords: true
|
||||
mcmmo.perks.xp.double.taming: true
|
||||
mcmmo.perks.xp.double.tridents: true
|
||||
mcmmo.perks.xp.double.unarmed: true
|
||||
mcmmo.perks.xp.double.woodcutting: true
|
||||
mcmmo.perks.xp.double.acrobatics:
|
||||
@ -1892,6 +1987,9 @@ permissions:
|
||||
mcmmo.perks.xp.double.axes:
|
||||
default: false
|
||||
description: Doubles incoming Axes XP
|
||||
mcmmo.perks.xp.double.crossbows:
|
||||
default: false
|
||||
description: Doubles incoming Crossbows XP
|
||||
mcmmo.perks.xp.double.excavation:
|
||||
default: false
|
||||
description: Doubles incoming Excavation XP
|
||||
@ -1916,6 +2014,9 @@ permissions:
|
||||
mcmmo.perks.xp.double.taming:
|
||||
default: false
|
||||
description: Doubles incoming Taming XP
|
||||
mcmmo.perks.xp.double.tridents:
|
||||
default: false
|
||||
description: Doubles incoming Tridents XP
|
||||
mcmmo.perks.xp.double.unarmed:
|
||||
default: false
|
||||
description: Doubles incoming Unarmed XP
|
||||
@ -1940,6 +2041,7 @@ permissions:
|
||||
mcmmo.perks.xp.quadruple.alchemy: true
|
||||
mcmmo.perks.xp.quadruple.archery: true
|
||||
mcmmo.perks.xp.quadruple.axes: true
|
||||
mcmmo.perks.xp.quadruple.crossbows: true
|
||||
mcmmo.perks.xp.quadruple.excavation: true
|
||||
mcmmo.perks.xp.quadruple.fishing: true
|
||||
mcmmo.perks.xp.quadruple.herbalism: true
|
||||
@ -1948,6 +2050,7 @@ permissions:
|
||||
mcmmo.perks.xp.quadruple.smelting: true
|
||||
mcmmo.perks.xp.quadruple.swords: true
|
||||
mcmmo.perks.xp.quadruple.taming: true
|
||||
mcmmo.perks.xp.quadruple.tridents: true
|
||||
mcmmo.perks.xp.quadruple.unarmed: true
|
||||
mcmmo.perks.xp.quadruple.woodcutting: true
|
||||
mcmmo.perks.xp.quadruple.acrobatics:
|
||||
@ -1962,6 +2065,9 @@ permissions:
|
||||
mcmmo.perks.xp.quadruple.axes:
|
||||
default: false
|
||||
description: Quadruples incoming Axes XP
|
||||
mcmmo.perks.xp.quadruple.crossbows:
|
||||
default: false
|
||||
description: Quadruples incoming Crossbows XP
|
||||
mcmmo.perks.xp.quadruple.excavation:
|
||||
default: false
|
||||
description: Quadruples incoming Excavation XP
|
||||
@ -1986,6 +2092,9 @@ permissions:
|
||||
mcmmo.perks.xp.quadruple.taming:
|
||||
default: false
|
||||
description: Quadruples incoming Taming XP
|
||||
mcmmo.perks.xp.quadruple.tridents:
|
||||
default: false
|
||||
description: Quadruples incoming Tridents XP
|
||||
mcmmo.perks.xp.quadruple.unarmed:
|
||||
default: false
|
||||
description: Quadruples incoming Unarmed XP
|
||||
@ -2010,6 +2119,7 @@ permissions:
|
||||
mcmmo.perks.xp.triple.alchemy: true
|
||||
mcmmo.perks.xp.triple.archery: true
|
||||
mcmmo.perks.xp.triple.axes: true
|
||||
mcmmo.perks.xp.triple.crossbows: true
|
||||
mcmmo.perks.xp.triple.excavation: true
|
||||
mcmmo.perks.xp.triple.fishing: true
|
||||
mcmmo.perks.xp.triple.herbalism: true
|
||||
@ -2018,6 +2128,7 @@ permissions:
|
||||
mcmmo.perks.xp.triple.smelting: true
|
||||
mcmmo.perks.xp.triple.swords: true
|
||||
mcmmo.perks.xp.triple.taming: true
|
||||
mcmmo.perks.xp.triple.tridents: true
|
||||
mcmmo.perks.xp.triple.unarmed: true
|
||||
mcmmo.perks.xp.triple.woodcutting: true
|
||||
mcmmo.perks.xp.triple.acrobatics:
|
||||
@ -2032,6 +2143,9 @@ permissions:
|
||||
mcmmo.perks.xp.triple.axes:
|
||||
default: false
|
||||
description: Triples incoming Axes XP
|
||||
mcmmo.perks.xp.triple.crossbows:
|
||||
default: false
|
||||
description: Triples incoming Crossbows XP
|
||||
mcmmo.perks.xp.triple.excavation:
|
||||
default: false
|
||||
description: Triples incoming Excavation XP
|
||||
@ -2056,6 +2170,9 @@ permissions:
|
||||
mcmmo.perks.xp.triple.taming:
|
||||
default: false
|
||||
description: Triples incoming Taming XP
|
||||
mcmmo.perks.xp.triple.tridents:
|
||||
default: false
|
||||
description: Triples incoming Tridents XP
|
||||
mcmmo.perks.xp.triple.unarmed:
|
||||
default: false
|
||||
description: Triples incoming Unarmed XP
|
||||
@ -2091,6 +2208,8 @@ permissions:
|
||||
mcmmo.skills.taming: true
|
||||
mcmmo.skills.unarmed: true
|
||||
mcmmo.skills.woodcutting: true
|
||||
mcmmo.skills.crossbows: true
|
||||
mcmmo.skills.tridents: true
|
||||
mcmmo.skills.acrobatics:
|
||||
description: Allows access to the Acrobatics skill
|
||||
children:
|
||||
@ -2111,6 +2230,11 @@ permissions:
|
||||
children:
|
||||
mcmmo.ability.axes.all: true
|
||||
mcmmo.commands.axes: true
|
||||
mcmmo.skills.crossbows:
|
||||
description: Allows access to the Crossbows skill
|
||||
children:
|
||||
mcmmo.ability.crossbows.all: true
|
||||
mcmmo.commands.crossbows: true
|
||||
mcmmo.skills.excavation:
|
||||
description: Allows access to the Excavation skill
|
||||
children:
|
||||
@ -2156,6 +2280,11 @@ permissions:
|
||||
children:
|
||||
mcmmo.ability.taming.all: true
|
||||
mcmmo.commands.taming: true
|
||||
mcmmo.skills.tridents:
|
||||
description: Allows access to the Tridents skill
|
||||
children:
|
||||
mcmmo.ability.tridents.all: true
|
||||
mcmmo.commands.tridents: true
|
||||
mcmmo.skills.unarmed:
|
||||
description: Allows access to the Unarmed skill
|
||||
children:
|
||||
@ -2169,16 +2298,3 @@ permissions:
|
||||
mcmmo.showversion:
|
||||
default: true
|
||||
description: Show mcMMO version number in /mcmmo and motd
|
||||
mcmmo.tools.*:
|
||||
default: false
|
||||
description: Implies all mcmmo.tools permissions.
|
||||
children:
|
||||
mcmmo.tools.all: true
|
||||
mcmmo.tools.all:
|
||||
default: false
|
||||
description: Implies all mcmmo.tools permissions.
|
||||
children:
|
||||
mcmmo.tools.updatecheck: true
|
||||
mcmmo.tools.updatecheck:
|
||||
default: false
|
||||
description: Notifies admins if there is a new version of mcMMO available
|
||||
|
@ -201,6 +201,129 @@ Axes:
|
||||
Rank_2: 100
|
||||
Rank_3: 150
|
||||
Rank_4: 200
|
||||
Crossbows:
|
||||
TrickShot:
|
||||
Standard:
|
||||
Rank_1: 5
|
||||
Rank_2: 20
|
||||
Rank_3: 40
|
||||
RetroMode:
|
||||
Rank_1: 50
|
||||
Rank_2: 200
|
||||
Rank_3: 400
|
||||
PoweredShot:
|
||||
Standard:
|
||||
Rank_1: 1
|
||||
Rank_2: 10
|
||||
Rank_3: 15
|
||||
Rank_4: 20
|
||||
Rank_5: 25
|
||||
Rank_6: 30
|
||||
Rank_7: 35
|
||||
Rank_8: 40
|
||||
Rank_9: 45
|
||||
Rank_10: 50
|
||||
Rank_11: 55
|
||||
Rank_12: 60
|
||||
Rank_13: 65
|
||||
Rank_14: 70
|
||||
Rank_15: 75
|
||||
Rank_16: 80
|
||||
Rank_17: 85
|
||||
Rank_18: 90
|
||||
Rank_19: 95
|
||||
Rank_20: 100
|
||||
RetroMode:
|
||||
Rank_1: 1
|
||||
Rank_2: 100
|
||||
Rank_3: 150
|
||||
Rank_4: 200
|
||||
Rank_5: 250
|
||||
Rank_6: 300
|
||||
Rank_7: 350
|
||||
Rank_8: 400
|
||||
Rank_9: 450
|
||||
Rank_10: 500
|
||||
Rank_11: 550
|
||||
Rank_12: 600
|
||||
Rank_13: 650
|
||||
Rank_14: 700
|
||||
Rank_15: 750
|
||||
Rank_16: 800
|
||||
Rank_17: 850
|
||||
Rank_18: 900
|
||||
Rank_19: 950
|
||||
Rank_20: 1000
|
||||
CrossbowsLimitBreak:
|
||||
Standard:
|
||||
Rank_1: 10
|
||||
Rank_2: 20
|
||||
Rank_3: 30
|
||||
Rank_4: 40
|
||||
Rank_5: 50
|
||||
Rank_6: 60
|
||||
Rank_7: 70
|
||||
Rank_8: 80
|
||||
Rank_9: 90
|
||||
Rank_10: 100
|
||||
RetroMode:
|
||||
Rank_1: 100
|
||||
Rank_2: 200
|
||||
Rank_3: 300
|
||||
Rank_4: 400
|
||||
Rank_5: 500
|
||||
Rank_6: 600
|
||||
Rank_7: 700
|
||||
Rank_8: 800
|
||||
Rank_9: 900
|
||||
Rank_10: 1000
|
||||
Tridents:
|
||||
TridentsLimitBreak:
|
||||
Standard:
|
||||
Rank_1: 10
|
||||
Rank_2: 20
|
||||
Rank_3: 30
|
||||
Rank_4: 40
|
||||
Rank_5: 50
|
||||
Rank_6: 60
|
||||
Rank_7: 70
|
||||
Rank_8: 80
|
||||
Rank_9: 90
|
||||
Rank_10: 100
|
||||
RetroMode:
|
||||
Rank_1: 100
|
||||
Rank_2: 200
|
||||
Rank_3: 300
|
||||
Rank_4: 400
|
||||
Rank_5: 500
|
||||
Rank_6: 600
|
||||
Rank_7: 700
|
||||
Rank_8: 800
|
||||
Rank_9: 900
|
||||
Rank_10: 1000
|
||||
Impale:
|
||||
Standard:
|
||||
Rank_1: 5
|
||||
Rank_2: 15
|
||||
Rank_3: 25
|
||||
Rank_4: 35
|
||||
Rank_5: 45
|
||||
Rank_6: 55
|
||||
Rank_7: 65
|
||||
Rank_8: 75
|
||||
Rank_9: 85
|
||||
Rank_10: 100
|
||||
RetroMode:
|
||||
Rank_1: 50
|
||||
Rank_2: 150
|
||||
Rank_3: 250
|
||||
Rank_4: 350
|
||||
Rank_5: 450
|
||||
Rank_6: 550
|
||||
Rank_7: 650
|
||||
Rank_8: 750
|
||||
Rank_9: 850
|
||||
Rank_10: 1000
|
||||
Taming:
|
||||
BeastLore:
|
||||
Standard:
|
||||
@ -321,6 +444,11 @@ Salvage:
|
||||
Rank_7: 850
|
||||
Rank_8: 1000
|
||||
Mining:
|
||||
MotherLode:
|
||||
Standard:
|
||||
Rank_1: 100
|
||||
RetroMode:
|
||||
Rank_1: 1000
|
||||
DoubleDrops:
|
||||
Standard:
|
||||
Rank_1: 1
|
||||
@ -368,6 +496,11 @@ Herbalism:
|
||||
Rank_1: 1
|
||||
RetroMode:
|
||||
Rank_1: 1
|
||||
VerdantBounty:
|
||||
Standard:
|
||||
Rank_1: 100
|
||||
RetroMode:
|
||||
Rank_1: 1000
|
||||
GreenTerra:
|
||||
Standard:
|
||||
Rank_1: 5
|
||||
@ -398,6 +531,11 @@ Herbalism:
|
||||
Rank_4: 800
|
||||
Rank_5: 1000
|
||||
Fishing:
|
||||
Mastery:
|
||||
Standard:
|
||||
Rank_1: 100
|
||||
RetroMode:
|
||||
Rank_1: 1000
|
||||
MagicHunter:
|
||||
Standard:
|
||||
Rank_1: 20
|
||||
@ -637,6 +775,11 @@ Woodcutting:
|
||||
Rank_1: 1
|
||||
RetroMode:
|
||||
Rank_1: 1
|
||||
CleanCuts:
|
||||
Standard:
|
||||
Rank_1: 100
|
||||
RetroMode:
|
||||
Rank_1: 1000
|
||||
KnockOnWood:
|
||||
Standard:
|
||||
Rank_1: 30
|
||||
|
Reference in New Issue
Block a user