-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
131 lines (105 loc) · 4.09 KB
/
config.lua
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
EIDConfig={
-------GENERAL---------
-- Change language of the mod.
-- Currently Supported: English = "en_us" (Default) , "en_us_detailed"
-- French = "fr" SPECIAL THANKS TO Nicolas Delvaux
-- Chinese (https://steamcommunity.com/sharedfiles/filedetails/?id=836319872)
-- Italian (https://steamcommunity.com/sharedfiles/filedetails/?id=931392691)
-- Russian (https://steamcommunity.com/sharedfiles/filedetails/?id=1552851879)
-- If you want to make a translation, please contact me :)
["Language"] = "en_us",
-- Change Width of the info boxes. (In characters)
-- Default = 25
["TextboxWidth"] = 25,
-- Change Size of the info boxes. Range: [0,...,1]
-- Default = 1
["Scale"] = 1,
-- Set transparency of the background. Range: [0,...,1]
-- Default = 0.75
["Transparency"] = 0.75,
-- Set X Position (Width) of the descriptiontext
-- Default = 50
["XPosition"] = 50,
-- Set Y Position (Height) of the descriptiontext
-- Default = 33
["YPosition"] = 33,
-- Set the distance to an item in which informations will be displayed (in Tiles)
-- Default = 5
["MaxDistance"] = 5,
-- Choose between an indicator, that highlights the currently inspected object
-- Options: ["arrow","blink","border","highlight","none"].
-- Arrow = moving arrow pointing at the item | Blink = the whole sprite blinks white | Border = Blinking white border around the sprite | Highlight = White border around the sprite | None = Disable funtion
-- Default = "none"
["Indicator"] = "none",
-- Set the keybinding to toggle the descriptions
-- look into the AB+ documentation for the key names
-- Default = Keyboard.KEY_F2
["HideKey"] = Keyboard.KEY_F2 ,
-------------CURSE-------------
-- Display informations when the floor has curse of the blind ( ? - Items)
-- Default = true
["DisableOnCurse"] = true,
----------ITEM NAMES-----------
-- Toggle Display of Collectible / Card and Pill names
-- Default = true
["ShowItemName"] = true,
-- Toggle Display of the Item Type and Maximum Charges as an icon
-- Default = true
["ShowItemType"] = true,
-- Set the RGB color of the Itemname text
-- Default = {0.8, 0.3, 0.8}
["ItemNameColor"] = {0.8, 0.3, 0.8},
-------TRANSFORMATIONS---------
-- Toggle Display of Transformation text
-- Default = true
["TransformationText"] = true,
-- Toggle Display of Transformation icons
-- Default = true
["TransformationIcons"] = true,
-- Set the RGB color of the Transformation text
-- Default = { 0.5, 0.5, 1}
["TransformationColor"] = { 0.5, 0.5, 1},
------------CARDS--------------
-- Toggle Display of Card / Rune descriptions
-- Default = true
["DisplayCardInfo"] = true,
-- Toggle Display of Card / Rune descriptions when its a shop item
-- Default = false
["DisplayCardInfoShop"] = false,
------------PILLS--------------
-- Toggle Display of Pill descriptions
-- Default = true
["DisplayPillInfo"] = true,
-- Toggle Display of Pill descriptions when its a shop item
-- Default = true
["DisplayPillInfoShop"] = true,
-- Toggle Display of Pill descriptions that arent known to you yet
-- Default = false
["ShowUnidentifiedPillDescriptions"] = false,
--------Sacrifice Room---------
-- Toggle Display of next Sacrifice room Payout descriptions
-- Default = true
["DisplaySacrificeInfo"] = true,
--------Dice Room---------
-- Toggle Display of Diceroom descriptions
-- Default = true
["DisplayDiceInfo"] = true,
-------------MISC---------------
-- Error message displayed when an error occurs
-- Default = [Effect not defined]
["ErrorMessage"] = "[Effect not defined]",
-- Set the RGB color of the default description text
-- Default = { 1, 1, 1}
["TextColor"] = {1,1,1},
-- Set the RGB color of the Error text
-- Default = { 1, 0, 0}
["ErrorColor"] = {1,0.4,0.4},
-- Enables or disables custom Descriptions for entities
-- Default = true
["EnableEntityDescriptions"] = true
}
--END CONFIG--
-----------
-----------
--Mod compatibility thing--
EIDConfig:ForceError()