9
0
mirror of https://github.com/Auxilor/EcoSkills.git synced 2026-01-02 13:56:38 +00:00

Reimplemented alchemy and 2 enchanting effects

This commit is contained in:
Auxilor
2023-05-13 16:32:59 +01:00
parent bc32cc0ae6
commit 974293042b
4 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
name: "Efficient Brewing"
placeholder: "%level% * 1.5"
description: "&8Potions take &a%placeholder%%&8 less time to brew"
effects:
- id: brew_time_multiplier
args:
multiplier: "1 - (%level% * 0.015)"
conditions: [ ]

View File

@@ -0,0 +1,10 @@
name: "Overcompensation"
placeholder: "%level% * 0.75"
description: "&a%placeholder%%&8 chance to get lapis back after enchanting"
effects:
- id: dont_consume_lapis_chance
args:
chance: "%level% * 0.75"
conditions: [ ]

View File

@@ -0,0 +1,10 @@
name: "Potionmaster"
placeholder: "%level% * 4"
description: "&8Brewed potions last &a%placeholder%%&8 longer"
effects:
- id: potion_duration_multiplier
args:
multiplier: "1 + (%level% * 0.04)"
conditions: [ ]

View File

@@ -0,0 +1,10 @@
name: "Reimbursement"
placeholder: "%level% * 0.5"
description: "&a%placeholder%%&8 chance to get experience back after enchanting"
effects:
- id: dont_consume_xp_chance
args:
chance: "%level% * 0.5"
conditions: [ ]