From b7306a699e0a56d8e53d8d5da3d5f7cdc601d8d2 Mon Sep 17 00:00:00 2001 From: FantaX1911 Date: Wed, 23 Jan 2019 18:59:07 +0200 Subject: [PATCH] Added initial checks for (shooting star, ancestor, eruption, mega, victorious) via scripts. Removed the recent pokedex emblem checks. --- P3D/Content/Data/Scripts/dungeon/jirachi.dat | Bin 558 -> 636 bytes P3D/Content/Data/Scripts/faraway/mew.dat | Bin 318 -> 384 bytes P3D/Content/Data/Scripts/liberty/victini.dat | 1 + .../Data/Scripts/mtember/volcanion.dat | Bin 326 -> 392 bytes P3D/Content/Data/Scripts/pallet/bulbasaur.dat | Bin 3532 -> 3598 bytes .../Data/Scripts/pallet/charmander.dat | Bin 3724 -> 3790 bytes P3D/Content/Data/Scripts/pallet/squirtle.dat | Bin 3526 -> 3592 bytes P3D/Screens/Pokedex/PokedexScreen.vb | 36 ------------------ 8 files changed, 1 insertion(+), 36 deletions(-) diff --git a/P3D/Content/Data/Scripts/dungeon/jirachi.dat b/P3D/Content/Data/Scripts/dungeon/jirachi.dat index 387c8a0ffa20e35308152a791b18e2c1b13cf5a0..0a5697f361332c649addd0a287fd52f778be2b10 100644 GIT binary patch delta 93 zcmZ3-@`q)EI#Vbog9AeWLk>eCLnT8hLlJ`>kd@4k!H@~$l>u=oLoP!SP##2UFcbr2 i@`11fD4)lW&Y%DkDFNyzV$fvZW#D440;k>); delta 15 WcmeyvvW{hgIupAULn=caLka*Ut^@=C diff --git a/P3D/Content/Data/Scripts/faraway/mew.dat b/P3D/Content/Data/Scripts/faraway/mew.dat index 5bf49b3fe7e142a58b94e87f1e69820cb74315da..35ca4532278c4a44d0d6baf3842b529aa17e3a11 100644 GIT binary patch delta 81 zcmdnT)WE#KoYB*Pp@1QWA(5eyA(f$sK@Z4EX2@X31oFy&IF%unAqglCqBVeWc|h4z YhGK>ihJ2uEO$J^DE(R;0NFGB90LaP@?*IS* delta 15 WcmZo*-p91ToRQs%A(bJIAq4;+s{^C} diff --git a/P3D/Content/Data/Scripts/liberty/victini.dat b/P3D/Content/Data/Scripts/liberty/victini.dat index 67e902eb5..c03828f84 100644 --- a/P3D/Content/Data/Scripts/liberty/victini.dat +++ b/P3D/Content/Data/Scripts/liberty/victini.dat @@ -4,4 +4,5 @@ version=2 @register.register(battlevictini) @npc.register(liberty\room.dat|0|remove|0) @npc.remove(0) +@player.achieveemblem(victorious) :end \ No newline at end of file diff --git a/P3D/Content/Data/Scripts/mtember/volcanion.dat b/P3D/Content/Data/Scripts/mtember/volcanion.dat index 6e7e91b3c605d4edd24cb29e46d44c35a0ab2adb..06df5110973619c23642dfa852163858cc164121 100644 GIT binary patch delta 85 zcmX@c)WN*Ln$g#Rp@1QWA(5eyA(f$sK@Z4EX2@X31oFy&IF%unAqglCqBVeI5ko0Z aeF;!LpCOMylYy6ki@^#gp2v^^VgmpZfej-6yl*3AZUHg9AeWLk>eCLnT8hLlJ`>kd@4k!H@~$l>u=oLoP!SP##2U0C6fq MIz!^->)c-%0T)XT{r~^~ delta 12 TcmeB^IU~K{3HN3-o)?S&BHaZ4 diff --git a/P3D/Content/Data/Scripts/pallet/charmander.dat b/P3D/Content/Data/Scripts/pallet/charmander.dat index 63c64fb835322f7b17a5240c88eff4949cc7ffb9..b1b6fdaf5136a9dfe4f90a49a51cc6b37f0aedd7 100644 GIT binary patch delta 66 zcmeB?JtweCLnT8hLlJ`>kd@4k!H@~$l>u=oLoP!SP##2U0C6fq MIz!^-={#Q<0SAi@g8%>k delta 12 TcmX>n+atSS3D4$dJTDjlB)|oO diff --git a/P3D/Content/Data/Scripts/pallet/squirtle.dat b/P3D/Content/Data/Scripts/pallet/squirtle.dat index b417bd4bfbfc25254cc44d92d629095957f0ba44..3f522d3e5cff0b8a1963699ea4951ff6c4e3749b 100644 GIT binary patch delta 66 zcmX>m-66B#9=9ncg9AeWLk>eCLnT8hLlJ`>kd@4k!H@~$l>u=oLoP!SP##2U0C6fq MIz!^-i`-us0TQ_n<^TWy delta 12 TcmeB>IVQc~9`|Mio)?S&A{PYb diff --git a/P3D/Screens/Pokedex/PokedexScreen.vb b/P3D/Screens/Pokedex/PokedexScreen.vb index 85f29eebf..e12299e32 100644 --- a/P3D/Screens/Pokedex/PokedexScreen.vb +++ b/P3D/Screens/Pokedex/PokedexScreen.vb @@ -39,42 +39,6 @@ GameJolt.Emblem.AchieveEmblem("eevee") End If - ' Eruption: - Dim haseruption As Boolean = True - If Pokedex.GetEntryType(Core.Player.PokedexData, 721) < 2 Then - haseruption = False - End If - If haseruption = True Then - GameJolt.Emblem.AchieveEmblem("eruption") - End If - - ' Shooting Star: - Dim hasshootingstar As Boolean = True - If Pokedex.GetEntryType(Core.Player.PokedexData, 385) < 2 Then - hasshootingstar = False - End If - If hasshootingstar = True Then - GameJolt.Emblem.AchieveEmblem("shooting star") - End If - - ' Victorious: - Dim hasvictorious As Boolean = True - If Pokedex.GetEntryType(Core.Player.PokedexData, 494) < 2 Then - hasvictorious = False - End If - If hasvictorious = True Then - GameJolt.Emblem.AchieveEmblem("victorious") - End If - - ' Ancestor: - Dim hasancestor As Boolean = True - If Pokedex.GetEntryType(Core.Player.PokedexData, 151) < 2 Then - hasancestor = False - End If - If hasancestor = True Then - GameJolt.Emblem.AchieveEmblem("ancestor") - End If - ' Pokédex: If Core.Player.IsGameJoltSave = True Then If Me.Profiles(0).Pokedex.Obtained >= Me.Profiles(0).Pokedex.Count Then