From 7b6c1bb0e14c7a478f837232b1cc99d8270b859d Mon Sep 17 00:00:00 2001 From: Auxilor Date: Mon, 3 Oct 2022 17:29:45 +0100 Subject: [PATCH] Added crit luck and forceful crit --- .../enchants/ecoskills/crit_luck.yml | 25 +++++++++++++++++++ .../enchants/ecoskills/forceful_crit.yml | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 eco-core/core-plugin/src/main/resources/enchants/ecoskills/crit_luck.yml create mode 100644 eco-core/core-plugin/src/main/resources/enchants/ecoskills/forceful_crit.yml diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/crit_luck.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/crit_luck.yml new file mode 100644 index 00000000..d7ba41ff --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/crit_luck.yml @@ -0,0 +1,25 @@ +display-name: "Crit Luck" +description: "Gives &a+%placeholder%&r %ecoskills_crit_chance_name%" +placeholder: "4 * %level%" +type: spell + +targets: + - sword +conflicts: [ ] +rarity: common +max-level: 3 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: add_stat + args: + stat: crit_chance + amount: "4 * %level%" + +conditions: [ ] + +dependencies: + - EcoSkills \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/forceful_crit.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/forceful_crit.yml new file mode 100644 index 00000000..cc621b6b --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/forceful_crit.yml @@ -0,0 +1,25 @@ +display-name: "Forceful Crit" +description: "Gives &a+%placeholder%&r %ecoskills_crit_damage_name%" +placeholder: "3 + 2 * %level%" +type: spell + +targets: + - sword +conflicts: [ ] +rarity: common +max-level: 6 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: add_stat + args: + stat: crit_damage + amount: "3 + 2 * %level%" + +conditions: [ ] + +dependencies: + - EcoSkills \ No newline at end of file