{"id":22571012,"url":"https://github.com/killerprojecte/ultralucky","last_synced_at":"2025-07-26T12:09:39.066Z","repository":{"id":66612065,"uuid":"599124250","full_name":"killerprojecte/UltraLucky","owner":"killerprojecte","description":"The Next-Generation Open Source Lucky System Solution","archived":false,"fork":false,"pushed_at":"2023-09-06T12:44:46.000Z","size":207,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-02T14:41:31.276Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/killerprojecte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-08T14:01:10.000Z","updated_at":"2024-03-25T04:05:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"c7cd0893-5688-48c4-bcec-11f0f46bfa55","html_url":"https://github.com/killerprojecte/UltraLucky","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killerprojecte%2FUltraLucky","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killerprojecte%2FUltraLucky/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killerprojecte%2FUltraLucky/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killerprojecte%2FUltraLucky/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/killerprojecte","download_url":"https://codeload.github.com/killerprojecte/UltraLucky/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246044628,"owners_count":20714619,"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":[],"created_at":"2024-12-08T01:14:36.967Z","updated_at":"2025-03-28T14:26:33.304Z","avatar_url":"https://github.com/killerprojecte.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **UltraLucky**\n\n- 下一代幸运系统开源解决方案\n- 同类付费插件**Archeology**的竞争者\n- 目前不支持Folia\n\n## 从UltraLucky开始\n\n**UltraLucky** 支持自主开发模块\n\n需要作为外部插件实现**Module**接口\n\n将自定义**Module**向**ModuleManager**注册即可\n\n为了配置功能的正确运行 需要将您的配置文件复制到**UltraLucky**目录下\n\n## 额外协议\n\n- 本内容根据GPLv3第7条发布\n\n```\n1. 禁止任何人以任何方式对UltraLucky其可执行内容或源码进行付费分发\n2. 任何人对UltraLucky源码进行分发时必须附上此仓库链接\n3. UltraLucky开发者有权力对违规使用(诈骗行为, 违法行为等)UltraLucky的用户撤销使用授权\n```\n\n## 添加至依赖\n\n- Maven\n\n```xml\n\n\u003cproject xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\"\u003e\n    \u003cmodelVersion\u003e4.0.0\u003c/modelVersion\u003e\n    \u003cartifactId\u003eexample\u003c/artifactId\u003e\n    \u003crepositories\u003e\n        \u003crepository\u003e\n            \u003cid\u003efastmcmirror-repo\u003c/id\u003e\n            \u003curl\u003ehttps://repo.fastmcmirror.org/content/repositories/releases/\u003c/url\u003e\n        \u003c/repository\u003e\n    \u003c/repositories\u003e\n\n    \u003cdependencies\u003e\n        \u003cdependency\u003e\n            \u003cgroupId\u003edev.rgbmc\u003c/groupId\u003e\n            \u003cartifactId\u003eUltraLucky\u003c/artifactId\u003e\n            \u003cversion\u003e1.1.0\u003c/version\u003e\n            \u003cscope\u003eprovided\u003c/scope\u003e\n        \u003c/dependency\u003e\n    \u003c/dependencies\u003e\n\u003c/project\u003e\n```\n\n- Gradle Groovy\n\n```groovy\nrepositories {\n    maven {\n        name = 'fastmcmirror-repo'\n        url = \"https://repo.fastmcmirror.org/content/repositories/releases/\"\n    }\n}\n\ndependencies {\n    compileOnly 'dev.rgbmc:UltraLucky:1.1.0'\n}\n```\n\n- Gradle Kotlin\n\n```kotlin\nrepositories {\n    maven {\n        name = \"fastmcmirror-repo\"\n        url = uri(\"https://repo.fastmcmirror.org/content/repositories/releases/\")\n    }\n}\n\ndependencies {\n    compileOnly(\"dev.rgbmc:UltraLucky:1.0.0\")\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillerprojecte%2Fultralucky","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkillerprojecte%2Fultralucky","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillerprojecte%2Fultralucky/lists"}