summaryrefslogtreecommitdiff
path: root/npc/magic/level1-grow-plants.txt
blob: d15f12766d4c93b6b1b8b965ab52f036c438116b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// The Mana World script
// Author: Jesusalva <jesusalva@themanaworld.org>
//
// Magic Script: Multiple (Level 1)
// School: Nature 1

function	script	SK_GrowPlants	{
    // Setup
    switch (@skillId) {
    case SKILL_MODRIPHOO:
        .@it = AlizarinHerb; .@mobId = AlizarinPlant; break;
    case SKILL_MODRISUMP:
        .@it = CobaltHerb; .@mobId = CobaltPlant; break;
    case SKILL_MODRIYIKAM:
        .@it = GambogeHerb; .@mobId = GambogePlant; break;
    case SKILL_MODRILAX:
        .@it = MauveHerb; .@mobId = MauvePlant; break;
    default: return;
    }
    // Consume reagents
    delitem Root, 1;
    delitem .@it, 1;
    // Continue but with a special flag
    SK_summon(.@mobId, 2, 1, false);
    return;
}