HeroesFightingFear
"The Champion of Alon"
- 99
- Posts
- 5
- Years
- Orange, TX
- Seen Nov 22, 2020
If you want to use this, then you can. Note that it summons one of what fans have dubbed "Super Weathers".
Stream Summon
Type: Flying
Power: ---
Category: Status
PP: 5 (max 8)
Accuracy: ---
"The user summons a mysterious air current for five turns, protecting Flying-types."
This move is a move that calls forth the Strong Winds weather. Recommended mainly for more powerful Flying-types.
Spoiler:
Code:
class PokeBattle_Move_15A < PokeBattle_Move
def pbEffect(attacker,opponent,hitnum=0,alltargets=nil,showanimation=true)
case @battle.weather
when PBWeather::STRONGWINDS
@battle.pbDisplay(_INTL("The mysterious air current is already blowing!"))
return -1
end
pbShowAnimation(@id,attacker,nil,hitnum,alltargets,showanimation)
@battle.weather=PBWeather::STRONGWINDS
@battle.weatherduration=5
@battle.weatherduration=8 if attacker.hasWorkingItem(:GALEROCK)
@battle.pbCommonAnimation("StrongWinds",nil,nil)
@battle.pbDisplay(_INTL("A mysterious air current began to blow!"))
return 0
end
end
Stream Summon
Type: Flying
Power: ---
Category: Status
PP: 5 (max 8)
Accuracy: ---
"The user summons a mysterious air current for five turns, protecting Flying-types."
This move is a move that calls forth the Strong Winds weather. Recommended mainly for more powerful Flying-types.
Last edited: