Rename internal:language: to .mudpy.linguistic
[mudpy.git] / etc / mudpy.yaml
1 # Copyright (c) 2004-2016 Jeremy Stanley <fungi@yuggoth.org>. Permission
2 # to use, copy, modify, and distribute this software is granted under
3 # terms provided in the LICENSE file distributed with this software.
4
5 __control__:
6     default_files: { "account": "account.yaml", "actor": "actor.yaml", "area": "area.yaml", "command": "command.yaml", "internal": "internal.yaml", "menu": "menu.yaml", "other": "other.yaml", "prop": "prop.yaml" }
7     include_dirs: [ "sample" ]
8     include_files: [ "archetype.yaml" ]
9     private_files: [ "account.yaml" ]
10     read_only: yes
11
12 .mudpy.linguistic.actions: { "?": "ask", ",": "begin", "-": "begin", ":": "begin", ";": "begin", "!": "exclaim", "...": "muse", ".": "say" }
13 .mudpy.linguistic.default_punctuation: .
14 .mudpy.linguistic.typos: { "i": "I", "i'd": "I'd", "i'll": "I'll", "i'm": "I'm", "teh": "the", "theyre": "they're", "youre": "you're" }
15
16 internal:limits:
17     #default_admins: [ "admin" ]
18     #default_backup_count: 10
19     max_avatars: 7
20     password_tries: 3
21
22 internal:logging:
23     #file: mudpy.log
24     max_log_lines: 1000
25     stdout: yes
26     #syslog: mudpy
27
28 internal:network:
29     host: ::1
30     #host: 127.0.0.1
31     port: 6669
32
33 internal:process:
34     #daemon: yes
35     #pidfile: mudpy.pid
36
37 internal:storage:
38     default_dir: "data"
39     #root_path: "."
40     search_path: [ "", "etc", "share", "data" ]
41
42 internal:time:
43     definition_d: 24h
44     definition_h: 60mi
45     definition_mi: 10r
46     definition_mo: 28d
47     definition_r: 6
48     definition_w: 7d
49     definition_y: 12mo
50     frequency_log: 6000
51     frequency_save: 600
52     linkdead: { "default": 6000, "entering_account_name": 600, "active": 6048000 }
53     idle: { "default": 5000, "entering_account_name": 500, "active": 5040000 }
54     increment: 0.1
55
56 internal:directions:
57     down: { "vector": [0,0,-1], "exit": "downward", "enter": "above" }
58     east: { "vector": [1,0,0], "exit": "to the east", "enter": "the west" }
59     north: { "vector": [0,1,0], "exit": "to the north", "enter": "the south" }
60     south: { "vector": [0,-1,0], "exit": "to the south", "enter": "the north" }
61     up: { "vector": [0,0,1], "exit": "upward", "enter": "below" }
62     west: { "vector": [-1,0,0], "exit": "to the west", "enter": "the east" }