2021-05-13 12:32:56 +00:00
|
|
|
#include "Utilities/CopyableMoves.as"
|
|
|
|
|
|
|
|
namespace Gen7 {
|
|
|
|
[Move effect=Assist]
|
|
|
|
class Assist : PkmnScript {
|
|
|
|
void ChangeAttack(MoveTurnChoice@ move, constString &inout moveName) override {
|
|
|
|
auto user = move.User;
|
|
|
|
auto battle = user.Battle;
|
|
|
|
auto party = battle.FindPartyForPokemon(user).Party;
|
|
|
|
array<const MoveData@> possibleMoves;
|
|
|
|
for (int i = 0; i < party.Length; i++){
|
|
|
|
auto mon = party.GetAtIndex(i);
|
|
|
|
if (mon is null){ continue; }
|
|
|
|
auto moves = mon.GetMoves();
|
|
|
|
for (uint j = 0; j < moves.length; j++){
|
|
|
|
auto m = moves[j];
|
|
|
|
if (m is null){ continue; }
|
2021-08-29 09:51:04 +00:00
|
|
|
if (CopyableMoves::CanCopyMove(m.MoveData)){
|
2021-05-13 12:32:56 +00:00
|
|
|
possibleMoves.insertLast(m.MoveData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (possibleMoves.length == 0){
|
|
|
|
// TODO: Log failure.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto i = battle.Random.Get(possibleMoves.length);
|
|
|
|
moveName = possibleMoves[i].Name;
|
|
|
|
}
|
|
|
|
}
|
2021-08-29 09:51:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if TESTS
|
|
|
|
[Test name="Assist: Switch move to known move from party member"]
|
|
|
|
void Assist_ChangesMove(){
|
|
|
|
auto p1 = CreateSimpleParty({"charizard", "blastoise"}, 100);
|
|
|
|
auto p2 = CreateSimpleParty({"venusaur", "pikachu"}, 100);
|
|
|
|
|
|
|
|
auto battle = CreateSimpleBattle(684, p1, p2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|