mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-21 14:55:17 +01:00
Added skill-specific enchantments
This commit is contained in:
parent
7119f57ac7
commit
f0a638082d
@ -0,0 +1,27 @@
|
||||
display-name: "Adventurer"
|
||||
description: "Gives a &a%placeholder%%&r boost to Adventurer experience"
|
||||
placeholder: "2 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- boots
|
||||
conflicts:
|
||||
- enriched_plating
|
||||
rarity: uncommon
|
||||
max-level: 6
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1 + 0.02 * %level%"
|
||||
skills:
|
||||
- exploration
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,26 @@
|
||||
display-name: "Angler"
|
||||
description: "Gives a &a%placeholder%%&r boost to Fishing experience"
|
||||
placeholder: "8 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- fishing_rod
|
||||
conflicts: [ ]
|
||||
rarity: uncommon
|
||||
max-level: 2
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1 + 0.05 * %level%"
|
||||
skills:
|
||||
- fishing
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,28 @@
|
||||
display-name: "Chemist"
|
||||
description: "Gives a &a%placeholder%%&r boost to Alchemy experience"
|
||||
placeholder: "12.5 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- helmet
|
||||
conflicts:
|
||||
- enriched_plating
|
||||
- sorcery
|
||||
rarity: uncommon
|
||||
max-level: 4
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1 + 0.125 * %level%"
|
||||
skills:
|
||||
- alchemy
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,26 @@
|
||||
display-name: "Combatant"
|
||||
description: "Gives a &a%placeholder%%&r boost to Combat experience"
|
||||
placeholder: "10 + 2.5 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- pickaxe
|
||||
conflicts: [ ]
|
||||
rarity: uncommon
|
||||
max-level: 3
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1.1 + 0.025 * %level%"
|
||||
skills:
|
||||
- combat
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,32 @@
|
||||
display-name: "Enriched Plating"
|
||||
description: "Gives a &a%placeholder%%&r boost to Armory experience"
|
||||
placeholder: "3 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- helmet
|
||||
- chestplate
|
||||
- leggings
|
||||
- boots
|
||||
conflicts:
|
||||
- sorcery
|
||||
- chemist
|
||||
- adventurer
|
||||
rarity: uncommon
|
||||
max-level: 4
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1 + 0.03 * %level%"
|
||||
skills:
|
||||
- alchemy
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,26 @@
|
||||
display-name: "Green Thumb"
|
||||
description: "Gives a &a%placeholder%%&r boost to Farming experience"
|
||||
placeholder: "2 + 4 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- hoe
|
||||
conflicts: [ ]
|
||||
rarity: uncommon
|
||||
max-level: 2
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1.02 + 0.04 * %level%"
|
||||
skills:
|
||||
- farming
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,26 @@
|
||||
display-name: "Prospector"
|
||||
description: "Gives a &a%placeholder%%&r boost to Mining experience"
|
||||
placeholder: "3 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- pickaxe
|
||||
conflicts: [ ]
|
||||
rarity: uncommon
|
||||
max-level: 5
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1 + 0.03 * %level%"
|
||||
skills:
|
||||
- mining
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,28 @@
|
||||
display-name: "Sorcery"
|
||||
description: "Gives a &a%placeholder%%&r boost to Enchanting experience"
|
||||
placeholder: "10 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- helmet
|
||||
conflicts:
|
||||
- enriched_plating
|
||||
- chemist
|
||||
rarity: uncommon
|
||||
max-level: 5
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1 + 0.1 * %level%"
|
||||
skills:
|
||||
- enchanting
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -0,0 +1,26 @@
|
||||
display-name: "Woodworker"
|
||||
description: "Gives a &a%placeholder%%&r boost to Woodcutting experience"
|
||||
placeholder: "4 * %level%"
|
||||
type: normal
|
||||
|
||||
targets:
|
||||
- axe
|
||||
conflicts: [ ]
|
||||
rarity: uncommon
|
||||
max-level: 4
|
||||
|
||||
tradeable: true
|
||||
discoverable: true
|
||||
enchantable: true
|
||||
|
||||
effects:
|
||||
- id: skill_xp_multiplier
|
||||
args:
|
||||
multiplier: "1 + 0.04 * %level%"
|
||||
skills:
|
||||
- woodcutting
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
dependencies:
|
||||
- EcoSkills
|
@ -22,7 +22,9 @@ effects:
|
||||
args:
|
||||
sound: entity_enderman_teleport
|
||||
pitch: 1.2
|
||||
volume: 10
|
||||
volume: 2
|
||||
triggers:
|
||||
- bow_attack
|
||||
|
||||
conditions: [ ]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user