游戏狂人
![Rank: 6](static/image/common/star_level3.gif) ![Rank: 6](static/image/common/star_level2.gif)
- 贡献度
- 57
- 金元
- 7786
- 积分
- 1007
- 精华
- 0
- 注册时间
- 2011-6-18
|
本帖最后由 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" 這段就是金礦了 只要做一次陶磚就可以附送一份金礦 多麼好的老闆呀
} <- 記住最後不可逗點,否則會黑屏
] |
|