• 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.
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
regional prevolutions

Resource regional prevolutions 2025-10-27

glitch_particle

the glitchiest of particles
Member
Joined
Oct 26, 2025
Posts
4
Pronouns
they/them or he/him
glitch_particle submitted a new resource:

regional prevolutions - incomplete regional lines completed

have you ever wanted to include both kantonion raichu and alolan richu in your game
what about both weezings with proper breeding functionality

well this resource can help, I've made the missing forms for all these incomplete lines

all of these changes are quite subtle just to bring them in line with evos a bit more

-- sprites included --
(each one includes front, back, icon and shinies of each)
alolan pichu
alolan pikachu
alolan exeggcute
alolan cubone
galarian koffing
galarian mime jr...

Read more about this resource...
 
Could you upload it as a zip to download? I, for example, I have to go to download all the individual sprites one at a time and it can be a pain in the ass to download 96 sprites individualy.
 
I would also like a way to mass download this as it makes me try to pay to download them all. Mediafire and Mega are recommended sites for this.
 
I would also like a way to mass download this as it makes me try to pay to download them all. Mediafire and Mega are recommended sites for this.
I am already using mediafire, though clearly I'm not great at operating it because I thought sharing a folder would automatically turn it into a zip so thats my fault

Could you upload it as a zip to download? I, for example, I have to go to download all the individual sprites one at a time and it can be a pain in the ass to download 96 sprites individualy.
now that I know to do that I will, I am currently away from home so don't have access to my files except the non-zip version of the folder in mediafire which I cannot change into a zip from mediafire once I get home I'll fix it though
 
Hello trainer, I saw that you're providing support for alternate forms and I'd like to share some support for Breed.
There are several species that come from regional alternate evolutions, and they can vary their form from 0 to 1 due to several factors.
So this patch corrects and ensures that a Breed will be born in regional forms in the species listed in the code.

Ruby:
Expand Collapse Copy
module Maker_Utilities
  SPECIAL_EVOLVS = {
    :PERRSERKER => 2,
    :SNEASLER   => 1,
    :RUNERIGUS  => 1,
    :SIRFETCHD  => 1,
    :CURSOLA    => 1,
    :MRRIME     => 1,
    :OVERQWIL   => 1,
    :OBSTAGOON  => 1,
    :CLODSIRE   => 1,
  }
end

class DayCare
  module EggGenerator
    module_function
    def inherit_form(egg, species_parent, mother, father)
      # mother = [mother, mother_ditto, mother_in_family]
      # father = [father, father_ditto, father_in_family]
      # Inherit form from the parent that determined the egg's species
      if species_parent.species_data.has_flag?("InheritFormFromMother")
        egg.form = species_parent.form
      end
      # Inherit form from a parent holding an Ever Stone
      [mother, father].each do |parent|
        next if !parent[2]   # Parent isn't a related species to the egg
        next if !parent[0].species_data.has_flag?("InheritFormWithEverStone")
        next if !parent[0].hasItem?(:EVERSTONE)
        egg.form = parent[0].form
         if Maker_Utilities::SPECIAL_EVOLVS.key?(parent[0].species)
          egg.form = Maker_Utilities::SPECIAL_EVOLVS[parent[0].species]
        end
        break
      end
    end
  end
end
 
Back
Top