游戏精英
 
- 贡献度
- 657
- 金元
- 39907
- 积分
- 6619
- 精华
- 0
- 注册时间
- 2008-11-12
|
本帖最后由 silasa 于 2026-5-20 12:34 编辑
又有新鲜玩意了哈
对了,跟你讲一下,打MOD可以不用改setting.json,只需要在mod.io里随便哪个MOD下载一个meta文件,再弄个图片文件,注意png格式,把里面的内容改成你自己mod的信息即可,我正版都不会再显示mod不匹配当前版本。
另外,pirate_looting_crew_on_damage_dealer.buff文件里
"operators": [
{
"operator_type": "give_assets",
"asset_type": "credits",
"asset_value": "looting_crew_credit_value"
}]
}]
}
}]
}
改成
"operators": [
{
"operator_type": "give_assets",
"asset_type": "credits",
"asset_value": "looting_crew_credit_value"
},
{
"operator_type": "give_assets",
"asset_type": "metal",
"asset_value": "looting_crew_credit_value"
},
{
"operator_type": "give_assets",
"asset_type": "crystal",
"asset_value": "looting_crew_credit_value"
}
]
}]
}
}]
}
就可以同时获得钱,金属,水晶,如果想分别按不同的比例,就把pirate_looting_crew.action_data_source文件里
"action_values": [
{
"action_value_id": "looting_crew_credit_value",
"action_value":
{
"transform_type": "per_total_resolved_damage_dealt",
"values": [0.10]
},
"action_value_id": "looting_crew_metal_value",
"action_value":
{
"transform_type": "per_total_resolved_damage_dealt",
"values": [0.09]
},
"action_value_id": "looting_crew_crystal_value",
"action_value":
{
"transform_type": "per_total_resolved_damage_dealt",
"values": [0.07]
}
}]
添加后两项,然后在pirate_looting_crew_on_damage_dealer.buff文件里
"asset_value":
的值调用对应的比例
|
|