diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-08-09 18:05:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-08-09 18:05:38 -0300 |
commit | 212e467674f503c8e4e4506a7041a7ce443bdeab (patch) | |
tree | f0dcd82ae1cfde75a903a474df1e4124fd7ff2c7 | |
parent | 1e739be9a5414dab5a3ce9809e57dfc88809d994 (diff) | |
download | serverdata-212e467674f503c8e4e4506a7041a7ce443bdeab.tar.gz serverdata-212e467674f503c8e4e4506a7041a7ce443bdeab.tar.bz2 serverdata-212e467674f503c8e4e4506a7041a7ce443bdeab.tar.xz serverdata-212e467674f503c8e4e4506a7041a7ce443bdeab.zip |
Buff slightly Yeti King Challenge rewards
-rw-r--r-- | npc/001-7/celestia_bossfight.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/001-7/celestia_bossfight.txt b/npc/001-7/celestia_bossfight.txt index 6d531da22..62701a13e 100644 --- a/npc/001-7/celestia_bossfight.txt +++ b/npc/001-7/celestia_bossfight.txt @@ -77,19 +77,22 @@ L_Survivor: getitem rand2(CopperOre, (REBIRTH ? IridiumOre : TitaniumOre)), any(1,2); break; case 2: - .@r+=BaseLevel; + .@r+=TotalBaseLevel(); getexp .@r*80, .@r*2; // max 8000 xp and 200 jp (level 0) break; case 3: .@r+=JobLevel; + .@r+=TOP3AVERAGELVL(); Zeny=Zeny+.@r*75; // max 7500 gp (job 0) break; case 4: - getitem Coal, (.@r/10); // max 10 coal + .@r+=(TOP3AVERAGELVL()/20); + getitem Coal, min(20, .@r/10); // max 20 coal break; case 5: .@r+=(BaseLevel+JobLevel)/2; - Mobpt+=.@r*5; // max 500 mobpt (base/job 0) + .@r+=TOP3AVERAGELVL(); + Mobpt+=.@r*5; // max 700 mobpt (base/job 0) break; } // Completion bonus |