{"id":14969738,"url":"https://github.com/endlesscodegroup/mimic","last_synced_at":"2025-06-13T08:05:41.769Z","repository":{"id":42010752,"uuid":"83839997","full_name":"EndlessCodeGroup/Mimic","owner":"EndlessCodeGroup","description":"Abstraction API for Minecraft RPG plugins","archived":false,"fork":false,"pushed_at":"2025-04-23T08:10:57.000Z","size":8898,"stargazers_count":13,"open_issues_count":10,"forks_count":3,"subscribers_count":4,"default_branch":"develop","last_synced_at":"2025-04-23T09:22:28.323Z","etag":null,"topics":["api","bukkit","items","minecraft","plugin","rpg","spigot"],"latest_commit_sha":null,"homepage":"https://endlesscodegroup.github.io/Mimic/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EndlessCodeGroup.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-03-03T20:49:54.000Z","updated_at":"2025-04-23T08:08:32.000Z","dependencies_parsed_at":"2023-11-30T01:40:08.143Z","dependency_job_id":"f7b6bca8-1883-4a86-8e37-4472452d0b87","html_url":"https://github.com/EndlessCodeGroup/Mimic","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/EndlessCodeGroup/Mimic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndlessCodeGroup%2FMimic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndlessCodeGroup%2FMimic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndlessCodeGroup%2FMimic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndlessCodeGroup%2FMimic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EndlessCodeGroup","download_url":"https://codeload.github.com/EndlessCodeGroup/Mimic/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndlessCodeGroup%2FMimic/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259606866,"owners_count":22883555,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","bukkit","items","minecraft","plugin","rpg","spigot"],"created_at":"2024-09-24T13:42:17.844Z","updated_at":"2025-06-13T08:05:41.746Z","avatar_url":"https://github.com/EndlessCodeGroup.png","language":"Kotlin","readme":"# Mimic\n[![Version](https://img.shields.io/maven-central/v/ru.endlesscode.mimic/mimic-api?style=flat-square)][mavenCentral]\n[![Build Status](https://img.shields.io/github/actions/workflow/status/EndlessCodeGroup/Mimic/main.yml?branch=develop\u0026style=flat-square)][ci]\n[![Code Quality](https://img.shields.io/codacy/grade/2509a9f8d248484d9cfd6376eb9426a1.svg?style=flat-square)][codacy]\n[![license](https://img.shields.io/github/license/EndlessCodeGroup/Mimic.svg?style=flat-square)][license]\n\n[![Logo](images/logo.png)](#)\n\nAbstraction API for RPG plugins.\n\nOther resources:\n[SpigotMC](https://www.spigotmc.org/resources/82515/),\n[SpigotMC Forum](https://www.spigotmc.org/threads/456931/),\n[RuBukkit](http://rubukkit.org/threads/134308/)  \nJoin us: [![Discord](https://img.shields.io/discord/314362656909819904?color=7389da\u0026logo=discord\u0026style=flat-square)](https://discord.gg/5NfPsgb)\n\n## What is MimicAPI?\nThe goal of MimicAPI is to make RPG plugins compatible with each other.\n\nThere is a lot of RPG plugins and to integrate them together you need to get copies of all these plugins (some of which are paid).\nInspired by [Vault], I wrote MimicAPI to avoid this problem.  \nWith Mimic, you don't need to download all RPG plugins and write specific code for each plugin to support them, just use Mimic as a dependency.\n\n### Available APIs\n\n- [LevelSystem] - API to work with player's level and experience points.\n  Makes it possible to use in plugins levels and exp from another plugin.\n- [ClassSystem] - API to work with player's classes.\n  Enables plugins to check player class.\n- [PlayerInventory] *(experimental)* - API to access player's inventories content.\n- [ItemsRegistry] - API adding the possibility to create and validate custom items created with plugins.\n\n### Implementations\n\n#### Bukkit\n- [mimic-bukkit-api](mimic-bukkit-api) - mimic-api adopted for Bukkit. Use it in Bukkit plugins.\n- [mimic-bukkit](mimic-bukkit) - Bukkit plugin containing some APIs implementations.\nIt also provides commands to test your API implementation.\nUse it as example of Mimic APIs usage and implementation.\n\n## Installation\n\nIf you are server owner, just get needed plugin from [Implementations](#implementations) section.\nIf you are developer you can use [Gradle] or [Maven] to plug MimicAPI to your plugin.\n\n### Gradle\n\n```kotlin\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    compileOnly(\"ru.endlesscode.mimic:mimic-bukkit-api:0.8.0\")\n}\n```\n\n### Maven\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eru.endlesscode.mimic\u003c/groupId\u003e\n  \u003cartifactId\u003emimic-bukkit-api\u003c/artifactId\u003e\n  \u003cversion\u003e0.8.0\u003c/version\u003e\n  \u003cscope\u003eprovided\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n\n## Usage\n\n\u003e Look [Implementations](#implementations) pages for API usage examples on your platform.\n\n## Contributing\nPull requests are welcome.\nFor major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n[codacy]: https://www.codacy.com/app/EndlessCode-Group/MimicAPI?utm_source%3Dgithub.com%26amp;utm_medium%3Dreferral%26amp;utm_content%3DEndlessCodeGroup/MimicAPI%26amp;utm_campaign%3DBadge_Grade\n[mavenCentral]: https://search.maven.org/search?q=g:ru.endlesscode.mimic\n[ci]: https://github.com/EndlessCodeGroup/Mimic/actions/\n[license]: LICENSE\n\n[Vault]: https://github.com/MilkBowl/Vault\n[Gradle]: https://gradle.org/\n[Maven]: https://maven.apache.org/\n\n[LevelSystem]: mimic-api/src/main/kotlin/level/LevelSystem.kt\n[ClassSystem]: mimic-api/src/main/kotlin/classes/ClassSystem.kt\n[PlayerInventory]: mimic-api/src/main/kotlin/inventory/PlayerInventory.kt\n[ItemsRegistry]: mimic-api/src/main/kotlin/items/ItemsRegistry.kt\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fendlesscodegroup%2Fmimic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fendlesscodegroup%2Fmimic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fendlesscodegroup%2Fmimic/lists"}