Skip to content

Commit c754e9d

Browse files
authored
Merge branch 'beta' into save-migration-for-unselectable-forms
2 parents 1fed6a6 + 3124aeb commit c754e9d

15 files changed

+40
-13
lines changed
24.1 KB
Loading
21.4 KB
Loading
23.3 KB
Loading
23.6 KB
Loading
23.6 KB
Loading
29.7 KB
Loading
25.3 KB
Loading
23.5 KB
Loading
28.5 KB
Loading

public/images/pokemon/656.png

21 Bytes
Loading

public/images/pokemon/variant/656.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"838394": "4d7dc5",
44
"62ace6": "8363af",
55
"7bcdff": "9c75c2",
6-
"ffec8c": "ddfff9",
6+
"fdea88": "ddfff9",
77
"a1a1c4": "7ab7ec",
88
"c9b241": "97d6e2",
9-
"dfcf77": "bae7e8",
9+
"ccbd70": "bae7e8",
1010
"174592": "37408c",
11-
"fdfdfd": "b1e5ff",
11+
"f8f8f8": "b1e5ff",
1212
"9c9cc5": "5385c7",
1313
"cdcde6": "7eb7e8",
1414
"396a83": "362864",
@@ -18,12 +18,12 @@
1818
"838394": "cc6845",
1919
"62ace6": "c44848",
2020
"7bcdff": "dd6155",
21-
"ffec8c": "ddfff9",
21+
"fdea88": "ddfff9",
2222
"a1a1c4": "f7c685",
2323
"c9b241": "97d6e2",
24-
"dfcf77": "bae7e8",
24+
"ccbd70": "bae7e8",
2525
"174592": "198158",
26-
"fdfdfd": "fff4bd",
26+
"f8f8f8": "fff4bd",
2727
"9c9cc5": "c96a48",
2828
"cdcde6": "f7b785",
2929
"396a83": "5c0d33",

public/images/pokemon/variant/back/656.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"1": {
3-
"838394": "4d7dc5",
3+
"848496": "4d7dc5",
44
"7bcdff": "9c75c2",
55
"62ace6": "8363af",
66
"ffffff": "b1e5ff",
77
"396a83": "362864",
88
"9c9cc5": "5385c7",
99
"cdcde6": "7eb7e8",
10-
"174592": "198158",
10+
"174592": "37408c",
1111
"5a94cd": "7054a4"
1212
},
1313
"2": {
14-
"838394": "cc6845",
14+
"848496": "cc6845",
1515
"7bcdff": "dd6155",
1616
"62ace6": "c44848",
1717
"ffffff": "fff4bd",

src/loading-scene.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,9 @@ export class LoadingScene extends SceneBase {
250250
}
251251
const availableLangs = [ "en", "de", "it", "fr", "ja", "ko", "es-ES", "pt-BR", "zh-CN" ];
252252
if (lang && availableLangs.includes(lang)) {
253-
this.loadImage("valentines2025event-" + lang, "events");
253+
this.loadImage("pkmnday2025event-" + lang, "events");
254254
} else {
255-
this.loadImage("valentines2025event-en", "events");
255+
this.loadImage("pkmnday2025event-en", "events");
256256
}
257257

258258
this.loadAtlas("statuses", "");

src/modifier/modifier-type.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2554,7 +2554,7 @@ export function getPartyLuckValue(party: Pokemon[]): number {
25542554
return DailyLuck.value;
25552555
}
25562556
const eventSpecies = globalScene.eventManager.getEventLuckBoostedSpecies();
2557-
const luck = Phaser.Math.Clamp(party.map(p => p.isAllowedInBattle() ? p.getLuck() + (eventSpecies.includes(p.species.speciesId) ? 3 : 0) : 0)
2557+
const luck = Phaser.Math.Clamp(party.map(p => p.isAllowedInBattle() ? p.getLuck() + (eventSpecies.includes(p.species.speciesId) ? 1 : 0) : 0)
25582558
.reduce((total: number, value: number) => total += value, 0), 0, 14);
25592559
return Math.min(globalScene.eventManager.getEventLuckBoost() + (luck ?? 0), 14);
25602560
}

src/timed-event-manager.ts

+28-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const timedEvents: TimedEvent[] = [
169169
{ species: Species.WOOBAT },
170170
{ species: Species.FRILLISH },
171171
{ species: Species.ALOMOMOLA },
172-
{ species: Species.FURFROU, formIndex: 1 }, // Heart trim
172+
{ species: Species.FURFROU, formIndex: 1 }, // Heart Trim
173173
{ species: Species.ESPURR },
174174
{ species: Species.SPRITZEE },
175175
{ species: Species.SWIRLIX },
@@ -180,6 +180,33 @@ const timedEvents: TimedEvent[] = [
180180
{ species: Species.ENAMORUS }
181181
],
182182
luckBoostedSpecies: [ Species.LUVDISC ]
183+
},
184+
{
185+
name: "PKMNDAY2025",
186+
eventType: EventType.LUCK,
187+
startDate: new Date(Date.UTC(2025, 1, 27)),
188+
endDate: new Date(Date.UTC(2025, 2, 4)),
189+
classicFriendshipMultiplier: 4,
190+
bannerKey: "pkmnday2025event-",
191+
scale: 0.21,
192+
availableLangs: [ "en", "de", "it", "fr", "ja", "ko", "es-ES", "pt-BR", "zh-CN" ],
193+
eventEncounters: [
194+
{ species: Species.PIKACHU, formIndex: 1, blockEvolution: true }, // Partner Form
195+
{ species: Species.EEVEE, formIndex: 1, blockEvolution: true }, // Partner Form
196+
{ species: Species.CHIKORITA },
197+
{ species: Species.TOTODILE },
198+
{ species: Species.TEPIG }
199+
],
200+
luckBoostedSpecies: [
201+
Species.PICHU, Species.PIKACHU, Species.RAICHU, Species.ALOLA_RAICHU,
202+
Species.PSYDUCK, Species.GOLDUCK,
203+
Species.EEVEE, Species.FLAREON, Species.JOLTEON, Species.VAPOREON, Species.ESPEON, Species.UMBREON, Species.LEAFEON, Species.GLACEON, Species.SYLVEON,
204+
Species.CHIKORITA, Species.BAYLEEF, Species.MEGANIUM,
205+
Species.TOTODILE, Species.CROCONAW, Species.FERALIGATR,
206+
Species.TEPIG, Species.PIGNITE, Species.EMBOAR,
207+
Species.ZYGARDE,
208+
Species.ETERNAL_FLOETTE
209+
]
183210
}
184211
];
185212

0 commit comments

Comments
 (0)