{"id":16228175,"url":"https://github.com/skyjay1/bunny-ears","last_synced_at":"2025-10-10T01:46:22.354Z","repository":{"id":104792448,"uuid":"523965593","full_name":"skyjay1/Bunny-Ears","owner":"skyjay1","description":"Customizable cosmetic hats and ears","archived":false,"fork":false,"pushed_at":"2022-08-19T20:42:53.000Z","size":110,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"forge-1.19","last_synced_at":"2025-04-08T04:43:14.570Z","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/skyjay1.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-12T05:26:35.000Z","updated_at":"2023-02-13T13:49:14.000Z","dependencies_parsed_at":"2023-03-13T14:53:12.661Z","dependency_job_id":null,"html_url":"https://github.com/skyjay1/Bunny-Ears","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/skyjay1/Bunny-Ears","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyjay1%2FBunny-Ears","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyjay1%2FBunny-Ears/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyjay1%2FBunny-Ears/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyjay1%2FBunny-Ears/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skyjay1","download_url":"https://codeload.github.com/skyjay1/Bunny-Ears/tar.gz/refs/heads/forge-1.19","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skyjay1%2FBunny-Ears/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002401,"owners_count":26083374,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-10-10T12:54:45.768Z","updated_at":"2025-10-10T01:46:22.338Z","avatar_url":"https://github.com/skyjay1.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bunny Ears\n\nThis is a small but powerful client-side mod that can display armor using custom models. Users can define their own models using a resource pack.\n\nNote: all users must have the mod and the same resource pack in order to see models on another player.\n\n## Adding Custom Models\n\nTo add a custom hat, create a resource pack with the following:\n- [Model](#model)\n- [Texture](#texture)\n- [hats.json](#json)\n\n### Model\n\nThis mod uses the same model format as blocks and items. The model must be saved under `assets/[namespace]/models/hat/[model_name].json`\n\nTips for designing your model:\n- The player head is 8x8x8 and is centered underneath the 0,0 plane _facing north_.\n- Textures that are the same size as a block or item (16x16) are the most compatible. If larger textures are required, keep the image size a power of 2 (eg, 32x32 or 64x64)\n\n### Texture\n\nThe texture for each model is defined in the model itself. These do not need to be registered anywhere.\n\n### JSON\n\nRegister the model by adding an entry to `assets/bunnyears/hats.json`. The JSON file must contain the following:\n\n- `[equipment_slot]`: the name of an item equipment slot. Can be `\"head\"`, `\"chest\"`, `\"legs\"`, or `\"feet\"`\n  - `[item_name]`: the custom name of the item that displays a custom model. Required. Contains one or more of the following:\n    - `[body_part]`: the body part to render the model. Can be `\"head_part\"`, `\"chest_part\"`, `\"left_arm_part\"`, `\"right_arm_part\"`, `\"left_leg_part\"`, or `\"left_arm_part\"`. Contains one or more of the following:\n      - `damage`: the minimum amount of durability damage for the model to apply. Optional. Defaults to 0.\n      - `model`: the namespaced ID of the model. Required.\n\n#### Example\n\nThe following is a valid hats file located at `assets/bunnyears/hats.json`.\n\nIt specifies that head items with the custom name \"bunny\" should display the model at `assets/bunnyears/models/head/bunny_ears.json` when the item has no damage.\nThe hat will use the model at `assets/bunnyears/models/head/bunny_ears_one_down.json` when the item has at least 65% damage.\nThe hat will use the model at `assets/bunnyears/models/head/bunny_ears_both_down.json` when the item has at least 75% damage.\nAdditionally, a head item with this custom name will render a chest model at `assets/bunnyears/models/chest/bunny_tail.json`. The chestplate armor model will still render.\n\nNext, the file specifies that leg items with the custom name \"bunny\" should display the models at `assets/bunnyears/models/left_leg/bunny_left_leg.json` and `assets/bunnyears/models/right_leg/bunny_right_leg.json`.\n\nThere are no entries under `chest` or `feet`, so this resource pack will not register any additional models for those equipment slots.\n\n```\n{\n  \"head\": {\n    \"bunny\": {\n      \"head_part\": [\n        {\n          \"model\": \"bunnyears:head/bunny_ears\"\n        },\n        {\n          \"damage\": 65,\n          \"model\": \"bunnyears:head/bunny_ears_one_down\"\n        },\n        {\n          \"damage\": 75,\n          \"model\": \"bunnyears:head/bunny_ears_both_down\"\n        }\n      ],\n      \"chest_part\": [\n        {\n          \"model\": \"bunnyears:chest/bunny_tail\"\n        }\n      ],\n      \"left_arm_part\": [ ],\n      \"right_arm_part\": [ ]\n    }\n  },\n  \"chest\": { },\n  \"legs\": {\n    \"bunny\": {\n      \"left_leg_part\": [\n\t    {\n          \"model\": \"bunnyears:left_leg/bunny_left_leg\"\n        }\n\t  ],\n      \"right_leg_part\": [\n\t    {\n          \"model\": \"bunnyears:right_leg/bunny_right_leg\"\n        }\n\t  ]\n\t}\n  },\n  \"feet\": { }\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyjay1%2Fbunny-ears","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskyjay1%2Fbunny-ears","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyjay1%2Fbunny-ears/lists"}