-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvalidated.dhall
134 lines (132 loc) · 4.56 KB
/
validated.dhall
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
-- This file was tested using console NetHack version 3.6.1
--
-- To exercise all options documented in https://nethackwiki.com/wiki/Options
-- see `./unvalidated.dhall`
let types = ../types.dhall
in types.Config::{
, AUTOCOMPLETE =
[ { enable = True, value = "zap" }
, { enable = False, value = "annotate" }
]
, acoustics = Some True
, align = Some { enable = True, value = types.Alignment.chaotic }
, autodescribe = Some False
, autodig = Some False
, AUTOPICKUP_EXCEPTION =
[ { pickup = False, name = "chest" }, { pickup = True, name = "dagger" } ]
, BIND =
[ { keybinding = "!", command = "loot" }
, { keybinding = "^v", command = "untrap" }
, { keybinding = "M-x", command = "terrain" }
]
, catname = Some "Mirri"
, checkpoint = Some True
, checkspace = Some True
, clicklook = Some False
, cmdassist = Some True
, confirm = Some True
, dark_room = Some False
, disclose = Some types.Disclose::{
, inventory = Some { prompt = True, default = True }
, attributes = Some { prompt = True, default = False }
, monsters_killed = Some { prompt = False, default = True }
, monsters_genocided = Some { prompt = False, default = False }
, conduct = Some { prompt = False, default = False }
, dungeon_overview = Some { prompt = False, default = False }
}
, dogname = Some "Cujo"
, extmenu = Some False
, fixinv = Some True
, force_invmenu = Some False
, fruit = Some "slime mold"
, gender = Some types.Gender.female
, goldX = Some False
, help = Some True
, hilite_pet = Some False
, hilite_pile = Some False
, hilite_status = types.HiliteStatus::{
, gold =
[ { color = types.Color.yellow
, trigger = Some types.Numeric.always
, attributes = None types.Attributes.Type
}
]
}
, hitpointbar = Some True
, horsename = Some "Erhir"
, ignintr = Some False
, implicit_uncursed = Some True
, legacy = Some True
, lit_corridor = Some False
, lootabc = Some False
, mail = Some True
, mention_walls = Some False
, menucolors =
[ { regex = "blessed"
, color = Some types.Color.cyan
, attributes = types.Attributes::{ bold = Some True }
}
]
, menustyle = Some types.MenuStyle.traditional
, menu_deselect_all = Some "-"
, menu_deselect_page = Some "\\"
, menu_first_page = Some "^"
, menu_headings = Some types.MenuHeadings.bold
, menu_invert_all = Some "@"
, menu_invert_page = Some "~"
, menu_last_page = Some "|"
, menu_next_page = Some ">"
, menu_objsyms = Some False
, menu_previous_page = Some "<"
, menu_search = Some ":"
, menu_select_all = Some "."
, menu_tab_sep = Some False
, msg_window = Some types.MsgWindow.single
, MSGTYPE = [ types.MsgType.hide "You swap places with .*" ]
, name = Some "Kaeru"
, news = Some True
, nudist = Some False
, null = Some False
, number_pad = Some types.NumberPad.Letters
, packorder = Some "\")[%?+!=/(*`0_"
, paranoid_confirmation = types.ParanoidConfirmation::{ pray = Some True }
, pettype = Some types.PetType.cat
, pickup_burden = Some types.PickupBurden.stressed
, pickup_thrown = Some True
, pickup_types = Some "?!/"
, pile_limit = Some (types.PileLimit.limit 5)
, playmode = Some types.PlayMode.normal
, pushweapon = Some False
, race = Some { enable = True, value = types.Race.elf }
, rest_on_space = Some False
, role = Some { enable = True, value = types.Role.wizard }
, roguesymset = Some types.SymSet.RogueEpyx
, runmode = Some types.RunMode.walk
, safe_pet = Some True
, sanity_check = Some False
, scores = { own = Some True, around = Some 2, top = Some 10 }
, showexp = Some False
, showrace = Some False
, showscore = Some False
, silent = Some True
, sortloot = Some types.SortLoot.none
, sortpack = Some True
, sparkle = Some True
, standout = Some False
, status_updates = Some True
, statushilites = Some 10
, suppress_alert = Some "3.3.1"
, symset = Some types.SymSet.DECgraphics
, time = Some False
, timed_delay = Some True
, tombstone = Some True
, toptenwin = Some False
, travel = Some True
, verbose = Some True
, whatis_coord = Some types.WhatisCoord.none
, whatis_filter = Some types.WhatisFilter.no_filtering
, whatis_menu = Some False
, whatis_moveskip = Some False
, windowtype = Some "tty"
, wizkit = Some "wizkit.txt"
}