├── .gitattributes ├── .poggit.yml ├── LICENSE ├── README.md ├── media └── kitcreation.gif ├── plugin.yml ├── resources ├── categories.yml ├── commands.yml ├── config.yml ├── kits.yml └── lang.yml └── src └── AndreasHGK └── EasyKits ├── Category.php ├── EasyKits.php ├── Kit.php ├── command ├── CreatecategoryCommand.php ├── CreatekitCommand.php ├── DeletecategoryCommand.php ├── DeletekitCommand.php ├── EKExecutor.php ├── EKImportCommand.php ├── EditkitCommand.php ├── GivekitCommand.php └── KitCommand.php ├── customenchants └── PiggyCustomEnchantsLoader.php ├── event ├── CategoryCreateEvent.php ├── CategoryDeleteEvent.php ├── CategoryEditEvent.php ├── CategoryEvent.php ├── CategorySelectEvent.php ├── InteractItemClaimEvent.php ├── KitClaimEvent.php ├── KitCreateEvent.php ├── KitDeleteEvent.php ├── KitEditEvent.php ├── KitEvent.php └── PlayerEventTrait.php ├── importer ├── AdvancedKitsImporter.php ├── KitUIImporter.php └── KitsPlusImporter.php ├── listener └── InteractClaimListener.php ├── manager ├── CategoryManager.php ├── CooldownManager.php ├── DataManager.php ├── EconomyManager.php └── KitManager.php ├── ui ├── CategorySelectForm.php ├── CreatecategoryForm.php ├── CreatekitForm.php ├── DeletecategoryForm.php ├── DeletekitForm.php ├── EditKitItemInventory.php ├── EditkitCategoryForm.php ├── EditkitCommandsForm.php ├── EditkitGeneralForm.php ├── EditkitMainForm.php ├── EditkitPotionForm.php ├── EditkitPotionSelectForm.php ├── EditkitSelectForm.php ├── GivekitKitSelectForm.php ├── GivekitPlayerSelectForm.php ├── KitImportForm.php └── KitSelectForm.php └── utils ├── ItemUtils.php ├── KitException.php ├── LangUtils.php ├── TimeUtils.php └── TryClaim.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/.gitattributes -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/README.md -------------------------------------------------------------------------------- /media/kitcreation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/media/kitcreation.gif -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/resources/categories.yml -------------------------------------------------------------------------------- /resources/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/resources/commands.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/kits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/resources/kits.yml -------------------------------------------------------------------------------- /resources/lang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/resources/lang.yml -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/Category.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/EasyKits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/EasyKits.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/Kit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/Kit.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/CreatecategoryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/CreatecategoryCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/CreatekitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/CreatekitCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/DeletecategoryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/DeletecategoryCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/DeletekitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/DeletekitCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/EKExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/EKExecutor.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/EKImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/EKImportCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/EditkitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/EditkitCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/GivekitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/GivekitCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/command/KitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/command/KitCommand.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/customenchants/PiggyCustomEnchantsLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/customenchants/PiggyCustomEnchantsLoader.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/CategoryCreateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/CategoryCreateEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/CategoryDeleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/CategoryDeleteEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/CategoryEditEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/CategoryEditEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/CategoryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/CategoryEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/CategorySelectEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/CategorySelectEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/InteractItemClaimEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/InteractItemClaimEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/KitClaimEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/KitClaimEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/KitCreateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/KitCreateEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/KitDeleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/KitDeleteEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/KitEditEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/KitEditEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/KitEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/KitEvent.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/event/PlayerEventTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/event/PlayerEventTrait.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/importer/AdvancedKitsImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/importer/AdvancedKitsImporter.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/importer/KitUIImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/importer/KitUIImporter.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/importer/KitsPlusImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/importer/KitsPlusImporter.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/listener/InteractClaimListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/listener/InteractClaimListener.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/manager/CategoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/manager/CategoryManager.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/manager/CooldownManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/manager/CooldownManager.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/manager/DataManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/manager/DataManager.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/manager/EconomyManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/manager/EconomyManager.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/manager/KitManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/manager/KitManager.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/CategorySelectForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/CategorySelectForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/CreatecategoryForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/CreatecategoryForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/CreatekitForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/CreatekitForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/DeletecategoryForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/DeletecategoryForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/DeletekitForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/DeletekitForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditKitItemInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditKitItemInventory.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditkitCategoryForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditkitCategoryForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditkitCommandsForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditkitCommandsForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditkitGeneralForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditkitGeneralForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditkitMainForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditkitMainForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditkitPotionForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditkitPotionForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditkitPotionSelectForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditkitPotionSelectForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/EditkitSelectForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/EditkitSelectForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/GivekitKitSelectForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/GivekitKitSelectForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/GivekitPlayerSelectForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/GivekitPlayerSelectForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/KitImportForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/KitImportForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/ui/KitSelectForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/ui/KitSelectForm.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/utils/ItemUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/utils/ItemUtils.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/utils/KitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/utils/KitException.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/utils/LangUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/utils/LangUtils.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/utils/TimeUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/utils/TimeUtils.php -------------------------------------------------------------------------------- /src/AndreasHGK/EasyKits/utils/TryClaim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHGK/EasyKits/HEAD/src/AndreasHGK/EasyKits/utils/TryClaim.php --------------------------------------------------------------------------------