diff --git a/eco-core/core-plugin/src/main/resources/enchants/curse_of_breaklessness.yml b/eco-core/core-plugin/src/main/resources/enchants/curse_of_breaklessness.yml new file mode 100644 index 00000000..a44a75ba --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/curse_of_breaklessness.yml @@ -0,0 +1,25 @@ +display-name: Curse of Breaklessness +description: Chance to prevent block breaking +placeholder: '%level%' +type: Curse + +targets: +- axe +- hoe +- pickaxe +- shovel +conflicts: [] +rarity: legendary +max-level: 1 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: cancel_event + args: + chance: 15*%level% + triggers: + - mine_block +conditions: [] diff --git a/eco-core/core-plugin/src/main/resources/enchants/curse_of_harmlessness.yml b/eco-core/core-plugin/src/main/resources/enchants/curse_of_harmlessness.yml new file mode 100644 index 00000000..e0f7d6d7 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/curse_of_harmlessness.yml @@ -0,0 +1,23 @@ +display-name: Curse of Harmlessness +description: Chance for attacks to do nothing +placeholder: '%level%' +type: Curse + +targets: +- sword +- axe +conflicts: [] +rarity: legendary +max-level: 1 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: cancel_event + args: + chance: 15*%level% + triggers: + - melee_attack +conditions: [] diff --git a/eco-core/core-plugin/src/main/resources/enchants/curse_of_hunger.yml b/eco-core/core-plugin/src/main/resources/enchants/curse_of_hunger.yml new file mode 100644 index 00000000..37747715 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/curse_of_hunger.yml @@ -0,0 +1,20 @@ +display-name: Curse of Hunger +description: Increases hunger loss +placeholder: '%level%' +type: Curse + +targets: +- helmet +conflicts: [] +rarity: legendary +max-level: 1 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: hunger_multiplier + args: + multiplier: 1.5 * %level% +conditions: [] diff --git a/eco-core/core-plugin/src/main/resources/enchants/curse_of_misfortune.yml b/eco-core/core-plugin/src/main/resources/enchants/curse_of_misfortune.yml new file mode 100644 index 00000000..6d5f59ec --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/curse_of_misfortune.yml @@ -0,0 +1,25 @@ +display-name: Curse of Misfortune +description: Chance of blocks to not drop items +placeholder: '%level%' +type: Curse + +targets: +- hoe +- shovel +- pickaxe +- axe +conflicts: [] +rarity: legendary +max-level: 1 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: cancel_event + args: + chance: 15*%level% + triggers: + - block_item_drop +conditions: [] diff --git a/eco-core/core-plugin/src/main/resources/enchants/defusion.yml b/eco-core/core-plugin/src/main/resources/enchants/defusion.yml new file mode 100644 index 00000000..f329ab29 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/defusion.yml @@ -0,0 +1,33 @@ +display-name: "Defusion" +description: "&8Deal &a%placeholder%% &8more damage against creepers" +placeholder: "%level% * 10" +type: Normal + +targets: + - sword + - axe +conflicts: + - sharpness + - bane_of_arthropods + - smite + - butchering + - razor + - ender_slayer + - introversion +rarity: common +max-level: 5 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: damage_multiplier + args: + multiplier: "1 + 0.1 * %level%" + triggers: + - melee_attack + filters: + entities: + - creeper +conditions: [] diff --git a/eco-core/core-plugin/src/main/resources/enchants/dexterous.yml b/eco-core/core-plugin/src/main/resources/enchants/dexterous.yml new file mode 100644 index 00000000..1a26b4c8 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/dexterous.yml @@ -0,0 +1,23 @@ +display-name: "Dexterous" +description: "&8Increases attack speed by &a%placeholder%%" +placeholder: '%level% * 10' +type: Normal + +targets: + - sword + - axe +conflicts: [] +rarity: epic +max-level: 2 + +tradeable: true +discoverable: true +enchantable: true + +effects: + - id: attack_speed_multiplier + args: + multiplier: "1 + 0.1 * %level%" + triggers: + - melee_attack +conditions: []