From 5db2b868a24a73f77f74244d7844b724bc2fd167 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Tue, 4 Oct 2022 14:30:39 +0100 Subject: [PATCH] Added more skill-based enchantments --- .../resources/enchants/ecoskills/neptune.yml | 25 ++++++++++++++++++ .../enchants/ecoskills/steel_string.yml | 26 +++++++++++++++++++ .../resources/enchants/ecoskills/strong.yml | 25 ++++++++++++++++++ .../enchants/ecoskills/strongarm.yml | 25 ++++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 eco-core/core-plugin/src/main/resources/enchants/ecoskills/neptune.yml create mode 100644 eco-core/core-plugin/src/main/resources/enchants/ecoskills/steel_string.yml create mode 100644 eco-core/core-plugin/src/main/resources/enchants/ecoskills/strong.yml create mode 100644 eco-core/core-plugin/src/main/resources/enchants/ecoskills/strongarm.yml diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/neptune.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/neptune.yml new file mode 100644 index 00000000..cb9b0dfc --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/neptune.yml @@ -0,0 +1,25 @@ +display-name: "Neptune" +description: "Gives &a+%placeholder%&r %ecoskills_crit_damage_name%" +placeholder: "20 + 10 * %level%" +type: normal + +targets: + - trident +conflicts: [ ] +rarity: legendary +max-level: 3 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: add_stat + args: + stat: crit_damage + amount: "20 + 10 * %level%" + +conditions: [ ] + +dependencies: + - EcoSkills \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/steel_string.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/steel_string.yml new file mode 100644 index 00000000..04cdc4ea --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/steel_string.yml @@ -0,0 +1,26 @@ +display-name: "Steel String" +description: "Gives &a+%placeholder%&r %ecoskills_strength_name%" +placeholder: "3 + 2 * %level%" +type: normal + +targets: + - bow + - crossbow +conflicts: [ ] +rarity: rare +max-level: 3 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: add_stat + args: + stat: strength + amount: "3 + 2 * %level%" + +conditions: [ ] + +dependencies: + - EcoSkills \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/strong.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/strong.yml new file mode 100644 index 00000000..d4832142 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/strong.yml @@ -0,0 +1,25 @@ +display-name: "Strong" +description: "Gives &a+%placeholder%&r %ecoskills_strength_name%" +placeholder: "-1 + 4 * %level%" +type: normal + +targets: + - sword +conflicts: [ ] +rarity: rare +max-level: 4 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: add_stat + args: + stat: strength + amount: "-1 + 4 * %level%" + +conditions: [ ] + +dependencies: + - EcoSkills \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/strongarm.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/strongarm.yml new file mode 100644 index 00000000..748cc4ec --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/strongarm.yml @@ -0,0 +1,25 @@ +display-name: "Strongarm" +description: "Gives &a+%placeholder%&r %ecoskills_strength_name%" +placeholder: "20 + 10 * %level%" +type: normal + +targets: + - trident +conflicts: [ ] +rarity: rare +max-level: 2 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: add_stat + args: + stat: strength + amount: "2 + 4 * %level%" + +conditions: [ ] + +dependencies: + - EcoSkills \ No newline at end of file