{"id":19248052,"url":"https://github.com/dockyardmc/packetgenerators","last_synced_at":"2026-06-10T21:31:29.737Z","repository":{"id":244341704,"uuid":"814965210","full_name":"DockyardMC/PacketGenerators","owner":"DockyardMC","description":"Generates packet data from wiki.vg","archived":false,"fork":false,"pushed_at":"2024-06-22T16:51:47.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-02-23T16:14:02.932Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","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/DockyardMC.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":"2024-06-14T04:27:23.000Z","updated_at":"2024-06-22T16:51:49.000Z","dependencies_parsed_at":"2024-06-14T05:40:26.666Z","dependency_job_id":"52d77976-cf61-4ce8-bb70-51e006714e32","html_url":"https://github.com/DockyardMC/PacketGenerators","commit_stats":null,"previous_names":["dockyardmc/packetgenerators"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DockyardMC/PacketGenerators","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DockyardMC%2FPacketGenerators","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DockyardMC%2FPacketGenerators/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DockyardMC%2FPacketGenerators/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DockyardMC%2FPacketGenerators/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DockyardMC","download_url":"https://codeload.github.com/DockyardMC/PacketGenerators/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DockyardMC%2FPacketGenerators/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34172196,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"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-11-09T18:06:15.017Z","updated_at":"2026-06-10T21:31:29.721Z","avatar_url":"https://github.com/DockyardMC.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wiki.vg Data Generator\nGets packet data from [wiki.vg](https://wiki.vg/Protocol) and converts them to json format\n\n---\n\n## Installation\n\n\u003cimg src=\"https://cdn.worldvectorlogo.com/logos/kotlin-2.svg\" width=\"16px\"\u003e\u003c/img\u003e\n**Kotlin DSL**\n```kotlin\nrepositories {\n    maven {\n        name = \"devOS\"\n        url = uri(\"https://mvn.devos.one/releases\")\n    }\n}\n\ndependencies {\n    implementation(\"io.github.dockyardmc:wikivg-datagen:1.3\")\n}\n```\n\u003cimg src=\"https://github.com/LukynkaCZE/PrettyLog/assets/48604271/3293feca-7395-4100-8b61-257ba40dbe3c\" width=\"18px\"\u003e\u003c/img\u003e\n**Gradle Groovy**\n```groovy\nrepositories {\n  maven {\n    name \"devOS\"\n    url \"https://mvn.devos.one/releases\"\n  }\n}\n\ndependencies {\n  implementation 'io.github.dockyardmc:wikivg-datagen:1.3'\n}\n```\n---\n\n## Usage\n\nYou can get the latest data like this:\n\n```kotlin\nval dataGenerator = WikiVGDataGenerator()\nval json = dataGenerator.json\nval list = dataGenerator.packets\n```\n\n**Example:** _(Sound Effect Packet)_\n\n```json\n{\n  \"id\": \"0x68\",\n  \"header\": \"Sound Effect\",\n  \"packet\": \"sound_effect\",\n  \"protocol_state\": \"play\",\n  \"bound_to\": \"client\",\n  \"content\": [\n    {\n        \"field\": \"sound_name\",\n        \"type\": \"optional_identifier\"\n    },\n    {\n        \"field\": \"has_fixed_range\",\n        \"type\": \"optional_boolean\"\n    },\n    {\n        \"field\": \"range\",\n        \"type\": \"optional_float\"\n    },\n    {\n        \"field\": \"sound_category\",\n        \"type\": \"var_int_enum\"\n    },\n    {\n        \"field\": \"effect_position_x\",\n        \"type\": \"int\"\n    },\n    {\n        \"field\": \"effect_position_y\",\n        \"type\": \"int\"\n    },\n    {\n        \"field\": \"effect_position_z\",\n        \"type\": \"int\"\n    },\n    {\n        \"field\": \"volume\",\n        \"type\": \"float\"\n    },\n    {\n        \"field\": \"pitch\",\n        \"type\": \"float\"\n    },\n    {\n        \"field\": \"seed\",\n        \"type\": \"long\"\n    }\n  ]\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdockyardmc%2Fpacketgenerators","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdockyardmc%2Fpacketgenerators","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdockyardmc%2Fpacketgenerators/lists"}