├── .gitignore ├── .poggit.yml ├── README.md ├── plugin.yml ├── resources ├── features │ ├── block.yml │ ├── command.yml │ ├── enchantment.yml │ ├── item.yml │ └── mob.yml └── setting.yml └── src └── CLADevs └── VanillaX ├── VanillaX.php ├── blocks ├── BlockIds.php ├── BlockManager.php ├── TileIds.php ├── block │ ├── AnvilBlock.php │ ├── BeaconBlock.php │ ├── BellBlock.php │ ├── ChainBlock.php │ ├── CommandBlock.php │ ├── ComposerBlock.php │ ├── EnchantmentTableBlock.php │ ├── FireBlock.php │ ├── FlowerPotBlock.php │ ├── HangingRootsBlock.php │ ├── HopperBlock.php │ ├── JukeboxBlock.php │ ├── MobSpawnerBlock.php │ ├── SeaLanternBlock.php │ ├── SkullBlock.php │ ├── SmithingTableBlock.php │ ├── SpongeBlock.php │ ├── TwistingVinesBlock.php │ ├── WarpedWartBlock.php │ ├── WeepingVinesBlock.php │ ├── basalt │ │ ├── BasaltBlock.php │ │ └── PolishedBasaltBlock.php │ ├── bee │ │ ├── BeeNestBlock.php │ │ └── BeehiveBlock.php │ ├── button │ │ └── NewWoodenButton.php │ ├── campfire │ │ └── Campfire.php │ ├── crops │ │ ├── Melon.php │ │ └── Netherwart.php │ ├── fungus │ │ └── Fungus.php │ ├── log │ │ └── NewLog.php │ ├── nylium │ │ └── Nylium.php │ └── slab │ │ └── NewSlab.php ├── tile │ ├── BeaconTile.php │ ├── CommandBlockTile.php │ ├── FlowerPotTile.php │ ├── FurnaceTile.php │ ├── HopperTile.php │ ├── JukeboxTile.php │ ├── MobSpawnerTile.php │ ├── StructureBlockTile.php │ └── campfire │ │ ├── CampfireTile.php │ │ ├── RegularCampfireTile.php │ │ └── SoulCampfireTile.php └── utils │ ├── AnyFacingTrait.php │ ├── BlockFacingOppositeTrait.php │ ├── CommandBlockType.php │ ├── FacingPlayerHorizontallyTrait.php │ └── FacingPlayerTrait.php ├── commands ├── Command.php ├── CommandManager.php ├── sender │ └── CommandBlockSender.php ├── types │ ├── GameruleCommand.php │ ├── GiveCommand.php │ ├── PlaySoundCommand.php │ ├── StopSoundCommand.php │ ├── ToggleDownFallCommand.php │ └── WeatherCommand.php └── utils │ ├── CommandArgs.php │ ├── CommandHelper.php │ ├── CommandOverload.php │ └── CommandTargetSelector.php ├── configuration ├── Feature.php ├── Setting.php ├── SettingManager.php └── features │ ├── BlockFeature.php │ ├── CommandFeature.php │ ├── EnchantmentFeature.php │ ├── ItemFeature.php │ └── MobFeature.php ├── enchantments ├── EnchantmentManager.php ├── EnchantmentTrait.php ├── ItemFlags.php ├── RarityCost.php ├── VanillaEnchantment.php └── types │ ├── AquaAffinityEnchantment.php │ ├── BaneOfArthropodsEnchantment.php │ ├── BindingEnchantment.php │ ├── BlastProtectionEnchantment.php │ ├── ChannelingEnchantment.php │ ├── DepthStriderEnchantment.php │ ├── EfficiencyEnchantment.php │ ├── FeatherFallingEnchantment.php │ ├── FireAspectEnchantment.php │ ├── FireProtectionEnchantment.php │ ├── FlameEnchantment.php │ ├── FortuneEnchantment.php │ ├── FrostWalkerEnchantment.php │ ├── ImpalingEnchantment.php │ ├── InfinityEnchantment.php │ ├── KnockbackEnchantment.php │ ├── LootingEnchantment.php │ ├── LoyaltyEnchantment.php │ ├── LuckOfTheSeaEnchantment.php │ ├── LureEnchantment.php │ ├── MendingEnchantment.php │ ├── MultiShotEnchantment.php │ ├── PiercingEnchantment.php │ ├── PowerEnchantment.php │ ├── ProjectileProtectionEnchantment.php │ ├── ProtectionEnchantment.php │ ├── PunchEnchantment.php │ ├── QuickChargeEnchantment.php │ ├── RespirationEnchantment.php │ ├── RiptideEnchantment.php │ ├── SharpnessEnchantment.php │ ├── SilkTouchEnchantment.php │ ├── SmiteEnchantment.php │ ├── SoulSpeedEnchantment.php │ ├── ThornEnchantment.php │ ├── UnbreakingEnchantment.php │ └── VanishingEnchantment.php ├── entities ├── EntityManager.php ├── VanillaEntity.php ├── animation │ └── ChargedCrossbowAnimation.php ├── boss │ ├── EnderDragonEntity.php │ └── WitherEntity.php ├── monster │ ├── BlazeEntity.php │ ├── CreeperEntity.php │ ├── DrownedEntity.php │ ├── ElderGuardianEntity.php │ ├── EndermiteEntity.php │ ├── EvocationIllagerEntity.php │ ├── GhastEntity.php │ ├── GuardianEntity.php │ ├── HoglinEntity.php │ ├── HuskEntity.php │ ├── MagmaCubeEntity.php │ ├── PhantomEntity.php │ ├── PiglinBruteEntity.php │ ├── PillagerEntity.php │ ├── RavagerEntity.php │ ├── SilverFishEntity.php │ ├── SkeletonEntity.php │ ├── SlimeEntity.php │ ├── StrayEntity.php │ ├── VexEntity.php │ ├── VindicatorEntity.php │ ├── WitchEntity.php │ ├── WitherSkeletonEntity.php │ ├── ZoglinEntity.php │ ├── ZombieEntity.php │ └── ZombieVillagerEntity.php ├── neutral │ ├── BeeEntity.php │ ├── CaveSpiderEntity.php │ ├── DolphinEntity.php │ ├── EndermanEntity.php │ ├── GoatEntity.php │ ├── IronGolemEntity.php │ ├── LlamaEntity.php │ ├── PandaEntity.php │ ├── PiglinEntity.php │ ├── PolarBearEntity.php │ ├── PufferfishEntity.php │ ├── SpiderEntity.php │ ├── WolfEntity.php │ └── ZombiePigmanEntity.php ├── object │ ├── AreaEffectCloudEntity.php │ ├── ArmorStandEntity.php │ ├── BoatEntity.php │ ├── ChestMinecartEntity.php │ ├── CommandBlockMinecartEntity.php │ ├── EnderCrystalEntity.php │ ├── EnderEyeEntity.php │ ├── FireworkRocketEntity.php │ ├── HopperMinecartEntity.php │ ├── LightningBoltEntity.php │ ├── MinecartEntity.php │ └── TNTMinecartEntity.php ├── passive │ ├── AxolotlEntity.php │ ├── BatEntity.php │ ├── CatEntity.php │ ├── ChickenEntity.php │ ├── CowEntity.php │ ├── DonkeyEntity.php │ ├── FishEntity.php │ ├── FoxEntity.php │ ├── GlowSquidEntity.php │ ├── HorseEntity.php │ ├── MooshroomEntity.php │ ├── MuleEntity.php │ ├── OcelotEntity.php │ ├── ParrotEntity.php │ ├── PigEntity.php │ ├── RabbitEntity.php │ ├── SheepEntity.php │ ├── ShulkerEntity.php │ ├── SkeletonHorseEntity.php │ ├── SnowGolemEntity.php │ ├── SquidEntity.php │ ├── StriderEntity.php │ ├── TropicalfishEntity.php │ ├── TurtleEntity.php │ ├── VillagerEntity.php │ ├── WanderingTraderEntity.php │ └── ZombieHorseEntity.php ├── projectile │ ├── ArrowEntity.php │ ├── DragonFireballEntity.php │ ├── FireballEntity.php │ ├── FishingHookEntity.php │ ├── LingeringPotionEntity.php │ ├── LlamaSpitEntity.php │ ├── ShulkerBulletEntity.php │ ├── SmallFireballEntity.php │ ├── TridentEntity.php │ ├── WitherSkullDangerousEntity.php │ └── WitherSkullEntity.php └── utils │ ├── EntityClassification.php │ ├── EntityCustomRegisterClosure.php │ ├── EntityCustomSaveNames.php │ ├── EntityInfo.php │ ├── EntityInteractResult.php │ ├── EntityInteractable.php │ ├── EntityRidable.php │ ├── EntityRidableTrait.php │ ├── ItemHelper.php │ └── villager │ ├── VillagerOffer.php │ ├── VillagerOffersMap.php │ ├── VillagerProfession.php │ └── professions │ ├── ArmorerProfession.php │ ├── ButcherProfession.php │ ├── CartographerProfession.php │ ├── ClericProfession.php │ ├── FarmerProfession.php │ ├── FishermanProfession.php │ ├── FletcherProfession.php │ ├── LeatherworkerProfession.php │ ├── LibrarianProfession.php │ ├── MasonProfession.php │ ├── NitwitProfession.php │ ├── ShepherdProfession.php │ ├── ToolsmithProfession.php │ ├── UnemployedProfession.php │ └── WeaponsmithProfession.php ├── event ├── entity │ ├── EntityCrossbowLaunchEvent.php │ └── EntityCrossbowLoadedEvent.php ├── inventory │ ├── BeaconPaymentEvent.php │ ├── EnchantItemEvent.php │ ├── RepairItemEvent.php │ ├── TradeItemEvent.php │ ├── UpgradeItemEvent.php │ └── itemstack │ │ ├── CraftItemStackEvent.php │ │ ├── CreativeCreateItemStackEvent.php │ │ ├── DestroyItemStackEvent.php │ │ ├── DropItemStackEvent.php │ │ ├── ItemStackRequestEvent.php │ │ ├── MoveItemStackEvent.php │ │ └── SwapItemStackEvent.php └── player │ └── PlayerEntityPickEvent.php ├── inventories ├── FakeBlockInventory.php ├── InventoryManager.php ├── recipe │ ├── RecipeInfo.php │ └── RecipesMap.php └── types │ ├── AnvilInventory.php │ ├── BeaconInventory.php │ ├── EnchantInventory.php │ ├── HopperInventory.php │ ├── RecipeInventory.php │ ├── SmithingInventory.php │ ├── StoneCutterInventory.php │ └── TradeInventory.php ├── items ├── ItemManager.php ├── LegacyItemIds.php ├── types │ ├── ArmorStandItem.php │ ├── CrossbowItem.php │ ├── ElytraItem.php │ ├── EnchantedBookItem.php │ ├── EndCrystalItem.php │ ├── FireChargeItem.php │ ├── FireworkRocketItem.php │ ├── HoneyBottleItem.php │ ├── HorseArmorItem.php │ ├── NameTagItem.php │ ├── SaddleItem.php │ ├── ShieldItem.php │ ├── SuspiciousStewItem.php │ └── netherite │ │ ├── NetheriteAxe.php │ │ ├── NetheriteBoots.php │ │ ├── NetheriteChestplate.php │ │ ├── NetheriteHelmet.php │ │ ├── NetheriteHoe.php │ │ ├── NetheriteLeggings.php │ │ ├── NetheritePickaxe.php │ │ ├── NetheriteShovel.php │ │ └── NetheriteSword.php └── utils │ └── RecipeItemTrait.php ├── listeners ├── ListenerManager.php └── types │ ├── BlockListener.php │ ├── EntityListener.php │ ├── PacketListener.php │ ├── PlayerListener.php │ └── WorldListener.php ├── network ├── NetworkManager.php ├── handler │ ├── InGamePacketHandlerX.php │ ├── ItemStackRequestHandler.php │ └── ItemStackTranslator.php └── types │ └── ItemStackInfo.php ├── resources ├── block_id_map.json ├── item_id_map.json ├── recipes │ └── smithing_table.json └── trades │ ├── armorer_trades.json │ ├── butcher_trades.json │ ├── cartographer_trades.json │ ├── cleric_trades.json │ ├── farmer_trades.json │ ├── fisherman_trades.json │ ├── fletcher_trades.json │ ├── leather_worker_trades.json │ ├── librarian_trades.json │ ├── shepherd_trades.json │ ├── stone_mason_trades.json │ ├── tool_smith_trades.json │ ├── wandering_trader_trades.json │ └── weapon_smith_trades.json ├── session ├── Session.php └── SessionManager.php ├── utils ├── ContainerTrait.php ├── Utils.php ├── instances │ └── InteractButtonResult.php └── item │ ├── HeldItemChangeTrait.php │ ├── InteractButtonItemTrait.php │ ├── NonAutomaticCallItemTrait.php │ ├── NonCreativeItemTrait.php │ └── NonOverwriteItemTrait.php └── world ├── WorldManager.php ├── gamerule ├── GameRule.php ├── GameRuleManager.php └── types │ ├── DoDayLightCycleRule.php │ └── DoWeatherCycleRule.php ├── sounds ├── BellSound.php ├── ComposterEmptySound.php ├── ComposterFillSound.php ├── ComposterFillSuccessSound.php ├── ComposterReadySound.php ├── SaddledSound.php └── ShieldBlockSound.php └── weather ├── Weather.php └── WeatherManager.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/.poggit.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/features/block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/resources/features/block.yml -------------------------------------------------------------------------------- /resources/features/command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/resources/features/command.yml -------------------------------------------------------------------------------- /resources/features/enchantment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/resources/features/enchantment.yml -------------------------------------------------------------------------------- /resources/features/item.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/resources/features/item.yml -------------------------------------------------------------------------------- /resources/features/mob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/resources/features/mob.yml -------------------------------------------------------------------------------- /resources/setting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/resources/setting.yml -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/VanillaX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/VanillaX.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/BlockIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/BlockIds.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/BlockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/BlockManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/TileIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/TileIds.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/AnvilBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/AnvilBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/BeaconBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/BeaconBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/BellBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/BellBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/ChainBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/ChainBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/CommandBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/CommandBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/ComposerBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/ComposerBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/EnchantmentTableBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/EnchantmentTableBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/FireBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/FireBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/FlowerPotBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/FlowerPotBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/HangingRootsBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/HangingRootsBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/HopperBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/HopperBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/JukeboxBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/JukeboxBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/MobSpawnerBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/MobSpawnerBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/SeaLanternBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/SeaLanternBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/SkullBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/SkullBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/SmithingTableBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/SmithingTableBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/SpongeBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/SpongeBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/TwistingVinesBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/TwistingVinesBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/WarpedWartBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/WarpedWartBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/WeepingVinesBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/WeepingVinesBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/basalt/BasaltBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/basalt/BasaltBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/basalt/PolishedBasaltBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/basalt/PolishedBasaltBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/bee/BeeNestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/bee/BeeNestBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/bee/BeehiveBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/bee/BeehiveBlock.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/button/NewWoodenButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/button/NewWoodenButton.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/campfire/Campfire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/campfire/Campfire.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/crops/Melon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/crops/Melon.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/crops/Netherwart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/crops/Netherwart.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/fungus/Fungus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/fungus/Fungus.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/log/NewLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/log/NewLog.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/nylium/Nylium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/nylium/Nylium.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/block/slab/NewSlab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/block/slab/NewSlab.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/BeaconTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/BeaconTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/CommandBlockTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/CommandBlockTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/FlowerPotTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/FlowerPotTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/FurnaceTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/FurnaceTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/HopperTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/HopperTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/JukeboxTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/JukeboxTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/MobSpawnerTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/MobSpawnerTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/StructureBlockTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/StructureBlockTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/campfire/CampfireTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/campfire/CampfireTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/campfire/RegularCampfireTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/campfire/RegularCampfireTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/tile/campfire/SoulCampfireTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/tile/campfire/SoulCampfireTile.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/utils/AnyFacingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/utils/AnyFacingTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/utils/BlockFacingOppositeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/utils/BlockFacingOppositeTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/utils/CommandBlockType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/utils/CommandBlockType.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/utils/FacingPlayerHorizontallyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/utils/FacingPlayerHorizontallyTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/blocks/utils/FacingPlayerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/blocks/utils/FacingPlayerTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/Command.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/CommandManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/CommandManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/sender/CommandBlockSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/sender/CommandBlockSender.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/types/GameruleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/types/GameruleCommand.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/types/GiveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/types/GiveCommand.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/types/PlaySoundCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/types/PlaySoundCommand.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/types/StopSoundCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/types/StopSoundCommand.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/types/ToggleDownFallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/types/ToggleDownFallCommand.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/types/WeatherCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/types/WeatherCommand.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/utils/CommandArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/utils/CommandArgs.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/utils/CommandHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/utils/CommandHelper.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/utils/CommandOverload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/utils/CommandOverload.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/commands/utils/CommandTargetSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/commands/utils/CommandTargetSelector.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/Feature.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/Setting.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/SettingManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/SettingManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/features/BlockFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/features/BlockFeature.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/features/CommandFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/features/CommandFeature.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/features/EnchantmentFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/features/EnchantmentFeature.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/features/ItemFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/features/ItemFeature.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/configuration/features/MobFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/configuration/features/MobFeature.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/EnchantmentManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/EnchantmentManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/EnchantmentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/EnchantmentTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/ItemFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/ItemFlags.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/RarityCost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/RarityCost.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/VanillaEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/VanillaEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/AquaAffinityEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/AquaAffinityEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/BaneOfArthropodsEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/BaneOfArthropodsEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/BindingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/BindingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/BlastProtectionEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/BlastProtectionEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/ChannelingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/ChannelingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/DepthStriderEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/DepthStriderEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/EfficiencyEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/EfficiencyEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/FeatherFallingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/FeatherFallingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/FireAspectEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/FireAspectEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/FireProtectionEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/FireProtectionEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/FlameEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/FlameEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/FortuneEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/FortuneEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/FrostWalkerEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/FrostWalkerEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/ImpalingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/ImpalingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/InfinityEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/InfinityEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/KnockbackEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/KnockbackEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/LootingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/LootingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/LoyaltyEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/LoyaltyEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/LuckOfTheSeaEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/LuckOfTheSeaEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/LureEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/LureEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/MendingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/MendingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/MultiShotEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/MultiShotEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/PiercingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/PiercingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/PowerEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/PowerEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/ProjectileProtectionEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/ProjectileProtectionEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/ProtectionEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/ProtectionEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/PunchEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/PunchEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/QuickChargeEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/QuickChargeEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/RespirationEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/RespirationEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/RiptideEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/RiptideEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/SharpnessEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/SharpnessEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/SilkTouchEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/SilkTouchEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/SmiteEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/SmiteEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/SoulSpeedEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/SoulSpeedEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/ThornEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/ThornEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/UnbreakingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/UnbreakingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/enchantments/types/VanishingEnchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/enchantments/types/VanishingEnchantment.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/EntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/EntityManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/VanillaEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/VanillaEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/animation/ChargedCrossbowAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/animation/ChargedCrossbowAnimation.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/boss/EnderDragonEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/boss/EnderDragonEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/boss/WitherEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/boss/WitherEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/BlazeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/BlazeEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/CreeperEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/CreeperEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/DrownedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/DrownedEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/ElderGuardianEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/ElderGuardianEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/EndermiteEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/EndermiteEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/EvocationIllagerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/EvocationIllagerEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/GhastEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/GhastEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/GuardianEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/GuardianEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/HoglinEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/HoglinEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/HuskEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/HuskEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/MagmaCubeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/MagmaCubeEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/PhantomEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/PhantomEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/PiglinBruteEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/PiglinBruteEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/PillagerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/PillagerEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/RavagerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/RavagerEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/SilverFishEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/SilverFishEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/SkeletonEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/SkeletonEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/SlimeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/SlimeEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/StrayEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/StrayEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/VexEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/VexEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/VindicatorEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/VindicatorEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/WitchEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/WitchEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/WitherSkeletonEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/WitherSkeletonEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/ZoglinEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/ZoglinEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/ZombieEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/ZombieEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/monster/ZombieVillagerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/monster/ZombieVillagerEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/BeeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/BeeEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/CaveSpiderEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/CaveSpiderEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/DolphinEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/DolphinEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/EndermanEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/EndermanEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/GoatEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/GoatEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/IronGolemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/IronGolemEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/LlamaEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/LlamaEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/PandaEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/PandaEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/PiglinEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/PiglinEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/PolarBearEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/PolarBearEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/PufferfishEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/PufferfishEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/SpiderEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/SpiderEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/WolfEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/WolfEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/neutral/ZombiePigmanEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/neutral/ZombiePigmanEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/AreaEffectCloudEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/AreaEffectCloudEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/ArmorStandEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/ArmorStandEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/BoatEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/BoatEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/ChestMinecartEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/ChestMinecartEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/CommandBlockMinecartEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/CommandBlockMinecartEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/EnderCrystalEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/EnderCrystalEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/EnderEyeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/EnderEyeEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/FireworkRocketEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/FireworkRocketEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/HopperMinecartEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/HopperMinecartEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/LightningBoltEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/LightningBoltEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/MinecartEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/MinecartEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/object/TNTMinecartEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/object/TNTMinecartEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/AxolotlEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/AxolotlEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/BatEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/BatEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/CatEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/CatEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/ChickenEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/ChickenEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/CowEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/CowEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/DonkeyEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/DonkeyEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/FishEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/FishEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/FoxEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/FoxEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/GlowSquidEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/GlowSquidEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/HorseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/HorseEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/MooshroomEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/MooshroomEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/MuleEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/MuleEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/OcelotEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/OcelotEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/ParrotEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/ParrotEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/PigEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/PigEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/RabbitEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/RabbitEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/SheepEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/SheepEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/ShulkerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/ShulkerEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/SkeletonHorseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/SkeletonHorseEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/SnowGolemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/SnowGolemEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/SquidEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/SquidEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/StriderEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/StriderEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/TropicalfishEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/TropicalfishEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/TurtleEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/TurtleEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/VillagerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/VillagerEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/WanderingTraderEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/WanderingTraderEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/passive/ZombieHorseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/passive/ZombieHorseEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/ArrowEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/ArrowEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/DragonFireballEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/DragonFireballEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/FireballEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/FireballEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/FishingHookEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/FishingHookEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/LingeringPotionEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/LingeringPotionEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/LlamaSpitEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/LlamaSpitEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/ShulkerBulletEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/ShulkerBulletEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/SmallFireballEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/SmallFireballEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/TridentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/TridentEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/WitherSkullDangerousEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/WitherSkullDangerousEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/projectile/WitherSkullEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/projectile/WitherSkullEntity.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityClassification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityClassification.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityCustomRegisterClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityCustomRegisterClosure.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityCustomSaveNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityCustomSaveNames.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityInfo.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityInteractResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityInteractResult.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityInteractable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityInteractable.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityRidable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityRidable.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/EntityRidableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/EntityRidableTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/ItemHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/ItemHelper.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/VillagerOffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/VillagerOffer.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/VillagerOffersMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/VillagerOffersMap.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/VillagerProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/VillagerProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/ArmorerProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/ArmorerProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/ButcherProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/ButcherProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/CartographerProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/CartographerProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/ClericProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/ClericProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/FarmerProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/FarmerProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/FishermanProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/FishermanProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/FletcherProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/FletcherProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/LeatherworkerProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/LeatherworkerProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/LibrarianProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/LibrarianProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/MasonProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/MasonProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/NitwitProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/NitwitProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/ShepherdProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/ShepherdProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/ToolsmithProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/ToolsmithProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/UnemployedProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/UnemployedProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/entities/utils/villager/professions/WeaponsmithProfession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/entities/utils/villager/professions/WeaponsmithProfession.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/entity/EntityCrossbowLaunchEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/entity/EntityCrossbowLaunchEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/entity/EntityCrossbowLoadedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/entity/EntityCrossbowLoadedEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/BeaconPaymentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/BeaconPaymentEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/EnchantItemEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/EnchantItemEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/RepairItemEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/RepairItemEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/TradeItemEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/TradeItemEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/UpgradeItemEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/UpgradeItemEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/itemstack/CraftItemStackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/itemstack/CraftItemStackEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/itemstack/CreativeCreateItemStackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/itemstack/CreativeCreateItemStackEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/itemstack/DestroyItemStackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/itemstack/DestroyItemStackEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/itemstack/DropItemStackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/itemstack/DropItemStackEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/itemstack/ItemStackRequestEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/itemstack/ItemStackRequestEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/itemstack/MoveItemStackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/itemstack/MoveItemStackEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/inventory/itemstack/SwapItemStackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/inventory/itemstack/SwapItemStackEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/event/player/PlayerEntityPickEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/event/player/PlayerEntityPickEvent.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/FakeBlockInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/FakeBlockInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/InventoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/InventoryManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/recipe/RecipeInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/recipe/RecipeInfo.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/recipe/RecipesMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/recipe/RecipesMap.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/AnvilInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/AnvilInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/BeaconInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/BeaconInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/EnchantInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/EnchantInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/HopperInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/HopperInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/RecipeInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/RecipeInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/SmithingInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/SmithingInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/StoneCutterInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/StoneCutterInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/inventories/types/TradeInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/inventories/types/TradeInventory.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/ItemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/ItemManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/LegacyItemIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/LegacyItemIds.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/ArmorStandItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/ArmorStandItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/CrossbowItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/CrossbowItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/ElytraItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/ElytraItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/EnchantedBookItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/EnchantedBookItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/EndCrystalItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/EndCrystalItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/FireChargeItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/FireChargeItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/FireworkRocketItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/FireworkRocketItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/HoneyBottleItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/HoneyBottleItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/HorseArmorItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/HorseArmorItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/NameTagItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/NameTagItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/SaddleItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/SaddleItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/ShieldItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/ShieldItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/SuspiciousStewItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/SuspiciousStewItem.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteAxe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteAxe.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteBoots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteBoots.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteChestplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteChestplate.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteHelmet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteHelmet.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteHoe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteHoe.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteLeggings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteLeggings.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheritePickaxe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheritePickaxe.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteShovel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteShovel.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/types/netherite/NetheriteSword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/types/netherite/NetheriteSword.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/items/utils/RecipeItemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/items/utils/RecipeItemTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/listeners/ListenerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/listeners/ListenerManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/listeners/types/BlockListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/listeners/types/BlockListener.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/listeners/types/EntityListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/listeners/types/EntityListener.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/listeners/types/PacketListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/listeners/types/PacketListener.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/listeners/types/PlayerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/listeners/types/PlayerListener.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/listeners/types/WorldListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/listeners/types/WorldListener.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/network/NetworkManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/network/NetworkManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/network/handler/InGamePacketHandlerX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/network/handler/InGamePacketHandlerX.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/network/handler/ItemStackRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/network/handler/ItemStackRequestHandler.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/network/handler/ItemStackTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/network/handler/ItemStackTranslator.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/network/types/ItemStackInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/network/types/ItemStackInfo.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/block_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/block_id_map.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/item_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/item_id_map.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/recipes/smithing_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/recipes/smithing_table.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/armorer_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/armorer_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/butcher_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/butcher_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/cartographer_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/cartographer_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/cleric_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/cleric_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/farmer_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/farmer_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/fisherman_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/fisherman_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/fletcher_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/fletcher_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/leather_worker_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/leather_worker_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/librarian_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/librarian_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/shepherd_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/shepherd_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/stone_mason_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/stone_mason_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/tool_smith_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/tool_smith_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/wandering_trader_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/wandering_trader_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/resources/trades/weapon_smith_trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/resources/trades/weapon_smith_trades.json -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/session/Session.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/session/SessionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/session/SessionManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/ContainerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/ContainerTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/Utils.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/instances/InteractButtonResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/instances/InteractButtonResult.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/item/HeldItemChangeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/item/HeldItemChangeTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/item/InteractButtonItemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/item/InteractButtonItemTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/item/NonAutomaticCallItemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/item/NonAutomaticCallItemTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/item/NonCreativeItemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/item/NonCreativeItemTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/utils/item/NonOverwriteItemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/utils/item/NonOverwriteItemTrait.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/WorldManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/WorldManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/gamerule/GameRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/gamerule/GameRule.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/gamerule/GameRuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/gamerule/GameRuleManager.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/gamerule/types/DoDayLightCycleRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/gamerule/types/DoDayLightCycleRule.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/gamerule/types/DoWeatherCycleRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/gamerule/types/DoWeatherCycleRule.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/sounds/BellSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/sounds/BellSound.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/sounds/ComposterEmptySound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/sounds/ComposterEmptySound.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/sounds/ComposterFillSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/sounds/ComposterFillSound.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/sounds/ComposterFillSuccessSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/sounds/ComposterFillSuccessSound.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/sounds/ComposterReadySound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/sounds/ComposterReadySound.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/sounds/SaddledSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/sounds/SaddledSound.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/sounds/ShieldBlockSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/sounds/ShieldBlockSound.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/weather/Weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/weather/Weather.php -------------------------------------------------------------------------------- /src/CLADevs/VanillaX/world/weather/WeatherManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLADevs/VanillaX/HEAD/src/CLADevs/VanillaX/world/weather/WeatherManager.php --------------------------------------------------------------------------------