mirror of
https://github.com/risingPhil/PokeMe64.git
synced 2026-09-08 08:45:16 -05:00
Various changes
- Add "Pikachu Bed" and "Tentacool Doll" decoration unlock options for gen 2 - bugfix for unsafe behaviour - attempt to make the RESET button work for cartridge switching. It failed though. (not reliable). Therefore I just added a warning message instead. - Work on new ScrollWidget for Credits/About screen (Work In Progress)
This commit is contained in:
@@ -28,6 +28,16 @@ MenuItemData gen2MenuEntries[] = {
|
||||
{
|
||||
.title = "PCNY Pokémon",
|
||||
.onConfirmAction = goToGen2PCNYDistributionPokemonMenu,
|
||||
},
|
||||
{
|
||||
.title = "Unlock Pikachu Bed",
|
||||
.onConfirmAction = gen2SetEventFlag,
|
||||
.itemParam = &GEN2_EVENTFLAG_DECORATION_PIKACHU_BED
|
||||
},
|
||||
{
|
||||
.title = "Unlock Tentacool Doll",
|
||||
.onConfirmAction = gen2SetEventFlag,
|
||||
.itemParam = &GEN2_EVENTFLAG_DECORATION_TENTACOOL_DOLL
|
||||
}
|
||||
};
|
||||
|
||||
@@ -45,6 +55,16 @@ MenuItemData gen2CrystalMenuEntries[] = {
|
||||
{
|
||||
.title = "Unlock GS Ball",
|
||||
.onConfirmAction = gen2ReceiveGSBall
|
||||
},
|
||||
{
|
||||
.title = "Unlock Pikachu Bed",
|
||||
.onConfirmAction = gen2SetEventFlag,
|
||||
.itemParam = &GEN2_EVENTFLAG_DECORATION_PIKACHU_BED
|
||||
},
|
||||
{
|
||||
.title = "Unlock Tentacool Doll",
|
||||
.onConfirmAction = gen2SetEventFlag,
|
||||
.itemParam = &GEN2_EVENTFLAG_DECORATION_TENTACOOL_DOLL
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user