Mindustry-mod制作教程

準(zhǔn)備工作
1.1.文檔的結(jié)構(gòu):
? ? ? ? 要制作mod,如下的文件結(jié)構(gòu)是必須的:
? ? ? ? ? ? ? ? project
? ? ? ? ? ? ? ?├── mod.json
? ? ? ? ? ? ? ?├── content
? ? ? ? ? ? ? ?│ ? ├── items
? ? ? ? ? ? ? ?│ ? ├── blocks
? ? ? ? ? ? ? ?│ ? ├── mechs
? ? ? ? ? ? ? ?│ ? ├── liquids
? ? ? ? ? ? ? ?│ ? ├── units
? ? ? ? ? ? ? ?│ ? └── zones
? ? ? ? ? ? ? ?├── maps
? ? ? ? ? ? ? ?├── bundles
? ? ? ? ? ? ? ?├── sounds
? ? ? ? ? ? ? ?├── schematics
? ? ? ? ? ? ? ?├── scripts
? ? ? ? ? ? ? ?├── sprites-override
? ? ? ? ? ? ? ?└── sprites
你也可以在命令行輸入:
md content maps bundles sounds schematics scripts sprites-override sprites
cd content
md items blocks mechs liquids units zones
1.2語(yǔ)言的選擇
目前我在wiki上面沒(méi)有看見(jiàn)除*.json,*.hjson除外的語(yǔ)言,如果后面翻譯工作找到了,會(huì)在補(bǔ)充
hjson
Mindustry模組可以使用Hjson創(chuàng)作,如果你了解json,它是一種非常流行的序列化語(yǔ)言。這意味著任何語(yǔ)法正確的json文本將會(huì)運(yùn)行,如果你不了解json,那么hjson將會(huì)是你的首選(json還是要學(xué)的,hjson只是把json文本再簡(jiǎn)化了而已),下列為hjson的語(yǔ)法:
{
????# 單行注釋
????// 單行注釋
????/* 區(qū)塊
????注釋 */
????鍵值1: 值
????鍵值2:
????'''
????多行
????字符串值
????'''
? ? 鍵值3: [ 值1
????? ? ? ? 值2
????? ? ? ? ]
????鍵值4: { 值1: 值
????? ? ? ? 值2: 值
????? ? ? ? }
}
hjson和json互換的網(wǎng)址:https://hjson.github.io/try.html
命名的標(biāo)準(zhǔn):my-custom-block.json
單詞的鏈接用 - 符號(hào)
mod.json
在項(xiàng)目目錄的根目錄下,必須有一個(gè)為項(xiàng)目定義基本元數(shù)據(jù)的mod.json
這個(gè)文件也可以(可選)命名為mod.hjson
你的mod.json要為以下格式:
{
? ? "name": "模組名稱(chēng)",
? ? "displayName": "顯示名稱(chēng)",
? ? "author": "你的名字",
? ? "description": "描述",
? ? "version": "模組版本",
? ? "minGameVersion": "最小游戲版本",
? ? "dependencies": ["依賴(lài)性"](可選)
}