• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
M.A.G (Moves & Abilities Galore)

Resource M.A.G (Moves & Abilities Galore) 0.3.0

Tea-Rex

Rookie
Member
Joined
Oct 22, 2021
Posts
5
Tea-Rex submitted a new resource:

M.A.G (Moves & Abilities Galore) - A bunch of custom scripted moves and abilities

M.A.G (Moves & Abilities Galore)

M.A.G is a large archive of old custom moves and abilities that you can just plug and play within your own game.

Features

  • Custom scripted moves & abilities
  • Settings to change some effects of old moves & abilities
  • Ability to submit your own moves & abilities for it to potentially be added to future updates
  • List of moves & abilities can be found...

Read more about this resource...
 

Tea-Rex

Rookie
Member
Joined
Oct 22, 2021
Posts
5
Tea-Rex updated M.A.G (Moves & Abilities Galore) with a new update entry:

The 1st update. Community additions

The first update to the plugin. Hope it all turns out well and if not please @ me on the official discord. If the names of anything are different it's because I was already working on the ability/move when it was suggested but I still wanted to give credit to those who posted their submissions.

New Moves
  • Sapping Cinders (xxskylorxx)
  • Fatal Sting (xxskylorxx)
  • Gale Fist (xxskylorxx)
  • Aikido Blast (edeniteiron)
  • Aura Storm
  • Excalibur (icaroshiki)
...

Read the rest of this update entry...
 

Luck1973

Novice
Member
Joined
Jan 20, 2021
Posts
12
Sem_Titulo-1.png

Man, i've ran into that problem, the moves Synthesis and Growth only works if i cut their part of the "Chloropast" ability code.
 

komeiji514

Elite Trainer
Member
Joined
Oct 28, 2023
Posts
254
Sem_Titulo-1.png

Man, i've ran into that problem, the moves Synthesis and Growth only works if i cut their part of the "Chloropast" ability code.
An easy fix.
Ruby:
Expand Collapse Copy
#Growth
class Battle::Move::RaiseUserAtkSpAtk1Or2InSun < Battle::Move::MultiStatUpMove
  def initialize(battle, move)
    super
    @statUp = [:ATTACK, 1, :SPECIAL_ATTACK, 1]
  end

  def pbOnStartUse(user, targets) #Just change this line.
    increment = 1
    increment = 2 if ([:Sun, :HarshSun].include?(user.effectiveWeather)) || user.hasActiveAbility?(:CHLOROPLAST)
    @statUp[1] = @statUp[3] = increment
  end
end
 

Tea-Rex

Rookie
Member
Joined
Oct 22, 2021
Posts
5
Tea-Rex updated M.A.G (Moves & Abilities Galore) with a new update entry:

Abilities and Entry Hazards

Updated the Plugin installation so that you don't have to copy and paste the PBS into the original PBS. Now you can just copy and paste the files into the PBS folder.

New Abilities
  • Cat-astrophe
  • Shallowness
  • Dual Wield
  • Vengeance
  • Fuelled Blaze
  • Hell's Blaze
  • Power Surge
New Moves
  • Coral Cascade
Entry Hazards on every type
This update Includes a new entry hazard for every single...

Read the rest of this update entry...
 

Luck1973

Novice
Member
Joined
Jan 20, 2021
Posts
12
An easy fix.
Ruby:
Expand Collapse Copy
#Growth
class Battle::Move::RaiseUserAtkSpAtk1Or2InSun < Battle::Move::MultiStatUpMove
  def initialize(battle, move)
    super
    @statUp = [:ATTACK, 1, :SPECIAL_ATTACK, 1]
  end

  def pbOnStartUse(user, targets) #Just change this line.
    increment = 1
    increment = 2 if ([:Sun, :HarshSun].include?(user.effectiveWeather)) || user.hasActiveAbility?(:CHLOROPLAST)
    @statUp[1] = @statUp[3] = increment
  end
end
Works perfectly, thanks my man :)
 

halily

Novice
Member
Joined
May 19, 2024
Posts
11
After installing this plugin, the Ability effect I wrote elsewhere cannot be read.
 

Tea-Rex

Rookie
Member
Joined
Oct 22, 2021
Posts
5
Tea-Rex updated M.A.G (Moves & Abilities Galore) with a new update entry:

Large Community Update

Added majority of the requests made through the google forms.
New Moves
  • Flicked Pebble
  • First Strike
  • Gold Hoard
  • Viny Hold
  • Corroding Acid
  • Depressurize
  • Climatic Blade
  • Whirlwind Fist
  • Blazing Wings
New Abilities
  • Spectralize
  • Power Surge
  • Hell's Blaze
  • Monkey Buisness
  • Under Weather
  • Faulty Reciver
  • Double Cross
  • Potent Poison
  • Underhanded
  • Arcane Mage
  • Sky Force
  • Fiery Spirit
  • Crystallize...

Read the rest of this update entry...
 

SomebodyRandom

Trainer
Member
Joined
Feb 13, 2022
Posts
70
Idea for the google sheets and google forms, add a "candidates" form for suggesting candidates for moves and abilities, and add a candidates section for moves
 

Charmingloopy

Made and Lost Dev
Member
Joined
Aug 10, 2021
Posts
3
the Ability Double cross is not in the pbs meaning it causes a error when it goes to check if a pokemon has the ability
 
Back
Top