• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

Tutorial Wild Nicknamed pokemon 1.0

lemiho19

Master Of Games
Member
Joined
Apr 23, 2023
Posts
18
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...
 

lemiho19

Master Of Games
Member
Joined
Apr 23, 2023
Posts
18
#=============================================================================
# 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