• 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.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Cyndy, May, Hero (Conquest), or Wes - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • 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.

Pokemon Birthsigns

First of all, i really like your script, you did a great job!

Everything works perfectly but I have a slight issue with the item that's needed to use the zodiac power, it disappears after using it in a battle.
I checked the script and it still has #@zodiacPower[side]=-2 line with the comment tag in front of it so I don't know what's causing this issue.


The ts what ludicrous programmed it to do!
Otherwise, it woupld be too overpowered
 
First of all, i really like your script, you did a great job!

Everything works perfectly but I have a slight issue with the item that's needed to use the zodiac power, it disappears after using it in a battle.
I checked the script and it still has #@zodiacPower[side]=-2 line with the comment tag in front of it so I don't know what's causing this issue.


Zodiac Gems are designed to be consumable items by default, but I offset this by making it so that you can use multiple Zodiac Powers per battle. This was both to "balance" them in a way, while also making them feel functionally different than Z-Moves.
 
Hello!
I was curious to know if there's any way for me to add animations for the Zodiac Powers?
Also, I wanted to change The Bard skill, so that it has a second skill called Dissonance, that works as a Super Repel, to keep away Pokémon from appearing for 150 ammount of steps, how would I do that?

Spoiler:


i got it until here, but then I am unsure of how to make it work like Super Repel, if you can tell me I would be really grateful, thank you :)
 
Hello!
I was curious to know if there's any way for me to add animations for the Zodiac Powers?
Also, I wanted to change The Bard skill, so that it has a second skill called Dissonance, that works as a Super Repel, to keep away Pokémon from appearing for 150 ammount of steps, how would I do that?

Spoiler:


i got it until here, but then I am unsure of how to make it work like Super Repel, if you can tell me I would be really grateful, thank you :)

This code isn't tested, but try using these.

This section should be easy to put in.
Spoiler:


and add this at the every end of the birthsign script.

Spoiler:


theoretically speaking, this should make it so that for 200 steps, you won't encounter anything, and afterwards you won't be able to use the birthsign ability again for another 200 steps to balance it out.
 
Okay I seemed to have a new problem.
I have been trying to limit the player so that he can only use as many items as the enemy has.
For that I added this section:
Spoiler:


And then I went to:
Spoiler:


I know this has nothing directly related to Birthsigns itself, but I hope that you can help me figure this out if possible, thank you.
 
Okay I seemed to have a new problem.
I have been trying to limit the player so that he can only use as many items as the enemy has.
For that I added this section:
Spoiler:


And then I went to:
Spoiler:


I know this has nothing directly related to Birthsigns itself, but I hope that you can help me figure this out if possible, thank you.

A huge chunk of the Zodiac script is just a copy/past of the code found in PokeBattle_Battle with tweaks, so most likely what's happening is that you're adding this new code into PokeBattle_Battle, and it's then being overwritten by the Zodiac script where your code isn't present. So then when you try running your code, it tries to search for something that isn't present because its been overwritten. I'd suggest trying to add your code in the appropriate place within the Zodiac script itself, rather than in PokeBattle_Battle.
 
Hey i tried the Scrip and i got this.. Somehow the attack selection is no longer displayed

I added the ebs Script
 

Attachments

  • 2020-04-11 16-33-03.mp4
    2.8 MB
  • [PokeCommunity.com] Pokemon Birthsigns
    Screenshot (41).png
    53.6 KB · Views: 5
Hey i tried the Scrip and i got this.. Somehow the attack selection is no longer displayed

I added the ebs Script

Looks like it's just some sort of visual bug. I don't seem to have this issue in my game, so you might have a different version of Luka's EBS installed that my script isn't suited for.
 
I tryed again with a fresh clean Pokemon Essentials and fresh ebs for 2 times, but it makes no difference :(
 
I tryed again with a fresh clean Pokemon Essentials and fresh ebs for 2 times, but it makes no difference :(

Then Luka may have updated his script, and my compatibility script may be the one out of date. Truth be told, I haven't been keeping up on updates with EBS, so it's quite possible this is the case. Do you have a link for the latest version of EBS?
 
Hello, I was wondering if it's possible to code in a Poke Ball which works better on the Celestial Bosses as well as wild Pokemon bearing Zodiac Signs.
The name of it is the Zodiac Ball, and it's intended to have an increased catch rate on wild encounters relating to the Zodiacs.
 
Hello, I was wondering if it's possible to code in a Poke Ball which works better on the Celestial Bosses as well as wild Pokemon bearing Zodiac Signs.
The name of it is the Zodiac Ball, and it's intended to have an increased catch rate on wild encounters relating to the Zodiacs.

I don't see why not, it seems like it would be rather simple to make. Something like:

Code:
BallHandlers::ModifyCatchRate.add(:ZODIACBALL,proc{|ball,catchRate,battle,battler|
   catchRate*=3 if battler.isCelestial? || battler.hasZodiacsign?
   next catchRate
})

Would probably work, although I haven't bothered to test.
 
Works like a charm, thanks man!
 
Well, it did until I tried to use the Zodiac Ball.
 
I hope you don't mind, but I gave Vladimorg custom graphics.
[PokeCommunity.com] Pokemon Birthsigns


Source: Vampire Gligar Line, Pokefarm Q
NOTE: This was merely a test to see if it worked, it's not the real Vladimorg. I've been having trouble getting the Celestial Events to work. I followed the steps and everything, even added a second page after setting it up. I may need a clearer walkthrough.
 
Last edited:
I hope you don't mind, but I gave Vladimorg custom graphics.
[PokeCommunity.com] Pokemon Birthsigns


Source: Vampire Gligar Line, Pokefarm Q
NOTE: This was merely a test to see if it worked, it's not the real Vladimorg. I've been having trouble getting the Celestial Events to work. I followed the steps and everything, even added a second page after setting it up. I may need a clearer walkthrough.

What're the issues you're having with the Celestial events?
 
Back
Top