File: Refrain.lua

package info (click to toggle)
rlvm 0.14-2.1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 16,964 kB
  • ctags: 33,744
  • sloc: cpp: 91,571; ansic: 39,346; perl: 768; python: 181; sh: 170; makefile: 8
file content (32 lines) | stat: -rw-r--r-- 858 bytes parent folder | download | duplicates (7)
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
World:import("LB_lib.lua")
-- TODO: The normal main menu handler isn't enough; we need something that
-- deals with the original main menu and the second one.
-- LB:installMainMenuHandler()

-- TODO: Needs several clicks in the middle. Also needs a click at the end?

-- Refrain (Little Busters)
-- Adapted from http://gamerssquare.kanpaku.jp/littlebusters.htm#r9
decisions = {
    -- May 21st
    "頭を使って",
    -- May 23rd
    "訊く",
    -- May 24th
    "訊いてみる",
    "怪我をしていることを思い出したから",
    -- 修学旅行
    "鈴を連れて逃げる",
    "いや",
    -- Epilogue
    "よくない",
    -- 修学旅行
    "冷静になる",
    "枝を折る",
    "後回しにする",
    "荷物を調べてもらう",
    "何かを考える",
    "恭介を助ける"
}

World:setDecisionList(decisions)