-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.nekocat
37 lines (37 loc) · 1.78 KB
/
script.nekocat
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
[Start]
script = [
{ action = "Modify variable", variable_name = "HP", value = "-1"},
{ action = "Modify variable", variable_name = "HP", value = "-1"},
{ action = "Give item", item_id = "pen", count = "-1"},
{ action = "Music", music_id = "BGM_1"},
{ action = "Background", background = "background_1"},
{ action = "Dialog", command = "ohm", mood = "Normal", text = "你好"},
{ action = "SetCharacter", number = 2, command_list = ["ohm","ohmf"], mood_list = ["Normal","sad"]},
{ action = "Sound", sound_id = "22score"},
{ action = "Dialog", command = "ohm", mood = "Normal", text = "早上好中國早上好中國早上好中國早上好中國早上好中國早上好中國我覺得北京天安門很棒棒棒棒棒棒棒棒"},
{ action = "SetCharacter", number = 3, command_list = ["ohm","ohmf","ohmf"], mood_list = ["sad","Normal","happy"]},
{ action = "Sound", sound_id = "22score"},
{ action = "Dialog", command = "ohmf", mood = "sad", text = "現在是22分"},
{ action = "SetCharacter", number = 0},
{ action = "Sound", sound_id = "sound_1"},
{ action = "Dialog", command = "no name", text = "I love you!"},
{ action = "Jump", label_id = "script_2", variable = ["HP","ohmLove"], mode = [">",">"], gap = [50,100]},
]
[script_2]
script = [
{ action = "Sound", sound_id = "sound_1"},
{ action = "Dialog", command = "no name", text = "Hello world!"},
{ action = "Option", optionCount = 2, optionContent = ["Button2","Button3"], optionJump = ["Ending_2","Ending_3"]}
]
[Ending_1]
script = [
{ action = "Dialog", command = "no name", text = "Ending_1"},
]
[Ending_2]
script = [
{ action = "Dialog", command = "no name", text = "Ending_2"},
]
[Ending_3]
script = [
{ action = "Dialog", command = "no name", text = "Ending_3"},
]