-
Notifications
You must be signed in to change notification settings - Fork 4
/
ranvier.json
86 lines (86 loc) · 1.82 KB
/
ranvier.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"port": 4000,
"bundles": [
"telnet-networking",
"tiny-input-events",
"tiny-areas",
"tiny-commands",
"tiny-player-events",
"tiny-attributes"
],
"dataSources": {
"YamlArea": {
"require": "ranvier-datasource-file.YamlAreaDataSource"
},
"Yaml": {
"require": "ranvier-datasource-file.YamlDataSource"
},
"YamlDirectory": {
"require": "ranvier-datasource-file.YamlDirectoryDataSource"
},
"JsonDirectory": {
"require": "ranvier-datasource-file.JsonDirectoryDataSource"
}
},
"entityLoaders": {
"accounts": {
"source": "JsonDirectory",
"config": {
"path": "data/account"
}
},
"players": {
"source": "JsonDirectory",
"config": {
"path": "data/player"
}
},
"areas": {
"source": "YamlArea",
"config": {
"path": "bundles/[BUNDLE]/areas"
}
},
"npcs": {
"source": "Yaml",
"config": {
"path": "bundles/[BUNDLE]/areas/[AREA]/npcs.yml"
}
},
"items": {
"source": "Yaml",
"config": {
"path": "bundles/[BUNDLE]/areas/[AREA]/items.yml"
}
},
"rooms": {
"source": "Yaml",
"config": {
"path": "bundles/[BUNDLE]/areas/[AREA]/rooms.yml"
}
},
"quests": {
"source": "Yaml",
"config": {
"path": "bundles/[BUNDLE]/areas/[AREA]/quests.yml"
}
},
"help": {
"source": "YamlDirectory",
"config": {
"path": "bundles/[BUNDLE]/help"
}
}
},
"maxAccountNameLength": 20,
"minAccountNameLength": 3,
"maxPlayerNameLength": 20,
"minPlayerNameLength": 3,
"maxCharacters": 3,
"reportToAdmins": false,
"startingRoom": "tiny:start",
"moveCommand": "move",
"skillLag": 2000,
"defaultMaxPlayerInventory": 16,
"maxIdleTime": 20
}