├── .gitignore ├── .idea ├── .name ├── Slapper.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── Slapper ├── plugin.yml └── src │ └── slapper │ ├── Main.php │ └── entities │ ├── SlapperBat.php │ ├── SlapperBlaze.php │ ├── SlapperCaveSpider.php │ ├── SlapperChicken.php │ ├── SlapperCow.php │ ├── SlapperCreeper.php │ ├── SlapperDonkey.php │ ├── SlapperEnderman.php │ ├── SlapperEntity.php │ ├── SlapperGhast.php │ ├── SlapperHorse.php │ ├── SlapperHuman.php │ ├── SlapperHusk.php │ ├── SlapperIronGolem.php │ ├── SlapperLavaSlime.php │ ├── SlapperMule.php │ ├── SlapperMushroomCow.php │ ├── SlapperOcelot.php │ ├── SlapperPig.php │ ├── SlapperPigZombie.php │ ├── SlapperRabbit.php │ ├── SlapperSheep.php │ ├── SlapperSilverfish.php │ ├── SlapperSkeleton.php │ ├── SlapperSkeletonHorse.php │ ├── SlapperSlime.php │ ├── SlapperSnowman.php │ ├── SlapperSpider.php │ ├── SlapperSquid.php │ ├── SlapperStray.php │ ├── SlapperVillager.php │ ├── SlapperWitch.php │ ├── SlapperWitherSkeleton.php │ ├── SlapperWolf.php │ ├── SlapperZombie.php │ ├── SlapperZombieHorse.php │ ├── SlapperZombieVillager.php │ └── other │ ├── SlapperBoat.php │ ├── SlapperFallingSand.php │ ├── SlapperMinecart.php │ └── SlapperPrimedTNT.php └── Slapper_v1.2.9.7.phar /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Slapper -------------------------------------------------------------------------------- /.idea/Slapper.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/.idea/Slapper.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/README.md -------------------------------------------------------------------------------- /Slapper/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/plugin.yml -------------------------------------------------------------------------------- /Slapper/src/slapper/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/Main.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperBat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperBat.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperBlaze.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperBlaze.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperCaveSpider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperCaveSpider.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperChicken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperChicken.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperCow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperCow.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperCreeper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperCreeper.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperDonkey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperDonkey.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperEnderman.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperEnderman.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperEntity.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperGhast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperGhast.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperHorse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperHorse.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperHuman.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperHuman.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperHusk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperHusk.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperIronGolem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperIronGolem.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperLavaSlime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperLavaSlime.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperMule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperMule.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperMushroomCow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperMushroomCow.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperOcelot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperOcelot.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperPig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperPig.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperPigZombie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperPigZombie.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperRabbit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperRabbit.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSheep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSheep.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSilverfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSilverfish.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSkeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSkeleton.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSkeletonHorse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSkeletonHorse.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSlime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSlime.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSnowman.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSnowman.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSpider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSpider.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperSquid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperSquid.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperStray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperStray.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperVillager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperVillager.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperWitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperWitch.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperWitherSkeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperWitherSkeleton.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperWolf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperWolf.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperZombie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperZombie.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperZombieHorse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperZombieHorse.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/SlapperZombieVillager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/SlapperZombieVillager.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/other/SlapperBoat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/other/SlapperBoat.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/other/SlapperFallingSand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/other/SlapperFallingSand.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/other/SlapperMinecart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/other/SlapperMinecart.php -------------------------------------------------------------------------------- /Slapper/src/slapper/entities/other/SlapperPrimedTNT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper/src/slapper/entities/other/SlapperPrimedTNT.php -------------------------------------------------------------------------------- /Slapper_v1.2.9.7.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMPlugins/Slapper-LEGACY/HEAD/Slapper_v1.2.9.7.phar --------------------------------------------------------------------------------