Skip to content

Commit 46cb77f

Browse files
committed
🧪 Add 1.21.5 test pack
1 parent 6b6c38f commit 46cb77f

File tree

9 files changed

+44
-0
lines changed

9 files changed

+44
-0
lines changed

src/systems/datapackCompiler/1.21.5/tests.mcb

Whitespace-only changes.

test-packs/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*/datapacks/animated_java/data
2+
*/datapacks/animated_java/data.ajmeta
3+
*/datapacks/test-framework/.mcb
4+
*/datapacks/test-framework/data
5+
*/resources/assets
6+
*/resources/assets.ajmeta
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"pack": {
3+
"pack_format": 71,
4+
"description": "AJ Testing DP"
5+
}
6+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
libDir: null, // default: "null", determine where mcb looks for libraries, default is the bundled install location
3+
generatedDirName: 'zzz', // default: "zzz", the name of the directory where mcb will put generated files
4+
internalScoreboardName: 'aj.i', // default: "mcb.internal", the name of the internal scoreboard
5+
header: null, // default: "#This file was generated by mcb\n", the header to put at the top of supported generated files
6+
ioThreadCount: 1, // default: 1, the number of threads to use for IO operations, 1 is syncronous.
7+
setup: null, // default: null, a function that will be called to allow binding to mcb events.
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"pack":{
3+
"pack_format": 74,
4+
"description": ". Made with MC-Build!"
5+
}
6+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "commonjs"
3+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
function on_load minecraft:load {
2+
tellraw @a {text:'Test Framework loaded!', color:green}
3+
}
4+
5+
function summon {
6+
#ARGS: {args:{...}}
7+
function animated_java:armor_stand/remove/all
8+
$execute positioned 0 -63 0 rotated 0 0 run function animated_java:armor_stand/summon {args:$(args)}
9+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"pack": {
3+
"pack_format": 55,
4+
"description": "AJ Testing RP"
5+
}
6+
}

0 commit comments

Comments
 (0)