summaryrefslogtreecommitdiff
path: root/npc/013-1/sagatha.txt
blob: a2f5ce7dcf005dd954aef87c7aeea5b59e793e8d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
// (C) The Mana World Developers

function	script	SagathaStatus	{
    if (isequippedcnt(MoubooHead, FluffyHat))
        QuestSagathaAnnoy(15);

    @mexp = MAGIC_EXP;
    @has_magic = getskilllv(SKILL_MAGIC);
    @evil = 0;
    @good = 0;
    @unhappy = (QUEST_MAGIC & NIBBLE_3_MASK) >> NIBBLE_3_SHIFT;
    @mouboo = ((QUEST_MAGIC & NIBBLE_2_MASK) >> NIBBLE_2_SHIFT) & 3;

    if (@mouboo == 3)
        @good = @good + 1;
    if (@mouboo == 2)
        @evil = 1;
    if (@mouboo == 1)
        @evil = 1;

    if (MAGIC_FLAGS & MFLAG_DID_CUTTREE)
        @evil = 1;

    @druid = (((QUEST_MAGIC & NIBBLE_2_MASK) >> NIBBLE_2_SHIFT) & 12) >> 2;
    if (@druid == 3)
        @good = @good + 1;
    return;
}

013-1,131,24,0	script	Sagatha#_M	NPC167,{
    SagathaStatus();

    @Q_MASK = NIBBLE_4_MASK | NIBBLE_5_MASK;
    @Q_SHIFT = NIBBLE_4_SHIFT;

    @STATUS_INITIAL = 0;
    set @STATUS_STUDENT, 1; // N14
    @STATUS_STUDENT_N10 = 2;
    @STATUS_STUDENT_A10 = 3;
    @STATUS_STUDENT_A11 = 4;
    @STATUS_STUDENT_A12 = 5;
    @STATUS_STUDENT_N11 = 6;
    @STATUS_STUDENT_LEVEL_3 = 7;

    @Q_status = (QUEST_MAGIC & @Q_MASK) >> @Q_SHIFT;

    if (MAGIC_FLAGS & MFLAG_KNOWS_SAGATHA)
        .n$=l("Sagatha the Witch");
    else
        .@n$=l("Witch");
    // Header
    mesn .@n$;
    // if fluffyhat
    if (isequipped(FluffyHat))
        goto L_hat_attack;
    if (@evil)
        goto L_evil;
    if (@unhappy > 10)
        goto L_unhappy;
    if (MAGIC_FLAGS & MFLAG_KNOWS_SAGATHA)
        goto L_wb;

    mesc l("Before you stands a beautiful woman, dressed in dark purple robes and wearing a witch's hat.");

    mesc l("She looks at you suspiciously.");
    next;
    menu
        "Who are you?", L_Next,
        "What's your name?", L_Intro_name,
        "Hello!  My name is " + strcharinfo(0) + ".", L_Intro_givename,
        "Goodbye.", L_close;

L_Next:
    mesn .@n$;
    mes "\"I am what you humans call a witch. I am a human who has chosen all living creatures as what you call family.\"";
    next;
    menu
        "No, I mean... what's your name?", L_Intro_name,
        "Hello!  My name is " + strcharinfo(0) + ".", L_Intro_givename,
        "Uh.... goodbye.", L_close;

L_hat_attack:
    mes "The witch seems to be trembling with disgust as she stares at your headgear.";
    mes "\"Do you think that is funny?\" she snarls.";
    next;
    mesn .@n$;
    mes "\"You have no idea what that poor creature felt!\"";
    mes "She snaps her fingers.";
    mes "\"Let me show you...\"";
    misceffect sfx_magic_war, strcharinfo(0);
    misceffect sfx_magic_war;
    heal -300, 0;
    close;

L_Intro_name:
    mesn .@n$;
    mesq l("They call me Sagatha.");
    MAGIC_FLAGS = MAGIC_FLAGS | MFLAG_KNOWS_SAGATHA;
    next;
    goto L_Main;

L_Intro_givename:
    mesn .@n$;
    mesq l("Ah.");
    next;
    menu
        "What's yours?", L_Intro_name,
        "Uhm... bye.", L_close;

L_evil:
    mesc l("The witch's eyes flare up in anger as she notices you, and she turns away from you.");
    mesc l("Whatever the reason, she doesn't seem to like you.");
    close;

L_unhappy:
    mesc l("The witch glares at you in anger.");
    mes "\"I wonder if you can still sleep after killing those innocent forest creatures!";
    mes "I am sure that they will come back to haunt you in your dreams!\"";
    close;

L_wb:
    if (@good > 1)
        mes "Sagatha nods as she notices you.";
    if (@good == 1)
        mes "Sagatha raises an eyebrow as you address her.";
    if (@good == 0)
        mes "Sagatha glances at you, suspicion evident in her eyes.";
    next;
    goto L_Main;

