This commit is contained in:
Ruan Pablo 2019-01-31 04:54:48 -02:00
commit 184e654c64
4 changed files with 12 additions and 6 deletions

View File

@ -7,5 +7,5 @@ type=Grassland
{0|165|30|1,2,3|15,18}
{0|167|30|0|15,18}
{0|214|20|-1|22,25}
(0|588|5|-1|17,19)
(0|616|5|-1|17,19)
{0|588|5|-1|17,19}
{0|616|5|-1|17,19}

View File

@ -25702,6 +25702,7 @@
<Compile Include="Pokemon\Items\KeyItems\LibertySeaMap.vb" />
<Compile Include="Pokemon\Items\Standard\DouseDrive.vb" />
<Compile Include="Pokemon\Items\Standard\ChillDrive.vb" />
<Compile Include="Pokemon\Items\Standard\FlameOrb.vb" />
<Compile Include="Pokemon\Items\Standard\ShockDrive.vb" />
<Compile Include="Pokemon\Items\Standard\BurnDrive.vb" />
<Compile Include="Pokemon\Items\Standard\ExpertBelt.vb" />
@ -25799,6 +25800,9 @@
<None Include="Content\Data\Scripts\cerulean\novenu.dat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Content\Data\Scripts\dragonsden\dracotutor.dat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Content\Data\Scripts\faraway\ancestoremblemcheck.dat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

View File

@ -1756,9 +1756,11 @@
If CanFireStepEvent() = True Then
Dim addEggSteps As Integer = stepAmount
For Each p As Pokemon In Pokemons
If p.Ability.Name.ToLower() = "magma armor" Or p.Ability.Name.ToLower() = "flame body" Then
addEggSteps *= Random.Next(1, 4)
Exit For
If p.Ability IsNot Nothing Then
If p.Ability.Name.ToLower() = "magma armor" OrElse p.Ability.Name.ToLower() = "flame body" Then
addEggSteps *= Random.Next(1, 4)
Exit For
End If
End If
Next

View File

@ -25,7 +25,7 @@
If Core.Player.IsGameJoltSave = True Then
Me.canCreateAutosave = False
Else
If Not Me.PreScreen Is Nothing Then
If Me.PreScreen IsNot Nothing AndAlso Camera.Name IsNot Nothing Then
If Camera.Name <> "Overworld" Then
Me.canCreateAutosave = False
Else