Can someone help me convert the x5 dmg multiplier to lower value? Maybe x2 is enough. x5 makes enemies die too fast for platinum combo point. This code is for v1.10 update
[#11. Attack Damage 5x]
040E0000 000D40DC 0B010835
The thing is I use Yuzu for emulation so I cannot use real Switch tools((
ah, so for that i used https://armconverter.com/?disasm&code=3508010B to translate it. its "add w21, w1, w1, lsl #2" so this mean that w21 = w1 + w1<<2 or w21 = w1 + (w1*4) which is why it x5. so, to get to 2x, you could do w21 = w1 + w1 or add w21, w1, w1 which converted back is "0B010035" finally, the written form of the code:
that is what you replace the 5x code with















