Skip to content

Commit

Permalink
v1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
smell-of-curry committed May 1, 2024
1 parent 9565aa4 commit 9aa9d5c
Show file tree
Hide file tree
Showing 1,728 changed files with 15,706 additions and 5,767 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
node_modules
package-lock.json
src
build.ts
package-lock.json
package.json
tsconfig.json
tsconfig.json
generator
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"Cooldown",
"despawn",
"enchantable",
"equippable",
"Gamemode",
"Knockback",
"leaderboard",
"Leaderboards",
"minecraft",
Expand Down
25 changes: 0 additions & 25 deletions animation_controllers/digging.json

This file was deleted.

25 changes: 0 additions & 25 deletions animation_controllers/eating.json

This file was deleted.

98 changes: 0 additions & 98 deletions animation_controllers/flying.json

This file was deleted.

25 changes: 0 additions & 25 deletions animation_controllers/gliding.json

This file was deleted.

25 changes: 0 additions & 25 deletions animation_controllers/ground.json

This file was deleted.

25 changes: 0 additions & 25 deletions animation_controllers/jumping.json

This file was deleted.

25 changes: 0 additions & 25 deletions animation_controllers/levitating.json

This file was deleted.

25 changes: 0 additions & 25 deletions animation_controllers/moving.json

This file was deleted.

32 changes: 32 additions & 0 deletions animation_controllers/player_fly_pokemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.fly_pokemon": {
"initial_state": "falling",
"states": {
"falling": {
"on_entry": [
"/effect @e[family=pokemon,family=rideable,family=flyable,r=2,c=1] levitation 0"
],
"transitions": [
{
"rising": "q.is_jumping"
}
]
},
"rising": {
"on_entry": [
"/effect @e[family=pokemon,family=rideable,family=flyable,r=2,c=1] slow_falling 100000 23 true",
"/effect @e[family=pokemon,family=rideable,family=flyable,r=2,c=1] speed 100000 5 true",
"/effect @e[family=pokemon,family=rideable,family=flyable,r=2,c=1] levitation 100000 6 true"
],
"transitions": [
{
"falling": "!q.is_jumping"
}
]
}
}
}
}
}
32 changes: 32 additions & 0 deletions animation_controllers/player_swim_pokemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.swim_pokemon": {
"initial_state": "falling",
"states": {
"falling": {
"on_entry": [
"/effect @e[family=pokemon,family=rideable,family=swimmable,r=2,c=1] levitation 0"
],
"transitions": [
{
"rising": "q.is_jumping && q.is_in_water"
}
]
},
"rising": {
"on_entry": [
"/effect @e[family=pokemon,family=rideable,family=swimmable,r=2,c=1] slow_falling 100000 23 true",
"/effect @e[family=pokemon,family=rideable,family=swimmable,r=2,c=1] speed 100000 5 true",
"/effect @e[family=pokemon,family=rideable,family=swimmable,r=2,c=1] levitation 100000 6 true"
],
"transitions": [
{
"falling": "!q.is_jumping || !q.is_in_water"
}
]
}
}
}
}
}
Loading

0 comments on commit 9aa9d5c

Please sign in to comment.