改製作完成品數量方法
本帖最后由 wax9999 于 2016-11-9 22:58 编辑試看看吧 畢竟事隔太久 最近才又開始玩A19版
MODS資料夾裡有個stonehearth.smod用壓縮檔打開會出現一個stonehearth的資料夾裡面每一個資料夾都各有代表的意思
比如:jobs就是工作的意思(G翻)打開後裡面所有資料夾都代表一個職業
選你要改的 weaver是縫紉師recipes是該職業的製作表weaver_description.json是該職業的升級表
recipes內的就是你要的要改的就是
選一個改 比如第一個
"level_requirement": 1,這裡是製作該物品所需職業等級 1 就是1等 0就是ㄧ開始就可以做
"ingredients": [代表材料
{
"material": "wood resource",(材料)
"count": 1(數量)
},
{
"material": "cloth resource",
"count": 1
}
],
"produces": [(得到)
{
"item": "stonehearth:decoration:banner_wall_big"
},(<<逗點很重要代表多一個成果沒逗點代表只產一個)這一段就是重點複製起來{"item": "stonehearth:decoration:banner_wall_big"},貼上多少段就得多少個結果(結尾就不要有逗點了)
]
}
其他的資料夾也可以這樣改 前提是要一個一個翻譯 有夠累 PS:recipes.json是目錄
66666666666
我就看看不说话:lol
没什么人用过么?不知道最新版能不能用:L 夜雨2011 发表于 2019-10-18 07:16
没什么人用过么?不知道最新版能不能用
最近遊戲荒 無聊 又跑回來玩一下 試過 新版沒影響 不過還是不要改的太誇張
本帖最后由 wax9999 于 2019-11-3 22:57 编辑
以陶藝師的陶土磚為例
stonehearth.smod\jobs\potter\recipes\clay_bricks_recipe.json
"ingredients": [
{
"material": "clay resource",
"count": 1
}
],
"produces": [
{
"item": "stonehearth:construction:clay_bricks"
}
]
我希望3個陶土做出3個陶磚,1個金礦
"ingredients": [
{
"material": "clay resource",
"count": 3 <- 3個材料
}
],
"produces": [
{
"item": "stonehearth:construction:clay_bricks"
},
{
"item": "stonehearth:construction:clay_bricks"
},
{
"item": "stonehearth:construction:clay_bricks"
},
{
"item": "stonehearth:resources:gold:ore" 這段就是金礦了 只要做一次陶磚就可以附送一份金礦 多麼好的老闆呀
} <- 記住最後不可逗點,否則會黑屏
]
页:
[1]