diff options
-rw-r--r-- | npc/032-5/episode.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/npc/032-5/episode.txt b/npc/032-5/episode.txt index 73971b890..ec5a7737a 100644 --- a/npc/032-5/episode.txt +++ b/npc/032-5/episode.txt @@ -98,8 +98,17 @@ OnTimer30000: end; OnMini: - if (.razor) + // Make Black Razor stronger + if (.razor) { unittalk(.razor, "My fallen comrade, you'll be avenged!"); + .@ad=getunitdata(.razor, UDT_ADELAY); + setunitdata(.razor, UDT_ADELAY, .@ad-25); + } + // Make Platyna stronger + if (.platy) { + .@ad=getunitdata(.platy, UDT_ADELAY); + setunitdata(.platy, UDT_ADELAY, .@ad-25); + } sleep(100); if (!mobcount("032-5", "all")) goto OnNext; end; |