Make wild pkmn uncatchable if catchrate = -1
This commit is contained in:
parent
ca3ddfa441
commit
25bda8826a
|
@ -196,6 +196,10 @@
|
||||||
|
|
||||||
Me.OppPokemon = WildPokemon
|
Me.OppPokemon = WildPokemon
|
||||||
|
|
||||||
|
If Me.OppPokemon.CatchRate = -1 Then
|
||||||
|
CanCatch = False
|
||||||
|
End If
|
||||||
|
|
||||||
If Core.Player.Pokemons.Count = 0 Then
|
If Core.Player.Pokemons.Count = 0 Then
|
||||||
Dim p1 As Pokemon = Pokemon.GetPokemonByID(247)
|
Dim p1 As Pokemon = Pokemon.GetPokemonByID(247)
|
||||||
p1.Generate(15, True)
|
p1.Generate(15, True)
|
||||||
|
|
Loading…
Reference in New Issue