-
Notifications
You must be signed in to change notification settings - Fork 1
/
omegaflowey.code-workspace
148 lines (143 loc) · 4.32 KB
/
omegaflowey.code-workspace
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"folders": [
{
"name": "Omega Flowey Remastered",
"path": "."
},
{
"name": "omegaflowey.entity:hostile/omega-flowey",
"path": "./datapacks/omegaflowey/data/omegaflowey.entity/function/hostile/omega-flowey"
},
{
"name": "omegaflowey.entity:soul",
"path": "./datapacks/omegaflowey/data/omegaflowey.entity/function/soul"
},
{
"name": "omegaflowey.entity:directorial",
"path": "./datapacks/omegaflowey/data/omegaflowey.entity/function/directorial"
},
{
"name": "minecraft",
// TODO(2): dev agnostic minecraft assets path? ideally through `.env`, but not possible until
// https://github.com/microsoft/vscode/issues/44755 is complete
"path": "C:\\Users\\afro\\AppData\\Roaming\\.minecraft\\versions\\1.20.1\\1.20.1\\assets\\minecraft"
}
],
"settings": {
"datapack.env.dataVersion": "Latest snapshot",
"datapack.env.include": ["./datapacks/**/*"],
"datapack.lint.blockStateBracketSpacing": {
"inside": 1
},
"datapack.lint.blockStateCommaSpacing": {
"before": 0,
"after": 1
},
"datapack.lint.blockStateSortKeys": true,
"datapack.lint.blockStateTrailingComma": true,
"datapack.lint.idOmitDefaultNamespace": false,
"datapack.lint.nbtArrayBracketSpacing": {
"inside": 1
},
"datapack.lint.nbtBoolean": true,
"datapack.lint.nbtCompoundBracketSpacing": {
"inside": 1
},
"datapack.lint.strictStorageCheck": false,
"datapack.lint.timeOmitTickUnit": true,
"datapack.snippets": {
"consoleLogScore": "tellraw @a [{\"text\": \"${1:variable}: \"}, {\"score\": {\"name\": \"@s\", \"objective\": \"${1:variable}\"}}]",
"consoleLogStorage": "tellraw @a [{\"text\": \"${1:storage}.${2:path}: \"}, {\"nbt\": \"${2:path}\", \"storage\": \"${1:storage}\"}]"
},
"datapack.trace.server": "messages",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.trimAutoWhitespace": true,
"explorer.copyRelativePathSeparator": "/",
"explorer.sortOrder": "mixed",
"files.associations": {
"*.ajblueprint": "json",
"*.ajmeta": "json"
},
"files.exclude": {
"**/versions": true
},
"search.exclude": {
"./omegaflowey/data/math": true,
"./minecraft/**": true,
"./versions": true
},
"gitmoji.addCustomEmoji": [
{
"emoji": "⚔️",
"entity": "⚔",
"code": ":crossed_swords:",
"description": "Add functionality relating to boss-fight attacks",
"name": "attack",
"semver": null
},
{
"emoji": "👻",
"entity": "👻",
"code": ":ghost:",
"description": "Add functionality relating to soul events",
"name": "soul",
"semver": null
},
{
"emoji": "🎥",
"entity": "🎥",
"code": ":movie_camera:",
"description": "Add functionality relating to director entities or cutscenes",
"name": "director",
"semver": null
},
{
"emoji": "🎲",
"entity": "🎲",
"code": ":game_die:",
"description": "Add/change a feature relating to RNG/randomization",
"name": "random",
"semver": null
},
{
"emoji": "📋",
"entity": "📋",
"code": ":clipboard:",
"description": "Copy-paste files from one directory to another",
"name": "copy-paste",
"semver": null
},
{
"emoji": "🧮",
"entity": "🧮",
"code": ":abacus:",
"description": "Perform some math calculations",
"name": "math",
"semver": null
},
{
"emoji": "📍",
"entity": "📍",
"code": ":round_pushpin:",
"description": "Change the position/rotation/location of some entity(s)",
"name": "location",
"semver": null
},
{
"emoji": "🌎",
"entity": "🌎",
"code": ":earth_americas:",
"description": "Update the world file",
"name": "world",
"semver": null
}
],
"gitmoji.showEmojiCode": true,
"terminal.integrated.cwd": "."
}
}