about summary refs log tree commit diff stats
path: root/data/maps/the_liberated/rooms/Puzzle Room.txtpb
blob: 72db46ffef467de959c2a9e50ad6744e3dcc9dc4 (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
name: "Puzzle Room"
panels {
  name: "CORPSE"
  path: "Panels/entry_1"
  clue: "corpse"
  answer: "corpses"
  symbols: PLANET
}
panels {
  name: "PERSON"
  path: "Panels/entry_2"
  clue: "person"
  answer: "people"
  symbols: PLANET
}
panels {
  name: "MOOSE"
  path: "Panels/entry_3"
  clue: "moose"
  answer: "moose"
  symbols: PLANET
}
panels {
  name: "FUNGUS"
  path: "Panels/entry_4"
  clue: "fungus"
  answer: "fungi"
  symbols: PLANET
}
panels {
  name: "SAND"
  path: "Panels/entry_5"
  clue: "sand"
  answer: "sands"
  symbols: PLANET
}
panels {
  name: "CASTLE"
  path: "Panels/entry_6"
  clue: "castle"
  answer: "castles"
  symbols: PLANET
}
panels {
  name: "WOLF"
  path: "Panels/entry_7"
  clue: "wolf"
  answer: "wolves"
  symbols: PLANET
}
panels {
  name: "FOOT"
  path: "Panels/entry_8"
  clue: "foot"
  answer: "feet"
  symbols: PLANET
}
ports {
  name: "ENTRY"
  path: "Components/Warps/worldport"
  destination { x: 0 y: 0 z: 7.5 }
  rotation: 0
}
For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.height = "512px"; config.extraPlugins = "lineutils,widgetselection,widget,image2"; /* Filebrowser routes */ // The location of an external file browser, that should be launched when "Browse Server" button is pressed. config.filebrowserBrowseUrl = "/ckeditor/attachment_files"; // The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Flash dialog. config.filebrowserFlashBrowseUrl = "/ckeditor/attachment_files"; // The location of a script that handles file uploads in the Flash dialog. config.filebrowserFlashUploadUrl = "/ckeditor/attachment_files"; // The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Link tab of Image dialog. config.filebrowserImageBrowseLinkUrl = "/ckeditor/pictures"; // The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Image dialog. config.filebrowserImageBrowseUrl = "/ckeditor/pictures"; // The location of a script that handles file uploads in the Image dialog. config.filebrowserImageUploadUrl = "/ckeditor/pictures?"; // The location of a script that handles file uploads. config.filebrowserUploadUrl = "/ckeditor/attachment_files"; config.allowedContent = true; // Toolbar groups configuration. config.toolbar = [ { name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source', 'Maximize' ] }, { name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', '-', 'Undo', 'Redo' ] }, { name: 'editing', groups: [ 'find' ], items: [ 'Find', 'Replace' ] }, // { name: 'forms', items: [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField' ] }, { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] }, { name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, '/', { name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] }, { name: 'colors', items: [ 'TextColor', 'BGColor' ] }, { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] } ]; config.toolbar_mini = [ { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, { name: 'styles', items: [ 'Font', 'FontSize' ] }, { name: 'colors', items: [ 'TextColor', 'BGColor' ] }, { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] }, { name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar' ] } ]; };