├── .gitignore ├── .poggit.yml ├── LICENSE ├── README.md ├── plugin.yml └── src ├── Customies.php ├── CustomiesListener.php ├── block ├── BlockPalette.php ├── BlockSize.php ├── CustomiesBlockFactory.php ├── Material.php ├── Model.php └── permutations │ ├── BlockProperty.php │ ├── Permutable.php │ ├── Permutation.php │ ├── Permutations.php │ └── RotatableTrait.php ├── entity └── CustomiesEntityFactory.php ├── item ├── CreativeInventoryInfo.php ├── CreativeItemManager.php ├── CustomiesItemFactory.php ├── ItemComponents.php ├── ItemComponentsTrait.php └── component │ ├── AllowOffHandComponent.php │ ├── BlockPlacerComponent.php │ ├── BundleInteractionComponent.php │ ├── CanDestroyInCreativeComponent.php │ ├── CooldownComponent.php │ ├── CreativeCategoryComponent.php │ ├── CreativeGroupComponent.php │ ├── DamageAbsorptionComponent.php │ ├── DamageComponent.php │ ├── DiggerComponent.php │ ├── DisplayNameComponent.php │ ├── DurabilityComponent.php │ ├── DyeableComponent.php │ ├── EnchantableSlotComponent.php │ ├── EnchantableValueComponent.php │ ├── FoodComponent.php │ ├── FuelComponent.php │ ├── GlintComponent.php │ ├── HandEquippedComponent.php │ ├── HoverTextColorComponent.php │ ├── IconComponent.php │ ├── InteractButtonComponent.php │ ├── ItemComponent.php │ ├── LiquidClippedComponent.php │ ├── MaxStackSizeComponent.php │ ├── ProjectileComponent.php │ ├── RarityComponent.php │ ├── RecordComponent.php │ ├── ShooterComponent.php │ ├── ShouldDespawnComponent.php │ ├── StackedByDataComponent.php │ ├── ThrowableComponent.php │ ├── UseAnimationComponent.php │ ├── UseDurationComponent.php │ ├── UseModifiersComponent.php │ └── WearableComponent.php ├── task └── AsyncRegisterBlocksTask.php └── util └── NBT.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | composer.lock -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/plugin.yml -------------------------------------------------------------------------------- /src/Customies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/Customies.php -------------------------------------------------------------------------------- /src/CustomiesListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/CustomiesListener.php -------------------------------------------------------------------------------- /src/block/BlockPalette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/BlockPalette.php -------------------------------------------------------------------------------- /src/block/BlockSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/BlockSize.php -------------------------------------------------------------------------------- /src/block/CustomiesBlockFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/CustomiesBlockFactory.php -------------------------------------------------------------------------------- /src/block/Material.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/Material.php -------------------------------------------------------------------------------- /src/block/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/Model.php -------------------------------------------------------------------------------- /src/block/permutations/BlockProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/permutations/BlockProperty.php -------------------------------------------------------------------------------- /src/block/permutations/Permutable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/permutations/Permutable.php -------------------------------------------------------------------------------- /src/block/permutations/Permutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/permutations/Permutation.php -------------------------------------------------------------------------------- /src/block/permutations/Permutations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/permutations/Permutations.php -------------------------------------------------------------------------------- /src/block/permutations/RotatableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/block/permutations/RotatableTrait.php -------------------------------------------------------------------------------- /src/entity/CustomiesEntityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/entity/CustomiesEntityFactory.php -------------------------------------------------------------------------------- /src/item/CreativeInventoryInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/CreativeInventoryInfo.php -------------------------------------------------------------------------------- /src/item/CreativeItemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/CreativeItemManager.php -------------------------------------------------------------------------------- /src/item/CustomiesItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/CustomiesItemFactory.php -------------------------------------------------------------------------------- /src/item/ItemComponents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/ItemComponents.php -------------------------------------------------------------------------------- /src/item/ItemComponentsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/ItemComponentsTrait.php -------------------------------------------------------------------------------- /src/item/component/AllowOffHandComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/AllowOffHandComponent.php -------------------------------------------------------------------------------- /src/item/component/BlockPlacerComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/BlockPlacerComponent.php -------------------------------------------------------------------------------- /src/item/component/BundleInteractionComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/BundleInteractionComponent.php -------------------------------------------------------------------------------- /src/item/component/CanDestroyInCreativeComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/CanDestroyInCreativeComponent.php -------------------------------------------------------------------------------- /src/item/component/CooldownComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/CooldownComponent.php -------------------------------------------------------------------------------- /src/item/component/CreativeCategoryComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/CreativeCategoryComponent.php -------------------------------------------------------------------------------- /src/item/component/CreativeGroupComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/CreativeGroupComponent.php -------------------------------------------------------------------------------- /src/item/component/DamageAbsorptionComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/DamageAbsorptionComponent.php -------------------------------------------------------------------------------- /src/item/component/DamageComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/DamageComponent.php -------------------------------------------------------------------------------- /src/item/component/DiggerComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/DiggerComponent.php -------------------------------------------------------------------------------- /src/item/component/DisplayNameComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/DisplayNameComponent.php -------------------------------------------------------------------------------- /src/item/component/DurabilityComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/DurabilityComponent.php -------------------------------------------------------------------------------- /src/item/component/DyeableComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/DyeableComponent.php -------------------------------------------------------------------------------- /src/item/component/EnchantableSlotComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/EnchantableSlotComponent.php -------------------------------------------------------------------------------- /src/item/component/EnchantableValueComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/EnchantableValueComponent.php -------------------------------------------------------------------------------- /src/item/component/FoodComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/FoodComponent.php -------------------------------------------------------------------------------- /src/item/component/FuelComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/FuelComponent.php -------------------------------------------------------------------------------- /src/item/component/GlintComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/GlintComponent.php -------------------------------------------------------------------------------- /src/item/component/HandEquippedComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/HandEquippedComponent.php -------------------------------------------------------------------------------- /src/item/component/HoverTextColorComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/HoverTextColorComponent.php -------------------------------------------------------------------------------- /src/item/component/IconComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/IconComponent.php -------------------------------------------------------------------------------- /src/item/component/InteractButtonComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/InteractButtonComponent.php -------------------------------------------------------------------------------- /src/item/component/ItemComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/ItemComponent.php -------------------------------------------------------------------------------- /src/item/component/LiquidClippedComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/LiquidClippedComponent.php -------------------------------------------------------------------------------- /src/item/component/MaxStackSizeComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/MaxStackSizeComponent.php -------------------------------------------------------------------------------- /src/item/component/ProjectileComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/ProjectileComponent.php -------------------------------------------------------------------------------- /src/item/component/RarityComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/RarityComponent.php -------------------------------------------------------------------------------- /src/item/component/RecordComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/RecordComponent.php -------------------------------------------------------------------------------- /src/item/component/ShooterComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/ShooterComponent.php -------------------------------------------------------------------------------- /src/item/component/ShouldDespawnComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/ShouldDespawnComponent.php -------------------------------------------------------------------------------- /src/item/component/StackedByDataComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/StackedByDataComponent.php -------------------------------------------------------------------------------- /src/item/component/ThrowableComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/ThrowableComponent.php -------------------------------------------------------------------------------- /src/item/component/UseAnimationComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/UseAnimationComponent.php -------------------------------------------------------------------------------- /src/item/component/UseDurationComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/UseDurationComponent.php -------------------------------------------------------------------------------- /src/item/component/UseModifiersComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/UseModifiersComponent.php -------------------------------------------------------------------------------- /src/item/component/WearableComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/item/component/WearableComponent.php -------------------------------------------------------------------------------- /src/task/AsyncRegisterBlocksTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/task/AsyncRegisterBlocksTask.php -------------------------------------------------------------------------------- /src/util/NBT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavyCraft648/Customies-NG/HEAD/src/util/NBT.php --------------------------------------------------------------------------------