L_Main:
    if (@Q_status)
        menu
            "Can you explain magic to me?", L_explain_magic,
            "Can you teach me more magic?", L_Teach,
            "What do you know about...", L_Question,
            "Goodbye.", L_close;
    menu
        "Can you explain magic to me?", L_explain_magic,
        "Can you teach me magic?", L_Teach_Initial,
        "What do you know about...", L_Question,
        "Goodbye.", L_close;

L_Teach_Initial:
    if (@good < 2)
        goto L_initial_nogood;
    if (getskilllv(SKILL_MAGIC_NATURE) < 2)
        goto L_initial_nonature;
    mesn .@n$;
    mes "She nods.";
    mes "\"For now, yes. But you will have to prove that you really care about more than yourself.\"";
    next;
    mesn .@n$;
    mes "She snaps her fingers, and without warning you begin to acutely sense the magical energies around you, for a brief instant!";
    @Q_status = @STATUS_STUDENT;
    callsub S_Update_Var;
    @SUP_xp = 5000;
    @SUP_lvl = 2;
    callsub S_up_astral;
    next;
    mesn .@n$;
    mes "\"In the future, I will teach you nature and astral magic. For the other schools there are better teachers around.\"";
    if (getskilllv(SKILL_MAGIC) < 2)
        mes "\"Your skill in magic won't be great enough to use some of the spells yet, so keep practicing and visiting the mana seed until it is.\"";
    next;
    goto L_Main;

L_initial_nogood:
    mesn .@n$;
    mes "\"I don't take strangers as students.\"";
    next;
    goto L_Main;

L_initial_nonature:
    mesn .@n$;
    mes "\"I might, but you don't even understand the basics of nature magic.\"";
    next;
    goto L_Main;

L_explain_magic:
    mesn .@n$;
    mes "\"No.\"";
    next;
    goto L_Main;

L_Teach:
    if (@Q_status == @STATUS_STUDENT)
        goto L_Teach_N14;
    if (@Q_status == @STATUS_STUDENT_N10)
        goto L_Teach_N10;
    if (@Q_status == @STATUS_STUDENT_A10)
        goto L_Teach_A10;
    if (@Q_status == @STATUS_STUDENT_A11)
        goto L_Teach_A11;
    if (@Q_status == @STATUS_STUDENT_A12)
        goto L_Teach_A12;
    if (@Q_status == @STATUS_STUDENT_N11)
        goto L_Teach_N11;

    mesn .@n$;
    mes "\"Not yet. You have to ask the mana seed to give you more power.\"";
    next;
    goto L_Main;

L_practice:
    mes "[1000 experience points]";
    @Q_status = @Q_status + 1;
    callsub S_Update_Var;
    getexp 1000,0;
    next;
    mesn .@n$;
    mes "\"Now go and practice.\"";
    next;
    goto L_Main;

L_Teach_N14:
    if (@mexp < 125 || getskilllv(SKILL_MAGIC) < 1)
        goto L_Teach_noexp;
    mesn .@n$;
    mes "\"Some forest creatures sometimes overgrow their fur or hide. That makes them uncomfortable.\"";
    next;
    mesn .@n$;
    mesq l("You can help them with shearing magic. Press your hands together and say '%s'. Then touch them with your hands, and brush off any excess.", b("Chipchip"));
    learnskill SKILL_CHIPCHIP;
    next;
    mesn .@n$;
    mesq l("The spell is strong, so you only need to do this once. Be careful not to cut them. Some things they shed are useful. Often they will leave them to you as a thank-you.");
    goto L_practice;

L_Teach_N10:
    if (@mexp < 150 || getskilllv(SKILL_MAGIC) < 2)
        goto L_Teach_noexp;
    mesn .@n$;
    mesq l("Next, a nature spell. Take a cocoon shell. Hold it in your hand. Feel its lightness.");
    next;
    mesn .@n$;
    mesq l("Internalize this feeling, and if your backpack was pressing on you you should no longer feel it now. We call it %s and it is a passive spell.", b("Plugh"));
    learnskill ALL_INCCARRY;
    goto L_practice;

L_Teach_A10:
    if (@mexp < 180 || getskilllv(SKILL_MAGIC) < 2)
        goto L_Teach_noexp;
    mesn .@n$;
    mesq l("To protect against others' magic, take a small mushroom from a shady place. Mushrooms draw things out of the earth. Rub your mushroom into pieces between your hands.");
    next;
    mesn .@n$;
    mesq l("Then say %s and let the mushroom's power take over. It only works on yourself, party or guild allies.", b("asorm"));
    learnskill SKILL_ASORM;
    goto L_practice;

L_Teach_A11:
    if (@mexp < 200 || getskilllv(SKILL_MAGIC) < 2)
        goto L_Teach_noexp;
    mesn .@n$;
    mesq l("If you must fight, call allies. You can call spiky mushrooms out of the ground with a mushroom spike and a root. Hold up the spike and call out to them: '%s'. Then press the root to the ground.", b("Kalrenk"));
    learnskill SKILL_KALRENK;
    next;
    mesn .@n$;
    mesq l("Spiky mushrooms often grow too many spikes, so you can shear the spikes off of some.");
    next;
    goto L_practice;

