From 0dfe2b609ad3919fe293bd0082ad506fef1c27af Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 5 Jun 2019 16:37:04 -0300 Subject: Register four new summoning skills for Sagratha --- npc/magic/kalspike.txt | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 npc/magic/kalspike.txt (limited to 'npc/magic/kalspike.txt') diff --git a/npc/magic/kalspike.txt b/npc/magic/kalspike.txt new file mode 100644 index 000000000..f3d07c32c --- /dev/null +++ b/npc/magic/kalspike.txt @@ -0,0 +1,59 @@ +// TMW2 script +// Author: Jesusalva +// +// Magic Script: TMW2_KALSPIKE +// +// Summons mouboo + +- script sk#kalspike 32767,{ + end; + +OnCall: + // Other requeriments: 1x MushroomSpores + if (countitem(MushroomSpores) < 1) { + dispbottom l("You need 1x @@ to cast this skill.", getitemlink(MushroomSpores)); + end; + } + + // Check cooldown + if (@kalspike_at > gettimetick(2)) { + dispbottom l("Skill is in cooldown for @@.", FuzzyTime(@kalspike_at)); + end; + } + + // Setup + @sk=TMW2_KALSPIKE; + @mp=250; + @amp=55; + + // Check if you have mana to cast + // MagicCheck(SkillID, Mana{, MP per level}) + if (!MagicCheck(@sk, @mp, @amp)) + end; + + // Destroy reagents + delitem MushroomSpores, 1; + + // set cooldown + @kalspike_at=gettimetick(2); + @kalspike_at=@kalspike_at+44; + + // As usual, magic profeciency affects success ratio + if (rand(1,6) < abizit()+1) { + .@mobId=PoisonSpikyMushroom; + // Summon Magic + // SummonMagic(SkillID, MobID{, SkillLevelPerMob=2{, Level Override}}) + SummonMagic(@sk, .@mobId, 4, MAGIC_LVL+getskilllv(@sk)-1); + } else { + dispbottom l("The spell fails!"); + } + + // Get 4~5 mana experience point (this is NOT used by Mana Stone) + GetManaExp(@sk, rand(4,5)); + + end; + +OnInit: + bindatcmd "sk-kalspike", "sk#kalspike::OnCall", 0, 100, 0; + end; +} -- cgit v1.2.3-70-g09d2