diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-30 12:00:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-30 12:00:26 -0300 |
commit | 9c31b781c11ebd39bce4b7093a2d1f256b8d4441 (patch) | |
tree | c707c31c3e43aa3967e48ecfa9b03289fb7ad0ee /npc/042-4/ctrl.txt | |
parent | 180c110df67a6a40678f5f2c51a6e759c1e6f6d3 (diff) | |
download | serverdata-9c31b781c11ebd39bce4b7093a2d1f256b8d4441.tar.gz serverdata-9c31b781c11ebd39bce4b7093a2d1f256b8d4441.tar.bz2 serverdata-9c31b781c11ebd39bce4b7093a2d1f256b8d4441.tar.xz serverdata-9c31b781c11ebd39bce4b7093a2d1f256b8d4441.zip |
First prototype for 042-5 Sewers mobs (just the code struct)
Diffstat (limited to 'npc/042-4/ctrl.txt')
-rw-r--r-- | npc/042-4/ctrl.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/042-4/ctrl.txt b/npc/042-4/ctrl.txt index c70bf5141..fb9bc8bef 100644 --- a/npc/042-4/ctrl.txt +++ b/npc/042-4/ctrl.txt @@ -76,7 +76,7 @@ function monster0424 { .@y2=getarg(4); .@avg=getarg(5); .@m$=instance_mapname("042-4"); - debugmes "Total %d, map %s (power %d)", .@gcount, .@m$, .@avg; + //debugmes "Total %d, map %s (power %d)", .@gcount, .@m$, .@avg; freeloop(true); for (.@i=0; .@i < .@gcount; .@i++) { .@mobId=any(CursedSoldier, CursedArcher); // 50-50 ratio @@ -94,8 +94,8 @@ function monster0424 { // Battle Status setunitdata(.@mob, UDT_MAXHP, .@avg*36); setunitdata(.@mob, UDT_HP, .@avg*36); - setunitdata(.@mob, UDT_ATKMIN, .@avg*50/10); - setunitdata(.@mob, UDT_ATKMAX, .@avg*70/10); + setunitdata(.@mob, UDT_ATKMIN, .@avg*47/10); + setunitdata(.@mob, UDT_ATKMAX, .@avg*67/10); setunitdata(.@mob, UDT_DEF, 1+.@avg*10/10); setunitdata(.@mob, UDT_MDEF, 1+.@avg*6/10); setunitdata(.@mob, UDT_HIT, .@avg*5); // Advised: x3 |