├── img ├── icon.png ├── logo.png ├── alert.png ├── darkmode │ ├── gui.png │ └── tab.png ├── fabric_api.png └── cloth_config_api.png ├── util ├── api_structure.png ├── example_datapack.zip └── datapack_structure.png ├── versions.json ├── .gitignore ├── LICENSE └── README.md /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/alert.png -------------------------------------------------------------------------------- /img/darkmode/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/darkmode/gui.png -------------------------------------------------------------------------------- /img/darkmode/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/darkmode/tab.png -------------------------------------------------------------------------------- /img/fabric_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/fabric_api.png -------------------------------------------------------------------------------- /util/api_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/util/api_structure.png -------------------------------------------------------------------------------- /img/cloth_config_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/img/cloth_config_api.png -------------------------------------------------------------------------------- /util/example_datapack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/util/example_datapack.zip -------------------------------------------------------------------------------- /util/datapack_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverNucleus/playerex/HEAD/util/datapack_structure.png -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | [{"versions":"1.17.1","releases":"3.0.x"},{"versions":"1.18.1","releases":"3.1.x"},{"versions":"1.19.x | 1.18.2","releases":"3.3.x | 3.2.x"}] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # gradle 2 | 3 | .gradle/ 4 | build/ 5 | out/ 6 | classes/ 7 | 8 | # eclipse 9 | 10 | *.launch 11 | 12 | # idea 13 | 14 | .idea/ 15 | *.iml 16 | *.ipr 17 | *.iws 18 | 19 | # vscode 20 | 21 | .settings/ 22 | .vscode/ 23 | bin/ 24 | .classpath 25 | .project 26 | 27 | # macos 28 | 29 | *.DS_Store 30 | 31 | # fabric 32 | 33 | run/ 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 CleverNucleus 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | PlayerEx 2 |
3 | 4 | ![GitHub release (latest by date)](https://img.shields.io/github/v/release/CleverNucleus/playerex?label=latest) 5 | ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/CleverNucleus/playerex/build-and-deploy.yml) 6 | ![GitHub](https://img.shields.io/github/license/CleverNucleus/playerex) 7 | [![GitHub stars](https://img.shields.io/github/stars/CleverNucleus/PlayerEx)](https://github.com/CleverNucleus/PlayerEx/stargazers) 8 | [![GitHub forks](https://img.shields.io/github/forks/CleverNucleus/PlayerEx)](https://github.com/CleverNucleus/PlayerEx/network) 9 | 10 | PlayerEx is a Minecraft mod built using the Fabric ecosystem that adds RPG themed attributes to the game and the player. It is available to download from [Curseforge](https://www.curseforge.com/minecraft/mc-mods/playerex) and [Modrinth](https://modrinth.com/mod/playerex). 11 | 12 | ### Content 13 | 14 | In addition to attributes, PlayerEx adds a levelling system and skill points to spend, enabled through a nonintrusive vanilla-styled gui accessible from the inventory or by hotkey. For further documentation, as well as how to use the PlayerEx API in your own project, please see the [wiki](https://clevernucleus.github.io/playerex-1.18.2_home). 15 | 16 | ### Contributors 17 | - [gyular](https://github.com/gyular) - Korean translation. 18 | - [Hertz](https://github.com/elhertz) - Spanish translation. 19 | - [MrTYZzik](https://github.com/MrTYZzik) - Russian translation. 20 | - [Orygeunik](https://github.com/Orygeunik) - Russian translation improvements. 21 | - [NianGuu](https://github.com/NianGuu) - Simplified Chinese 22 | - [sky_bai](https://github.com/a1640727878) - Simplified Chinese (legacy release) 23 | - [Annijang](https://github.com/Annijang) - Updated Chinese translation. --------------------------------------------------------------------------------