Skip to content

Commit 4c495e4

Browse files
committed
🧪 Update test packs
1 parent 765caa2 commit 4c495e4

File tree

10 files changed

+6760
-0
lines changed

10 files changed

+6760
-0
lines changed

test-packs/1.20.4/blueprints/armor_stand_1.20.4_static.ajblueprint

Lines changed: 1585 additions & 0 deletions
Large diffs are not rendered by default.

test-packs/1.20.5/blueprints/armor_stand_1.20.5.ajblueprint

Lines changed: 2242 additions & 0 deletions
Large diffs are not rendered by default.

test-packs/1.20.5/blueprints/armor_stand_1.20.5_static.ajblueprint

Lines changed: 1585 additions & 0 deletions
Large diffs are not rendered by default.

test-packs/1.20.5/blueprints/armor_stand_minimal_1.20.5.ajblueprint

Lines changed: 1277 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"pack": {
3+
"pack_format": 41,
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": 26,
4+
"description": "AJ Testing DP"
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: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
function on_load minecraft:load {
2+
tellraw @a {"text":"Test Framework loaded!", "color":"green"}
3+
}
4+
5+
clock 1s 1t {
6+
execute store result score #count aj.i if entity @e[type=item_display,tag=aj.global.root]
7+
title @a actionbar [{"text":"Rig Count: "}, {"score":{"name":"#count","objective":"aj.i"}}]
8+
}
9+
10+
dir armor_stand {
11+
function summon {
12+
#ARGS: {args:{...}}
13+
function animated_java:global/remove/everything
14+
$execute positioned 0 1 0 rotated 0 0 run function animated_java:armor_stand/summon {args:$(args)}
15+
}
16+
17+
function summon_minimal {
18+
#ARGS: {args:{...}}
19+
function animated_java:global/remove/everything
20+
$execute positioned 0 1 0 rotated 0 0 run function animated_java:armor_stand_minimal/summon {args:$(args)}
21+
}
22+
23+
function summon_many {
24+
data remove storage test:temp args
25+
$data modify storage test:temp args set value {args:$(args)}
26+
REPEAT (0, 199) as i {
27+
schedule 1t {
28+
execute positioned <%i % 16%> 1 <%Math.floor(i / 16)%> rotated 0 0 run function animated_java:armor_stand/summon with storage test:temp args
29+
}
30+
}
31+
}
32+
33+
function summon_many_minimal {
34+
data remove storage test:temp args
35+
$data modify storage test:temp args set value {args:$(args)}
36+
REPEAT (0, 199) as i {
37+
schedule 1t {
38+
execute positioned <%i % 16%> 1 <%Math.floor(i / 16)%> rotated 0 0 run function animated_java:armor_stand_minimal/summon with storage test:temp args
39+
}
40+
}
41+
}
42+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"pack": {
3+
"pack_format": 32,
4+
"description": "AJ Testing RP"
5+
}
6+
}

0 commit comments

Comments
 (0)