Recent content by Xanarquiz220

  1. X

    Script: Generation 9 Resource Pack [v21.1]

    Hello, I absolutely love this pack, but whenever pokemon like terapagos or morpeko change forms during battle they just change their sprite, I would like to add an animation while they do so, is this possible? And ho do I access the scripts in the rpg maker? Pls help I´ve been looking for a...
  2. X

    Pokemon Sapiientis - Scripting Help PLEASE

    Hello everyone, I´ve decided to attempt to make my pokemon fangame, since I´ve always been a fan of the franchise and enjoyed spriting. But I need particular help with the coding. I have a post about this, but I´ll summerize: Basically, I need to figure out how to display an animation (animation...
  3. X

    [Coding Tutorial] Animation triggered by abilities or form changes

    Hello, I´ve been trying to make my own pokemon fangame with RPG Maker XP, and I´ve installed the pack that adds all pokemon from all gens attacks and abilities and so on. I realised that pokemon that change form during battle (like morpeko or terapagos) don´t display any animation nor transition...
  4. X

    [Scripting Question] Mid Battle Animation for pokemon that change forms

    Yes yes I have the .anm file in the root directory
  5. X

    [Scripting Question] Mid Battle Animation for pokemon that change forms

    I did as follows def pbChangeForm(newForm, msg) return if fainted? || @effects[PBEffects::Transform] || @form == newForm oldForm = @form oldDmg = @totalhp - @HP @battle.pbCommonAnimation("FormChange", self) self.form = newForm pbUpdate(true) @HP = @totalhp - oldDmg...
  6. X

    [Scripting Question] Mid Battle Animation for pokemon that change forms

    So basically what I wanna do is, with my very limited knowledge of ruby, be able to display an animation every time morpeko changes form (which he does at the end of every turn), as well as terapagos (which he does when his hability tera shift activate at the beggening of the battle). Okey so...
  7. X

    [Scripting Question] Mid Battle Animation for pokemon that change forms

    So I dont think I understand, I´m new to this sorry. The line of code for the morpeko form change is this I think: # Morpeko - Hunger Switch if isSpecies?(:MORPEKO) && hasActiveAbility?(:HUNGERSWITCH) && endOfRound # Intentionally doesn't show the ability splash or a message...
  8. X

    [Scripting Question] Mid Battle Animation for pokemon that change forms

    So I´ve installed the Gen 9 repack for essentials from relic castle, its excellent, but I realised Pokemon such as Morpeko, Wishiwashi, Terapagos among others change form in an awkard way and I would like to add some animations to those form changes while in battle. The question I guess is: How...
Back
Top