tridents/xbows WIP part 1

This commit is contained in:
nossr50
2020-07-06 20:44:10 -07:00
parent 919907f46a
commit ea448dfa47
29 changed files with 622 additions and 36 deletions

View File

@@ -191,6 +191,8 @@ Hardcore:
Taming: false
Unarmed: false
Woodcutting: false
Tridents: false
Crossbows: false
Vampirism:
Leech_Percentage: 5.0
Level_Threshold: 0
@@ -208,6 +210,8 @@ Hardcore:
Taming: false
Unarmed: false
Woodcutting: false
Tridents: false
Crossbows: false
#
# Settings for SMP Mods
@@ -415,6 +419,15 @@ Skills:
Woodcutting:
Tree_Feller_Sounds: true
Level_Cap: 0
Tridents:
Enabled_For_PVP: true
Enabled_For_PVE: true
Level_Cap: 0
Crossbows:
Enabled_For_PVP: true
Enabled_For_PVE: true
Level_Cap: 0
#
# Settings for Double Drops

View File

@@ -110,6 +110,14 @@ Experience_Bars:
Enable: true
Color: GREEN
BarStyle: SEGMENTED_6
Tridents:
Enable: true
Color: BLUE
BarStyle: SEGMENTED_6
Crossbows:
Enable: true
Color: BLUE
BarStyle: SEGMENTED_6
#
# Settings for XP formula
###
@@ -159,6 +167,8 @@ Experience_Formula:
Repair: 1.0
Fishing: 1.0
Alchemy: 1.0
Tridents: 1.0
Crossbows: 1.0
# XP earned by players with the permission mcmmo.perks.xp.customboost.<skillname> will get multiplied
# with 1.25 by default, resulting in a 25% XP boost
@@ -191,6 +201,8 @@ Diminished_Returns:
Repair: 20000
Fishing: 20000
Alchemy: 20000
Tridents: 20000
Crossbows: 20000
Time_Interval: 10

View File

@@ -98,6 +98,8 @@ Overhaul.Name.Swords=Swords
Overhaul.Name.Taming=Taming
Overhaul.Name.Unarmed=Unarmed
Overhaul.Name.Woodcutting=Woodcutting
Overhaul.Name.Tridents=Tridents
Overhaul.Name.Crossbows=Crossbows
# /mcMMO Command Style Stuff
Commands.mcc.Header=[[RED]]---[][[GREEN]]mcMMO Commands[[RED]][]---
Commands.Other=[[RED]]---[][[GREEN]]SPECIAL COMMANDS[[RED]][]---
@@ -122,6 +124,8 @@ XPBar.Swords=Swords Lv.[[GOLD]]{0}
XPBar.Taming=Taming Lv.[[GOLD]]{0}
XPBar.Unarmed=Unarmed Lv.[[GOLD]]{0}
XPBar.Woodcutting=Woodcutting Lv.[[GOLD]]{0}
XPBar.Tridents=Tridents Lv.[[GOLD]]{0}
XPBar.Crossbows=Crossbows Lv.[[GOLD]]{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
XPBar.Complex.Template={0} [[DARK_AQUA]] {4}[[WHITE]]% [[DARK_AQUA]]([[WHITE]]{1}[[DARK_AQUA]]/[[WHITE]]{2}[[DARK_AQUA]])
# XP BAR Allows for the following variables -- {0} = Skill Level, {1} Current XP, {2} XP Needed for next level, {3} Power Level, {4} Percentage of Level

View File

@@ -146,6 +146,12 @@ commands:
salvage:
description: Detailed mcMMO skill info
permission: mcmmo.commands.salvage
tridents:
description: Detailed mcMMO skill info
permission: mcmmo.commands.tridents
crossbows:
description: Detailed mcMMO skill info
permission: mcmmo.commands.crossbows
adminchat:
aliases: [ac, a]
description: Toggle Admin chat or send admin chat messages
@@ -222,6 +228,8 @@ permissions:
mcmmo.ability.taming.all: true
mcmmo.ability.unarmed.all: true
mcmmo.ability.woodcutting.all: true
mcmmo.ability.tridents.all: true
mcmmo.ability.crossbows.all: true
mcmmo.ability.acrobatics.*:
default: false
description: Allows access to all Acrobatics abilities
@@ -709,6 +717,28 @@ permissions:
description: Allows access to Leaf Blower ability
mcmmo.ability.woodcutting.treefeller:
description: Allows access to Tree Feller ability
mcmmo.ability.tridents.*:
default: false
description: Allows access to all Tridents abilities
children:
mcmmo.ability.tridents.all: true
mcmmo.ability.tridents.all:
description: Allows access to all Tridents abilities
children:
mcmmo.ability.tridents.multitasking: true
mcmmo.ability.tridents.multitasking:
description: Allows access to Multitasking Trident sub-skill
mcmmo.ability.crossbows.*:
default: false
description: Allows access to Crossbow sub-skills
children:
mcmmo.ability.crossbows.all: true
mcmmo.ability.crossbows.all:
description: Allows access to Crossbow sub-skills
children:
mcmmo.ability.crossbows.coneofdeath: true
mcmmo.ability.crossbows.coneofdeath:
description: Allows access to Cone of Death sub-skill
mcmmo.admin:
default: false
description: Implies access to everything in mcMMO
@@ -795,6 +825,8 @@ permissions:
mcmmo.commands.taming: true
mcmmo.commands.unarmed: true
mcmmo.commands.woodcutting: true
mcmmo.commands.tridents: true
mcmmo.commands.crossbows: true
mcmmo.commands.defaultsop:
description: Implies all default op mcmmo.commands permissions.
children:
@@ -2007,6 +2039,8 @@ permissions:
mcmmo.skills.taming: true
mcmmo.skills.unarmed: true
mcmmo.skills.woodcutting: true
mcmmo.skills.tridents: true
mcmmo.skills.crossbows: true
mcmmo.skills.acrobatics:
description: Allows access to the Acrobatics skill
children:
@@ -2082,6 +2116,16 @@ permissions:
children:
mcmmo.ability.woodcutting.all: true
mcmmo.commands.woodcutting: true
mcmmo.skills.tridents:
description: Allows access to the Tridents skill
children:
mcmmo.ability.tridents.all: true
mcmmo.commands.tridents: true
mcmmo.skills.crossbows:
description: Allows access to the Crossbows skill
children:
mcmmo.ability.crossbows.all: true
mcmmo.commands.crossbows: true
mcmmo.showversion:
default: true
description: Show mcMMO version number in /mcmmo and motd

View File

@@ -652,6 +652,40 @@ Repair:
RetroMode:
Rank_1: 400
ArcaneForging:
Standard:
Rank_1: 10
Rank_2: 25
Rank_3: 35
Rank_4: 50
Rank_5: 65
Rank_6: 75
Rank_7: 85
Rank_8: 100
RetroMode:
Rank_1: 100
Rank_2: 250
Rank_3: 350
Rank_4: 500
Rank_5: 650
Rank_6: 750
Rank_7: 850
Rank_8: 1000
Tridents:
MultiTasking:
Standard:
Rank_1: 5
Rank_2: 20
Rank_3: 30
Rank_4: 60
Rank_5: 100
RetroMode:
Rank_1: 50
Rank_2: 200
Rank_3: 300
Rank_4: 600
Rank_5: 1000
Crossbows:
ConeOfDeath:
Standard:
Rank_1: 10
Rank_2: 25

View File

@@ -0,0 +1,2 @@
# In the Java version of Minecraft, Tridents are pretty rare to come by. Considering we have a whole skill around it, I added this setting to make it more viable.
Craftable_Tridents: true