ブラウザで完全なデータパックワークスペース
Javaデータパックは、pack.mcmeta と data/ ツリーを持つ zip (またはフォルダー) です (minecraft.wiki Data pack)。このスタジオは、functions、loot tables、recipes、advancements、predicates、item modifiers、block/item/entity tags、および data/minecraft/tags/function/ の下にある重要な #minecraft:load / #minecraft:tick フックを編集できる複数ファイルエディターです (1.21 より前の形式では複数形のフォルダーを使用)。
スターターパックには、セットアップfunction、load tag、サンプルloot table、recipe、advancement、predicate、item modifier、item tagが含まれているため、ダウンロードされたzipは空のスケルトンではなく、完全でリロード可能なプロジェクトです。
ファイルタイプとWikiパス
| タイプ | パス(1.21+ 単数形) |
|---|---|
| 関数 | data/<ns>/function/<id>.mcfunction |
| 関数タグ(ロード) | data/minecraft/tags/function/load.json |
| ルートテーブル | data/<ns>/loot_table/<id>.json |
| レシピ | data/<ns>/recipe/<id>.json |
| 進捗 | data/<ns>/advancement/<id>.json |
| 述語 | data/<ns>/predicate/<id>.json |
| アイテム修飾子 | data/<ns>/item_modifier/<id>.json |
| ブロック / アイテム / エンティティのタグ | data/<ns>/tags/block|item|entity_type/… |
1.21 より前のプリセットでは、複数形のフォルダー名 (functions、loot_tables、recipes など) を使用します。スキーマを多用する編集では、引き続き Recipe、Loot、Advancement ジェネレーターを使用し、その後このパックにインポートできます。 レシピ · Loot · 進捗
バージョン別 pack_format
| プリセット | 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.