bc-minecraft-bedrock-command 1.19.41-5 → 1.19.50-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/src/Lib/Data/CommandContainer.d.ts +1 -1
- package/lib/src/Lib/Data/CommandData.d.ts +6 -2
- package/lib/src/Lib/Data/CommandData.js +135 -3
- package/lib/src/Lib/Data/CommandData.js.map +1 -1
- package/lib/src/Lib/Data/Vanilla/execute/subcommands.d.ts +2 -0
- package/lib/src/Lib/Data/Vanilla/execute/subcommands.js +385 -0
- package/lib/src/Lib/Data/Vanilla/execute/subcommands.js.map +1 -0
- package/lib/src/Lib/Data/Vanilla/execute.js +18 -0
- package/lib/src/Lib/Data/Vanilla/execute.js.map +1 -1
- package/lib/src/Lib/Data/Vanilla/tp.d.ts +3 -0
- package/lib/src/Lib/Data/Vanilla/tp.js +369 -0
- package/lib/src/Lib/Data/Vanilla/tp.js.map +1 -0
- package/lib/src/Lib/Types/Command/Command.d.ts +5 -3
- package/lib/src/Lib/Types/Command/Command.js +18 -13
- package/lib/src/Lib/Types/Command/Command.js.map +1 -1
- package/lib/src/Lib/Types/Command/Functions.d.ts +14 -7
- package/lib/src/Lib/Types/Command/Functions.js +104 -138
- package/lib/src/Lib/Types/Command/Functions.js.map +1 -1
- package/lib/src/Lib/Types/ParameterType.d.ts +49 -41
- package/lib/src/Lib/Types/ParameterType.js +49 -41
- package/lib/src/Lib/Types/ParameterType.js.map +1 -1
- package/package.json +2 -2
- package/lib/src/Lib/Data/Commands.d.ts +0 -7
- package/lib/src/Lib/Data/Commands.js +0 -138
- package/lib/src/Lib/Data/Commands.js.map +0 -1
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import { CommandContainer } from "./CommandContainer";
|
|
1
2
|
/** The minecraft command data set */
|
|
2
3
|
export declare namespace CommandData {
|
|
3
4
|
/** The edu command data set */
|
|
4
|
-
const Edu:
|
|
5
|
+
const Edu: CommandContainer;
|
|
5
6
|
/** The vanilla command data set */
|
|
6
|
-
const Vanilla:
|
|
7
|
+
const Vanilla: CommandContainer;
|
|
8
|
+
const ExecuteSubcommands: CommandContainer;
|
|
9
|
+
const VanillaCommands: string[];
|
|
10
|
+
const EduCommands: string[];
|
|
7
11
|
}
|
|
@@ -1,13 +1,145 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CommandData = void 0;
|
|
4
|
-
const
|
|
4
|
+
const ability_1 = require("./Edu/ability");
|
|
5
|
+
const alwaysday_1 = require("./Vanilla/alwaysday");
|
|
6
|
+
const camerashake_1 = require("./Vanilla/camerashake");
|
|
7
|
+
const classroommode_1 = require("./Edu/classroommode");
|
|
8
|
+
const clear_1 = require("./Vanilla/clear");
|
|
9
|
+
const clearspawnpoint_1 = require("./Vanilla/clearspawnpoint");
|
|
10
|
+
const clone_1 = require("./Vanilla/clone");
|
|
11
|
+
const code_1 = require("./Edu/code");
|
|
12
|
+
const damage_1 = require("./Vanilla/damage");
|
|
13
|
+
const daylock_1 = require("./Vanilla/daylock");
|
|
14
|
+
const deop_1 = require("./Vanilla/deop");
|
|
15
|
+
const dialogue_1 = require("./Vanilla/dialogue");
|
|
16
|
+
const difficulty_1 = require("./Vanilla/difficulty");
|
|
17
|
+
const effect_1 = require("./Vanilla/effect");
|
|
18
|
+
const enchant_1 = require("./Vanilla/enchant");
|
|
19
|
+
const event_1 = require("./Vanilla/event");
|
|
20
|
+
const execute_1 = require("./Vanilla/execute");
|
|
21
|
+
const subcommands_1 = require("./Vanilla/execute/subcommands");
|
|
22
|
+
const fill_1 = require("./Vanilla/fill");
|
|
23
|
+
const fog_1 = require("./Vanilla/fog");
|
|
24
|
+
const function_1 = require("./Vanilla/function");
|
|
25
|
+
const gamemode_1 = require("./Vanilla/gamemode");
|
|
26
|
+
const gamerule_1 = require("./Vanilla/gamerule");
|
|
27
|
+
const give_1 = require("./Vanilla/give");
|
|
28
|
+
const immutableworld_1 = require("./Edu/immutableworld");
|
|
29
|
+
const kick_1 = require("./Vanilla/kick");
|
|
30
|
+
const kill_1 = require("./Vanilla/kill");
|
|
31
|
+
const locate_1 = require("./Vanilla/locate");
|
|
32
|
+
const loot_1 = require("./Vanilla/loot");
|
|
33
|
+
const me_1 = require("./Vanilla/me");
|
|
34
|
+
const msg_1 = require("./Vanilla/msg");
|
|
35
|
+
const music_1 = require("./Vanilla/music");
|
|
36
|
+
const op_1 = require("./Vanilla/op");
|
|
37
|
+
const particle_1 = require("./Vanilla/particle");
|
|
38
|
+
const playanimation_1 = require("./Vanilla/playanimation");
|
|
39
|
+
const playsound_1 = require("./Vanilla/playsound");
|
|
40
|
+
const replaceitem_1 = require("./Vanilla/replaceitem");
|
|
41
|
+
const ride_1 = require("./Vanilla/ride");
|
|
42
|
+
const say_1 = require("./Vanilla/say");
|
|
43
|
+
const schedule_1 = require("./Vanilla/schedule");
|
|
44
|
+
const scoreboard_1 = require("./Vanilla/scoreboard");
|
|
45
|
+
const setblock_1 = require("./Vanilla/setblock");
|
|
46
|
+
const setmaxplayers_1 = require("./Vanilla/setmaxplayers");
|
|
47
|
+
const setworldspawn_1 = require("./Vanilla/setworldspawn");
|
|
48
|
+
const spawnpoint_1 = require("./Vanilla/spawnpoint");
|
|
49
|
+
const spreadplayers_1 = require("./Vanilla/spreadplayers");
|
|
50
|
+
const stopsound_1 = require("./Vanilla/stopsound");
|
|
51
|
+
const structure_1 = require("./Vanilla/structure");
|
|
52
|
+
const summon_1 = require("./Vanilla/summon");
|
|
53
|
+
const tag_1 = require("./Vanilla/tag");
|
|
54
|
+
const teleport_1 = require("./Vanilla/teleport");
|
|
55
|
+
const tell_1 = require("./Vanilla/tell");
|
|
56
|
+
const tellraw_1 = require("./Vanilla/tellraw");
|
|
57
|
+
const testfor_1 = require("./Vanilla/testfor");
|
|
58
|
+
const testforblock_1 = require("./Vanilla/testforblock");
|
|
59
|
+
const tickingarea_1 = require("./Vanilla/tickingarea");
|
|
60
|
+
const time_1 = require("./Vanilla/time");
|
|
61
|
+
const title_1 = require("./Vanilla/title");
|
|
62
|
+
const titleraw_1 = require("./Vanilla/titleraw");
|
|
63
|
+
const toggledownfall_1 = require("./Vanilla/toggledownfall");
|
|
64
|
+
const tp_1 = require("./Vanilla/tp");
|
|
65
|
+
const w_1 = require("./Vanilla/w");
|
|
66
|
+
const weather_1 = require("./Vanilla/weather");
|
|
67
|
+
const xp_1 = require("./Vanilla/xp");
|
|
5
68
|
/** The minecraft command data set */
|
|
6
69
|
var CommandData;
|
|
7
70
|
(function (CommandData) {
|
|
8
71
|
/** The edu command data set */
|
|
9
|
-
CommandData.Edu =
|
|
72
|
+
CommandData.Edu = {
|
|
73
|
+
ability: ability_1.ability,
|
|
74
|
+
classroommode: classroommode_1.classroommode,
|
|
75
|
+
code: code_1.code,
|
|
76
|
+
gamerule: gamerule_1.gamerule,
|
|
77
|
+
immutableworld: immutableworld_1.immutableworld,
|
|
78
|
+
};
|
|
10
79
|
/** The vanilla command data set */
|
|
11
|
-
CommandData.Vanilla =
|
|
80
|
+
CommandData.Vanilla = {
|
|
81
|
+
alwaysday: alwaysday_1.alwaysday,
|
|
82
|
+
camerashake: camerashake_1.camerashake,
|
|
83
|
+
clear: clear_1.clear,
|
|
84
|
+
clearspawnpoint: clearspawnpoint_1.clearspawnpoint,
|
|
85
|
+
clone: clone_1.clone,
|
|
86
|
+
damage: damage_1.damage,
|
|
87
|
+
daylock: daylock_1.daylock,
|
|
88
|
+
dialogue: dialogue_1.dialogue,
|
|
89
|
+
difficulty: difficulty_1.difficulty,
|
|
90
|
+
deop: deop_1.deop,
|
|
91
|
+
effect: effect_1.effect,
|
|
92
|
+
enchant: enchant_1.enchant,
|
|
93
|
+
event: event_1.event,
|
|
94
|
+
execute: execute_1.execute,
|
|
95
|
+
fill: fill_1.fill,
|
|
96
|
+
fog: fog_1.fog,
|
|
97
|
+
function: function_1.Function,
|
|
98
|
+
gamemode: gamemode_1.gamemode,
|
|
99
|
+
gamerule: gamerule_1.gamerule,
|
|
100
|
+
give: give_1.give,
|
|
101
|
+
kick: kick_1.kick,
|
|
102
|
+
kill: kill_1.kill,
|
|
103
|
+
locate: locate_1.locate,
|
|
104
|
+
loot: loot_1.loot,
|
|
105
|
+
me: me_1.me,
|
|
106
|
+
msg: msg_1.msg,
|
|
107
|
+
music: music_1.music,
|
|
108
|
+
op: op_1.op,
|
|
109
|
+
particle: particle_1.particle,
|
|
110
|
+
playsound: playsound_1.playsound,
|
|
111
|
+
playanimation: playanimation_1.playanimation,
|
|
112
|
+
replaceitem: replaceitem_1.replaceitem,
|
|
113
|
+
ride: ride_1.ride,
|
|
114
|
+
say: say_1.say,
|
|
115
|
+
schedule: schedule_1.schedule,
|
|
116
|
+
scoreboard: scoreboard_1.scoreboard,
|
|
117
|
+
setblock: setblock_1.setblock,
|
|
118
|
+
setworldspawn: setworldspawn_1.setworldspawn,
|
|
119
|
+
setmaxplayers: setmaxplayers_1.setmaxplayers,
|
|
120
|
+
spawnpoint: spawnpoint_1.spawnpoint,
|
|
121
|
+
spreadplayers: spreadplayers_1.spreadplayers,
|
|
122
|
+
stopsound: stopsound_1.stopsound,
|
|
123
|
+
structure: structure_1.structure,
|
|
124
|
+
summon: summon_1.summon,
|
|
125
|
+
tag: tag_1.tag,
|
|
126
|
+
tell: tell_1.tell,
|
|
127
|
+
tellraw: tellraw_1.tellraw,
|
|
128
|
+
testfor: testfor_1.testfor,
|
|
129
|
+
testforblock: testforblock_1.testforblock,
|
|
130
|
+
tickingarea: tickingarea_1.tickingarea,
|
|
131
|
+
time: time_1.time,
|
|
132
|
+
title: title_1.title,
|
|
133
|
+
titleraw: titleraw_1.titleraw,
|
|
134
|
+
toggledownfall: toggledownfall_1.toggledownfall,
|
|
135
|
+
tp: tp_1.tp,
|
|
136
|
+
teleport: teleport_1.teleport,
|
|
137
|
+
w: w_1.w,
|
|
138
|
+
weather: weather_1.weather,
|
|
139
|
+
xp: xp_1.xp,
|
|
140
|
+
};
|
|
141
|
+
CommandData.ExecuteSubcommands = subcommands_1.executeSubCommands;
|
|
142
|
+
CommandData.VanillaCommands = Object.keys(CommandData.Vanilla);
|
|
143
|
+
CommandData.EduCommands = Object.keys(CommandData.Edu);
|
|
12
144
|
})(CommandData = exports.CommandData || (exports.CommandData = {}));
|
|
13
145
|
//# sourceMappingURL=CommandData.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CommandData.js","sourceRoot":"","sources":["../../../../src/Lib/Data/CommandData.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"CommandData.js","sourceRoot":"","sources":["../../../../src/Lib/Data/CommandData.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.executeSubCommands = void 0;
|
|
4
|
+
const ParameterType_1 = require("../../../Types/ParameterType");
|
|
5
|
+
exports.executeSubCommands = {
|
|
6
|
+
align: [
|
|
7
|
+
{
|
|
8
|
+
name: "align",
|
|
9
|
+
documentation: "Aligns the origin to the specified axis.",
|
|
10
|
+
parameters: [
|
|
11
|
+
{ text: "align", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
12
|
+
//TODO: Add the axis parameter type
|
|
13
|
+
{
|
|
14
|
+
text: "axes",
|
|
15
|
+
type: ParameterType_1.ParameterType.string,
|
|
16
|
+
required: true,
|
|
17
|
+
options: { acceptedValues: ["x", "y", "z", "xy", "xz", "yz", "xyz"] },
|
|
18
|
+
},
|
|
19
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
20
|
+
],
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
// anchored
|
|
24
|
+
anchored: [
|
|
25
|
+
{
|
|
26
|
+
name: "anchored",
|
|
27
|
+
documentation: "Sets the anchor point for the origin.",
|
|
28
|
+
parameters: [
|
|
29
|
+
{ text: "anchored", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
30
|
+
{ text: "eyes", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
31
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "anchored",
|
|
36
|
+
documentation: "Sets the anchor point for the origin.",
|
|
37
|
+
parameters: [
|
|
38
|
+
{ text: "anchored", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
39
|
+
{ text: "feet", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
40
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
41
|
+
],
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
as: [
|
|
45
|
+
{
|
|
46
|
+
name: "as",
|
|
47
|
+
documentation: "Executes as the specified entity.",
|
|
48
|
+
parameters: [
|
|
49
|
+
{ text: "as", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
50
|
+
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|
|
51
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
52
|
+
],
|
|
53
|
+
},
|
|
54
|
+
],
|
|
55
|
+
at: [
|
|
56
|
+
{
|
|
57
|
+
name: "at",
|
|
58
|
+
documentation: "Sets the origin to the specified entity.",
|
|
59
|
+
parameters: [
|
|
60
|
+
{ text: "at", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
61
|
+
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|
|
62
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
63
|
+
],
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
// Facing
|
|
67
|
+
facing: [
|
|
68
|
+
{
|
|
69
|
+
name: "facing",
|
|
70
|
+
documentation: "Sets the facing direction for the origin.",
|
|
71
|
+
parameters: [
|
|
72
|
+
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
73
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
74
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
75
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
76
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
77
|
+
],
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: "facing",
|
|
81
|
+
documentation: "Sets the facing direction for the origin.",
|
|
82
|
+
parameters: [
|
|
83
|
+
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
84
|
+
{ text: "entity", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
85
|
+
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|
|
86
|
+
{ text: "eyes", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
87
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
88
|
+
],
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
name: "facing",
|
|
92
|
+
documentation: "Sets the facing direction for the origin.",
|
|
93
|
+
parameters: [
|
|
94
|
+
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
95
|
+
{ text: "entity", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
96
|
+
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|
|
97
|
+
{ text: "feet", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
98
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
99
|
+
],
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
// in
|
|
103
|
+
in: [
|
|
104
|
+
{
|
|
105
|
+
name: "in",
|
|
106
|
+
documentation: "Sets the dimension for the origin.",
|
|
107
|
+
parameters: [
|
|
108
|
+
{ text: "in", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
109
|
+
{ text: "dimension", type: ParameterType_1.ParameterType.dimension, required: true },
|
|
110
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
111
|
+
],
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
// positioned
|
|
115
|
+
positioned: [
|
|
116
|
+
{
|
|
117
|
+
name: "positioned",
|
|
118
|
+
documentation: "Sets the position for the origin.",
|
|
119
|
+
parameters: [
|
|
120
|
+
{ text: "positioned", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
121
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
122
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
123
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
124
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
125
|
+
],
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: "positioned",
|
|
129
|
+
documentation: "Sets the position for the origin.",
|
|
130
|
+
parameters: [
|
|
131
|
+
{ text: "positioned", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
132
|
+
{ text: "as", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
133
|
+
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|
|
134
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
//rotated
|
|
139
|
+
rotated: [
|
|
140
|
+
{
|
|
141
|
+
name: "rotated",
|
|
142
|
+
documentation: "Sets the rotation for the origin.",
|
|
143
|
+
parameters: [
|
|
144
|
+
{ text: "rotated", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
145
|
+
{ text: "yaw", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
146
|
+
{ text: "pitch", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
147
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
148
|
+
],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: "rotated",
|
|
152
|
+
documentation: "Sets the rotation for the origin.",
|
|
153
|
+
parameters: [
|
|
154
|
+
{ text: "rotated", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
155
|
+
{ text: "as", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
156
|
+
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|
|
157
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
158
|
+
],
|
|
159
|
+
},
|
|
160
|
+
],
|
|
161
|
+
run: [
|
|
162
|
+
{
|
|
163
|
+
name: "run",
|
|
164
|
+
documentation: "Executes the specified command.",
|
|
165
|
+
parameters: [
|
|
166
|
+
{ text: "run", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
167
|
+
{ text: "command", type: ParameterType_1.ParameterType.command, required: true },
|
|
168
|
+
],
|
|
169
|
+
},
|
|
170
|
+
],
|
|
171
|
+
// If block x y z block blockstates next
|
|
172
|
+
if: [
|
|
173
|
+
{
|
|
174
|
+
name: "if",
|
|
175
|
+
documentation: "Executes the command if the specified condition is true.",
|
|
176
|
+
parameters: [
|
|
177
|
+
{ text: "if", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
178
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
179
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
180
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
181
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
182
|
+
{ text: "block", type: ParameterType_1.ParameterType.block, required: true },
|
|
183
|
+
{ text: "states", type: ParameterType_1.ParameterType.blockStates, required: true },
|
|
184
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
// If block x y z block data next
|
|
188
|
+
{
|
|
189
|
+
name: "if",
|
|
190
|
+
documentation: "Executes the command if the specified condition is true.",
|
|
191
|
+
parameters: [
|
|
192
|
+
{ text: "if", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
193
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
194
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
195
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
196
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
197
|
+
{ text: "block", type: ParameterType_1.ParameterType.block, required: true },
|
|
198
|
+
{ text: "data", type: ParameterType_1.ParameterType.integer, required: true },
|
|
199
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
200
|
+
],
|
|
201
|
+
},
|
|
202
|
+
// If block x y z block next
|
|
203
|
+
{
|
|
204
|
+
name: "if",
|
|
205
|
+
documentation: "Executes the command if the specified condition is true.",
|
|
206
|
+
parameters: [
|
|
207
|
+
{ text: "if", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
208
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
209
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
210
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
211
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
212
|
+
{ text: "block", type: ParameterType_1.ParameterType.block, required: true },
|
|
213
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
214
|
+
],
|
|
215
|
+
},
|
|
216
|
+
// if block x y z x y z x y z scan next
|
|
217
|
+
{
|
|
218
|
+
name: "if",
|
|
219
|
+
documentation: "Executes the command if the specified condition is true.",
|
|
220
|
+
parameters: [
|
|
221
|
+
{ text: "if", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
222
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
223
|
+
{ text: "begin x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
224
|
+
{ text: "begin y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
225
|
+
{ text: "begin z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
226
|
+
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
227
|
+
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
228
|
+
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
229
|
+
{ text: "destination x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
230
|
+
{ text: "destination y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
231
|
+
{ text: "destination z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
232
|
+
{ text: "scan mode", type: ParameterType_1.ParameterType.scanMode, required: true },
|
|
233
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
234
|
+
],
|
|
235
|
+
},
|
|
236
|
+
// If entity target next
|
|
237
|
+
{
|
|
238
|
+
name: "if",
|
|
239
|
+
documentation: "Executes the command if the specified condition is true.",
|
|
240
|
+
parameters: [
|
|
241
|
+
{ text: "if", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
242
|
+
{ text: "entity", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
243
|
+
{ text: "target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
244
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
245
|
+
],
|
|
246
|
+
},
|
|
247
|
+
// If score target objective operation source objective next
|
|
248
|
+
{
|
|
249
|
+
name: "if",
|
|
250
|
+
documentation: "Executes the command if the specified condition is true.",
|
|
251
|
+
parameters: [
|
|
252
|
+
{ text: "if", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
253
|
+
{ text: "score", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
254
|
+
{ text: "target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
255
|
+
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
256
|
+
{ text: "operation", type: ParameterType_1.ParameterType.operation, required: true },
|
|
257
|
+
{ text: "source", type: ParameterType_1.ParameterType.selector, required: true },
|
|
258
|
+
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
259
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
260
|
+
],
|
|
261
|
+
},
|
|
262
|
+
// If score target objective matches range next
|
|
263
|
+
{
|
|
264
|
+
name: "if",
|
|
265
|
+
documentation: "Executes the command if the specified condition is true.",
|
|
266
|
+
parameters: [
|
|
267
|
+
{ text: "if", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
268
|
+
{ text: "score", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
269
|
+
{ text: "target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
270
|
+
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
271
|
+
{ text: "matches", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
272
|
+
{ text: "range", type: ParameterType_1.ParameterType.integer_range, required: true },
|
|
273
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
274
|
+
],
|
|
275
|
+
},
|
|
276
|
+
],
|
|
277
|
+
// Unless
|
|
278
|
+
// Unless block x y z block blockstates next
|
|
279
|
+
unless: [
|
|
280
|
+
{
|
|
281
|
+
name: "unless",
|
|
282
|
+
documentation: "Executes the command unless the specified condition is false.",
|
|
283
|
+
parameters: [
|
|
284
|
+
{ text: "unless", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
285
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
286
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
287
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
288
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
289
|
+
{ text: "block", type: ParameterType_1.ParameterType.block, required: true },
|
|
290
|
+
{ text: "states", type: ParameterType_1.ParameterType.blockStates, required: true },
|
|
291
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
292
|
+
],
|
|
293
|
+
},
|
|
294
|
+
// Unless block x y z block data next
|
|
295
|
+
{
|
|
296
|
+
name: "unless",
|
|
297
|
+
documentation: "Executes the command unless the specified condition is false.",
|
|
298
|
+
parameters: [
|
|
299
|
+
{ text: "unless", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
300
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
301
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
302
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
303
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
304
|
+
{ text: "block", type: ParameterType_1.ParameterType.block, required: true },
|
|
305
|
+
{ text: "data", type: ParameterType_1.ParameterType.integer, required: true },
|
|
306
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
307
|
+
],
|
|
308
|
+
},
|
|
309
|
+
// Unless block x y z block next
|
|
310
|
+
{
|
|
311
|
+
name: "unless",
|
|
312
|
+
documentation: "Executes the command unless the specified condition is false.",
|
|
313
|
+
parameters: [
|
|
314
|
+
{ text: "unless", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
315
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
316
|
+
{ text: "x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
317
|
+
{ text: "y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
318
|
+
{ text: "z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
319
|
+
{ text: "block", type: ParameterType_1.ParameterType.block, required: true },
|
|
320
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
321
|
+
],
|
|
322
|
+
},
|
|
323
|
+
// unless block x y z x y z x y z scan next
|
|
324
|
+
{
|
|
325
|
+
name: "unless",
|
|
326
|
+
documentation: "Executes the command unless the specified condition is false.",
|
|
327
|
+
parameters: [
|
|
328
|
+
{ text: "unless", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
329
|
+
{ text: "block", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
330
|
+
{ text: "begin x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
331
|
+
{ text: "begin y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
332
|
+
{ text: "begin z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
333
|
+
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
334
|
+
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
335
|
+
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
336
|
+
{ text: "destination x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
337
|
+
{ text: "destination y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
338
|
+
{ text: "destination z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
339
|
+
{ text: "scan mode", type: ParameterType_1.ParameterType.scanMode, required: true },
|
|
340
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
341
|
+
],
|
|
342
|
+
},
|
|
343
|
+
// Unless entity target next
|
|
344
|
+
{
|
|
345
|
+
name: "unless",
|
|
346
|
+
documentation: "Executes the command unless the specified condition is false.",
|
|
347
|
+
parameters: [
|
|
348
|
+
{ text: "unless", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
349
|
+
{ text: "entity", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
350
|
+
{ text: "target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
351
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
352
|
+
],
|
|
353
|
+
},
|
|
354
|
+
// Unless score target objective operation source objective next
|
|
355
|
+
{
|
|
356
|
+
name: "unless",
|
|
357
|
+
documentation: "Executes the command unless the specified condition is false.",
|
|
358
|
+
parameters: [
|
|
359
|
+
{ text: "unless", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
360
|
+
{ text: "score", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
361
|
+
{ text: "target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
362
|
+
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
363
|
+
{ text: "operation", type: ParameterType_1.ParameterType.operation, required: true },
|
|
364
|
+
{ text: "source", type: ParameterType_1.ParameterType.selector, required: true },
|
|
365
|
+
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
366
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
367
|
+
],
|
|
368
|
+
},
|
|
369
|
+
// Unless score target objective matches range next
|
|
370
|
+
{
|
|
371
|
+
name: "unless",
|
|
372
|
+
documentation: "Executes the command unless the specified condition is false.",
|
|
373
|
+
parameters: [
|
|
374
|
+
{ text: "unless", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
375
|
+
{ text: "score", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
376
|
+
{ text: "target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
377
|
+
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
378
|
+
{ text: "matches", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
379
|
+
{ text: "range", type: ParameterType_1.ParameterType.integer_range, required: true },
|
|
380
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
381
|
+
],
|
|
382
|
+
},
|
|
383
|
+
],
|
|
384
|
+
};
|
|
385
|
+
//# sourceMappingURL=subcommands.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subcommands.js","sourceRoot":"","sources":["../../../../../../src/Lib/Data/Vanilla/execute/subcommands.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,6 +7,19 @@ exports.execute = [
|
|
|
7
7
|
{
|
|
8
8
|
name: "execute",
|
|
9
9
|
documentation: "Executes another command.",
|
|
10
|
+
parameters: [
|
|
11
|
+
{ text: "execute", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
12
|
+
{ text: "next", type: ParameterType_1.ParameterType.executeSubcommand, required: true },
|
|
13
|
+
],
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: "execute",
|
|
17
|
+
documentation: "Executes another command.",
|
|
18
|
+
obsolete: {
|
|
19
|
+
code: "minecraft.commands.execute.deprecated",
|
|
20
|
+
message: "This version of the execute command has been deprecated, use the new version instead.",
|
|
21
|
+
format_version: "1.19.50",
|
|
22
|
+
},
|
|
10
23
|
parameters: [
|
|
11
24
|
{ text: "execute", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
12
25
|
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|
|
@@ -19,6 +32,11 @@ exports.execute = [
|
|
|
19
32
|
{
|
|
20
33
|
name: "execute",
|
|
21
34
|
documentation: "Executes another command.",
|
|
35
|
+
obsolete: {
|
|
36
|
+
code: "minecraft.commands.execute.deprecated",
|
|
37
|
+
message: "This version of the execute command has been deprecated, use the new version instead.",
|
|
38
|
+
format_version: "1.19.50",
|
|
39
|
+
},
|
|
22
40
|
parameters: [
|
|
23
41
|
{ text: "execute", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
24
42
|
{ text: "origin", type: ParameterType_1.ParameterType.selector, required: true },
|