-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'smell-of-curry:main' into main
- Loading branch information
Showing
5,500 changed files
with
140,020 additions
and
99,008 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Missing info report | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- pokemons.json | ||
|
||
jobs: | ||
generate-and-comment: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Generate missing_info.md and log file | ||
run: npm run generateEntityFiles | ||
|
||
- name: Upload missing_info.md and log files as artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: reports | ||
path: | | ||
missing_info.md | ||
log-*.log | ||
- name: Post comments on pull request | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const missingInfoPath = path.join(process.cwd(), 'missing_info.md'); | ||
const missingInfo = fs.existsSync(missingInfoPath) ? fs.readFileSync(missingInfoPath, 'utf8') : ''; | ||
if (missingInfo) { | ||
await github.rest.issues.createComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
body: `### Missing Information Report\n\n${missingInfo}\n` | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
node_modules | ||
generator | ||
tsconfig.json | ||
.env | ||
package-lock.json | ||
logs | ||
missing_info.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
**Update v2.10.13** | ||
**Update v2.10.18** | ||
|
||
- Added new Water Leader Model by @isme | ||
- Fixed UI Forms missing `binding_name` property causing error. | ||
- Updated `heatran` animations to fix molang errors | ||
- Removed random definitions inside rotom phone. | ||
- Fixed Armarouge Animations by removing extra `-` | ||
- Removed random `animation.politoed` animation for politoed | ||
- Updated all entity files, to map proper animations & textures | ||
- Updated all render controllers to have correct fileName, and properly map skins | ||
- Fixed capitalization for Sobbles Geometry. | ||
- Removed random locator in `groundLeader` geometry. | ||
- Added names to `pokemeon.json` and re-named some skins. | ||
- Fixed mewtwo skins | ||
- Fixed mimikyu skins | ||
- Fixed spheal skins | ||
- Fixed cooldown message for commands | ||
- Updated entity generation | ||
- Added render controller generation | ||
- Improved logging | ||
- Remade some functions to improve readability and structure | ||
- Added a lot of missing generation | ||
- Fixed a lot of problems with generating files. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"format_version": "1.8.0", | ||
"animations": { | ||
"animation.neuterer.idle": { | ||
"loop": true, | ||
"animation_length": 4, | ||
"bones": { | ||
"Body": { | ||
"rotation": ["10+Math.cos((query.anim_time) *90-60)*1", 0, 0], | ||
"position": [0, "0+Math.cos((query.anim_time) *90-30)*-0.1", 0] | ||
}, | ||
"Head": { | ||
"rotation": ["-5+Math.cos((query.anim_time) *90-30)*-2", 0, 0] | ||
}, | ||
"RightArm": { | ||
"rotation": ["-22.8498+Math.cos((query.anim_time) *90-30)*-2", -31.26174, 19.31662], | ||
"position": [0, -1, 0] | ||
}, | ||
"bone": { | ||
"rotation": ["11.0548+Math.cos((query.anim_time) *90-90)*1 ", 1.70688, -186.27052], | ||
"position": [5.5, 1, 0] | ||
}, | ||
"LeftArm": { | ||
"rotation": [23.48402, 71.68981, "45.2536+Math.cos((query.anim_time) *90-30)*1"], | ||
"position": [0, 0, 2] | ||
}, | ||
"RightLeg": { | ||
"rotation": [-2.01966, 19.86792, 3.16869] | ||
}, | ||
"LeftLeg": { | ||
"rotation": [1.16243, -16.78259, -2.49509] | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.