diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java index f0067ee..9d92d0a 100644 --- a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java @@ -110,6 +110,12 @@ public abstract class Talisman implements Listener, Watcher { @Getter private EcoShapedRecipe recipe = null; + /** + * If the talisman is craftable. + */ + @Getter + private boolean craftable = true; + /** * The base64 skull texture. */ @@ -188,6 +194,7 @@ public abstract class Talisman implements Listener, Watcher { List disabledExistingWorldNames = disabledWorldNames.stream().filter(s -> worldNames.contains(s.toLowerCase())).collect(Collectors.toList()); disabledWorlds.addAll(Bukkit.getWorlds().stream().filter(world -> disabledExistingWorldNames.contains(world.getName().toLowerCase())).collect(Collectors.toList())); enabled = config.getBool("enabled"); + craftable = config.getBool(Talismans.OBTAINING_LOCATION + "craftable"); TalismanUtils.registerPlaceholders(this); @@ -206,7 +213,7 @@ public abstract class Talisman implements Listener, Watcher { return new ComplexRecipePart(test -> Objects.equals(talisman, TalismanChecks.getTalismanOnItem(test)), out); }); - if (this.isEnabled()) { + if (this.isCraftable()) { EcoShapedRecipe.Builder builder = EcoShapedRecipe.builder(this.getPlugin(), this.getKey().getKey()) .setOutput(out); diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/alchemyrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/alchemyrelic.yml index 311a781..5eba610 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/alchemyrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/alchemyrelic.yml @@ -3,6 +3,7 @@ description: 25% chance double the strength of applied potion effects. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/archeryrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/archeryrelic.yml index 8fa87e2..d1b9019 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/archeryrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/archeryrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more damage with bows. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/bossrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/bossrelic.yml index d90fd14..08e5602 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/bossrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/bossrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more damage to bosses. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/endrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/endrelic.yml index 1508d83..2a06a65 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/endrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/endrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more damage in the end. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/experiencerelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/experiencerelic.yml index 9aca5e2..3efe38e 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/experiencerelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/experiencerelic.yml @@ -3,6 +3,7 @@ description: Gain 40% more experience. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/extractionrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/extractionrelic.yml index 979115c..ed800ec 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/extractionrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/extractionrelic.yml @@ -3,6 +3,7 @@ description: 10% chance to get xp randomly while mining. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/featherrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/featherrelic.yml index 047f321..dc8e190 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/featherrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/featherrelic.yml @@ -3,6 +3,7 @@ description: Take 40% less fall damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/flamerelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/flamerelic.yml index 7cbe6c7..fcf33e6 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/flamerelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/flamerelic.yml @@ -3,6 +3,7 @@ description: Take 40% less fire damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/fluxrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/fluxrelic.yml index e1da8eb..3ffd656 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/fluxrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/fluxrelic.yml @@ -3,6 +3,7 @@ description: Nearby players deal 25% more melee damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/gravityrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/gravityrelic.yml index 7634b0d..6e1b960 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/gravityrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/gravityrelic.yml @@ -3,6 +3,7 @@ description: Take less damage the lower down you are, up to 40% less. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/healingrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/healingrelic.yml index 33d3537..dfc4abc 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/healingrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/healingrelic.yml @@ -3,6 +3,7 @@ description: Heal 40% faster. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/netherrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/netherrelic.yml index ed80d07..e875c09 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/netherrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/netherrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more damage in the nether. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/poseidonrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/poseidonrelic.yml index a178f9a..ac82417 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/poseidonrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/poseidonrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more damage with tridents. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/raidrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/raidrelic.yml index c70d22a..7a3a725 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/raidrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/raidrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more damage to illagers. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/resistancerelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/resistancerelic.yml index b39b238..5934ff3 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/resistancerelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/resistancerelic.yml @@ -3,6 +3,7 @@ description: Take 40% less damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/sharpnessrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/sharpnessrelic.yml index 73971e8..78e562d 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/sharpnessrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/sharpnessrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more melee damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/speedrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/speedrelic.yml index 32f8b58..a515f6e 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/speedrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/speedrelic.yml @@ -3,6 +3,7 @@ description: Move 25% faster. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/relic/strengthrelic.yml b/eco-core/core-plugin/src/main/resources/talismans/relic/strengthrelic.yml index b2e935f..d7c62cb 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/relic/strengthrelic.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/relic/strengthrelic.yml @@ -3,6 +3,7 @@ description: Deal 40% more damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/alchemyring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/alchemyring.yml index 94bf237..cedda8a 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/alchemyring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/alchemyring.yml @@ -3,6 +3,7 @@ description: 10% chance double the strength of applied potion effects. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/archeryring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/archeryring.yml index a9c7007..20a6c27 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/archeryring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/archeryring.yml @@ -3,6 +3,7 @@ description: Deal 25% more damage with bows. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/bossring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/bossring.yml index a02f489..94c928e 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/bossring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/bossring.yml @@ -3,6 +3,7 @@ description: Deal 25% more damage to bosses. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/endring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/endring.yml index e399a33..74a9d43 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/endring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/endring.yml @@ -3,6 +3,7 @@ description: Deal 25% more damage in the end. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/experiencering.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/experiencering.yml index 5570a25..2da73ad 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/experiencering.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/experiencering.yml @@ -3,6 +3,7 @@ description: Gain 25% more experience. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/extractionring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/extractionring.yml index 279f0dc..e7cfcb9 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/extractionring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/extractionring.yml @@ -3,6 +3,7 @@ description: 5% chance to get xp randomly while mining. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/featherring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/featherring.yml index 687bf4c..5360145 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/featherring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/featherring.yml @@ -3,6 +3,7 @@ description: Take 75% less fall damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/flamering.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/flamering.yml index 19b26ed..3d95bf9 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/flamering.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/flamering.yml @@ -3,6 +3,7 @@ description: Take 25% less fire damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/fluxring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/fluxring.yml index 5da4d2b..b119dd7 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/fluxring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/fluxring.yml @@ -3,6 +3,7 @@ description: Nearby players deal 10% more melee damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/gravityring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/gravityring.yml index d629b6c..f42ae91 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/gravityring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/gravityring.yml @@ -3,6 +3,7 @@ description: Take less damage the lower down you are, up to 30% less. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/healingring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/healingring.yml index 5032d0c..6ac7d5f 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/healingring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/healingring.yml @@ -3,6 +3,7 @@ description: Heal 25% faster. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/netherring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/netherring.yml index 4e019d0..e854a73 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/netherring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/netherring.yml @@ -3,6 +3,7 @@ description: Deal 25% more damage in the nether. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/poseidonring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/poseidonring.yml index 6d6a430..3a472df 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/poseidonring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/poseidonring.yml @@ -3,6 +3,7 @@ description: Deal 25% more damage with tridents. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/raidring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/raidring.yml index 2892fa5..31886f5 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/raidring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/raidring.yml @@ -3,6 +3,7 @@ description: Deal 25% more damage to illagers. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/resistancering.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/resistancering.yml index 02ccb02..ea9e23a 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/resistancering.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/resistancering.yml @@ -3,6 +3,7 @@ description: Take 25% less damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/sharpnessring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/sharpnessring.yml index 4a4601e..3fe6e18 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/sharpnessring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/sharpnessring.yml @@ -3,6 +3,7 @@ description: Deal 25% more melee damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/speedring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/speedring.yml index de63312..c6b82c7 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/speedring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/speedring.yml @@ -3,6 +3,7 @@ description: Move 10% faster. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/ring/strengthring.yml b/eco-core/core-plugin/src/main/resources/talismans/ring/strengthring.yml index e9dfd0e..c0aeb1a 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/ring/strengthring.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/ring/strengthring.yml @@ -3,6 +3,7 @@ description: Deal 25% more damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/alchemytalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/alchemytalisman.yml index c40c1b9..3c7b15b 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/alchemytalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/alchemytalisman.yml @@ -3,6 +3,7 @@ description: 5% chance double the strength of applied potion effects. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/archerytalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/archerytalisman.yml index 178f9df..0a552c5 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/archerytalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/archerytalisman.yml @@ -3,8 +3,9 @@ description: Deal 10% more damage with bows. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom - # The first item is the top left, the second is top middle, and so on. The last is bottom right. + # The first item is the top left, the second is top middle, and so on. The last is bottom right recipe: - bow - crossbow diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/bosstalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/bosstalisman.yml index f21b558..20b0468 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/bosstalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/bosstalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage to bosses. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/creepertalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/creepertalisman.yml index f574ddd..b9ad412 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/creepertalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/creepertalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage to creepers. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/endtalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/endtalisman.yml index 45eb104..874cfe3 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/endtalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/endtalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage in the end. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/experiencetalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/experiencetalisman.yml index 01b7b43..63a7f3c 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/experiencetalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/experiencetalisman.yml @@ -3,6 +3,7 @@ description: Gain 10% more experience. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/extractiontalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/extractiontalisman.yml index 68dd5e7..c06977d 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/extractiontalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/extractiontalisman.yml @@ -3,6 +3,7 @@ description: 2% chance to get xp randomly while mining. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/feathertalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/feathertalisman.yml index dab365a..aadf41b 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/feathertalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/feathertalisman.yml @@ -3,6 +3,7 @@ description: Take 10% less fall damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/flametalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/flametalisman.yml index 95ecc8e..6e306a2 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/flametalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/flametalisman.yml @@ -3,6 +3,7 @@ description: Take 10% less fire damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/fluxtalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/fluxtalisman.yml index 270e2f0..b098486 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/fluxtalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/fluxtalisman.yml @@ -3,6 +3,7 @@ description: Nearby players deal 5% more melee damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/gravitytalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/gravitytalisman.yml index 4d08183..28bb52b 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/gravitytalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/gravitytalisman.yml @@ -3,6 +3,7 @@ description: Take less damage the lower down you are, up to 20% less. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/healingtalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/healingtalisman.yml index 3725c67..85d588a 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/healingtalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/healingtalisman.yml @@ -3,6 +3,7 @@ description: Heal 10% faster. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/immunitytalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/immunitytalisman.yml index ec69f70..83b6dbb 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/immunitytalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/immunitytalisman.yml @@ -3,6 +3,7 @@ description: Become immune to poison damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/nethertalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/nethertalisman.yml index 4792ac8..0abc7db 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/nethertalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/nethertalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage in the nether. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/poseidontalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/poseidontalisman.yml index 0d7b7e4..acbd9a0 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/poseidontalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/poseidontalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage with tridents. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/raidtalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/raidtalisman.yml index dca5c1e..7b08458 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/raidtalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/raidtalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage to illagers. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/resistancetalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/resistancetalisman.yml index 9d8b793..1bf4307 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/resistancetalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/resistancetalisman.yml @@ -3,6 +3,7 @@ description: Take 10% less damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/sharpnesstalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/sharpnesstalisman.yml index 1c4eef1..082fa7d 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/sharpnesstalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/sharpnesstalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more melee damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/skeletontalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/skeletontalisman.yml index 9fda461..3222711 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/skeletontalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/skeletontalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage to skeletons. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/speedtalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/speedtalisman.yml index bf475f0..be7d84e 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/speedtalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/speedtalisman.yml @@ -3,6 +3,7 @@ description: Move 5% faster. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/spiderresistancetalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/spiderresistancetalisman.yml index 82e9afb..5d212c8 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/spiderresistancetalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/spiderresistancetalisman.yml @@ -3,6 +3,7 @@ description: Take 25% less damage from spiders. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/spidertalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/spidertalisman.yml index 2d2579b..850c666 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/spidertalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/spidertalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage to spiders. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/strengthtalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/strengthtalisman.yml index eed00e2..d461420 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/strengthtalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/strengthtalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/zombieresistancetalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/zombieresistancetalisman.yml index 1519ab8..4043cf4 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/zombieresistancetalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/zombieresistancetalisman.yml @@ -3,6 +3,7 @@ description: Take 25% less damage from zombies. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: diff --git a/eco-core/core-plugin/src/main/resources/talismans/talisman/zombietalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/talisman/zombietalisman.yml index 6defeeb..dd91ff5 100644 --- a/eco-core/core-plugin/src/main/resources/talismans/talisman/zombietalisman.yml +++ b/eco-core/core-plugin/src/main/resources/talismans/talisman/zombietalisman.yml @@ -3,6 +3,7 @@ description: Deal 10% more damage to zombies. enabled: true obtaining: + craftable: true # Recipes are left-right, top-bottom # The first item is the top left, the second is top middle, and so on. The last is bottom right. recipe: