├── .editorconfig ├── .env.docker.example ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── ManageInventoryController.php │ │ │ ├── ManageStoreController.php │ │ │ └── TradeController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── BattleController.php │ │ ├── CharacterBattleController.php │ │ ├── CharacterController.php │ │ ├── CharacterMessageController.php │ │ ├── CharacterStoreController.php │ │ ├── Controller.php │ │ ├── InventoryController.php │ │ ├── ItemCreateController.php │ │ ├── LocationController.php │ │ ├── MessageController.php │ │ ├── OwnStoreController.php │ │ └── ProfilePictureController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CanAttack.php │ │ ├── CanMoveToLocation.php │ │ ├── EncryptCookies.php │ │ ├── HasCharacter.php │ │ ├── IsAdmin.php │ │ ├── IsCharacterLocation.php │ │ ├── NoCharacterYet.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── UpdateLastUserActivity.php │ │ ├── UserOwnsCharacter.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── CreateCharacterRequest.php │ │ ├── CreateItemRequest.php │ │ ├── UpdateCharacterAttributeRequest.php │ │ └── UploadImageRequest.php │ └── ViewComposers │ │ ├── BattlesComposer.php │ │ ├── CharacterGeneralInfoComposer.php │ │ ├── CharacterMessagesComposer.php │ │ └── MessagesComposer.php ├── Models │ ├── Battle.php │ ├── BattleRound.php │ ├── BattleTurn.php │ ├── Character.php │ ├── Image.php │ ├── Inventory.php │ ├── Item.php │ ├── ItemPrototype.php │ ├── Location.php │ ├── Message.php │ ├── Race.php │ ├── Store.php │ └── User.php ├── Modules │ ├── Battle │ │ ├── Application │ │ │ └── Contracts │ │ │ │ └── BattleRepositoryInterface.php │ │ ├── Domain │ │ │ ├── Battle.php │ │ │ ├── BattleId.php │ │ │ ├── BattleRound.php │ │ │ ├── BattleRounds.php │ │ │ ├── BattleTurn.php │ │ │ ├── BattleTurnResult.php │ │ │ └── BattleTurns.php │ │ └── Infrastructure │ │ │ └── Repositories │ │ │ └── BattleRepository.php │ ├── Character │ │ ├── Application │ │ │ ├── Commands │ │ │ │ ├── AttackCharacterCommand.php │ │ │ │ ├── CreateCharacterCommand.php │ │ │ │ ├── IncreaseAttributeCommand.php │ │ │ │ └── MoveCharacterCommand.php │ │ │ ├── Contracts │ │ │ │ ├── CharacterRepositoryInterface.php │ │ │ │ ├── LocationRepositoryInterface.php │ │ │ │ └── RaceRepositoryInterface.php │ │ │ ├── Factories │ │ │ │ └── CharacterFactory.php │ │ │ └── Services │ │ │ │ └── CharacterService.php │ │ ├── Domain │ │ │ ├── Attributes.php │ │ │ ├── Character.php │ │ │ ├── CharacterId.php │ │ │ ├── CharacterType.php │ │ │ ├── Gender.php │ │ │ ├── HitPoints.php │ │ │ ├── LocationId.php │ │ │ ├── Name.php │ │ │ ├── Race.php │ │ │ ├── Reputation.php │ │ │ └── Statistics.php │ │ ├── Infrastructure │ │ │ ├── ReconstitutionFactories │ │ │ │ └── CharacterReconstitutionFactory.php │ │ │ └── Repositories │ │ │ │ ├── CharacterRepository.php │ │ │ │ ├── LocationRepository.php │ │ │ │ └── RaceRepository.php │ │ └── UI │ │ │ └── Http │ │ │ └── CommandMappers │ │ │ ├── AttackCharacterCommandMapper.php │ │ │ ├── CreateCharacterCommandMapper.php │ │ │ ├── IncreaseAttributeCommandMapper.php │ │ │ └── MoveCharacterCommandMapper.php │ ├── Equipment │ │ ├── Application │ │ │ ├── Commands │ │ │ │ ├── AddItemToInventoryCommand.php │ │ │ │ ├── CreateInventoryCommand.php │ │ │ │ ├── CreateItemCommand.php │ │ │ │ └── EquipItemCommand.php │ │ │ ├── Contracts │ │ │ │ ├── InventoryRepositoryInterface.php │ │ │ │ ├── ItemPrototypeRepositoryInterface.php │ │ │ │ └── ItemRepositoryInterface.php │ │ │ ├── Factories │ │ │ │ └── ItemFactory.php │ │ │ └── Services │ │ │ │ ├── InventoryService.php │ │ │ │ └── ItemService.php │ │ ├── Domain │ │ │ ├── Inventory.php │ │ │ ├── InventoryId.php │ │ │ ├── InventoryItem.php │ │ │ ├── InventorySlot.php │ │ │ ├── Item.php │ │ │ ├── ItemEffect.php │ │ │ ├── ItemId.php │ │ │ ├── ItemPrice.php │ │ │ ├── ItemPrototype.php │ │ │ ├── ItemPrototypeId.php │ │ │ ├── ItemStatus.php │ │ │ ├── ItemType.php │ │ │ └── Money.php │ │ ├── Infrastructure │ │ │ ├── ReconstitutionFactories │ │ │ │ ├── InventoryItemReconstitutionFactory.php │ │ │ │ ├── InventoryReconstitutionFactory.php │ │ │ │ ├── ItemPrototypeReconstitutionFactory.php │ │ │ │ └── ItemReconstitutionFactory.php │ │ │ └── Repositories │ │ │ │ ├── InventoryRepository.php │ │ │ │ ├── ItemPrototypeRepository.php │ │ │ │ └── ItemRepository.php │ │ └── UI │ │ │ └── Http │ │ │ └── CommandMappers │ │ │ ├── AddItemToInventoryCommandMapper.php │ │ │ ├── CreateItemCommandMapper.php │ │ │ └── EquipItemCommandMapper.php │ ├── Generic │ │ └── Domain │ │ │ ├── BaseId.php │ │ │ ├── Container.php │ │ │ ├── Container │ │ │ ├── ContainerIsFullException.php │ │ │ ├── ContainerSlotIsTakenException.php │ │ │ ├── ContainerSlotOutOfRangeException.php │ │ │ ├── InvalidMoneyValue.php │ │ │ ├── ItemNotInContainer.php │ │ │ ├── NotEnoughMoneyToRemove.php │ │ │ └── NotEnoughSpaceInContainerException.php │ │ │ └── ContainerType.php │ ├── Image │ │ ├── Application │ │ │ ├── Commands │ │ │ │ └── AddImageCommand.php │ │ │ ├── Contracts │ │ │ │ └── ImageRepositoryInterface.php │ │ │ ├── Factories │ │ │ │ └── ImageFactory.php │ │ │ └── Services │ │ │ │ └── ProfilePictureService.php │ │ ├── Domain │ │ │ ├── Image.php │ │ │ ├── ImageFile.php │ │ │ └── ImageId.php │ │ ├── Infrastructure │ │ │ └── Repositories │ │ │ │ └── ImageRepository.php │ │ └── UI │ │ │ └── Http │ │ │ └── CommandMappers │ │ │ └── AddImageCommandMapper.php │ ├── Level │ │ ├── Application │ │ │ └── Services │ │ │ │ └── LevelService.php │ │ └── Domain │ │ │ └── Level.php │ ├── Message │ │ ├── Application │ │ │ ├── Commands │ │ │ │ └── SendMessageCommand.php │ │ │ ├── Contracts │ │ │ │ └── MessageRepositoryInterface.php │ │ │ └── Services │ │ │ │ └── MessageService.php │ │ ├── Domain │ │ │ ├── Message.php │ │ │ └── MessageId.php │ │ ├── Infrastructure │ │ │ └── Repositories │ │ │ │ └── MessageRepository.php │ │ └── UI │ │ │ └── Http │ │ │ └── CommandMappers │ │ │ └── SendMessageCommandMapper.php │ ├── Trade │ │ ├── Application │ │ │ ├── Commands │ │ │ │ ├── AddItemToStoreCommand.php │ │ │ │ ├── BuyItemCommand.php │ │ │ │ ├── ChangeItemPriceCommand.php │ │ │ │ ├── CreateStoreCommand.php │ │ │ │ ├── MoveItemToContainerCommand.php │ │ │ │ ├── MoveMoneyToContainerCommand.php │ │ │ │ └── SellItemCommand.php │ │ │ ├── Contracts │ │ │ │ └── StoreRepositoryInterface.php │ │ │ └── Services │ │ │ │ ├── CreateStoreService.php │ │ │ │ ├── ManageStoreService.php │ │ │ │ └── TradeService.php │ │ ├── Domain │ │ │ ├── Exception │ │ │ │ └── SellPriceIsTooHigh.php │ │ │ ├── Store.php │ │ │ ├── Store │ │ │ │ └── StoreDoesNotBuyItems.php │ │ │ ├── StoreId.php │ │ │ └── StoreType.php │ │ ├── Infrastructure │ │ │ ├── ReconstitutionFactories │ │ │ │ └── StoreReconstitutionFactory.php │ │ │ └── Repositories │ │ │ │ └── StoreRepository.php │ │ └── UI │ │ │ └── Http │ │ │ └── CommandMappers │ │ │ ├── BuyItemCommandMapper.php │ │ │ ├── ChangeItemPriceCommandMapper.php │ │ │ ├── MoveItemToContainerCommandMapper.php │ │ │ ├── MoveMoneyToContainerCommandMapper.php │ │ │ └── SellItemCommandMapper.php │ └── User │ │ ├── Application │ │ ├── Commands │ │ │ └── CreateUserCommand.php │ │ └── Services │ │ │ └── UserService.php │ │ └── UI │ │ └── Http │ │ └── CommandMappers │ │ └── CreateUserCommandMapper.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── ViewComposerServiceProvider.php ├── Support │ └── helpers.php └── Traits │ ├── GeneratesUuid.php │ ├── ThrowsDice.php │ └── UsesStringId.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── hooks.php ├── image.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── view.php ├── voyager-hooks.php └── voyager.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_05_14_055744_create_locations_table.php │ ├── 2017_05_14_055823_create_races_table.php │ ├── 2017_05_14_055844_create_characters_table.php │ ├── 2017_05_16_144929_create_battles_table.php │ ├── 2017_05_16_181330_create_battle_rounds_table.php │ ├── 2017_05_16_181844_create_battle_turns_table.php │ ├── 2017_11_26_013050_add_user_role_relationship.php │ ├── 2018_06_24_132346_create_messages_table.php │ ├── 2018_11_19_202701_create_images.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_08_31_182034_create_items_table.php │ ├── 2020_02_29_205331_create_inventories.php │ ├── 2020_02_29_205957_create_inventory_item.php │ ├── 2020_03_30_133100_create_stores.php │ └── 2020_03_30_133448_create_store_item.php └── seeders │ ├── CharacterSeeder.php │ ├── DataRowsTableSeeder.php │ ├── DataTypesTableSeeder.php │ ├── DatabaseSeeder.php │ ├── MenuItemsTableSeeder.php │ ├── MenusTableSeeder.php │ ├── PermissionRoleTableSeeder.php │ ├── PermissionsTableSeeder.php │ ├── RolesTableSeeder.php │ ├── SettingsTableSeeder.php │ ├── TranslationsTableSeeder.php │ ├── UserSeeder.php │ ├── VoyagerDatabaseSeeder.php │ └── VoyagerDummyDatabaseSeeder.php ├── docker-compose.yml ├── docker ├── cron │ ├── Dockerfile │ └── scheduler ├── mysql │ └── my.cnf ├── nginx │ └── conf.d │ │ └── app.conf └── php │ ├── Dockerfile │ ├── application-init.sh │ └── local.ini ├── docs ├── docker_environment.md └── local_environment.md ├── hooks └── hooks.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── images │ ├── equipment │ │ ├── body_armor │ │ │ └── linen_shirt.png │ │ ├── head_gear │ │ │ └── closed_steel_helmet.png │ │ ├── main_hand │ │ │ ├── 0zweihander.png │ │ │ ├── 1club.png │ │ │ ├── 2reinforced_club.png │ │ │ ├── 3mace.png │ │ │ ├── 4smith_hammer.png │ │ │ ├── 5warhammer.png │ │ │ ├── 6maul.png │ │ │ ├── 7handaxe.png │ │ │ ├── 8infantry_axe.png │ │ │ └── 9battle_axe.png │ │ └── off_hand │ │ │ └── buckler.png │ ├── locations │ │ ├── Blacksmith-300px.png │ │ ├── Blacksmith-800px.png │ │ ├── Fortress-300px.png │ │ ├── Fortress-800px.png │ │ ├── Inn-300px.png │ │ ├── Inn-800px.png │ │ ├── Townhall-300px.png │ │ └── Townhall-800px.png │ ├── races │ │ ├── dwarf-female.png │ │ ├── dwarf-male.png │ │ ├── elf-female.png │ │ ├── elf-male.png │ │ ├── human-female.png │ │ ├── human-male.png │ │ ├── orc-female.png │ │ └── orc-male.png │ └── village.png ├── index.php ├── js │ ├── character-create.js │ ├── character-update.js │ └── vcountdown.js ├── robots.txt ├── svg │ └── avatar.svg └── web.config ├── readme.md ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ ├── FlashMessages.vue │ │ ├── InventoryManagement.vue │ │ ├── PopupModal.vue │ │ ├── StoreManagement.vue │ │ └── StoreTrade.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ ├── app.scss │ └── custom.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── base.blade.php │ ├── battle │ ├── partials │ │ └── no-battles.blade.php │ └── show.blade.php │ ├── character │ ├── battle │ │ └── index.blade.php │ ├── create.blade.php │ ├── inventory │ │ └── index.blade.php │ ├── message │ │ └── index.blade.php │ ├── partials │ │ ├── actions.blade.php │ │ ├── attributes.blade.php │ │ ├── character-display.blade.php │ │ ├── equipment-item-mutable.blade.php │ │ ├── equipment-item.blade.php │ │ ├── equipment-mutable.blade.php │ │ ├── equipment.blade.php │ │ ├── general.blade.php │ │ ├── inventory.blade.php │ │ └── statistics.blade.php │ └── show.blade.php │ ├── components │ ├── increment_attribute_button.blade.php │ └── short_character_description.blade.php │ ├── emails │ └── password.blade.php │ ├── errors │ └── 503.blade.php │ ├── location │ ├── partials │ │ ├── list-character.blade.php │ │ └── navigator.blade.php │ └── show.blade.php │ ├── message │ ├── index.blade.php │ └── partials │ │ ├── conversation-card.blade.php │ │ ├── conversation-message.blade.php │ │ ├── conversation.blade.php │ │ ├── my-message.blade.php │ │ ├── no-messages.blade.php │ │ └── others-message.blade.php │ ├── pages │ └── index.blade.php │ ├── partials │ ├── flash-messages.blade.php │ └── navbar.blade.php │ ├── trade │ ├── own_store │ │ └── index.blade.php │ └── store │ │ └── index.blade.php │ └── vendor │ ├── .gitkeep │ └── pagination │ ├── bootstrap-4.blade.php │ ├── default.blade.php │ ├── semantic-ui.blade.php │ ├── simple-bootstrap-4.blade.php │ └── simple-default.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── scheduler.bat ├── server.php ├── storage ├── app │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Browser │ ├── ExampleTest.php │ ├── Pages │ │ ├── HomePage.php │ │ └── Page.php │ ├── console │ │ └── .gitignore │ └── screenshots │ │ └── .gitignore ├── CreatesApplication.php ├── DuskTestCase.php ├── Feature │ ├── AttackTest.php │ ├── CharacterCreationTest.php │ └── ExampleTest.php ├── TestCase.php └── Unit │ ├── ExampleTest.php │ └── app │ └── Modules │ ├── Equipment │ ├── Application │ │ └── Services │ │ │ └── ItemServiceTest.php │ └── Domain │ │ └── InventoryTest.php │ └── Level │ ├── Application │ └── Services │ │ └── LevelServiceTest.php │ └── Domain │ └── Entities │ └── LevelTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.docker.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/.env.docker.example -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ManageInventoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Api/ManageInventoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ManageStoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Api/ManageStoreController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/TradeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Api/TradeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BattleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/BattleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CharacterBattleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/CharacterBattleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CharacterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/CharacterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CharacterMessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/CharacterMessageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CharacterStoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/CharacterStoreController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/InventoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/InventoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ItemCreateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/ItemCreateController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LocationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/LocationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/MessageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OwnStoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/OwnStoreController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfilePictureController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Controllers/ProfilePictureController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CanAttack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/CanAttack.php -------------------------------------------------------------------------------- /app/Http/Middleware/CanMoveToLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/CanMoveToLocation.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HasCharacter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/HasCharacter.php -------------------------------------------------------------------------------- /app/Http/Middleware/IsAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/IsAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/IsCharacterLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/IsCharacterLocation.php -------------------------------------------------------------------------------- /app/Http/Middleware/NoCharacterYet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/NoCharacterYet.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/UpdateLastUserActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/UpdateLastUserActivity.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserOwnsCharacter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/UserOwnsCharacter.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateCharacterRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Requests/CreateCharacterRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateItemRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Requests/CreateItemRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateCharacterAttributeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Requests/UpdateCharacterAttributeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UploadImageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/Requests/UploadImageRequest.php -------------------------------------------------------------------------------- /app/Http/ViewComposers/BattlesComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/ViewComposers/BattlesComposer.php -------------------------------------------------------------------------------- /app/Http/ViewComposers/CharacterGeneralInfoComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/ViewComposers/CharacterGeneralInfoComposer.php -------------------------------------------------------------------------------- /app/Http/ViewComposers/CharacterMessagesComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/ViewComposers/CharacterMessagesComposer.php -------------------------------------------------------------------------------- /app/Http/ViewComposers/MessagesComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Http/ViewComposers/MessagesComposer.php -------------------------------------------------------------------------------- /app/Models/Battle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Battle.php -------------------------------------------------------------------------------- /app/Models/BattleRound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/BattleRound.php -------------------------------------------------------------------------------- /app/Models/BattleTurn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/BattleTurn.php -------------------------------------------------------------------------------- /app/Models/Character.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Character.php -------------------------------------------------------------------------------- /app/Models/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Image.php -------------------------------------------------------------------------------- /app/Models/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Inventory.php -------------------------------------------------------------------------------- /app/Models/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Item.php -------------------------------------------------------------------------------- /app/Models/ItemPrototype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/ItemPrototype.php -------------------------------------------------------------------------------- /app/Models/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Location.php -------------------------------------------------------------------------------- /app/Models/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Message.php -------------------------------------------------------------------------------- /app/Models/Race.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Race.php -------------------------------------------------------------------------------- /app/Models/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/Store.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Modules/Battle/Application/Contracts/BattleRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Application/Contracts/BattleRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Battle/Domain/Battle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Domain/Battle.php -------------------------------------------------------------------------------- /app/Modules/Battle/Domain/BattleId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Domain/BattleId.php -------------------------------------------------------------------------------- /app/Modules/Battle/Domain/BattleRound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Domain/BattleRound.php -------------------------------------------------------------------------------- /app/Modules/Battle/Domain/BattleRounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Domain/BattleRounds.php -------------------------------------------------------------------------------- /app/Modules/Battle/Domain/BattleTurn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Domain/BattleTurn.php -------------------------------------------------------------------------------- /app/Modules/Battle/Domain/BattleTurnResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Domain/BattleTurnResult.php -------------------------------------------------------------------------------- /app/Modules/Battle/Domain/BattleTurns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Domain/BattleTurns.php -------------------------------------------------------------------------------- /app/Modules/Battle/Infrastructure/Repositories/BattleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Battle/Infrastructure/Repositories/BattleRepository.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Commands/AttackCharacterCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Commands/AttackCharacterCommand.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Commands/CreateCharacterCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Commands/CreateCharacterCommand.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Commands/IncreaseAttributeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Commands/IncreaseAttributeCommand.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Commands/MoveCharacterCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Commands/MoveCharacterCommand.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Contracts/CharacterRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Contracts/CharacterRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Contracts/LocationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Contracts/LocationRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Contracts/RaceRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Contracts/RaceRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Factories/CharacterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Factories/CharacterFactory.php -------------------------------------------------------------------------------- /app/Modules/Character/Application/Services/CharacterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Application/Services/CharacterService.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/Attributes.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/Character.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/Character.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/CharacterId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/CharacterId.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/CharacterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/CharacterType.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/Gender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/Gender.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/HitPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/HitPoints.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/LocationId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/LocationId.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/Name.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/Race.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/Race.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/Reputation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/Reputation.php -------------------------------------------------------------------------------- /app/Modules/Character/Domain/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Domain/Statistics.php -------------------------------------------------------------------------------- /app/Modules/Character/Infrastructure/ReconstitutionFactories/CharacterReconstitutionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Infrastructure/ReconstitutionFactories/CharacterReconstitutionFactory.php -------------------------------------------------------------------------------- /app/Modules/Character/Infrastructure/Repositories/CharacterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Infrastructure/Repositories/CharacterRepository.php -------------------------------------------------------------------------------- /app/Modules/Character/Infrastructure/Repositories/LocationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Infrastructure/Repositories/LocationRepository.php -------------------------------------------------------------------------------- /app/Modules/Character/Infrastructure/Repositories/RaceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/Infrastructure/Repositories/RaceRepository.php -------------------------------------------------------------------------------- /app/Modules/Character/UI/Http/CommandMappers/AttackCharacterCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/UI/Http/CommandMappers/AttackCharacterCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Character/UI/Http/CommandMappers/CreateCharacterCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/UI/Http/CommandMappers/CreateCharacterCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Character/UI/Http/CommandMappers/IncreaseAttributeCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/UI/Http/CommandMappers/IncreaseAttributeCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Character/UI/Http/CommandMappers/MoveCharacterCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Character/UI/Http/CommandMappers/MoveCharacterCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Commands/AddItemToInventoryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Commands/AddItemToInventoryCommand.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Commands/CreateInventoryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Commands/CreateInventoryCommand.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Commands/CreateItemCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Commands/CreateItemCommand.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Commands/EquipItemCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Commands/EquipItemCommand.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Contracts/InventoryRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Contracts/InventoryRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Contracts/ItemPrototypeRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Contracts/ItemPrototypeRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Contracts/ItemRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Contracts/ItemRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Factories/ItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Factories/ItemFactory.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Services/InventoryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Services/InventoryService.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Application/Services/ItemService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Application/Services/ItemService.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/Inventory.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/InventoryId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/InventoryId.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/InventoryItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/InventoryItem.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/InventorySlot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/InventorySlot.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/Item.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/ItemEffect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/ItemEffect.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/ItemId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/ItemId.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/ItemPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/ItemPrice.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/ItemPrototype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/ItemPrototype.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/ItemPrototypeId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/ItemPrototypeId.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/ItemStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/ItemStatus.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/ItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/ItemType.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Domain/Money.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Domain/Money.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Infrastructure/ReconstitutionFactories/InventoryItemReconstitutionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Infrastructure/ReconstitutionFactories/InventoryItemReconstitutionFactory.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Infrastructure/ReconstitutionFactories/InventoryReconstitutionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Infrastructure/ReconstitutionFactories/InventoryReconstitutionFactory.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Infrastructure/ReconstitutionFactories/ItemPrototypeReconstitutionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Infrastructure/ReconstitutionFactories/ItemPrototypeReconstitutionFactory.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Infrastructure/ReconstitutionFactories/ItemReconstitutionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Infrastructure/ReconstitutionFactories/ItemReconstitutionFactory.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Infrastructure/Repositories/InventoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Infrastructure/Repositories/InventoryRepository.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Infrastructure/Repositories/ItemPrototypeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Infrastructure/Repositories/ItemPrototypeRepository.php -------------------------------------------------------------------------------- /app/Modules/Equipment/Infrastructure/Repositories/ItemRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/Infrastructure/Repositories/ItemRepository.php -------------------------------------------------------------------------------- /app/Modules/Equipment/UI/Http/CommandMappers/AddItemToInventoryCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/UI/Http/CommandMappers/AddItemToInventoryCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Equipment/UI/Http/CommandMappers/CreateItemCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/UI/Http/CommandMappers/CreateItemCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Equipment/UI/Http/CommandMappers/EquipItemCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Equipment/UI/Http/CommandMappers/EquipItemCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/BaseId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/BaseId.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container/ContainerIsFullException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container/ContainerIsFullException.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container/ContainerSlotIsTakenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container/ContainerSlotIsTakenException.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container/ContainerSlotOutOfRangeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container/ContainerSlotOutOfRangeException.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container/InvalidMoneyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container/InvalidMoneyValue.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container/ItemNotInContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container/ItemNotInContainer.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container/NotEnoughMoneyToRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container/NotEnoughMoneyToRemove.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/Container/NotEnoughSpaceInContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/Container/NotEnoughSpaceInContainerException.php -------------------------------------------------------------------------------- /app/Modules/Generic/Domain/ContainerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Generic/Domain/ContainerType.php -------------------------------------------------------------------------------- /app/Modules/Image/Application/Commands/AddImageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Application/Commands/AddImageCommand.php -------------------------------------------------------------------------------- /app/Modules/Image/Application/Contracts/ImageRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Application/Contracts/ImageRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Image/Application/Factories/ImageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Application/Factories/ImageFactory.php -------------------------------------------------------------------------------- /app/Modules/Image/Application/Services/ProfilePictureService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Application/Services/ProfilePictureService.php -------------------------------------------------------------------------------- /app/Modules/Image/Domain/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Domain/Image.php -------------------------------------------------------------------------------- /app/Modules/Image/Domain/ImageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Domain/ImageFile.php -------------------------------------------------------------------------------- /app/Modules/Image/Domain/ImageId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Domain/ImageId.php -------------------------------------------------------------------------------- /app/Modules/Image/Infrastructure/Repositories/ImageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/Infrastructure/Repositories/ImageRepository.php -------------------------------------------------------------------------------- /app/Modules/Image/UI/Http/CommandMappers/AddImageCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Image/UI/Http/CommandMappers/AddImageCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Level/Application/Services/LevelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Level/Application/Services/LevelService.php -------------------------------------------------------------------------------- /app/Modules/Level/Domain/Level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Level/Domain/Level.php -------------------------------------------------------------------------------- /app/Modules/Message/Application/Commands/SendMessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Message/Application/Commands/SendMessageCommand.php -------------------------------------------------------------------------------- /app/Modules/Message/Application/Contracts/MessageRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Message/Application/Contracts/MessageRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Message/Application/Services/MessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Message/Application/Services/MessageService.php -------------------------------------------------------------------------------- /app/Modules/Message/Domain/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Message/Domain/Message.php -------------------------------------------------------------------------------- /app/Modules/Message/Domain/MessageId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Message/Domain/MessageId.php -------------------------------------------------------------------------------- /app/Modules/Message/Infrastructure/Repositories/MessageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Message/Infrastructure/Repositories/MessageRepository.php -------------------------------------------------------------------------------- /app/Modules/Message/UI/Http/CommandMappers/SendMessageCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Message/UI/Http/CommandMappers/SendMessageCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Commands/AddItemToStoreCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Commands/AddItemToStoreCommand.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Commands/BuyItemCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Commands/BuyItemCommand.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Commands/ChangeItemPriceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Commands/ChangeItemPriceCommand.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Commands/CreateStoreCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Commands/CreateStoreCommand.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Commands/MoveItemToContainerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Commands/MoveItemToContainerCommand.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Commands/MoveMoneyToContainerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Commands/MoveMoneyToContainerCommand.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Commands/SellItemCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Commands/SellItemCommand.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Contracts/StoreRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Contracts/StoreRepositoryInterface.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Services/CreateStoreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Services/CreateStoreService.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Services/ManageStoreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Services/ManageStoreService.php -------------------------------------------------------------------------------- /app/Modules/Trade/Application/Services/TradeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Application/Services/TradeService.php -------------------------------------------------------------------------------- /app/Modules/Trade/Domain/Exception/SellPriceIsTooHigh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Domain/Exception/SellPriceIsTooHigh.php -------------------------------------------------------------------------------- /app/Modules/Trade/Domain/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Domain/Store.php -------------------------------------------------------------------------------- /app/Modules/Trade/Domain/Store/StoreDoesNotBuyItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Domain/Store/StoreDoesNotBuyItems.php -------------------------------------------------------------------------------- /app/Modules/Trade/Domain/StoreId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Domain/StoreId.php -------------------------------------------------------------------------------- /app/Modules/Trade/Domain/StoreType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Domain/StoreType.php -------------------------------------------------------------------------------- /app/Modules/Trade/Infrastructure/ReconstitutionFactories/StoreReconstitutionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Infrastructure/ReconstitutionFactories/StoreReconstitutionFactory.php -------------------------------------------------------------------------------- /app/Modules/Trade/Infrastructure/Repositories/StoreRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/Infrastructure/Repositories/StoreRepository.php -------------------------------------------------------------------------------- /app/Modules/Trade/UI/Http/CommandMappers/BuyItemCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/UI/Http/CommandMappers/BuyItemCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Trade/UI/Http/CommandMappers/ChangeItemPriceCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/UI/Http/CommandMappers/ChangeItemPriceCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Trade/UI/Http/CommandMappers/MoveItemToContainerCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/UI/Http/CommandMappers/MoveItemToContainerCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Trade/UI/Http/CommandMappers/MoveMoneyToContainerCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/UI/Http/CommandMappers/MoveMoneyToContainerCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/Trade/UI/Http/CommandMappers/SellItemCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/Trade/UI/Http/CommandMappers/SellItemCommandMapper.php -------------------------------------------------------------------------------- /app/Modules/User/Application/Commands/CreateUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/User/Application/Commands/CreateUserCommand.php -------------------------------------------------------------------------------- /app/Modules/User/Application/Services/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/User/Application/Services/UserService.php -------------------------------------------------------------------------------- /app/Modules/User/UI/Http/CommandMappers/CreateUserCommandMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Modules/User/UI/Http/CommandMappers/CreateUserCommandMapper.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ViewComposerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Providers/ViewComposerServiceProvider.php -------------------------------------------------------------------------------- /app/Support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Support/helpers.php -------------------------------------------------------------------------------- /app/Traits/GeneratesUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Traits/GeneratesUuid.php -------------------------------------------------------------------------------- /app/Traits/ThrowsDice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Traits/ThrowsDice.php -------------------------------------------------------------------------------- /app/Traits/UsesStringId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/app/Traits/UsesStringId.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/hooks.php: -------------------------------------------------------------------------------- 1 | env('HOOKS_ENABLED', true), 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/image.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/view.php -------------------------------------------------------------------------------- /config/voyager-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/voyager-hooks.php -------------------------------------------------------------------------------- /config/voyager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/config/voyager.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_14_055744_create_locations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2017_05_14_055744_create_locations_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_14_055823_create_races_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2017_05_14_055823_create_races_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_14_055844_create_characters_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2017_05_14_055844_create_characters_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_16_144929_create_battles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2017_05_16_144929_create_battles_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_16_181330_create_battle_rounds_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2017_05_16_181330_create_battle_rounds_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_16_181844_create_battle_turns_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2017_05_16_181844_create_battle_turns_table.php -------------------------------------------------------------------------------- /database/migrations/2017_11_26_013050_add_user_role_relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2017_11_26_013050_add_user_role_relationship.php -------------------------------------------------------------------------------- /database/migrations/2018_06_24_132346_create_messages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2018_06_24_132346_create_messages_table.php -------------------------------------------------------------------------------- /database/migrations/2018_11_19_202701_create_images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2018_11_19_202701_create_images.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_31_182034_create_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2019_08_31_182034_create_items_table.php -------------------------------------------------------------------------------- /database/migrations/2020_02_29_205331_create_inventories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2020_02_29_205331_create_inventories.php -------------------------------------------------------------------------------- /database/migrations/2020_02_29_205957_create_inventory_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2020_02_29_205957_create_inventory_item.php -------------------------------------------------------------------------------- /database/migrations/2020_03_30_133100_create_stores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2020_03_30_133100_create_stores.php -------------------------------------------------------------------------------- /database/migrations/2020_03_30_133448_create_store_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/migrations/2020_03_30_133448_create_store_item.php -------------------------------------------------------------------------------- /database/seeders/CharacterSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/CharacterSeeder.php -------------------------------------------------------------------------------- /database/seeders/DataRowsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/DataRowsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/DataTypesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/DataTypesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/MenuItemsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/MenuItemsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/MenusTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/MenusTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionRoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/PermissionRoleTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/PermissionsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/RolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/RolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/SettingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/TranslationsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/TranslationsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /database/seeders/VoyagerDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/VoyagerDatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/VoyagerDummyDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/database/seeders/VoyagerDummyDatabaseSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/cron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker/cron/Dockerfile -------------------------------------------------------------------------------- /docker/cron/scheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker/cron/scheduler -------------------------------------------------------------------------------- /docker/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker/mysql/my.cnf -------------------------------------------------------------------------------- /docker/nginx/conf.d/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker/nginx/conf.d/app.conf -------------------------------------------------------------------------------- /docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker/php/Dockerfile -------------------------------------------------------------------------------- /docker/php/application-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker/php/application-init.sh -------------------------------------------------------------------------------- /docker/php/local.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docker/php/local.ini -------------------------------------------------------------------------------- /docs/docker_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docs/docker_environment.md -------------------------------------------------------------------------------- /docs/local_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/docs/local_environment.md -------------------------------------------------------------------------------- /hooks/hooks.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/equipment/body_armor/linen_shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/body_armor/linen_shirt.png -------------------------------------------------------------------------------- /public/images/equipment/head_gear/closed_steel_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/head_gear/closed_steel_helmet.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/0zweihander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/0zweihander.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/1club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/1club.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/2reinforced_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/2reinforced_club.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/3mace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/3mace.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/4smith_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/4smith_hammer.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/5warhammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/5warhammer.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/6maul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/6maul.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/7handaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/7handaxe.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/8infantry_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/8infantry_axe.png -------------------------------------------------------------------------------- /public/images/equipment/main_hand/9battle_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/main_hand/9battle_axe.png -------------------------------------------------------------------------------- /public/images/equipment/off_hand/buckler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/equipment/off_hand/buckler.png -------------------------------------------------------------------------------- /public/images/locations/Blacksmith-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Blacksmith-300px.png -------------------------------------------------------------------------------- /public/images/locations/Blacksmith-800px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Blacksmith-800px.png -------------------------------------------------------------------------------- /public/images/locations/Fortress-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Fortress-300px.png -------------------------------------------------------------------------------- /public/images/locations/Fortress-800px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Fortress-800px.png -------------------------------------------------------------------------------- /public/images/locations/Inn-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Inn-300px.png -------------------------------------------------------------------------------- /public/images/locations/Inn-800px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Inn-800px.png -------------------------------------------------------------------------------- /public/images/locations/Townhall-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Townhall-300px.png -------------------------------------------------------------------------------- /public/images/locations/Townhall-800px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/locations/Townhall-800px.png -------------------------------------------------------------------------------- /public/images/races/dwarf-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/dwarf-female.png -------------------------------------------------------------------------------- /public/images/races/dwarf-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/dwarf-male.png -------------------------------------------------------------------------------- /public/images/races/elf-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/elf-female.png -------------------------------------------------------------------------------- /public/images/races/elf-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/elf-male.png -------------------------------------------------------------------------------- /public/images/races/human-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/human-female.png -------------------------------------------------------------------------------- /public/images/races/human-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/human-male.png -------------------------------------------------------------------------------- /public/images/races/orc-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/orc-female.png -------------------------------------------------------------------------------- /public/images/races/orc-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/races/orc-male.png -------------------------------------------------------------------------------- /public/images/village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/images/village.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/character-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/js/character-create.js -------------------------------------------------------------------------------- /public/js/character-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/js/character-update.js -------------------------------------------------------------------------------- /public/js/vcountdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/js/vcountdown.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/svg/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/svg/avatar.svg -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/readme.md -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/FlashMessages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/js/components/FlashMessages.vue -------------------------------------------------------------------------------- /resources/js/components/InventoryManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/js/components/InventoryManagement.vue -------------------------------------------------------------------------------- /resources/js/components/PopupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/js/components/PopupModal.vue -------------------------------------------------------------------------------- /resources/js/components/StoreManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/js/components/StoreManagement.vue -------------------------------------------------------------------------------- /resources/js/components/StoreTrade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/js/components/StoreTrade.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/sass/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/sass/custom.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/base.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/base.blade.php -------------------------------------------------------------------------------- /resources/views/battle/partials/no-battles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/battle/partials/no-battles.blade.php -------------------------------------------------------------------------------- /resources/views/battle/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/battle/show.blade.php -------------------------------------------------------------------------------- /resources/views/character/battle/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/battle/index.blade.php -------------------------------------------------------------------------------- /resources/views/character/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/create.blade.php -------------------------------------------------------------------------------- /resources/views/character/inventory/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/inventory/index.blade.php -------------------------------------------------------------------------------- /resources/views/character/message/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/message/index.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/actions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/actions.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/attributes.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/attributes.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/character-display.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/character-display.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/equipment-item-mutable.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/equipment-item-mutable.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/equipment-item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/equipment-item.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/equipment-mutable.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/equipment-mutable.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/equipment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/equipment.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/general.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/general.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/inventory.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/inventory.blade.php -------------------------------------------------------------------------------- /resources/views/character/partials/statistics.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/partials/statistics.blade.php -------------------------------------------------------------------------------- /resources/views/character/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/character/show.blade.php -------------------------------------------------------------------------------- /resources/views/components/increment_attribute_button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/components/increment_attribute_button.blade.php -------------------------------------------------------------------------------- /resources/views/components/short_character_description.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/components/short_character_description.blade.php -------------------------------------------------------------------------------- /resources/views/emails/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/emails/password.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/location/partials/list-character.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/location/partials/list-character.blade.php -------------------------------------------------------------------------------- /resources/views/location/partials/navigator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/location/partials/navigator.blade.php -------------------------------------------------------------------------------- /resources/views/location/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/location/show.blade.php -------------------------------------------------------------------------------- /resources/views/message/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/message/index.blade.php -------------------------------------------------------------------------------- /resources/views/message/partials/conversation-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/message/partials/conversation-card.blade.php -------------------------------------------------------------------------------- /resources/views/message/partials/conversation-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/message/partials/conversation-message.blade.php -------------------------------------------------------------------------------- /resources/views/message/partials/conversation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/message/partials/conversation.blade.php -------------------------------------------------------------------------------- /resources/views/message/partials/my-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/message/partials/my-message.blade.php -------------------------------------------------------------------------------- /resources/views/message/partials/no-messages.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/message/partials/no-messages.blade.php -------------------------------------------------------------------------------- /resources/views/message/partials/others-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/message/partials/others-message.blade.php -------------------------------------------------------------------------------- /resources/views/pages/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/pages/index.blade.php -------------------------------------------------------------------------------- /resources/views/partials/flash-messages.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/partials/flash-messages.blade.php -------------------------------------------------------------------------------- /resources/views/partials/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/partials/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/trade/own_store/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/trade/own_store/index.blade.php -------------------------------------------------------------------------------- /resources/views/trade/store/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/trade/store/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/vendor/pagination/semantic-ui.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/vendor/pagination/simple-bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/routes/web.php -------------------------------------------------------------------------------- /scheduler.bat: -------------------------------------------------------------------------------- 1 | cd %~dp0% 2 | php artisan schedule:run 1>> NUL 2>&1 3 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Browser/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Browser/ExampleTest.php -------------------------------------------------------------------------------- /tests/Browser/Pages/HomePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Browser/Pages/HomePage.php -------------------------------------------------------------------------------- /tests/Browser/Pages/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Browser/Pages/Page.php -------------------------------------------------------------------------------- /tests/Browser/console/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Browser/screenshots/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/DuskTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/DuskTestCase.php -------------------------------------------------------------------------------- /tests/Feature/AttackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Feature/AttackTest.php -------------------------------------------------------------------------------- /tests/Feature/CharacterCreationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Feature/CharacterCreationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Unit/app/Modules/Equipment/Application/Services/ItemServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Unit/app/Modules/Equipment/Application/Services/ItemServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/app/Modules/Equipment/Domain/InventoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Unit/app/Modules/Equipment/Domain/InventoryTest.php -------------------------------------------------------------------------------- /tests/Unit/app/Modules/Level/Application/Services/LevelServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Unit/app/Modules/Level/Application/Services/LevelServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/app/Modules/Level/Domain/Entities/LevelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/tests/Unit/app/Modules/Level/Domain/Entities/LevelTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchekin/rpg/HEAD/webpack.mix.js --------------------------------------------------------------------------------