├── .poggit.yml ├── LICENSE ├── README.md ├── plugin.yml ├── resources ├── config.yml └── world.zip └── src └── alvin0319 └── GodWar ├── EventListener.php ├── GodWar.php ├── Room.php ├── command └── GodWarCommand.php ├── entity ├── Fireball.php └── TridentEntity.php ├── event ├── GameEndEvent.php └── GameStartEvent.php ├── form ├── GodWarMainForm.php └── HowToPlayForm.php ├── job ├── Ares.php ├── Gaia.php ├── Helios.php ├── Hypnos.php ├── Job.php ├── Poseidon.php └── Zeus.php ├── result └── GameResult.php └── task ├── FlyTask.php ├── GameTickTask.php └── SleepTask.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/world.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/resources/world.zip -------------------------------------------------------------------------------- /src/alvin0319/GodWar/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/EventListener.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/GodWar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/GodWar.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/Room.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/command/GodWarCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/command/GodWarCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/entity/Fireball.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/entity/Fireball.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/entity/TridentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/entity/TridentEntity.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/event/GameEndEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/event/GameEndEvent.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/event/GameStartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/event/GameStartEvent.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/form/GodWarMainForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/form/GodWarMainForm.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/form/HowToPlayForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/form/HowToPlayForm.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/job/Ares.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/job/Ares.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/job/Gaia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/job/Gaia.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/job/Helios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/job/Helios.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/job/Hypnos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/job/Hypnos.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/job/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/job/Job.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/job/Poseidon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/job/Poseidon.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/job/Zeus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/job/Zeus.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/result/GameResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/result/GameResult.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/task/FlyTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/task/FlyTask.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/task/GameTickTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/task/GameTickTask.php -------------------------------------------------------------------------------- /src/alvin0319/GodWar/task/SleepTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin0319/GodWar/HEAD/src/alvin0319/GodWar/task/SleepTask.php --------------------------------------------------------------------------------