技能修改,打开Skills.json,原版技能建议不动
这是105号技能衣服撕裂
{"id":105,"animationId":145,"damage":{"critical":false,"elementId":0,"formula":"0","type":0,"variance":20},"description":"","effects":[{"code":44,"dataId":62,"value1":1,"value2":0}],"hitType":0,"iconIndex":88,"message1":"%1使用了%2!","message2":"","mpCost":10,"name":"衣服撕裂","note":"","occasion":1,"repeats":1,"requiredWtypeId1":0,"requiredWtypeId2":0,"scope":1,"speed":0,"stypeId":2,"successRate":100,"tpCost":0,"tpGain":0,"messageType":1},
这是敌人技能,原版无法获取,可以用修改器调出,亦可以改装备代码调出
"mpCost":10灵力消耗10,"occasion":1,1是只可在战斗中使用,0战斗非战斗均可使用
增加111号技能,111号原版无技能
{"id":111,"animationId":0,"damage":{"critical":false,"elementId":0,"formula":"0","type":0,"variance":20},"description":"","effects":[],"hitType":0,"iconIndex":0,"message1":"","message2":"","mpCost":0,"name":"","note":"","occasion":0,"repeats":1,"requiredWtypeId1":0,"requiredWtypeId2":0,"scope":1,"speed":0,"stypeId":1,"successRate":100,"tpCost":0,"tpGain":0,"messageType":1},
上面代码用下面的替换,改为111号破衣技能,无灵力消耗,战斗非战斗均可使用
{"id":111,"animationId":145,"damage":{"critical":false,"elementId":0,"formula":"0","type":0,"variance":20},"description":"","effects":[{"code":44,"dataId":62,"value1":1,"value2":0}],"hitType":0,"iconIndex":88,"message1":"%1使用了%2!","message2":"","mpCost":0,"name":"破衣","note":"","occasion":0,"repeats":1,"requiredWtypeId1":0,"requiredWtypeId2":0,"scope":1,"speed":0,"stypeId":2,"successRate":100,"tpCost":0,"tpGain":0,"messageType":1},