モンスター関連修正まとめ

モンスター関連不具合


pixie (renowned) 修正済

STRとINTが異様っていうか異常
他は微妙に違ってるけど大体許容範囲内くらい

this.SetStr(-350, 380);
this.SetInt(700, 8500);
STRのMINマイナスは明らかにおかしい
INTのMAX8500は明らかにおかしい

STR:276~345
INT:568~735のようです

tyball's shadow 修正済

物理防御100になってる。
this.SetResistance(ResistanceType.Physical, 100);
他旧ソースと差異あり。

アプデ後
this.SetStr(400, 450);
this.SetHits(2800, 3000);
this.SetResistance(ResistanceType.Physical, 100);
this.SetResistance(ResistanceType.Fire, 70);
this.SetResistance(ResistanceType.Cold, 70);
this.SetResistance(ResistanceType.Poison, 70);
this.SetResistance(ResistanceType.Energy, 70);

アプデ前
this.SetStr(300, 350);// 400-450
this.SetHits(3000, 3500);
this.SetResistance(ResistanceType.Physical, 70); // 100
this.SetResistance(ResistanceType.Fire, 50); // 70
this.SetResistance(ResistanceType.Cold, 25); // 70
this.SetResistance(ResistanceType.Poison, 50); // 70
this.SetResistance(ResistanceType.Energy, 50); // 70

タグ:

+ タグ編集
  • タグ:

このサイトはreCAPTCHAによって保護されており、Googleの プライバシーポリシー利用規約 が適用されます。

最終更新:2016年11月02日 20:54