• 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 Trading Card Game 2 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.

how can i crossbreed

  • 32
    Posts
    10
    Years
    • Seen Aug 16, 2016
    i wanted to delete this thread so the forum wouldn't get to crammed with double posts, but i couldn't figure out how. but i also have another question i need help with:

    how can i make crossbreeding possible, where you give two certain pokemon to the day care and the egg is of another species?

    for example: drowzee male and lickitung female generate an heatmor egg.

    i know you can define that an item like an incense makes the babyspecies different from the mother's species, but then in this example lickitung could get an heatmor egg with any other pokemon of her egg group too if one of the parents is holding the incense. but what i'm looking for is how to make only one certain pair of pokemon produce the new species, with or without item.

    is the nidoran or volbeat script suitable to be modified for this purpose? again i would appreciate any helpful reply
     
    Separate questions go in separate threads. It's better organised that way.

    You'd have to hardcode this kind of thing. Yes, look at the Nidoran/Volbeat code, and adapt it. You'd want to check the species of both the mother and father, and then set the baby's species to something (rather than a random choice of two somethings).
     
    Breeding Pokemon to get new Species

    If I wanted to make it so the only way to get a certain Pokemon was to breed two specific Pokemon, Rhyhorn and Rampardos = Charmander, for example, would something like that be complicated to put into essentials?
     
    i think you mean the same thing i did. look at the nidoran daycare code, where a certain pair of pokemon randomly generates either a female or male nidoran instead of always getting the mother's babyspecies. modifying this code should let rhyhorn and rampardos generate charmander eggs. i couldn't test this method yet so please if you do so let me know if it works
     
    If I wanted to make it so the only way to get a certain Pokemon was to breed two specific Pokemon, Rhyhorn and Rampardos = Charmander, for example, would something like that be complicated to put into essentials?

    add:
    if isConst?(babyspecies,PBSpecies,:RHYHORN) && isConst?(father.species,PBSpecies,:RAMPARDOS)
    babyspecies=getConst(PBSpecies,:CHARMANDER)
    end

    and:
    if isConst?(babyspecies,PBSpecies,:CRANIDOS) && isConst?(father.species,PBSpecies,:RHYHORN)
    babyspecies=getConst(PBSpecies,:CHARMANDER)
    end

    below the phione code in daycare script. hope that's what you wanted. if you also want rhydon and cranidos to be the fathers to produce charmander eggs add lines for them too
     
    Back
    Top