|
|
|
@ -102,7 +102,11 @@ export class Monster extends Attribute {
@@ -102,7 +102,11 @@ export class Monster extends Attribute {
|
|
|
|
|
this.difficulty = difficulty; |
|
|
|
|
this.df = base_attr_factor[this.difficulty]; |
|
|
|
|
this.ef = extra_factor[difficulty]; |
|
|
|
|
this.lf = ((this.lv + layer - 1) / this.lv) ** 2; |
|
|
|
|
if (layer == 0) { |
|
|
|
|
this.lf = 1; |
|
|
|
|
} else { |
|
|
|
|
this.lf = ((this.lv + layer - 1) / this.lv) ** 2; |
|
|
|
|
} |
|
|
|
|
this.callAtk(2.5); |
|
|
|
|
this.callHp(17); |
|
|
|
|
this.callCoins(11); |
|
|
|
|