Skip to content

Commit

Permalink
v2.10.10
Browse files Browse the repository at this point in the history
  • Loading branch information
smell-of-curry committed Jul 3, 2024
1 parent adf5598 commit db11217
Show file tree
Hide file tree
Showing 1,929 changed files with 43,785 additions and 1,720 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"apricorn",
"dynamaxed",
"phud",
"rotom"
"rotom",
"smellofcurry"
]
}
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
**Update v2.10.9**
**Update v2.10.10**

- When holding out pokeball it now renders the ball.
- Fossil Analyzer and Fossil Cleaner will now stay open when being used if player unloads it.
- Added new Voice Over
- Added almost a thousand new Pokémon sprites
- Reformatted FPR Tank looks
- Updated a magnitude of showdown text.
- Added Models for Arctozolt, Oricorio, Cutifly, Cranidos, Archen, Heatran, Boldore, Gigalith, Roggen Rola, Tyrantrum, Dracozolt, Tirtouga, Carracosta, Bastiodon, Sunkern, Sunflora, Samurott, Anority, Dracovish, Arctovish, Zeraora, and Shieldon.
18 changes: 18 additions & 0 deletions animation_controllers/fossil_analyzer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.fossil_analyzer": {
"initial_state": "default",
"states": {
"default": {
"animations": [
{
"stay": "(query.mark_variant == 1)"
}
]
}
}
}
}
}

20 changes: 20 additions & 0 deletions animation_controllers/fossil_cleaner.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.fossil_cleaner": {
"initial_state": "default",
"states": {
"default": {
"animations": [
{
"rotating": "(query.mark_variant == 1)"
},
{
"stay": "(query.mark_variant == 2)"
}
]
}
}
}
}
}
18 changes: 17 additions & 1 deletion animations/fossil_analyzer.animation.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"animations": {
"animation.fossil_analyzer.open": {
"loop": "hold_on_last_frame",
"animation_length": 1.6667,
"animation_length": 2.4167,
"override_previous_animation": true,
"bones": {
"glass": {
Expand All @@ -22,6 +22,14 @@
"1.5833": [0.3, 0, 0.3]
}
}
},
"sound_effects": {
"0.0": {
"effect": "fossil_analyzer_opening"
},
"1.5833": {
"effect": "fossil_analyzer_closing"
}
}
},
"animation.fossil_analyzer.close": {
Expand All @@ -44,6 +52,14 @@
"1.5": [0, 0, 0]
}
}
},
"sound_effects": {
"0.0": {
"effect": "fossil_analyzer_closing"
},
"1.4583": {
"effect": "fossil_analyzer_opening"
}
}
},
"animation.fossil_analyzer.stay_open": {
Expand Down
92 changes: 92 additions & 0 deletions animations/fossil_cleaner.animation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
{
"format_version": "1.8.0",
"animations": {
"animation.fossil_cleaner.idle": {
"loop": true,
"animation_length": 3.875
},
"animation.fossil_cleaner.rotating": {
"loop": true,
"bones": {
"ring": {
"rotation": [0, "query.anim_time*180", 0]
},
"fossil_cleaner": {
"rotation": [0, "-query.anim_time*90", 0]
}
}
},
"animation.fossil_cleaner.open": {
"loop": "hold_on_last_frame",
"animation_length": 2,
"bones": {
"glass_up": {
"rotation": {
"0.1667": [0, 0, 0],
"0.2083": [2, 0, 0],
"0.25": [0, 0, 0],
"0.6667": [0, 0, 0],
"1.6667": [-55, 0, 0],
"1.7083": [-57.5, 0, 0],
"1.75": [-55, 0, 0]
}
}
},
"sound_effects": {
"0.0": {
"effect": "fossil_cleaner_opening"
},
"1.375": {
"effect": "fossil_cleaner_closing"
}
}
},
"animation.fossil_cleaner.close": {
"loop": "hold_on_last_frame",
"animation_length": 1.9167,
"bones": {
"glass_up": {
"rotation": {
"0.2917": [-55, 0, 0],
"0.3333": [-57.5, 0, 0],
"0.375": [-55, 0, 0],
"0.875": [-55, 0, 0],
"1.2917": [-16.07, 0, 0],
"1.6667": [0, 0, 0],
"1.7083": [2.5, 0, 0],
"1.75": [0, 0, 0]
}
}
},
"sound_effects": {
"0.0": {
"effect": "fossil_cleaner_closing"
},
"1.4583": {
"effect": "fossil_cleaner_closing"
}
}
},
"animation.fossil_cleaner.shake": {
"animation_length": 0.125,
"bones": {
"glass_up": {
"position": {
"0.0": [0, 0, 0],
"0.0417": [-0.1, 0, 0],
"0.0833": [0, -0.1, 0],
"0.125": [0, 0, 0]
}
}
}
},
"animation.fossil_cleaner.stay_open": {
"loop": "hold_on_last_frame",
"bones": {
"glass_up": {
"rotation": [-55, 0, 0]
}
}
}
}
}
Loading

0 comments on commit db11217

Please sign in to comment.