• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Resource icon

Tutorial Wild Nicknamed pokemon 1.0

InTheLight

Master Of Games
Member
Joined
Apr 23, 2023
Posts
16
lemiho19 submitted a new resource:

Wild Nicknamed pokemon - Nicknames for wild pokemon

This may be compatible with most versions of essentials

When walking in the grass you have a chance to find a shiny Pokémon but why not a nicknamed Pokémon?
If a trainer lets a Pokémon go it should be free with a nickname... or whatever it takes to make this lore friendly...
perhaps you limit the name letters to 10 and you put some cool 11 letter wild encounter nicknames in to spice up your game. either way this is just an easy adddition to add into your pokemon...

Read more about this resource...
 
#=============================================================================
# NICKNAME
#=============================================================================
Nicknames = ["Czechoslovakia", "Jennnnnnny", "Billlllllll", "Masterball"]

def nickname?
@Name = Nicknames[rand(0..3)] # Adjusted to select a random index from 0 to 3
@iv[rand(0..5)] = 31
end

adding @iv[rand(0..5)] = 31 like I did here can add some more to the unique names as it will cause 1 random IV to be maxed have fun
 
Back
Top