Không gian làm việc data pack đầy đủ trong trình duyệt
Một Java data pack là tệp zip (hoặc thư mục) chứa pack.mcmeta và cây thư mục data/ (minecraft.wiki Data pack). Studio này là trình chỉnh sửa đa tệp: hàm, bảng chiến lợi phẩm, công thức, tiến trình, vị ngữ, bộ sửa đổi vật phẩm, thẻ khối/vật phẩm/thực thể, và các điểm móc quan trọng #minecraft:load / #minecraft:tick trong data/minecraft/tags/function/ (hoặc thư mục số nhiều trên các định dạng trước 1.21).
Gói khởi đầu bao gồm một setup function, load tag, loot table mẫu, recipe, advancement, predicate, item modifier, và item tag để tệp zip được tải xuống là một dự án hoàn chỉnh, có thể tải lại, chứ không phải một bộ khung rỗng.
Các loại tệp và đường dẫn Wiki
| Loại | Đường dẫn (1.21+ số ít) |
|---|---|
| Hàm | data/<ns>/function/<id>.mcfunction |
| Thẻ hàm (tải) | data/minecraft/tags/function/load.json |
| Bảng loot | data/<ns>/loot_table/<id>.json |
| Công thức | data/<ns>/recipe/<id>.json |
| Tiến trình | data/<ns>/advancement/<id>.json |
| Vị từ | data/<ns>/predicate/<id>.json |
| Bộ sửa đổi vật phẩm | data/<ns>/item_modifier/<id>.json |
| Thẻ khối / vật phẩm / thực thể | data/<ns>/tags/block|item|entity_type/… |
Các cài đặt sẵn trước 1.21 sử dụng tên thư mục số nhiều (functions, loot_tables, recipes, …). Việc chỉnh sửa nặng về schema vẫn có thể sử dụng các trình tạo Công thức, Chiến lợi phẩm, Tiến trình, sau đó Nhập vào pack này. Công thức · Loot · Tiến trình
pack_format theo phiên bản
| Cài đặt sẵn | Format | Folders |
|---|---|---|
| Java 26.3 Snapshot 6 (Experimental) | 113 | singular · min/max_format |
| Java 26.2 | 107.1 | singular · min/max_format |
| Java 26.1.x | 101 | singular · min/max_format |
| Java 1.21.11 | 94 | singular · min/max_format |
| Java 1.21.9-1.21.10 | 88 | singular · min/max_format |
| Java 1.21.7-1.21.8 | 81 | singular |
| Java 1.21.6 | 80 | singular |
| Java 1.21.5 | 71 | singular |
| Java 1.21.4 | 61 | singular |
| Java 1.21.2-1.21.3 | 57 | singular |
| Java 1.21-1.21.1 | 48 | singular |
| Java 1.20.5-1.20.6 | 41 | plural |
FAQ
Is this only a starter skeleton?
No. You get a multi-file pack: functions, tags, loot, recipe, advancement, predicate, item modifier, plus pack.mcmeta and zip download. Expand any JSON for production.
Why is load under data/minecraft/?
Wiki Function tags: #minecraft:load only exists if the tag file is in the minecraft namespace. A tag under your pack namespace creates #mypack:load, which does not auto-run on /reload.
Can I add every registry type?
Common pack types are in Add file. Worldgen and experimental registries are better authored with dedicated schema tools (e.g. Misode) then imported as JSON.
Binary structures?
Structure files are .nbt binaries from structure blocks. The studio adds a path placeholder note; drop the real .nbt into the unzipped pack.
Are files uploaded?
No. Editing and zip generation run in your browser. Snapshots use localStorage only.