diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/adventurer.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/adventurer.yml new file mode 100644 index 00000000..48a6f9d6 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/adventurer.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/angler.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/angler.yml new file mode 100644 index 00000000..3f1fbe46 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/angler.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/chemist.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/chemist.yml new file mode 100644 index 00000000..14b4d1d8 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/chemist.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/combatant.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/combatant.yml new file mode 100644 index 00000000..a53f47c1 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/combatant.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/enriched_plating.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/enriched_plating.yml new file mode 100644 index 00000000..3ae8d1ac --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/enriched_plating.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/green_thumb.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/green_thumb.yml new file mode 100644 index 00000000..2353c8dc --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/green_thumb.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/prospector.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/prospector.yml new file mode 100644 index 00000000..191a0912 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/prospector.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/sorcery.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/sorcery.yml new file mode 100644 index 00000000..476342c6 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/sorcery.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/ecoskills/woodworker.yml b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/woodworker.yml new file mode 100644 index 00000000..a534c868 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/enchants/ecoskills/woodworker.yml @@ -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 \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/enchants/warp_drive.yml b/eco-core/core-plugin/src/main/resources/enchants/warp_drive.yml index 31047998..0e5cc89e 100644 --- a/eco-core/core-plugin/src/main/resources/enchants/warp_drive.yml +++ b/eco-core/core-plugin/src/main/resources/enchants/warp_drive.yml @@ -22,7 +22,9 @@ effects: args: sound: entity_enderman_teleport pitch: 1.2 - volume: 10 + volume: 2 + triggers: + - bow_attack conditions: [ ]