summaryrefslogblamecommitdiff
path: root/npc/014-5-1/sagratha.txt
blob: 9953a8b4ea4ba065e6662014413b96795c0982f3 (plain) (tree)
1
2
3
4
5
6





                


















                                                           




                                 




                            
                                 

                  
                                        


                             



                                         




                  
                                                      




                                                              

                                      









                                                                            



                      
 
                                                                               







                                                                                
          
 




























                                                























                                                                                             
       

                                                              








                                        
// TMW2 scripts.
// Authors:
//    Jesusalva
// Description:
//    Sagratha

// SaggyScoreUpdate( amount )
function	script	SaggyScoreUpdate	{
    .@val=getarg(0);
    SAGRATHA_SCORE=max(-50, min(50, SAGRATHA_SCORE+.@val));
    return;
}

function	script	SaggyMobCount	{
    switch (killedrid) {
        // She gets angry
        case Mouboo:
        case AlphaMouboo:
            SaggyScoreUpdate(-5);
            break;
        case Pollet:
        case Fluffy:
        case IcedFluffy:
            SaggyScoreUpdate(-3);
            break;
        case PoisonSpikyMushroom:
        case LogHead:
        case ForestMushroom:
            SaggyScoreUpdate(-2);
            break;
        case Squirrel:
        case SpringSquirrel:
        case LofSquirrel:
        case FrozenSquirrel:
        case FairysSquirrel:
            SaggyScoreUpdate(-1);
            break;

        // She may get happy. Who knows.
        case ViciousSquirrel:
        case WickedMushroom:
        case Bluepar:
        case BlackScorpion:
        case AngryScorpion:
        case AngryRedScorpion:
            SaggyScoreUpdate(any(0,0,1));
            break;
    }
    return;
}

014-5-1,33,37,0	script	Sagratha	NPC_SAGRATHA,{
    if (array_find(.SaggyHats, getequipid(EQI_HEAD_TOP)) >= 0)
        goto L_HatAttack;
    if (SAGRATHA_SCORE < 0)
        goto L_Unhappy;

    .@q=getq(HurnscaldQuest_Sagratha);

    mesn;

    if (.@good >= 2)
        mesc l("@@ nods as she notices you.", .name$);
    if (.@good == 1)
        mesc l("@@ raises an eyebrow as you address her.", .name$);
    if (.@good == 0)
        mesc l("@@ glances at you, suspicion evident in her eyes.", .name$);

    mesq l("Hello.");
    next;

    if (.@q == 6)
        goto L_Reward;

    // TODO: What's your name etc etc - Maybe before the dialog, in the dungeon
    // TODO: Handle the curse (menu option)
    // TODO: Collect reward (set quest status to 7)
    // TODO: Allow to return to the Sealed Shrine
    // TODO: Learn Magic
    // TODO: Request help with stuff (eg. protecting mouboos?)
    // TODO: Get Mouboo Milk :>
    // TODO: Maybe never update her score with kills and make her more pacifist?

    close;

L_Reward:
    select
        l("Hi! My name is @@.", strcharinfo(0)),
        l("Are you Sagratha?"),
        l("Good bye.");
    mes "";
    if (@menu == 3)
        close;
    if (@menu == 1) {
        mesn;
        mesq l("Ah.");
        next;
        select
            l("Are you Sagratha?"),
            l("Erm... Good bye.");
        mes "";
        if (@menu == 2)
            close;
    }
    mesn;
    mesq l("Yes.");
    next;
    mesn;
    mesq l("Do you need something from me?");
    next;
    select
        l("Not really.");
    close;

L_HatAttack:
    mesn;
    mesc l("@@ seems to be trembling with disgust as she stares at your headgear.", .name$);
    mes l("\"Do you think that is funny?\" she snarls.");
    next;
    mesn;
    mesq l("You have no idea what that poor creature felt!");
    next;
    mesn;
    mesc l("She snaps her fingers.");
    mesq l("Let me show you...");
    specialeffect 312, SELF, getcharid(3);
    heal -300, 0;
    close;

L_Unhappy:
    mesn;
    mesc l("@@ glares at you in anger.", .name$);
    mesq l("I wonder if you can still sleep after killing those innocent forest creatures!");
    next;
    mesn;
    mesq l("I am sure that they will come back to haunt you in your dreams!");
    close;

OnInit:
    setarray .SaggyHats, FluffyHat, MoubooHat, AlphaMoubooHat;

    .distance=5;
    npcsit;
    end;

OnInstanceInit:
    disablenpc instance_npcname(.name$);
    end;
}