Skip to content

Commit

Permalink
v2.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
smell-of-curry committed Nov 18, 2023
1 parent 11046ed commit ea26512
Show file tree
Hide file tree
Showing 382 changed files with 6,069 additions and 832 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"cSpell.words": [
"actionbar",
"apricorn",
"dynamaxed"
"dynamaxed",
"rotom"
]
}
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**Update v2.7.5**
**Update v2.7.6**

- Animation names have changed
- `walk` -> `walking`
Expand All @@ -17,4 +17,8 @@
- Added 10 new Battle Musics
- Implemented many sound effects
- Compressed many sound files
- Added new Search server form
- Added new Search server form
- Added Azumarill Line
- Added Farfetched Fly Animation
- Added Icons for thumbtack
- Added rotom Phone basics
6 changes: 3 additions & 3 deletions animation_controllers/pokemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"walking": "q.can_walk && query.modified_move_speed >= 0.01 && query.is_on_ground && !query.is_in_water"
},
{
"swimming": "q.can_swim && query.modified_move_speed >= 0.01 && !query.is_on_ground && query.is_in_water"
"swimming": "query.modified_move_speed >= 0.01 && !query.is_on_ground && query.is_in_water"
},
{
"flying": "q.can_fly && query.modified_move_speed >= 0.01 && !query.is_on_ground && !query.is_in_water"
Expand All @@ -26,7 +26,7 @@
"default": "query.modified_move_speed <= 0.01 && query.is_on_ground && !query.is_in_water"
},
{
"swimming": "q.can_swim && query.modified_move_speed >= 0.01 && !query.is_on_ground && query.is_in_water"
"swimming": "query.modified_move_speed >= 0.01 && !query.is_on_ground && query.is_in_water"
},
{
"flying": "q.can_fly && query.modified_move_speed >= 0.01 && !query.is_on_ground && !query.is_in_water"
Expand All @@ -41,7 +41,7 @@
"default": "query.modified_move_speed <= 0.01 && query.is_on_ground && !query.is_in_water"
},
{
"swimming": "q.can_swim && query.modified_move_speed >= 0.01 && !query.is_on_ground && query.is_in_water"
"swimming": "query.modified_move_speed >= 0.01 && !query.is_on_ground && query.is_in_water"
},
{
"walking": "q.can_walk && query.modified_move_speed >= 0.01 && query.is_on_ground && !query.is_in_water"
Expand Down
Loading

0 comments on commit ea26512

Please sign in to comment.