pickaxes are faster in general

This commit is contained in:
minjaesong
2022-01-12 17:20:18 +09:00
parent 0a5b9c1f2f
commit bf31cbb556
5 changed files with 2 additions and 1468 deletions

View File

@@ -17,7 +17,7 @@ object Calculate {
* TODO Newtons as unit?
*/
@JvmStatic fun pickaxePower(actor: ActorWithBody, material: Material?): Float {
return (4.0 * (material?.forceMod?.toDouble() ?: 1.0).sqrt() * (actor.avStrength / 1000.0)).toFloat()
return (16.0 * (material?.forceMod?.toDouble() ?: 1.0).sqrt() * (actor.avStrength / 1000.0)).toFloat()
}