diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-04 22:27:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-04 22:27:36 -0300 |
commit | 49bade49a52d6addca07f698ccb2f5fcd81caf4a (patch) | |
tree | 7e19781fbb5fd585bfa70a834bde3b70d631cc60 /world/map/npc/annuals | |
parent | 5c83426a20d1e00f09b229182c8b8e35c7f44370 (diff) | |
download | serverdata-49bade49a52d6addca07f698ccb2f5fcd81caf4a.tar.gz serverdata-49bade49a52d6addca07f698ccb2f5fcd81caf4a.tar.bz2 serverdata-49bade49a52d6addca07f698ccb2f5fcd81caf4a.tar.xz serverdata-49bade49a52d6addca07f698ccb2f5fcd81caf4a.zip |
Increase drop rate from 12% to 18% on snowballs by Hello=)'s request.
Santa now warns when the wave begins.
Raise Snowball&Launcher damage to same as bow instead of slingshot (for mages)
Diffstat (limited to 'world/map/npc/annuals')
-rw-r--r-- | world/map/npc/annuals/xmas/2020.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/world/map/npc/annuals/xmas/2020.txt b/world/map/npc/annuals/xmas/2020.txt index dd82f134..0ad40cdc 100644 --- a/world/map/npc/annuals/xmas/2020.txt +++ b/world/map/npc/annuals/xmas/2020.txt @@ -122,6 +122,8 @@ OnTimer15000: OnClock1800: initnpctimer; + // WARNING: Do not duplicate!! + announce "Santa : Ho ho ho, I see a huge movement by the grinchboos!", 0; end; OnClock1830: @@ -358,6 +360,37 @@ L_Extra4: cleararray @oldstock$, "", getarraysize(@oldstock$); close; +/* FIXME requires player attached bcz TMWA is crazy, so better not. +// Spawn 10~30 snowballs in Nivalis square +OnClock2359: + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + end; + +// Duplicates +OnClock0001: + goto OnClock2359; +OnClock1759: + goto OnClock2359; +OnClock1801: + goto OnClock2359; +OnClock0559: + goto OnClock2359; +OnClock0601: + goto OnClock2359; +OnClock2124: + goto OnClock2359; +OnClock0024: + goto OnClock2359; +*/ } |