Skip to content

Commit 6b27d7e

Browse files
authored
Merge branch 'beta' into fix-5032
2 parents d77f08f + 6c4dedb commit 6b27d7e

File tree

141 files changed

+1407
-1120
lines changed

Some content is hidden

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

141 files changed

+1407
-1120
lines changed

CREDITS.md

+20-22
Original file line numberDiff line numberDiff line change
@@ -343,45 +343,47 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
343343

344344
# 💻 Development
345345

346-
## Server Owner/Administrator
346+
## Server Developers
347347
- pancakes aka patapancakes
348348

349-
## Senior Developers
350-
- Walker
351-
- NightKev
352-
- Moka
353-
- Temp aka Tempo-anon
354-
- Madmadness65
355-
356-
## Developers
349+
## Current and former Development Team members
350+
- bennybroseph
351+
- Brain Frog
357352
- CodeTappert
353+
- Dakurei
358354
- flx-sta
359-
- innerthunder
360355
- frutescens
356+
- Greenlamp
357+
- ImperialSympathizer
358+
- innerthunder
359+
- KimJeongSun
360+
- Madmadness65
361+
- Moka
362+
- Navori
363+
- NightKev
361364
- Opaquer
365+
- OrangeRed
366+
- Sam aka Flashfyre (initial developer, started PokéRogue)
367+
- sirzento
362368
- SN34KZ
363369
- Swain aka torranx
364-
365-
## Junior Developers
366-
- KimJeongSun
367-
- ImperialSympathizer
370+
- Temp aka Tempo-anon
371+
- Walker
372+
- Xavion
368373

369374
## Bug/Issue Managers
370-
- Snailman
371375
- Daleks
372376
- Lily
373377
- PigeonBar
378+
- Snailman
374379

375380
## Other Code Contributors
376381
- Admiral-Billy
377382
- allen925
378383
- arColm
379384
- Arxalc
380385
- AsdarDevelops
381-
- bennybroseph
382-
- Brain Frog
383386
- Corrade
384-
- Dakurei
385387
- DustinLin
386388
- ElizaAlex
387389
- EmberCM
@@ -391,7 +393,6 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
391393
- francktrouillez
392394
- FredeX
393395
- geeilhan
394-
- Greenlamp
395396
- happinyz
396397
- hayuna
397398
- InfernoVulpix
@@ -411,7 +412,6 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
411412
- Neverblade
412413
- NxKarim
413414
- okimin
414-
- OrangeRed
415415
- PigeonBar
416416
- PrabbyDD
417417
- prateau
@@ -421,10 +421,8 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
421421
- RedstonewolfX
422422
- ReneGV
423423
- rnicar245
424-
- Sam aka Flashfyre (initial developer, started PokéRogue)
425424
- schmidtc1
426425
- shayebeadling
427-
- sirzento
428426
- snoozbuster
429427
- sodaMelon
430428
- td76099

docs/enemy-ai.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ As part of the move selection process, the enemy Pokémon must compute a **targe
8080
A move's UBS and TBS are computed with the respective functions in the `Move` class:
8181

8282
```ts
83-
getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer;
84-
getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer;
83+
getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): number;
84+
getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): number;
8585
```
8686

8787
Logically, these functions are very similar – they add up their respective benefit scores from each of the move's attributes (as determined by `attr.getUserBenefitScore`, and `attr.getTargetBenefitScore`, respectively) and return the total benefit score. However, there are two key functional differences in how the UBS and TBS of a move are handled:

package.json

-6
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,5 @@
6464
},
6565
"engines": {
6666
"node": ">=20.0.0"
67-
},
68-
"imports": {
69-
"#enums/*": "./enums/*",
70-
"#app": "./src/main.js",
71-
"#app/*": "./src/*",
72-
"#test/*": "./src/test/*"
7367
}
7468
}

src/account.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export function initLoggedInUser(): void {
1111
loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "", hasAdminRole: false };
1212
}
1313

14-
export function updateUserInfo(): Promise<[boolean, integer]> {
15-
return new Promise<[boolean, integer]>(resolve => {
14+
export function updateUserInfo(): Promise<[boolean, number]> {
15+
return new Promise<[boolean, number]>(resolve => {
1616
if (bypassLogin) {
1717
loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "", hasAdminRole: false };
1818
let lastSessionSlot = -1;

0 commit comments

Comments
 (0)