L_Teach_A12:
    if (@mexp < 220 || getskilllv(SKILL_MAGIC) < 2)
        goto L_Teach_noexp;
    mesn .@n$;
    mesq l("You can call fluffies, too. But for them you must call out '%s' instead, with white fluffy fur instead of a spike. And don't forget the root.", b("Kalakarenk"));
    learnskill SKILL_KALAKARENK;
    goto L_practice;

L_Teach_N11:
    if (@mexp < 250 || getskilllv(SKILL_MAGIC) < 2)
        goto L_Teach_noexp;
    mesn .@n$;
    mesq l("You can harden your skin with a hard spike. Hold it in your hands and speak '%s', then draw its hardness into your skin, or the skin of someone's else.", b("betsanc"));
    learnskill SKILL_BETSANC;
    next;
    mesn .@n$;
    mesq l("Keep in mind this spell only works on yourself or party/guild companions. It will reduce your attack speed so keep this in mind.");
    goto L_practice;

L_Teach_noexp:
    mesn .@n$;
    mesq l("You must practice more first.");
    next;
    goto L_Main;

L_Question:
    callfunc "MagicTalkOptionsSetup";
    @ignore = @QQ_SAGATHA;
    callfunc "MagicTalkMenu";

    if (@c == 0)
        goto L_Main;
    if (@c == @QQ_ELANORE)
        goto L_Q_elanore;
    if (@c == @QQ_MANASEED)
        goto L_Q_manaseed;
    if (@c == @QQ_MANAPOTION)
        goto L_Q_manapotion;
    if (@c == @QQ_WYARA)
        goto L_Q_wyara;
    if (@c == @QQ_AULDSBEL)
        goto L_Q_auldsbel;
    if (@c == @QQ_IMP)
        goto L_Q_imp;
    if (@c == @QQ_OLDWIZ)
        goto L_Q_old_wizard;
    if (@c == @QQ_ASTRALSOUL)
        goto L_Q_astralsoul;

    mesn .@n$;
    mes "\"That doesn't concern you.\"";
    next;
    goto L_Main;

L_Q_astralsoul:
    mesn .@n$;
    mes "\"Yes, there is a way to improve your magic.\"";
    next;
    mes "\"Did you ever hear about focusing?\"";
    next;
    mes "\"It is a mental ability, which improves you at a certain focused skill.\"";
    next;
    mes "\"Yes, I am focused on nature magic, but I cannot teach focusing. That is another realm of magic. Just a few people can really focus your brain to a specific art of magic.\"";
    next;
    mes "\"Maybe you should ask some other people experienced in magic.\"";
    next;
    goto L_Main;

L_Q_old_wizard:
    mesn .@n$;
    mes "\"A kind and wise wizard.\"";
    next;
    goto L_Main;

L_Q_imp:
    mesn .@n$;
    mes "\"He is an evil and cruel one. He lies and cheats and will try to take advantage of you. Stay away from him.\"";
    next;
    goto L_Main;

L_Q_elanore:
    mesn .@n$;
    mes "\"Elanore is the Tulimshar town healer.\"";
    next;
    goto L_Main;

L_Q_manaseed:
    mesn .@n$;
    if (!@has_magic && (MAGIC_FLAGS & MFLAG_TOUCHED_MANASEED))
        goto L_Q_manaseed_unabsorbed;
    if (@has_magic)
        goto L_Q_manaseed_m;
    mes "\"There is a mana seed around here, but I don't see how this concerns you.\"";
    next;
    goto L_Main;

L_Q_manaseed_unabsorbed:
    mes "\"If the mana seed didn't pass its magic to you, you clearly aren't attuned to magic.\"";
    next;
    goto L_Main;

L_Q_manaseed_m:
    mes "\"You were lucky that the mana seed gave you its magic. I hope that you will use this power for something good now.\"";
    next;
    goto L_Main;

L_Q_manapotion:
    mesn .@n$;
    mes "\"I won't make one without a cauldron, that would be wasteful. And I'm not going to start carrying a cauldron around.\"";
    next;
    goto L_Main;

L_Q_wyara:
    mesn .@n$;
    mes "\"Wyara decided to live with humans, in Hurnscald. She tries to make the world a better place in her own way. Please be kind to her, she is a very good person.\"";
    next;
    goto L_Main;

L_Q_auldsbel:
    mesn .@n$;
    mes "She frowns.";
    mes "\"He's a transmutation wizard, member of the northern council. Reasonably competent wizard, too.\"";
    next;
    goto L_Main;

L_close:
    close;

S_up_astral:
    @SUP_id = SKILL_MAGIC_ASTRAL;
    @SUP_name$ = "Astral Magic";
    callfunc "SkillUp";
    return;

S_Update_Var:
    set QUEST_MAGIC,
        (QUEST_MAGIC & ~(@Q_MASK)
        | (@Q_status << @Q_SHIFT));
    return;
}