summaryrefslogtreecommitdiff
path: root/world/map/npc/029-4/time-traveler.txt
blob: 1242e7c44602f3a7a107719873c75c4a7f38fe71 (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
// time traveler that warps from old tonori to new tonori

029-1,25,40,0|script|Time Traveler#291|184
{
    mes "Would you like to time travel?";
    menu
        "Yes!", L_Warp;

L_Warp:
    mes "Hang tight!";
    close2;
    warp "029-4", 24, 38;
    close;
}

029-4,26,36,0|script|Time Traveler#294|184
{
    mes "Welcome back!";
    menu
        "What year are we in?", L_What,
        "How do I leave?", L_Leave;

L_What:
    mes "This is what Candor used to look like back in 2014.";
    // TODO: we need an explaination
    close;

L_Leave:
    mes "Walk West from here to escape the time dilation bubble.";
    close;
}