summaryrefslogtreecommitdiff
path: root/npc/magic/plantkingdom.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-05 16:37:04 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-05 16:37:04 -0300
commit0dfe2b609ad3919fe293bd0082ad506fef1c27af (patch)
tree73836eff1c8431297a1796973aaa395bdd28a73c /npc/magic/plantkingdom.txt
parent93221b61a9f2dc723845218c3bf7e2f4b4e1cf6b (diff)
downloadserverdata-0dfe2b609ad3919fe293bd0082ad506fef1c27af.tar.gz
serverdata-0dfe2b609ad3919fe293bd0082ad506fef1c27af.tar.bz2
serverdata-0dfe2b609ad3919fe293bd0082ad506fef1c27af.tar.xz
serverdata-0dfe2b609ad3919fe293bd0082ad506fef1c27af.zip
Register four new summoning skills for Sagratha
Diffstat (limited to 'npc/magic/plantkingdom.txt')
-rw-r--r--npc/magic/plantkingdom.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/npc/magic/plantkingdom.txt b/npc/magic/plantkingdom.txt
new file mode 100644
index 000000000..4afa8e010
--- /dev/null
+++ b/npc/magic/plantkingdom.txt
@@ -0,0 +1,58 @@
+// TMW2 script
+// Author: Jesusalva <admin@tmw2.org>
+//
+// Magic Script: TMW2_PLANTKINGDOM
+//
+// Summons plants
+
+- script sk#plantkingdom 32767,{
+ end;
+
+OnCall:
+ // Other requeriments: 2x Root
+ if (countitem(Root) < 2) {
+ dispbottom l("You need 2x @@ to cast this skill.", getitemlink(Root));
+ end;
+ }
+
+ // Check cooldown
+ if (@plantkingdom_at > gettimetick(2)) {
+ dispbottom l("Skill is in cooldown for @@.", FuzzyTime(@plantkingdom_at));
+ end;
+ }
+
+ // Setup
+ @sk=TMW2_PLANTKINGDOM;
+ @mp=300;
+ @amp=30;
+
+ // Check if you have mana to cast
+ // MagicCheck(SkillID, Mana{, MP per level})
+ if (!MagicCheck(@sk, @mp, @amp))
+ end;
+
+ // Destroy reagents
+ delitem Root, 2;
+
+ // set cooldown
+ @plantkingdom_at=gettimetick(2);
+ @plantkingdom_at=@plantkingdom_at+54;
+
+ // As usual, magic profeciency affects
+ 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);
+ } else {
+ dispbottom l("The spell fails!");
+ }
+
+ // Get 3~4 mana experience point (this is NOT used by Mana Stone)
+ GetManaExp(@sk, rand(3,4));
+
+ end;
+
+OnInit:
+ bindatcmd "sk-plantkingdom", "sk#plantkingdom::OnCall", 0, 100, 0;
+ end;
+}