about summary refs log tree commit diff stats
path: root/data/maps/the_orb/rooms/Main Area.txtpb
blob: 2ac328851f581cae61604ab81b6ea19dfa96a02d (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
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; 
name: "Main Area"
display_name: "Orb"
panels {
  name: "STRIKE"
  path: "Panels/O/entry_1"
  clue: "strike"
  answer: "hit"
  symbols: "sun"
}
panels {
  name: "METAL"
  path: "Panels/O/entry_2"
  clue: "metal"
  answer: "tin"
  symbols: "example"
}
panels {
  name: "HINT"
  path: "Panels/O/entry_3"
  clue: "hint"
  answer: "hit"
  symbols: "sparkles"
}
panels {
  name: "THIN"
  path: "Panels/O/entry_4"
  clue: "thin"
  answer: "tin"
  symbols: "sparkles"
}
panels {
  name: "NARROW"
  path: "Panels/R/entry_5"
  clue: "narrow"
  answer: "thin"
  symbols: "sun"
}
panels {
  name: "CLUE"
  path: "Panels/R/entry_6"
  clue: "clue"
  answer: "hint"
  symbols: "sun"
}
panels {
  name: "IMPLY"
  path: "Panels/R/entry_7"
  clue: "imply"
  answer: "hint"
  symbols: "sun"
}
panels {
  name: "THICK"
  path: "Panels/R/entry_8"
  clue: "thick"
  answer: "thin"
  symbols: "sun"
}
panels {
  name: "MUSE"
  path: "Panels/B/entry_9"
  clue: "muse"
  answer: "think"
  symbols: "sun"
}
panels {
  name: "ACT"
  path: "Panels/B/entry_10"
  clue: "act"
  answer: "think"
  symbols: "sun"
}
panels {
  name: "SOUTH"
  path: "Panels/B/entry_11"
  clue: "south"
  answer: "north"
  symbols: "sun"
}
panels {
  name: "EAST"
  path: "Panels/B/entry_12"
  clue: "east"
  answer: "north"
  symbols: "example"
}
ports {
  name: "GREAT"
  path: "Components/Warps/worldport"
  orientation: "south"
}
class="k">func error(msg : String): push_error(msg) quit() func _init(): var arguments = {} for argument in OS.get_cmdline_args(): if argument.find("=") > -1: var key_value = argument.split("=") arguments[key_value[0].lstrip("--")] = key_value[1] if !arguments.has("input") || !arguments.has("output"): error("Expected 2 Parameters: input and output") var input_file_name = arguments["input"] var output_file_name = arguments["output"] var file = FileAccess.open(input_file_name, FileAccess.READ) if file == null: error("File: '" + input_file_name + "' not found.") var parser = Parser.new() if parser.work(Util.extract_dir(input_file_name), Util.extract_filename(input_file_name), \ output_file_name, "res://addons/protobuf/protobuf_core.gd"): print("Compiled '", input_file_name, "' to '", output_file_name, "'.") else: error("Compilation failed.") quit()