bc-minecraft-molang 1.20.71-2 → 1.20.71-4
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/MolangData/Attachables.d.ts +10 -0
- package/lib/src/MolangData/Attachables.js +14 -0
- package/lib/src/MolangData/Attachables.js.map +1 -0
- package/lib/src/MolangData/MolangData.d.ts +4 -1
- package/lib/src/MolangData/MolangData.js +3 -0
- package/lib/src/MolangData/MolangData.js.map +1 -1
- package/lib/src/MolangData/index.d.ts +1 -0
- package/lib/src/MolangData/index.js +1 -0
- package/lib/src/MolangData/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Data } from "./Data";
|
|
2
|
+
/**Molang data for animations controllers*/
|
|
3
|
+
export declare namespace Attachables {
|
|
4
|
+
/**The list of usable variables for this specific type*/
|
|
5
|
+
const Variables: Data[];
|
|
6
|
+
/**The list of specific contexts usable for this specific type*/
|
|
7
|
+
const Contexts: Data[];
|
|
8
|
+
/**The list of usable temp variables for this specific type*/
|
|
9
|
+
const Temps: Data[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Attachables = void 0;
|
|
4
|
+
/**Molang data for animations controllers*/
|
|
5
|
+
var Attachables;
|
|
6
|
+
(function (Attachables) {
|
|
7
|
+
/**The list of usable variables for this specific type*/
|
|
8
|
+
Attachables.Variables = [{ id: "is_enchanted" }];
|
|
9
|
+
/**The list of specific contexts usable for this specific type*/
|
|
10
|
+
Attachables.Contexts = [{ id: "is_first_person" }, { id: "item_slot" }];
|
|
11
|
+
/**The list of usable temp variables for this specific type*/
|
|
12
|
+
Attachables.Temps = [];
|
|
13
|
+
})(Attachables || (exports.Attachables = Attachables = {}));
|
|
14
|
+
//# sourceMappingURL=Attachables.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Attachables.js","sourceRoot":"","sources":["../../../src/MolangData/Attachables.ts"],"names":[],"mappings":";;;AAEA,2CAA2C;AAC3C,IAAiB,WAAW,CAO3B;AAPD,WAAiB,WAAW;IAC1B,wDAAwD;IAC3C,qBAAS,GAAW,CAAC,EAAC,EAAE,EAAE,cAAc,EAAC,CAAC,CAAC;IACxD,gEAAgE;IACnD,oBAAQ,GAAW,CAAC,EAAE,EAAE,EAAE,iBAAiB,EAAE,EAAE,EAAE,EAAE,EAAE,WAAW,EAAE,CAAC,CAAC;IACjF,6DAA6D;IAChD,iBAAK,GAAW,EAAE,CAAC;AAClC,CAAC,EAPgB,WAAW,2BAAX,WAAW,QAO3B"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Data } from "./Data";
|
|
2
2
|
import { Animations as MAnimations } from "./Animations";
|
|
3
3
|
import { AnimationsControllers as MAnimationsControllers } from "./AnimationsControllers";
|
|
4
|
+
import { Attachables as MAttachables } from "./Attachables";
|
|
4
5
|
import { Blocks as MBlocks } from "./Blocks";
|
|
5
6
|
import { Entities as MEntities } from "./Entities";
|
|
6
7
|
import { FeaturesRules as MFeaturesRules } from "./FeaturesRules";
|
|
@@ -25,6 +26,8 @@ export declare namespace MolangData {
|
|
|
25
26
|
const Animations: typeof MAnimations;
|
|
26
27
|
/**Molang data for animations controllers*/
|
|
27
28
|
const AnimationsControllers: typeof MAnimationsControllers;
|
|
29
|
+
/**Molang data for attachables*/
|
|
30
|
+
const Attachables: typeof MAttachables;
|
|
28
31
|
/**Molang data for blocks*/
|
|
29
32
|
const Blocks: typeof MBlocks;
|
|
30
33
|
/**Molang data for entities*/
|
|
@@ -45,4 +48,4 @@ export declare namespace MolangData {
|
|
|
45
48
|
/**
|
|
46
49
|
* The list of all types
|
|
47
50
|
*/
|
|
48
|
-
export type MolangDataSetKey = "Animations" | "AnimationsControllers" | "Blocks" | "Entities" | "FeaturesRules" | "General" | "Items" | "Particles" | "RenderControllers";
|
|
51
|
+
export type MolangDataSetKey = "Animations" | "AnimationsControllers" | "Attachables" | "Blocks" | "Entities" | "FeaturesRules" | "General" | "Items" | "Particles" | "RenderControllers";
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.MolangData = void 0;
|
|
4
4
|
const Animations_1 = require("./Animations");
|
|
5
5
|
const AnimationsControllers_1 = require("./AnimationsControllers");
|
|
6
|
+
const Attachables_1 = require("./Attachables");
|
|
6
7
|
const Blocks_1 = require("./Blocks");
|
|
7
8
|
const Entities_1 = require("./Entities");
|
|
8
9
|
const FeaturesRules_1 = require("./FeaturesRules");
|
|
@@ -19,6 +20,8 @@ var MolangData;
|
|
|
19
20
|
MolangData.Animations = Animations_1.Animations;
|
|
20
21
|
/**Molang data for animations controllers*/
|
|
21
22
|
MolangData.AnimationsControllers = AnimationsControllers_1.AnimationsControllers;
|
|
23
|
+
/**Molang data for attachables*/
|
|
24
|
+
MolangData.Attachables = Attachables_1.Attachables;
|
|
22
25
|
/**Molang data for blocks*/
|
|
23
26
|
MolangData.Blocks = Blocks_1.Blocks;
|
|
24
27
|
/**Molang data for entities*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MolangData.js","sourceRoot":"","sources":["../../../src/MolangData/MolangData.ts"],"names":[],"mappings":";;;AAEA,6CAAyD;AACzD,mEAA0F;AAC1F,qCAA6C;AAC7C,yCAAmD;AACnD,mDAAkE;AAClE,uCAAgD;AAChD,mCAA0C;AAC1C,2CAAsD;AACtD,2DAA8E;AAY9E;;GAEG;AACH,IAAiB,UAAU,
|
|
1
|
+
{"version":3,"file":"MolangData.js","sourceRoot":"","sources":["../../../src/MolangData/MolangData.ts"],"names":[],"mappings":";;;AAEA,6CAAyD;AACzD,mEAA0F;AAC1F,+CAA4D;AAC5D,qCAA6C;AAC7C,yCAAmD;AACnD,mDAAkE;AAClE,uCAAgD;AAChD,mCAA0C;AAC1C,2CAAsD;AACtD,2DAA8E;AAY9E;;GAEG;AACH,IAAiB,UAAU,CA0B1B;AA1BD,WAAiB,UAAU;IACzB,+BAA+B;IAClB,qBAAU,GAAG,uBAAW,CAAC;IACtC,2CAA2C;IAC9B,gCAAqB,GAAG,6CAAsB,CAAC;IAC5D,gCAAgC;IACnB,sBAAW,GAAG,yBAAY,CAAC;IACxC,2BAA2B;IACd,iBAAM,GAAG,eAAO,CAAC;IAC9B,6BAA6B;IAChB,mBAAQ,GAAG,mBAAS,CAAC;IAClC,mCAAmC;IACtB,wBAAa,GAAG,6BAAc,CAAC;IAC5C,4BAA4B;IACf,kBAAO,GAAG,iBAAQ,CAAC;IAChC,0BAA0B;IACb,gBAAK,GAAG,aAAM,CAAC;IAC5B,8BAA8B;IACjB,oBAAS,GAAG,qBAAU,CAAC;IACpC,uCAAuC;IAC1B,4BAAiB,GAAG,qCAAkB,CAAC;IAEpD,gDAAgD;IAChD,SAAgB,GAAG,CAAC,IAAsB;QACxC,OAAO,UAAU,CAAC,IAAI,CAAkB,CAAC;IAC3C,CAAC;IAFe,cAAG,MAElB,CAAA;AACH,CAAC,EA1BgB,UAAU,0BAAV,UAAU,QA0B1B"}
|
|
@@ -17,6 +17,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
18
|
__exportStar(require("./Animations"), exports);
|
|
19
19
|
__exportStar(require("./AnimationsControllers"), exports);
|
|
20
|
+
__exportStar(require("./Attachables"), exports);
|
|
20
21
|
__exportStar(require("./Blocks"), exports);
|
|
21
22
|
__exportStar(require("./Data"), exports);
|
|
22
23
|
__exportStar(require("./Entities"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/MolangData/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,+CAA6B;AAC7B,0DAAwC;AACxC,2CAAyB;AACzB,yCAAuB;AACvB,6CAA2B;AAC3B,kDAAgC;AAChC,4CAA0B;AAC1B,0CAAwB;AACxB,+CAA6B;AAC7B,mDAAiC;AACjC,8CAA4B;AAC5B,sDAAoC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/MolangData/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,+CAA6B;AAC7B,0DAAwC;AACxC,gDAA8B;AAC9B,2CAAyB;AACzB,yCAAuB;AACvB,6CAA2B;AAC3B,kDAAgC;AAChC,4CAA0B;AAC1B,0CAAwB;AACxB,+CAA6B;AAC7B,mDAAiC;AACjC,8CAA4B;AAC5B,sDAAoC"}
|