Skip to content

Commit b341ff5

Browse files
committed
Upload Stack Attack Release 0802
This commit adds Stack Attack 0802.
1 parent 66b5de4 commit b341ff5

File tree

96 files changed

+1536
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+1536
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"values":[
3+
"stack_attack_framework:update"
4+
]
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"values":[
3+
"stack_attack_framework:tick"
4+
]
5+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"display":{
3+
"icon":{
4+
"item":"leather",
5+
"nbt":"{display:{Name:'\"kill pinata logo\"'}}"
6+
},
7+
"title":"At Least There Were Sweets",
8+
"frame":"goal",
9+
"description":{
10+
"text":"Kill Piñata",
11+
"color":"gray"
12+
}
13+
},
14+
"parent":"stack_attack_arena:locate_pinata",
15+
"criteria":{
16+
"stack_attack_kill_pinata":{
17+
"trigger":"minecraft:player_killed_entity",
18+
"conditions":{
19+
"entity":{
20+
"type":"minecraft:llama",
21+
"nbt":"{CustomName:'{\"color\":\"gold\",\"text\":\"Piñata\"}'}"
22+
}
23+
}
24+
}
25+
}
26+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"display":{
3+
"icon":{
4+
"item":"golden_horse_armor",
5+
"nbt":"{display:{Name:'\"locate pinata logo\"'}}"
6+
},
7+
"title":"Not Made Of Paper",
8+
"description":{
9+
"text":"Locate Piñata",
10+
"color":"gray"
11+
}
12+
},
13+
"parent":"stack_attack_arena:root",
14+
"criteria":{
15+
"stack_attack_locate_pinata":{
16+
"trigger":"minecraft:impossible"
17+
}
18+
}
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"display":{
3+
"icon":{
4+
"item":"yellow_concrete_powder",
5+
"nbt":"{display:{Name:'\"Stack Attack Logo\"'}}"
6+
},
7+
"title":"Ready, Set, Stack!",
8+
"description":{
9+
"text":"Play your first game of Stack Attack.",
10+
"color":"gray"
11+
},
12+
"background":"textures/block/yellow_concrete_powder.png"
13+
},
14+
"criteria":{
15+
"stack_attack_play":{
16+
"trigger":"minecraft:impossible"
17+
}
18+
}
19+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# @s = items on the abyss
2+
# at @s
3+
# called by stack_attack_arena:round/running
4+
5+
# kill item
6+
kill @s
7+
8+
# fangs
9+
summon minecraft:evoker_fangs ~ ~ ~ {Passengers:[{id:"area_effect_cloud",CustomName:'"the abyss"',Tags:["sat_abyss_fang"],Particle:"block air",Radius:0.8f,RadiusPerTick:0f,RadiusOnUse:0f,Duration:40,DurationOnUse:0f,Age:0,WaitTime:0,Effects:[{Id:7,Amplifier:10,Duration:17,ShowParticles:0b}]}]}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# @s = sat_in_game players in an arena on the abyss
2+
# at @s
3+
# called by stack_attack_arena:players/20hz
4+
5+
# debuffs
6+
effect give @s slowness 1 0 true
7+
8+
# fangs
9+
summon minecraft:evoker_fangs ~ ~ ~ {Passengers:[{id:"area_effect_cloud",CustomName:'"the abyss"',Tags:["sat_abyss_fang"],Particle:"block air",Radius:0.8f,RadiusPerTick:0f,RadiusOnUse:0f,Duration:40,DurationOnUse:0f,Age:0,WaitTime:0,Effects:[{Id:7,Amplifier:10,Duration:17,ShowParticles:0b}]}]}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @s = sat_kill_plane with sat_abyss_timer score of 20..
2+
# at @s
3+
# called by stack_attack_arena:blocks/abyss/fill_delayed
4+
5+
# fill blocks and reset score
6+
scoreboard players reset @s sat_abyss_timer
7+
fill ~ ~-1 ~ ~12 ~-3 ~12 black_terracotta replace #stack_attack_arena:fallen_blocks
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# @s = sat_kill_plane with sat_abyss_timer score of 0..
2+
# at @s
3+
# called by stack_attack_arena:round/20hz
4+
5+
# count up
6+
scoreboard players add @s sat_abyss_timer 1
7+
8+
# reset score
9+
execute if score @s sat_abyss_timer matches 20.. at @s run function stack_attack_arena:blocks/abyss/fill_abyss

stack_attack-rel0802/data/stack_attack_arena/functions/blocks/abyss/move.mcfunction

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

0 commit comments

Comments
 (0)