IS there a way to Make Wild Pokemon Shadow - normal encounter's that is?
Events.onWildPokemonCreate+=proc {|sender,e|
pokemon=e[0]
pokemon.makeShadow
}
Events.onWildPokemonCreate+=proc {|sender,e|
pokemon=e[0]
pokemon.makeShadow if rand(100) == 0 # change the 100 to whatever number you want (100 = 1%, 1000 = 0.1%, 10 = 10%, ect.)
}
Events.onWildPokemonCreate+=proc {|sender,e|
pokemon=e[0]
pokemon.makeShadow if $game_switches[SWITCH_NUMBER_ID_HERE]
}
maps=[2,3,4] # Map IDs when you want pokemon to be shadow
#Any of the above scripts here
&& $game_map && maps.include?($game_map.map_id)
next 1
else
next 0
end