diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-21 00:10:14 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 00:10:14 -0300 |
commit | 9763d45d204e074d106172f6779b96dfdc899abb (patch) | |
tree | aceef89bb74f0cc6587853bfb8efc7d75ab1138d /world/map/npc/commands/numa.txt | |
parent | ceb43b145cfec0297c41210ff8486feff1eeb4e7 (diff) | |
download | serverdata-9763d45d204e074d106172f6779b96dfdc899abb.tar.gz serverdata-9763d45d204e074d106172f6779b96dfdc899abb.tar.bz2 serverdata-9763d45d204e074d106172f6779b96dfdc899abb.tar.xz serverdata-9763d45d204e074d106172f6779b96dfdc899abb.zip |
Doomsday Event Framework (#544)
* Mana Guardian
Common Monster, Level 180
HP: 20,000 ATK: 360~374 EXP: 21,000
DEF: 28 MDEF: 70 Attack Range: 2
Drop List:
| Drop | DR |
| ---------------- | ----- |
| Tiny Mana Elixir | 5.00% |
| Silk Robe | 1.00% |
| Caramel Candy | 0.20% |
| Silk Gloves | 0.20% |
| Silk Pants | 0.15% |
| Golden D. Apple | 0.05% |
| Paladin's Helmet | 0.01% |
Note: Paladin's Helmet: Unreleased (only Prsm has one)
Def +19, no penalties.
This is part of Doomsday Event (Nov 2019 ~ Jul 2020)
This patch also adds a controller for these event spawns.
Diffstat (limited to 'world/map/npc/commands/numa.txt')
-rw-r--r-- | world/map/npc/commands/numa.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/world/map/npc/commands/numa.txt b/world/map/npc/commands/numa.txt index 78746a26..5d6f64f0 100644 --- a/world/map/npc/commands/numa.txt +++ b/world/map/npc/commands/numa.txt @@ -103,6 +103,7 @@ L_ChooseContinent: next; menu "Argeas", L_Argeas, + "World", L_World, "Close", L_Return; L_Argeas: @@ -121,6 +122,14 @@ L_Woodland: "Choose an area", L_Argeas, "Close", L_Return; +L_World: + mes "Choose an event."; + next; + menu + "Doomsday", L_Doomsday, + "Choose a continent", L_ChooseContinent, + "Close", L_Return; + L_Return: return; @@ -129,4 +138,8 @@ L_Return: L_Valia: callfunc "IlliaDebug"; goto L_Return; + +L_Doomsday: + callfunc "DoomsdayDebug"; + goto L_Return; } |