├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ └── report-a-bug.md └── workflows │ └── publish-release.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── eco-core ├── build.gradle.kts └── core-plugin │ ├── build.gradle.kts │ └── src │ └── main │ ├── kotlin │ └── com │ │ └── willfp │ │ └── ecoitems │ │ ├── EcoItemsPlugin.kt │ │ ├── commands │ │ ├── CommandEcoItems.kt │ │ ├── CommandGive.kt │ │ └── CommandReload.kt │ │ ├── display │ │ ├── ItemsDisplay.kt │ │ └── RarityDisplay.kt │ │ ├── items │ │ ├── EcoItem.kt │ │ ├── EcoItemFinder.kt │ │ ├── EcoItemTag.kt │ │ ├── EcoItems.kt │ │ ├── EcoItemsRecipes.kt │ │ ├── ItemAttributeListener.kt │ │ ├── ItemListener.kt │ │ ├── ItemUtils.kt │ │ └── components │ │ │ ├── ComponentHandler.kt │ │ │ ├── FoodComponentHandler.kt │ │ │ └── ToolComponentHandler.kt │ │ ├── libreforge │ │ └── ConditionHasEcoItem.kt │ │ ├── rarity │ │ ├── ArgParserRarity.kt │ │ ├── Rarities.kt │ │ ├── Rarity.kt │ │ └── RarityTag.kt │ │ └── util │ │ └── DiscoverRecipeListener.kt │ └── resources │ ├── config.yml │ ├── eco.yml │ ├── items │ ├── _example.yml │ ├── _example_food.yml │ ├── _example_tool.yml │ ├── enchanted_items │ │ ├── enchanted_cobblestone.yml │ │ ├── enchanted_diamond.yml │ │ ├── enchanted_emerald.yml │ │ ├── enchanted_ender_eye.yml │ │ ├── enchanted_ender_pearl.yml │ │ └── enchanted_iron_ingot.yml │ └── grappling_hook.yml │ ├── lang.yml │ ├── plugin.yml │ ├── rarities │ ├── _example.yml │ ├── common.yml │ ├── epic.yml │ ├── legendary.yml │ ├── mythic.yml │ ├── none.yml │ ├── rare.yml │ └── uncommon.yml │ └── recipes │ ├── _example.yml │ ├── enchanted_diamond_block_craft.yml │ └── enchanted_emerald_block_craft.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @WillFP 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-a-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/.github/ISSUE_TEMPLATE/report-a-bug.md -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/README.md -------------------------------------------------------------------------------- /eco-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/build.gradle.kts -------------------------------------------------------------------------------- /eco-core/core-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/build.gradle.kts -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/EcoItemsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/EcoItemsPlugin.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/commands/CommandEcoItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/commands/CommandEcoItems.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/commands/CommandGive.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/commands/CommandGive.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/commands/CommandReload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/commands/CommandReload.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/display/ItemsDisplay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/display/ItemsDisplay.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/display/RarityDisplay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/display/RarityDisplay.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItem.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItemFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItemFinder.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItemTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItemTag.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItems.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItemsRecipes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/EcoItemsRecipes.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/ItemAttributeListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/ItemAttributeListener.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/ItemListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/ItemListener.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/ItemUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/ItemUtils.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/components/ComponentHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/components/ComponentHandler.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/components/FoodComponentHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/components/FoodComponentHandler.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/components/ToolComponentHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/items/components/ToolComponentHandler.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/libreforge/ConditionHasEcoItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/libreforge/ConditionHasEcoItem.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/ArgParserRarity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/ArgParserRarity.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/Rarities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/Rarities.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/Rarity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/Rarity.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/RarityTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/rarity/RarityTag.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/util/DiscoverRecipeListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoitems/util/DiscoverRecipeListener.kt -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/config.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/eco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/eco.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/_example.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/_example_food.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/_example_food.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/_example_tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/_example_tool.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_cobblestone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_cobblestone.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_diamond.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_diamond.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_emerald.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_emerald.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_ender_eye.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_ender_eye.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_ender_pearl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_ender_pearl.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_iron_ingot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/enchanted_items/enchanted_iron_ingot.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/items/grappling_hook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/items/grappling_hook.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/lang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/lang.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/plugin.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/rarities/_example.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/common.yml: -------------------------------------------------------------------------------- 1 | lore: 2 | - "&a&lCOMMON" 3 | 4 | weight: 1 5 | 6 | items: [] 7 | -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/epic.yml: -------------------------------------------------------------------------------- 1 | lore: 2 | - "&d&lEPIC" 3 | 4 | weight: 1 5 | 6 | items: [] 7 | -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/legendary.yml: -------------------------------------------------------------------------------- 1 | lore: 2 | - "&6&lLEGENDARY" 3 | 4 | weight: 1 5 | 6 | items: [] 7 | -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/mythic.yml: -------------------------------------------------------------------------------- 1 | lore: 2 | - "&c&lMYTHIC" 3 | 4 | weight: 1 5 | 6 | items: [] 7 | -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/none.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/rarities/none.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/rare.yml: -------------------------------------------------------------------------------- 1 | lore: 2 | - "&9&lRARE" 3 | 4 | weight: 1 5 | 6 | items: [] 7 | -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/rarities/uncommon.yml: -------------------------------------------------------------------------------- 1 | lore: 2 | - "&e&lUNCOMMON" 3 | 4 | weight: 1 5 | 6 | items: [] 7 | -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/recipes/_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/recipes/_example.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/recipes/enchanted_diamond_block_craft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/recipes/enchanted_diamond_block_craft.yml -------------------------------------------------------------------------------- /eco-core/core-plugin/src/main/resources/recipes/enchanted_emerald_block_craft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/eco-core/core-plugin/src/main/resources/recipes/enchanted_emerald_block_craft.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auxilor/EcoItems/HEAD/settings.gradle.kts --------------------------------------------------------------------------------