• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[PBS Question] How do I change 104 Cubone's stats to make it better for my fan game?

  • 52
    Posts
    9
    Years
    • Seen Apr 12, 2021
    Usually in the start of my fan game that I am starting development on, everyone will start out with Cubone. But I want to make it a more useful Pokemon in battle by changing its stats, iv's, etc. How do I do that in notepad++ or is there another way to do it?
     
    Inside the event, past:
    [PokeCommunity.com] How do I change 104 Cubone's stats to make it better for my fan game?


    If you want a sound effect when player gets pokemon, just change 'Kernel.pbAddPokemonSilent(p)' to 'Kernel.pbAddPokemon(p)'. Here the code:
    Code:
    p=PokeBattle_Pokemon.new(:LUCARIO,25,$Trainer)
    #p.form=2
    p.setItem(:LUCARIONITE)
    p.setNature(:JOLLY)
    #p.setAbility(3)   #Hidden Ability always will be (2)
    p.iv=[31,0,31,31,0,31]
    p.ev=[252,0,252,252,0,252]
    #p.pbLearnMove(:SOLARBEAM)
    #p.pbLearnMove(:TELEPORT)
    #p.pbLearnMove(:ROCKSLIDE)
    #p.pbLearnMove(:DOUBLEEDGE)
    #p.ballused=26
    p.calcStats
    IV/EV order:
    HP,ATK,DEF,SPEED,SPATK,SPDEF.
     
    Last edited:
    IF you want to change its base stats, you'll need to edit its PBS entry mantually.

    Ctrl+F for cubone and find the line that says BaseStats=[some string of 6 numbers]

    edit those and you'll be golden.

    Stats are listed in the following order: HP,ATK,DEF,SPEED,SPATK,SPDEF.
     
    Back
    Top