summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/014-5-1/sagratha.txt35
-rw-r--r--npc/magic/plantkingdom.txt2
2 files changed, 21 insertions, 16 deletions
diff --git a/npc/014-5-1/sagratha.txt b/npc/014-5-1/sagratha.txt
index 7f01e2af6..d376333d5 100644
--- a/npc/014-5-1/sagratha.txt
+++ b/npc/014-5-1/sagratha.txt
@@ -309,11 +309,12 @@ function teachMagic {
mesq l("For now, yes. But you will have to prove that you really care about more than yourself.");
next;
mesn;
- mesq l("This is the LIMERIZER spell. It'll spawn slimes. Several. Of several kinds.");
+ mesq l("I'll teach you two spells. The first one is CUTE HEART. It summons Fluffies.");
next;
mesn;
- mesq l("Never use it for evil. Slimes can be... kinda nasty to clothing.");
- skill TMW2_LIMERIZER, 1, 0;
+ mesq l("And the second one is KALSPIKE. It allows you to summon Poison Spiky Mushroom.");
+ skill TMW2_CUTEHEART, 1, 0;
+ skill TMW2_KALSPIKE, 1, 0;
setq General_Sagratha, 1;
break;
case 2:
@@ -324,14 +325,14 @@ function teachMagic {
mesq l("Be careful, because the more magic power you ask the Mana Seed, the more difficult to control it will be.");
next;
mesn;
- mesq l("This is how the Monster King became an evil. Keep practicing magic, so you get more comfortable with it and fail less often.");
+ mesq l("This is how the Monster King became evil. Keep practicing magic, so you get more comfortable with it and fail less often.");
next;
mesn;
- mesq l("Anyway. This is the HALHISS spell. It'll summon snakes.");
+ mesq l("Anyway. This is the KALBOO spell. It'll summon mouboos.");
next;
mesn;
- mesq l("Snakes are annoying and poisonous. Quite handy as a summon, though.");
- skill TMW2_HALHISS, 1, 0;
+ mesq l("The world belong to Mouboos. They are sublime creatures!");
+ skill TMW2_KALBOO, 1, 0;
setq General_Sagratha, 3;
break;
case 4:
@@ -346,7 +347,11 @@ function teachMagic {
next;
mesn;
mesq l("Wolverns are fierce creatures who likes cold places. Their fur is soft.");
+ next;
+ mesn;
+ mesq l("You can also use PLANTKINGDOM to spawn several plants at once, too. Let's make this world more green.");
skill TMW2_KALWULF, 1, 0;
+ skill TMW2_PLANTKINGDOM, 1, 0;
setq General_Sagratha, 5;
break;
}
@@ -411,20 +416,20 @@ function teachMagic {
break;
}
/*
- NEW Plants Lv 1
+ Plants Lv 1
Kalmurk Lv 10
Zarkor Lv 15
- NEW Fluffy Lv 15
- NEW Poison Spiky Mushroom Lv 25
- Limerizer Lv 30
+ Fluffy Lv 15
+ Poison Spiky Mushroom Lv 25
+ Limerizer Lv 30 → Unused
- NEW Mouboo Lv 35
- Halhiss Lv 40
+ Mouboo Lv 35
+ Halhiss Lv 40 → Unused
Wolvern Lv 45
- Fairy Kingdom Lv 50 → Maybe Lilit?
+ Fairy Kingdom Lv 50
Frozenheart Lv 60
- Dragokin Lv 70 → Maybe Lilit?
+ Dragokin Lv 70 → Unused (Lilit reward)
Stoneheart Lv 80
TODO Scorpions Lv 30~50
diff --git a/npc/magic/plantkingdom.txt b/npc/magic/plantkingdom.txt
index 4afa8e010..2788f80de 100644
--- a/npc/magic/plantkingdom.txt
+++ b/npc/magic/plantkingdom.txt
@@ -42,7 +42,7 @@ OnCall:
if (rand(1,6) < abizit()+1) {
// Summon Magic
// SummonMagic(SkillID, MobID{, SkillLevelPerMob=2{, Level Override}})
- SummonMagic(@sk, any(ShadowPlant, AlizarinPlant, CobaltPlant, MauvePlant, GambogePlant, PlushroomField, ChagashroomField, AlizarinPlant, CobaltPlant, MauvePlant, GambogePlant), 2, MAGIC_LVL+getskilllv(@sk)-1);
+ SummonMagic(@sk, any(ShadowPlant, AlizarinPlant, CobaltPlant, MauvePlant, GambogePlant, PlushroomField, ChagashroomField, MananaTree, CrocoTree, AlizarinPlant, CobaltPlant, MauvePlant, GambogePlant), 2, MAGIC_LVL+getskilllv(@sk)-1);
} else {
dispbottom l("The spell fails!");
}