-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmod.json
More file actions
79 lines (75 loc) · 2.8 KB
/
mod.json
File metadata and controls
79 lines (75 loc) · 2.8 KB
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
{
"geode": "5.0.0",
"gd": {
"win": "2.2081",
"mac": "2.2081"
},
"id": "colon.customtextboxes",
"name": "Custom Textboxes",
"version": "v1.0.6",
"developer": "Colon",
"description": "Display custom popups, chests, and more",
"resources": {
"files": ["defaults/*.json"]
},
"tags": ["universal", "offline", "interface"],
"links": {
"source": "https://github.com/GDColon/Custom-Textboxes"
},
"dependencies": {
"geode.node-ids": { "version": ">=1.20.0", "required": true },
"geode.texture-loader": { "version": ">=1.7.0", "required": false }
},
"settings": {
"key_popup": {
"type": "custom:keybind",
"name": "Popup keybind",
"description": "Press this key to spawn the popup defined in <cy>custom_popups.json</c>\n\n<cg>Shift + this key</c> will queue the popup\n<cg>Alt + this key</c> will spawn the secondary one.\n<cl>(these modifier keys can be changed below)</c>",
"default": 36
},
"key_dialogue": {
"type": "custom:keybind",
"name": "Dialogue keybind",
"description": "Press this key to spawn the dialogue box defined in <cy>custom_dialogues.json</c>\n\n<cg>Shift + this key</c> will queue the dialogue\n<cg>Alt + this key</c> will spawn the secondary one.\n<cl>(these modifier keys can be changed below)</c>",
"default": 33
},
"key_chest": {
"type": "custom:keybind",
"name": "Chest keybind",
"description": "Press this key to spawn the chest defined in <cy>custom_chests.json</c>\n\n<cg>Shift + this key</c> will queue the chest\n<cg>Alt + this key</c> will spawn the secondary one.",
"default": 45
},
"missingIDWarn": {
"name": "Warn when missing ID",
"description": "Displays a warning popup when trying to spawn a textbox with an ID that hasn't been defined",
"type": "bool",
"default": true
},
"shiftSound": {
"name": "Queue sound effect",
"description": "Plays a sound effect when a textbox is successfully queued up (by holding SHIFT)",
"type": "bool",
"default": false
},
"onDeath": {
"name": "Spawn queued on death",
"description": "Also spawns the queued textbox when you die in-game. Why not.",
"type": "bool",
"default": false
},
"shiftRebind": {
"name": "Queue modifier key",
"description": "Spawning a textbox while holding this key will queue it up instead, making it appear the next time you click a menu button.",
"type": "string",
"one-of": ["Shift", "Alt", "Ctrl", "Command", "None"],
"default": "Shift"
},
"altRebind": {
"name": "Alt modifier key",
"description": "Spawning a textbox while holding this key will spawn the alt one instead, using the <cy>to-show-alt</c> JSON key.",
"type": "string",
"one-of": ["Shift", "Alt", "Ctrl", "Command", "None"],
"default": "Alt"
}
}
}