rebalancing why

This commit is contained in:
landgreen
2020-02-05 05:50:20 -08:00
parent f359cce427
commit b0f5f61e29
7 changed files with 30 additions and 21 deletions

View File

@@ -474,7 +474,7 @@ const mech = {
//chance to build a drone on damage from mod
if (b.isModDroneOnDamage) {
const len = (dmg - 0.08 + 0.05 * Math.random()) / 0.05
const len = (dmg - 0.06 + 0.07 * Math.random()) / 0.05
for (let i = 0; i < len; i++) {
if (Math.random() < 0.6) b.drone() //spawn drone
}