summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvblm12 <vblm12@gmail.com>2018-07-20 21:46:31 -0500
committervblm12 <vblm12@gmail.com>2018-07-20 21:46:31 -0500
commitfaf554de7af7712f91ab117f957b691a052344bf (patch)
treed11a693b66b7a749566fdf5b1b3304901bfe9713 /src
parent56746748402b691a6fa4fb45a2091dac31d92f7d (diff)
Copy the Trainer struct from pokeemerald.
Also regenerate trainers*.h
Diffstat (limited to 'src')
-rw-r--r--src/battle/battle_2.c14
-rw-r--r--src/battle/battle_setup.c43
-rw-r--r--src/data/trainer_parties.h1386
-rw-r--r--src/data/trainers_de.h1390
-rw-r--r--src/data/trainers_en.h1388
5 files changed, 2116 insertions, 2105 deletions
diff --git a/src/battle/battle_2.c b/src/battle/battle_2.c
index 7b6004ce0..5a71733b8 100644
--- a/src/battle/battle_2.c
+++ b/src/battle/battle_2.c
@@ -1055,7 +1055,7 @@ u8 CreateNPCTrainerParty(struct Pokemon *party, u16 trainerNum)
{
case 0:
{
- const struct TrainerPartyMember0 *partyData = gTrainers[trainerNum].party;
+ const struct TrainerMonNoItemDefaultMoves *partyData = gTrainers[trainerNum].party.NoItemDefaultMoves;
for (j = 0; gSpeciesNames[partyData[i].species][j] != 0xFF; j++)
nameHash += gSpeciesNames[partyData[i].species][j];
@@ -1064,9 +1064,9 @@ u8 CreateNPCTrainerParty(struct Pokemon *party, u16 trainerNum)
CreateMon(&party[i], partyData[i].species, partyData[i].level, fixedIV, TRUE, personalityValue, 2, 0);
break;
}
- case 1:
+ case F_TRAINER_PARTY_CUSTOM_MOVESET:
{
- const struct TrainerPartyMember1 *partyData = gTrainers[trainerNum].party;
+ const struct TrainerMonNoItemCustomMoves *partyData = gTrainers[trainerNum].party.NoItemCustomMoves;
for (j = 0; gSpeciesNames[partyData[i].species][j] != 0xFF; j++)
nameHash += gSpeciesNames[partyData[i].species][j];
@@ -1081,9 +1081,9 @@ u8 CreateNPCTrainerParty(struct Pokemon *party, u16 trainerNum)
}
break;
}
- case 2:
+ case F_TRAINER_PARTY_HELD_ITEM:
{
- const struct TrainerPartyMember2 *partyData = gTrainers[trainerNum].party;
+ const struct TrainerMonItemDefaultMoves *partyData = gTrainers[trainerNum].party.ItemDefaultMoves;
for (j = 0; gSpeciesNames[partyData[i].species][j] != 0xFF; j++)
nameHash += gSpeciesNames[partyData[i].species][j];
@@ -1094,9 +1094,9 @@ u8 CreateNPCTrainerParty(struct Pokemon *party, u16 trainerNum)
SetMonData(&party[i], MON_DATA_HELD_ITEM, &partyData[i].heldItem);
break;
}
- case 3:
+ case F_TRAINER_PARTY_CUSTOM_MOVESET | F_TRAINER_PARTY_HELD_ITEM:
{
- const struct TrainerPartyMember3 *partyData = gTrainers[trainerNum].party;
+ const struct TrainerMonItemCustomMoves *partyData = gTrainers[trainerNum].party.ItemCustomMoves;
for (j = 0; gSpeciesNames[partyData[i].species][j] != 0xFF; j++)
nameHash += gSpeciesNames[partyData[i].species][j];
diff --git a/src/battle/battle_setup.c b/src/battle/battle_setup.c
index c1d486bd1..fc929eb4d 100644
--- a/src/battle/battle_setup.c
+++ b/src/battle/battle_setup.c
@@ -748,7 +748,6 @@ static u8 GetSumOfEnemyPartyLevel(u16 opponentId, u8 numMons)
u8 i;
u8 sum;
u32 count = numMons;
- const void *party;
if (gTrainers[opponentId].partySize < count)
count = gTrainers[opponentId].partySize;
@@ -758,24 +757,36 @@ static u8 GetSumOfEnemyPartyLevel(u16 opponentId, u8 numMons)
switch (gTrainers[opponentId].partyFlags)
{
case 0:
- party = gTrainers[opponentId].party;
- for (i = 0; i < count; i++)
- sum += ((struct TrainerPartyMember0 *)party)[i].level;
+ {
+ const struct TrainerMonNoItemDefaultMoves *party;
+ party = gTrainers[opponentId].party.NoItemDefaultMoves;
+ for (i = 0; i < count; i++)
+ sum += party[i].level;
+ }
break;
- case 1:
- party = gTrainers[opponentId].party;
- for (i = 0; i < count; i++)
- sum += ((struct TrainerPartyMember1 *)party)[i].level;
+ case F_TRAINER_PARTY_CUSTOM_MOVESET:
+ {
+ const struct TrainerMonNoItemCustomMoves *party;
+ party = gTrainers[opponentId].party.NoItemCustomMoves;
+ for (i = 0; i < count; i++)
+ sum += party[i].level;
+ }
break;
- case 2:
- party = gTrainers[opponentId].party;
- for (i = 0; i < count; i++)
- sum += ((struct TrainerPartyMember2 *)party)[i].level;
+ case F_TRAINER_PARTY_HELD_ITEM:
+ {
+ const struct TrainerMonItemDefaultMoves *party;
+ party = gTrainers[opponentId].party.ItemDefaultMoves;
+ for (i = 0; i < count; i++)
+ sum += party[i].level;
+ }
break;
- case 3:
- party = gTrainers[opponentId].party;
- for (i = 0; i < count; i++)
- sum += ((struct TrainerPartyMember3 *)party)[i].level;
+ case F_TRAINER_PARTY_CUSTOM_MOVESET | F_TRAINER_PARTY_HELD_ITEM:
+ {
+ const struct TrainerMonItemCustomMoves *party;
+ party = gTrainers[opponentId].party.ItemCustomMoves;
+ for (i = 0; i < count; i++)
+ sum += party[i].level;
+ }
break;
}
diff --git a/src/data/trainer_parties.h b/src/data/trainer_parties.h
index ad6b052df..5bd2a0f99 100644
--- a/src/data/trainer_parties.h
+++ b/src/data/trainer_parties.h
@@ -1,4 +1,4 @@
-const struct TrainerPartyMember0 gTrainerParty_Archie1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Archie1[] = {
{
.iv = 0,
.level = 17,
@@ -11,7 +11,7 @@ const struct TrainerPartyMember0 gTrainerParty_Archie1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt1[] = {
{
.iv = 0,
.level = 32,
@@ -24,7 +24,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt2[] = {
{
.iv = 0,
.level = 30,
@@ -47,7 +47,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt3[] = {
{
.iv = 0,
.level = 32,
@@ -60,7 +60,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt4[] = {
{
.iv = 0,
.level = 33,
@@ -68,7 +68,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt5[] = {
{
.iv = 0,
.level = 37,
@@ -81,7 +81,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt6[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt6[] = {
{
.iv = 0,
.level = 38,
@@ -89,7 +89,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt7[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt7[] = {
{
.iv = 0,
.level = 36,
@@ -107,7 +107,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt7[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt8[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt8[] = {
{
.iv = 0,
.level = 17,
@@ -115,7 +115,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt8[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt9[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt9[] = {
{
.iv = 0,
.level = 9,
@@ -123,7 +123,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt9[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt10[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt10[] = {
{
.iv = 0,
.level = 9,
@@ -136,7 +136,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt10[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt11[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt11[] = {
{
.iv = 0,
.level = 16,
@@ -149,7 +149,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt11[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt12[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt12[] = {
{
.iv = 0,
.level = 16,
@@ -162,7 +162,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt12[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt13[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt13[] = {
{
.iv = 0,
.level = 20,
@@ -175,7 +175,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt13[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt14[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt14[] = {
{
.iv = 0,
.level = 17,
@@ -188,7 +188,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt14[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt15[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt15[] = {
{
.iv = 0,
.level = 11,
@@ -196,7 +196,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt15[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt16[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt16[] = {
{
.iv = 0,
.level = 27,
@@ -209,7 +209,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt16[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt17[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt17[] = {
{
.iv = 0,
.level = 27,
@@ -222,7 +222,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt17[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt18[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt18[] = {
{
.iv = 0,
.level = 26,
@@ -240,7 +240,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt18[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt19[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt19[] = {
{
.iv = 0,
.level = 15,
@@ -248,7 +248,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt19[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt20[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt20[] = {
{
.iv = 0,
.level = 14,
@@ -261,7 +261,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt20[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt21[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt21[] = {
{
.iv = 0,
.level = 17,
@@ -269,7 +269,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt21[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt22[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt22[] = {
{
.iv = 0,
.level = 30,
@@ -287,7 +287,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt22[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt23[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt23[] = {
{
.iv = 0,
.level = 31,
@@ -300,7 +300,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt23[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt24[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt24[] = {
{
.iv = 0,
.level = 31,
@@ -313,7 +313,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt24[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt25[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt25[] = {
{
.iv = 0,
.level = 28,
@@ -321,7 +321,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt25[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt26[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt26[] = {
{
.iv = 0,
.level = 31,
@@ -339,7 +339,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt26[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt27[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt27[] = {
{
.iv = 0,
.level = 33,
@@ -347,7 +347,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt27[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous1[] = {
{
.iv = 50,
.level = 30,
@@ -360,7 +360,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Matt1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Matt1[] = {
{
.iv = 50,
.level = 32,
@@ -378,7 +378,7 @@ const struct TrainerPartyMember0 gTrainerParty_Matt1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Matt2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Matt2[] = {
{
.iv = 50,
.level = 20,
@@ -396,7 +396,7 @@ const struct TrainerPartyMember0 gTrainerParty_Matt2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shelly1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shelly1[] = {
{
.iv = 50,
.level = 28,
@@ -409,7 +409,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shelly1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shelly2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shelly2[] = {
{
.iv = 50,
.level = 38,
@@ -422,7 +422,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shelly2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Archie2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Archie2[] = {
{
.iv = 150,
.level = 41,
@@ -440,7 +440,7 @@ const struct TrainerPartyMember0 gTrainerParty_Archie2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Archie3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Archie3[] = {
{
.iv = 150,
.level = 24,
@@ -458,7 +458,7 @@ const struct TrainerPartyMember0 gTrainerParty_Archie3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Daisy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Daisy[] = {
{
.iv = 0,
.level = 16,
@@ -466,7 +466,7 @@ const struct TrainerPartyMember0 gTrainerParty_Daisy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Rose1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Rose1[] = {
{
.iv = 0,
.level = 16,
@@ -479,7 +479,7 @@ const struct TrainerPartyMember0 gTrainerParty_Rose1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lily[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lily[] = {
{
.iv = 0,
.level = 17,
@@ -492,7 +492,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lily[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Violet[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Violet[] = {
{
.iv = 0,
.level = 25,
@@ -510,7 +510,7 @@ const struct TrainerPartyMember0 gTrainerParty_Violet[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Rose2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Rose2[] = {
{
.iv = 10,
.level = 26,
@@ -523,7 +523,7 @@ const struct TrainerPartyMember0 gTrainerParty_Rose2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Rose3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Rose3[] = {
{
.iv = 20,
.level = 28,
@@ -541,7 +541,7 @@ const struct TrainerPartyMember0 gTrainerParty_Rose3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Rose4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Rose4[] = {
{
.iv = 30,
.level = 31,
@@ -559,7 +559,7 @@ const struct TrainerPartyMember0 gTrainerParty_Rose4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Rose5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Rose5[] = {
{
.iv = 40,
.level = 34,
@@ -577,7 +577,7 @@ const struct TrainerPartyMember0 gTrainerParty_Rose5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Dusty1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Dusty1[] = {
{
.iv = 50,
.level = 24,
@@ -586,7 +586,7 @@ const struct TrainerPartyMember1 gTrainerParty_Dusty1[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Chip[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Chip[] = {
{
.iv = 50,
.level = 28,
@@ -607,7 +607,7 @@ const struct TrainerPartyMember1 gTrainerParty_Chip[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Foster[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Foster[] = {
{
.iv = 50,
.level = 26,
@@ -622,7 +622,7 @@ const struct TrainerPartyMember1 gTrainerParty_Foster[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Dusty2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Dusty2[] = {
{
.iv = 60,
.level = 27,
@@ -631,7 +631,7 @@ const struct TrainerPartyMember1 gTrainerParty_Dusty2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Dusty3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Dusty3[] = {
{
.iv = 70,
.level = 30,
@@ -640,7 +640,7 @@ const struct TrainerPartyMember1 gTrainerParty_Dusty3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Dusty4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Dusty4[] = {
{
.iv = 80,
.level = 33,
@@ -649,7 +649,7 @@ const struct TrainerPartyMember1 gTrainerParty_Dusty4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Dusty5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Dusty5[] = {
{
.iv = 90,
.level = 36,
@@ -658,7 +658,7 @@ const struct TrainerPartyMember1 gTrainerParty_Dusty5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_GabbyAndTy1[] = {
{
.iv = 50,
.level = 19,
@@ -671,7 +671,7 @@ const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_GabbyAndTy2[] = {
{
.iv = 100,
.level = 27,
@@ -684,7 +684,7 @@ const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_GabbyAndTy3[] = {
{
.iv = 150,
.level = 30,
@@ -697,7 +697,7 @@ const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_GabbyAndTy4[] = {
{
.iv = 200,
.level = 33,
@@ -710,7 +710,7 @@ const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_GabbyAndTy5[] = {
{
.iv = 250,
.level = 36,
@@ -723,7 +723,7 @@ const struct TrainerPartyMember0 gTrainerParty_GabbyAndTy5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_GabbyAndTy6[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_GabbyAndTy6[] = {
{
.iv = 250,
.level = 39,
@@ -738,7 +738,7 @@ const struct TrainerPartyMember1 gTrainerParty_GabbyAndTy6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lola1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lola1[] = {
{
.iv = 0,
.level = 13,
@@ -751,7 +751,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lola1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Carmen[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Carmen[] = {
{
.iv = 0,
.level = 27,
@@ -759,7 +759,7 @@ const struct TrainerPartyMember0 gTrainerParty_Carmen[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Gwen[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Gwen[] = {
{
.iv = 0,
.level = 27,
@@ -767,7 +767,7 @@ const struct TrainerPartyMember0 gTrainerParty_Gwen[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lola2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lola2[] = {
{
.iv = 10,
.level = 26,
@@ -780,7 +780,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lola2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lola3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lola3[] = {
{
.iv = 20,
.level = 29,
@@ -793,7 +793,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lola3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lola4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lola4[] = {
{
.iv = 30,
.level = 32,
@@ -806,7 +806,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lola4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lola5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lola5[] = {
{
.iv = 40,
.level = 35,
@@ -819,7 +819,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lola5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Ricky1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Ricky1[] = {
{
.iv = 0,
.level = 14,
@@ -828,7 +828,7 @@ const struct TrainerPartyMember1 gTrainerParty_Ricky1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Simon[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Simon[] = {
{
.iv = 0,
.level = 12,
@@ -841,7 +841,7 @@ const struct TrainerPartyMember0 gTrainerParty_Simon[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Charlie[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Charlie[] = {
{
.iv = 0,
.level = 27,
@@ -849,7 +849,7 @@ const struct TrainerPartyMember0 gTrainerParty_Charlie[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Ricky2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Ricky2[] = {
{
.iv = 10,
.level = 27,
@@ -858,7 +858,7 @@ const struct TrainerPartyMember1 gTrainerParty_Ricky2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Ricky3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Ricky3[] = {
{
.iv = 20,
.level = 30,
@@ -867,7 +867,7 @@ const struct TrainerPartyMember1 gTrainerParty_Ricky3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Ricky4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Ricky4[] = {
{
.iv = 30,
.level = 33,
@@ -876,7 +876,7 @@ const struct TrainerPartyMember1 gTrainerParty_Ricky4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Ricky5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Ricky5[] = {
{
.iv = 40,
.level = 36,
@@ -885,7 +885,7 @@ const struct TrainerPartyMember1 gTrainerParty_Ricky5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Randall[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Randall[] = {
{
.iv = 100,
.level = 27,
@@ -893,7 +893,7 @@ const struct TrainerPartyMember0 gTrainerParty_Randall[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Parker[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Parker[] = {
{
.iv = 100,
.level = 27,
@@ -901,7 +901,7 @@ const struct TrainerPartyMember0 gTrainerParty_Parker[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_George[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_George[] = {
{
.iv = 100,
.level = 27,
@@ -909,7 +909,7 @@ const struct TrainerPartyMember0 gTrainerParty_George[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Berke[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Berke[] = {
{
.iv = 100,
.level = 27,
@@ -917,7 +917,7 @@ const struct TrainerPartyMember0 gTrainerParty_Berke[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Clyde[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Clyde[] = {
{
.iv = 100,
.level = 29,
@@ -950,7 +950,7 @@ const struct TrainerPartyMember1 gTrainerParty_Clyde[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Vincent[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Vincent[] = {
{
.iv = 100,
.level = 44,
@@ -968,7 +968,7 @@ const struct TrainerPartyMember0 gTrainerParty_Vincent[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Leroy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Leroy[] = {
{
.iv = 100,
.level = 46,
@@ -981,7 +981,7 @@ const struct TrainerPartyMember0 gTrainerParty_Leroy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wilton1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wilton1[] = {
{
.iv = 100,
.level = 18,
@@ -999,7 +999,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wilton1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Edgar[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Edgar[] = {
{
.iv = 100,
.level = 44,
@@ -1007,7 +1007,7 @@ const struct TrainerPartyMember0 gTrainerParty_Edgar[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Albert[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Albert[] = {
{
.iv = 100,
.level = 43,
@@ -1020,7 +1020,7 @@ const struct TrainerPartyMember0 gTrainerParty_Albert[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Samuel[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Samuel[] = {
{
.iv = 100,
.level = 42,
@@ -1038,7 +1038,7 @@ const struct TrainerPartyMember0 gTrainerParty_Samuel[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Vito[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Vito[] = {
{
.iv = 100,
.level = 42,
@@ -1061,7 +1061,7 @@ const struct TrainerPartyMember0 gTrainerParty_Vito[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Owen[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Owen[] = {
{
.iv = 100,
.level = 42,
@@ -1079,7 +1079,7 @@ const struct TrainerPartyMember0 gTrainerParty_Owen[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wilton2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wilton2[] = {
{
.iv = 110,
.level = 26,
@@ -1097,7 +1097,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wilton2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wilton3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wilton3[] = {
{
.iv = 120,
.level = 29,
@@ -1115,7 +1115,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wilton3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wilton4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wilton4[] = {
{
.iv = 130,
.level = 32,
@@ -1133,7 +1133,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wilton4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wilton5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wilton5[] = {
{
.iv = 140,
.level = 35,
@@ -1151,7 +1151,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wilton5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Warren[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Warren[] = {
{
.iv = 100,
.level = 34,
@@ -1169,7 +1169,7 @@ const struct TrainerPartyMember0 gTrainerParty_Warren[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Mary[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Mary[] = {
{
.iv = 100,
.level = 27,
@@ -1177,7 +1177,7 @@ const struct TrainerPartyMember0 gTrainerParty_Mary[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lori[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lori[] = {
{
.iv = 100,
.level = 27,
@@ -1185,7 +1185,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lori[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jody[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jody[] = {
{
.iv = 100,
.level = 27,
@@ -1193,7 +1193,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jody[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wendy[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wendy[] = {
{
.iv = 100,
.level = 31,
@@ -1214,7 +1214,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wendy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Elaine[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Elaine[] = {
{
.iv = 100,
.level = 45,
@@ -1227,7 +1227,7 @@ const struct TrainerPartyMember0 gTrainerParty_Elaine[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brooke1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brooke1[] = {
{
.iv = 100,
.level = 18,
@@ -1245,7 +1245,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brooke1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jennifer[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jennifer[] = {
{
.iv = 100,
.level = 31,
@@ -1253,7 +1253,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jennifer[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hope[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hope[] = {
{
.iv = 100,
.level = 44,
@@ -1261,7 +1261,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hope[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shannon[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shannon[] = {
{
.iv = 100,
.level = 44,
@@ -1269,7 +1269,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shannon[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Michelle[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Michelle[] = {
{
.iv = 100,
.level = 42,
@@ -1287,7 +1287,7 @@ const struct TrainerPartyMember0 gTrainerParty_Michelle[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Caroline[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Caroline[] = {
{
.iv = 100,
.level = 43,
@@ -1300,7 +1300,7 @@ const struct TrainerPartyMember0 gTrainerParty_Caroline[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Julie[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Julie[] = {
{
.iv = 100,
.level = 43,
@@ -1313,7 +1313,7 @@ const struct TrainerPartyMember0 gTrainerParty_Julie[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brooke2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brooke2[] = {
{
.iv = 110,
.level = 26,
@@ -1331,7 +1331,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brooke2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brooke3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brooke3[] = {
{
.iv = 120,
.level = 29,
@@ -1349,7 +1349,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brooke3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brooke4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brooke4[] = {
{
.iv = 130,
.level = 32,
@@ -1367,7 +1367,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brooke4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brooke5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brooke5[] = {
{
.iv = 140,
.level = 34,
@@ -1385,7 +1385,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brooke5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Patricia[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Patricia[] = {
{
.iv = 0,
.level = 42,
@@ -1393,7 +1393,7 @@ const struct TrainerPartyMember0 gTrainerParty_Patricia[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kindra[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kindra[] = {
{
.iv = 0,
.level = 31,
@@ -1406,7 +1406,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kindra[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tammy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tammy[] = {
{
.iv = 0,
.level = 30,
@@ -1419,7 +1419,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tammy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Valerie1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Valerie1[] = {
{
.iv = 0,
.level = 32,
@@ -1427,7 +1427,7 @@ const struct TrainerPartyMember0 gTrainerParty_Valerie1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tasha[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tasha[] = {
{
.iv = 0,
.level = 31,
@@ -1440,7 +1440,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tasha[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Valerie2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Valerie2[] = {
{
.iv = 10,
.level = 35,
@@ -1448,7 +1448,7 @@ const struct TrainerPartyMember0 gTrainerParty_Valerie2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Valerie3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Valerie3[] = {
{
.iv = 20,
.level = 37,
@@ -1461,7 +1461,7 @@ const struct TrainerPartyMember0 gTrainerParty_Valerie3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Valerie4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Valerie4[] = {
{
.iv = 30,
.level = 40,
@@ -1474,7 +1474,7 @@ const struct TrainerPartyMember0 gTrainerParty_Valerie4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Valerie5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Valerie5[] = {
{
.iv = 40,
.level = 42,
@@ -1492,7 +1492,7 @@ const struct TrainerPartyMember0 gTrainerParty_Valerie5[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Cindy1[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Cindy1[] = {
{
.iv = 0,
.level = 7,
@@ -1501,7 +1501,7 @@ const struct TrainerPartyMember2 gTrainerParty_Cindy1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous2[] = {
{
.iv = 0,
.level = 18,
@@ -1509,7 +1509,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Brianna1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Brianna1[] = {
{
.iv = 0,
.level = 10,
@@ -1524,7 +1524,7 @@ const struct TrainerPartyMember1 gTrainerParty_Brianna1[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Cindy2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Cindy2[] = {
{
.iv = 0,
.level = 11,
@@ -1533,7 +1533,7 @@ const struct TrainerPartyMember1 gTrainerParty_Cindy2[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Brianna2[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Brianna2[] = {
{
.iv = 100,
.level = 41,
@@ -1542,7 +1542,7 @@ const struct TrainerPartyMember2 gTrainerParty_Brianna2[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Anette[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Anette[] = {
{
.iv = 100,
.level = 45,
@@ -1551,7 +1551,7 @@ const struct TrainerPartyMember2 gTrainerParty_Anette[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Cindy3[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Cindy3[] = {
{
.iv = 10,
.level = 27,
@@ -1560,7 +1560,7 @@ const struct TrainerPartyMember2 gTrainerParty_Cindy3[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Cindy4[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Cindy4[] = {
{
.iv = 20,
.level = 30,
@@ -1569,7 +1569,7 @@ const struct TrainerPartyMember2 gTrainerParty_Cindy4[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Cindy5[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Cindy5[] = {
{
.iv = 30,
.level = 33,
@@ -1578,7 +1578,7 @@ const struct TrainerPartyMember2 gTrainerParty_Cindy5[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Cindy6[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Cindy6[] = {
{
.iv = 40,
.level = 36,
@@ -1588,7 +1588,7 @@ const struct TrainerPartyMember3 gTrainerParty_Cindy6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Melissa[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Melissa[] = {
{
.iv = 0,
.level = 22,
@@ -1596,7 +1596,7 @@ const struct TrainerPartyMember0 gTrainerParty_Melissa[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Sheila[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Sheila[] = {
{
.iv = 0,
.level = 22,
@@ -1604,7 +1604,7 @@ const struct TrainerPartyMember0 gTrainerParty_Sheila[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shirley[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shirley[] = {
{
.iv = 0,
.level = 22,
@@ -1612,7 +1612,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shirley[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Jessica1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Jessica1[] = {
{
.iv = 0,
.level = 30,
@@ -1627,7 +1627,7 @@ const struct TrainerPartyMember1 gTrainerParty_Jessica1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Connie[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Connie[] = {
{
.iv = 100,
.level = 40,
@@ -1640,7 +1640,7 @@ const struct TrainerPartyMember0 gTrainerParty_Connie[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Bridget[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Bridget[] = {
{
.iv = 100,
.level = 41,
@@ -1648,7 +1648,7 @@ const struct TrainerPartyMember0 gTrainerParty_Bridget[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Olivia[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Olivia[] = {
{
.iv = 100,
.level = 41,
@@ -1657,7 +1657,7 @@ const struct TrainerPartyMember1 gTrainerParty_Olivia[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tiffany[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tiffany[] = {
{
.iv = 100,
.level = 39,
@@ -1675,7 +1675,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tiffany[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Jessica2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Jessica2[] = {
{
.iv = 10,
.level = 33,
@@ -1690,7 +1690,7 @@ const struct TrainerPartyMember1 gTrainerParty_Jessica2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Jessica3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Jessica3[] = {
{
.iv = 20,
.level = 36,
@@ -1705,7 +1705,7 @@ const struct TrainerPartyMember1 gTrainerParty_Jessica3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Jessica4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Jessica4[] = {
{
.iv = 30,
.level = 39,
@@ -1720,7 +1720,7 @@ const struct TrainerPartyMember1 gTrainerParty_Jessica4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Jessica5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Jessica5[] = {
{
.iv = 40,
.level = 42,
@@ -1735,7 +1735,7 @@ const struct TrainerPartyMember1 gTrainerParty_Jessica5[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Winston1[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Winston1[] = {
{
.iv = 0,
.level = 7,
@@ -1744,7 +1744,7 @@ const struct TrainerPartyMember2 gTrainerParty_Winston1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous3[] = {
{
.iv = 0,
.level = 18,
@@ -1752,7 +1752,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous3[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Garret[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Garret[] = {
{
.iv = 0,
.level = 45,
@@ -1761,7 +1761,7 @@ const struct TrainerPartyMember2 gTrainerParty_Garret[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Winston2[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Winston2[] = {
{
.iv = 0,
.level = 27,
@@ -1770,7 +1770,7 @@ const struct TrainerPartyMember2 gTrainerParty_Winston2[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Winston3[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Winston3[] = {
{
.iv = 0,
.level = 30,
@@ -1779,7 +1779,7 @@ const struct TrainerPartyMember2 gTrainerParty_Winston3[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Winston4[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Winston4[] = {
{
.iv = 0,
.level = 33,
@@ -1788,7 +1788,7 @@ const struct TrainerPartyMember2 gTrainerParty_Winston4[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Winston5[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Winston5[] = {
{
.iv = 0,
.level = 36,
@@ -1798,7 +1798,7 @@ const struct TrainerPartyMember3 gTrainerParty_Winston5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Steve1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Steve1[] = {
{
.iv = 0,
.level = 20,
@@ -1806,7 +1806,7 @@ const struct TrainerPartyMember0 gTrainerParty_Steve1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Chris[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Chris[] = {
{
.iv = 0,
.level = 23,
@@ -1814,7 +1814,7 @@ const struct TrainerPartyMember0 gTrainerParty_Chris[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Mark[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Mark[] = {
{
.iv = 0,
.level = 32,
@@ -1822,7 +1822,7 @@ const struct TrainerPartyMember0 gTrainerParty_Mark[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kenn[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kenn[] = {
{
.iv = 0,
.level = 25,
@@ -1830,7 +1830,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kenn[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Steve2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Steve2[] = {
{
.iv = 10,
.level = 27,
@@ -1838,7 +1838,7 @@ const struct TrainerPartyMember0 gTrainerParty_Steve2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Steve3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Steve3[] = {
{
.iv = 20,
.level = 29,
@@ -1851,7 +1851,7 @@ const struct TrainerPartyMember0 gTrainerParty_Steve3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Steve4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Steve4[] = {
{
.iv = 30,
.level = 32,
@@ -1864,7 +1864,7 @@ const struct TrainerPartyMember0 gTrainerParty_Steve4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Steve5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Steve5[] = {
{
.iv = 40,
.level = 35,
@@ -1877,7 +1877,7 @@ const struct TrainerPartyMember0 gTrainerParty_Steve5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Luis[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Luis[] = {
{
.iv = 0,
.level = 27,
@@ -1885,7 +1885,7 @@ const struct TrainerPartyMember0 gTrainerParty_Luis[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Austin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Austin[] = {
{
.iv = 0,
.level = 25,
@@ -1903,7 +1903,7 @@ const struct TrainerPartyMember0 gTrainerParty_Austin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Douglas[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Douglas[] = {
{
.iv = 0,
.level = 26,
@@ -1916,7 +1916,7 @@ const struct TrainerPartyMember0 gTrainerParty_Douglas[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Darrin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Darrin[] = {
{
.iv = 0,
.level = 27,
@@ -1924,7 +1924,7 @@ const struct TrainerPartyMember0 gTrainerParty_Darrin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tony1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tony1[] = {
{
.iv = 0,
.level = 27,
@@ -1932,7 +1932,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tony1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jerome[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jerome[] = {
{
.iv = 0,
.level = 26,
@@ -1945,7 +1945,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jerome[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Matthew[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Matthew[] = {
{
.iv = 0,
.level = 27,
@@ -1953,7 +1953,7 @@ const struct TrainerPartyMember0 gTrainerParty_Matthew[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_David[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_David[] = {
{
.iv = 0,
.level = 26,
@@ -1966,7 +1966,7 @@ const struct TrainerPartyMember0 gTrainerParty_David[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Spencer[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Spencer[] = {
{
.iv = 0,
.level = 33,
@@ -1984,7 +1984,7 @@ const struct TrainerPartyMember0 gTrainerParty_Spencer[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Roland[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Roland[] = {
{
.iv = 0,
.level = 35,
@@ -1992,7 +1992,7 @@ const struct TrainerPartyMember0 gTrainerParty_Roland[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cody[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cody[] = {
{
.iv = 0,
.level = 34,
@@ -2005,7 +2005,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cody[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Stan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Stan[] = {
{
.iv = 0,
.level = 35,
@@ -2013,7 +2013,7 @@ const struct TrainerPartyMember0 gTrainerParty_Stan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Barry[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Barry[] = {
{
.iv = 0,
.level = 35,
@@ -2021,7 +2021,7 @@ const struct TrainerPartyMember0 gTrainerParty_Barry[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dean[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dean[] = {
{
.iv = 0,
.level = 33,
@@ -2039,7 +2039,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dean[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Rodney[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Rodney[] = {
{
.iv = 0,
.level = 34,
@@ -2052,7 +2052,7 @@ const struct TrainerPartyMember0 gTrainerParty_Rodney[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Richard[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Richard[] = {
{
.iv = 0,
.level = 35,
@@ -2060,7 +2060,7 @@ const struct TrainerPartyMember0 gTrainerParty_Richard[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Herman[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Herman[] = {
{
.iv = 0,
.level = 34,
@@ -2073,7 +2073,7 @@ const struct TrainerPartyMember0 gTrainerParty_Herman[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous4[] = {
{
.iv = 0,
.level = 38,
@@ -2081,7 +2081,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Gilbert[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Gilbert[] = {
{
.iv = 0,
.level = 35,
@@ -2089,7 +2089,7 @@ const struct TrainerPartyMember0 gTrainerParty_Gilbert[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Franklin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Franklin[] = {
{
.iv = 0,
.level = 34,
@@ -2102,7 +2102,7 @@ const struct TrainerPartyMember0 gTrainerParty_Franklin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Danny[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Danny[] = {
{
.iv = 0,
.level = 37,
@@ -2115,7 +2115,7 @@ const struct TrainerPartyMember0 gTrainerParty_Danny[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jack[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jack[] = {
{
.iv = 0,
.level = 34,
@@ -2128,7 +2128,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jack[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dudley[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dudley[] = {
{
.iv = 0,
.level = 33,
@@ -2146,7 +2146,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dudley[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Chad[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Chad[] = {
{
.iv = 0,
.level = 34,
@@ -2159,7 +2159,7 @@ const struct TrainerPartyMember0 gTrainerParty_Chad[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tony2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tony2[] = {
{
.iv = 10,
.level = 30,
@@ -2167,7 +2167,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tony2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tony3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tony3[] = {
{
.iv = 20,
.level = 33,
@@ -2175,7 +2175,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tony3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tony4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tony4[] = {
{
.iv = 30,
.level = 34,
@@ -2188,7 +2188,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tony4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tony5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tony5[] = {
{
.iv = 40,
.level = 37,
@@ -2201,7 +2201,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tony5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hideki[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hideki[] = {
{
.iv = 100,
.level = 14,
@@ -2209,7 +2209,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hideki[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hitoshi[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hitoshi[] = {
{
.iv = 100,
.level = 34,
@@ -2222,7 +2222,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hitoshi[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kiyo[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kiyo[] = {
{
.iv = 100,
.level = 33,
@@ -2240,7 +2240,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kiyo[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Koichi[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Koichi[] = {
{
.iv = 100,
.level = 26,
@@ -2253,7 +2253,7 @@ const struct TrainerPartyMember0 gTrainerParty_Koichi[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nob1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nob1[] = {
{
.iv = 100,
.level = 20,
@@ -2261,7 +2261,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nob1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nob2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nob2[] = {
{
.iv = 110,
.level = 27,
@@ -2269,7 +2269,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nob2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nob3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nob3[] = {
{
.iv = 120,
.level = 29,
@@ -2282,7 +2282,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nob3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nob4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nob4[] = {
{
.iv = 130,
.level = 31,
@@ -2300,7 +2300,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nob4[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Nob5[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Nob5[] = {
{
.iv = 140,
.level = 33,
@@ -2327,7 +2327,7 @@ const struct TrainerPartyMember2 gTrainerParty_Nob5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Yuji[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Yuji[] = {
{
.iv = 100,
.level = 26,
@@ -2340,7 +2340,7 @@ const struct TrainerPartyMember0 gTrainerParty_Yuji[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Daisuke[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Daisuke[] = {
{
.iv = 100,
.level = 19,
@@ -2348,7 +2348,7 @@ const struct TrainerPartyMember0 gTrainerParty_Daisuke[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Atsushi[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Atsushi[] = {
{
.iv = 100,
.level = 30,
@@ -2366,7 +2366,7 @@ const struct TrainerPartyMember0 gTrainerParty_Atsushi[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kirk[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kirk[] = {
{
.iv = 100,
.level = 18,
@@ -2379,7 +2379,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kirk[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Scott[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Scott[] = {
{
.iv = 100,
.level = 19,
@@ -2387,7 +2387,7 @@ const struct TrainerPartyMember0 gTrainerParty_Scott[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Harvey[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Harvey[] = {
{
.iv = 100,
.level = 18,
@@ -2400,7 +2400,7 @@ const struct TrainerPartyMember0 gTrainerParty_Harvey[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shawn[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shawn[] = {
{
.iv = 100,
.level = 17,
@@ -2418,7 +2418,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shawn[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Randy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Randy[] = {
{
.iv = 0,
.level = 13,
@@ -2436,7 +2436,7 @@ const struct TrainerPartyMember0 gTrainerParty_Randy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dalton1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dalton1[] = {
{
.iv = 0,
.level = 15,
@@ -2454,7 +2454,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dalton1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dalton2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dalton2[] = {
{
.iv = 10,
.level = 25,
@@ -2472,7 +2472,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dalton2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dalton3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dalton3[] = {
{
.iv = 20,
.level = 28,
@@ -2490,7 +2490,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dalton3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dalton4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dalton4[] = {
{
.iv = 30,
.level = 31,
@@ -2508,7 +2508,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dalton4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dalton5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dalton5[] = {
{
.iv = 40,
.level = 34,
@@ -2526,7 +2526,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dalton5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cole[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cole[] = {
{
.iv = 100,
.level = 22,
@@ -2544,7 +2544,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cole[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Flint[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Flint[] = {
{
.iv = 100,
.level = 24,
@@ -2552,7 +2552,7 @@ const struct TrainerPartyMember0 gTrainerParty_Flint[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Axle[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Axle[] = {
{
.iv = 100,
.level = 23,
@@ -2565,7 +2565,7 @@ const struct TrainerPartyMember0 gTrainerParty_Axle[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jake[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jake[] = {
{
.iv = 100,
.level = 24,
@@ -2573,7 +2573,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jake[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Andy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Andy[] = {
{
.iv = 100,
.level = 23,
@@ -2586,7 +2586,7 @@ const struct TrainerPartyMember0 gTrainerParty_Andy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Bernie1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Bernie1[] = {
{
.iv = 0,
.level = 19,
@@ -2599,7 +2599,7 @@ const struct TrainerPartyMember0 gTrainerParty_Bernie1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Bernie2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Bernie2[] = {
{
.iv = 10,
.level = 26,
@@ -2612,7 +2612,7 @@ const struct TrainerPartyMember0 gTrainerParty_Bernie2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Bernie3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Bernie3[] = {
{
.iv = 20,
.level = 29,
@@ -2625,7 +2625,7 @@ const struct TrainerPartyMember0 gTrainerParty_Bernie3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Bernie4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Bernie4[] = {
{
.iv = 30,
.level = 32,
@@ -2638,7 +2638,7 @@ const struct TrainerPartyMember0 gTrainerParty_Bernie4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Bernie5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Bernie5[] = {
{
.iv = 40,
.level = 35,
@@ -2651,7 +2651,7 @@ const struct TrainerPartyMember0 gTrainerParty_Bernie5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Drew[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Drew[] = {
{
.iv = 0,
.level = 24,
@@ -2660,7 +2660,7 @@ const struct TrainerPartyMember1 gTrainerParty_Drew[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Cliff[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Cliff[] = {
{
.iv = 0,
.level = 22,
@@ -2681,7 +2681,7 @@ const struct TrainerPartyMember1 gTrainerParty_Cliff[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Larry[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Larry[] = {
{
.iv = 0,
.level = 18,
@@ -2694,7 +2694,7 @@ const struct TrainerPartyMember0 gTrainerParty_Larry[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shane[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shane[] = {
{
.iv = 0,
.level = 19,
@@ -2707,7 +2707,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shane[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Justin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Justin[] = {
{
.iv = 0,
.level = 24,
@@ -2715,7 +2715,7 @@ const struct TrainerPartyMember0 gTrainerParty_Justin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ethan1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ethan1[] = {
{
.iv = 0,
.level = 21,
@@ -2728,7 +2728,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ethan1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jeff[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jeff[] = {
{
.iv = 0,
.level = 9,
@@ -2741,7 +2741,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jeff[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Travis[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Travis[] = {
{
.iv = 0,
.level = 19,
@@ -2749,7 +2749,7 @@ const struct TrainerPartyMember0 gTrainerParty_Travis[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ethan2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ethan2[] = {
{
.iv = 10,
.level = 26,
@@ -2762,7 +2762,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ethan2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ethan3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ethan3[] = {
{
.iv = 20,
.level = 29,
@@ -2775,7 +2775,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ethan3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ethan4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ethan4[] = {
{
.iv = 30,
.level = 31,
@@ -2793,7 +2793,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ethan4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ethan5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ethan5[] = {
{
.iv = 40,
.level = 34,
@@ -2811,7 +2811,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ethan5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brent[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brent[] = {
{
.iv = 100,
.level = 27,
@@ -2819,7 +2819,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brent[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Donald[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Donald[] = {
{
.iv = 100,
.level = 25,
@@ -2837,7 +2837,7 @@ const struct TrainerPartyMember0 gTrainerParty_Donald[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Taylor[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Taylor[] = {
{
.iv = 100,
.level = 25,
@@ -2855,7 +2855,7 @@ const struct TrainerPartyMember0 gTrainerParty_Taylor[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brandon1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brandon1[] = {
{
.iv = 0,
.level = 28,
@@ -2873,7 +2873,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brandon1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Derek[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Derek[] = {
{
.iv = 100,
.level = 15,
@@ -2891,7 +2891,7 @@ const struct TrainerPartyMember0 gTrainerParty_Derek[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brandon2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brandon2[] = {
{
.iv = 10,
.level = 31,
@@ -2909,7 +2909,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brandon2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brandon3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brandon3[] = {
{
.iv = 20,
.level = 34,
@@ -2927,7 +2927,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brandon3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brandon4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brandon4[] = {
{
.iv = 30,
.level = 36,
@@ -2950,7 +2950,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brandon4[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Brandon5[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Brandon5[] = {
{
.iv = 40,
.level = 38,
@@ -2983,7 +2983,7 @@ const struct TrainerPartyMember2 gTrainerParty_Brandon5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Edward[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Edward[] = {
{
.iv = 0,
.level = 16,
@@ -2992,7 +2992,7 @@ const struct TrainerPartyMember1 gTrainerParty_Edward[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Preston[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Preston[] = {
{
.iv = 100,
.level = 37,
@@ -3000,7 +3000,7 @@ const struct TrainerPartyMember0 gTrainerParty_Preston[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Virgil[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Virgil[] = {
{
.iv = 100,
.level = 36,
@@ -3013,7 +3013,7 @@ const struct TrainerPartyMember0 gTrainerParty_Virgil[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Fritz[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Fritz[] = {
{
.iv = 100,
.level = 35,
@@ -3031,7 +3031,7 @@ const struct TrainerPartyMember0 gTrainerParty_Fritz[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_William[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_William[] = {
{
.iv = 0,
.level = 31,
@@ -3044,7 +3044,7 @@ const struct TrainerPartyMember0 gTrainerParty_William[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Joshua[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Joshua[] = {
{
.iv = 0,
.level = 41,
@@ -3057,7 +3057,7 @@ const struct TrainerPartyMember0 gTrainerParty_Joshua[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cameron1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cameron1[] = {
{
.iv = 0,
.level = 31,
@@ -3070,7 +3070,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cameron1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cameron2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cameron2[] = {
{
.iv = 10,
.level = 34,
@@ -3083,7 +3083,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cameron2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cameron3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cameron3[] = {
{
.iv = 20,
.level = 37,
@@ -3096,7 +3096,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cameron3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cameron4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cameron4[] = {
{
.iv = 30,
.level = 40,
@@ -3109,7 +3109,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cameron4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cameron5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cameron5[] = {
{
.iv = 40,
.level = 43,
@@ -3122,7 +3122,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cameron5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Jaclyn[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Jaclyn[] = {
{
.iv = 0,
.level = 16,
@@ -3131,7 +3131,7 @@ const struct TrainerPartyMember1 gTrainerParty_Jaclyn[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hannah[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hannah[] = {
{
.iv = 100,
.level = 36,
@@ -3144,7 +3144,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hannah[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Samantha[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Samantha[] = {
{
.iv = 100,
.level = 37,
@@ -3152,7 +3152,7 @@ const struct TrainerPartyMember0 gTrainerParty_Samantha[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maura[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maura[] = {
{
.iv = 100,
.level = 36,
@@ -3165,7 +3165,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maura[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kayla[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kayla[] = {
{
.iv = 0,
.level = 32,
@@ -3173,7 +3173,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kayla[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Alexis[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Alexis[] = {
{
.iv = 0,
.level = 40,
@@ -3191,7 +3191,7 @@ const struct TrainerPartyMember0 gTrainerParty_Alexis[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jacki1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jacki1[] = {
{
.iv = 0,
.level = 31,
@@ -3204,7 +3204,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jacki1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jacki2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jacki2[] = {
{
.iv = 10,
.level = 34,
@@ -3217,7 +3217,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jacki2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jacki3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jacki3[] = {
{
.iv = 20,
.level = 37,
@@ -3230,7 +3230,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jacki3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jacki4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jacki4[] = {
{
.iv = 30,
.level = 40,
@@ -3243,7 +3243,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jacki4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jacki5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jacki5[] = {
{
.iv = 40,
.level = 43,
@@ -3256,7 +3256,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jacki5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Walter1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Walter1[] = {
{
.iv = 0,
.level = 31,
@@ -3264,7 +3264,7 @@ const struct TrainerPartyMember0 gTrainerParty_Walter1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tucker[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tucker[] = {
{
.iv = 0,
.level = 44,
@@ -3277,7 +3277,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tucker[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Thomas[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Thomas[] = {
{
.iv = 0,
.level = 45,
@@ -3285,7 +3285,7 @@ const struct TrainerPartyMember0 gTrainerParty_Thomas[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Walter2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Walter2[] = {
{
.iv = 10,
.level = 34,
@@ -3293,7 +3293,7 @@ const struct TrainerPartyMember0 gTrainerParty_Walter2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Walter3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Walter3[] = {
{
.iv = 20,
.level = 36,
@@ -3308,7 +3308,7 @@ const struct TrainerPartyMember1 gTrainerParty_Walter3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Walter4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Walter4[] = {
{
.iv = 30,
.level = 39,
@@ -3323,7 +3323,7 @@ const struct TrainerPartyMember1 gTrainerParty_Walter4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Walter5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Walter5[] = {
{
.iv = 40,
.level = 41,
@@ -3344,7 +3344,7 @@ const struct TrainerPartyMember1 gTrainerParty_Walter5[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Sidney[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Sidney[] = {
{
.iv = 250,
.level = 46,
@@ -3382,7 +3382,7 @@ const struct TrainerPartyMember3 gTrainerParty_Sidney[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Phoebe[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Phoebe[] = {
{
.iv = 250,
.level = 48,
@@ -3420,7 +3420,7 @@ const struct TrainerPartyMember3 gTrainerParty_Phoebe[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Glacia[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Glacia[] = {
{
.iv = 250,
.level = 50,
@@ -3458,7 +3458,7 @@ const struct TrainerPartyMember3 gTrainerParty_Glacia[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Drake[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Drake[] = {
{
.iv = 250,
.level = 52,
@@ -3496,7 +3496,7 @@ const struct TrainerPartyMember3 gTrainerParty_Drake[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Roxanne[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Roxanne[] = {
{
.iv = 150,
.level = 14,
@@ -3511,7 +3511,7 @@ const struct TrainerPartyMember1 gTrainerParty_Roxanne[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Brawly[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Brawly[] = {
{
.iv = 150,
.level = 17,
@@ -3526,7 +3526,7 @@ const struct TrainerPartyMember1 gTrainerParty_Brawly[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wattson[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wattson[] = {
{
.iv = 200,
.level = 22,
@@ -3547,7 +3547,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wattson[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Flannery[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Flannery[] = {
{
.iv = 200,
.level = 26,
@@ -3568,7 +3568,7 @@ const struct TrainerPartyMember1 gTrainerParty_Flannery[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Norman[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Norman[] = {
{
.iv = 200,
.level = 28,
@@ -3589,7 +3589,7 @@ const struct TrainerPartyMember1 gTrainerParty_Norman[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Winona[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Winona[] = {
{
.iv = 200,
.level = 31,
@@ -3616,7 +3616,7 @@ const struct TrainerPartyMember1 gTrainerParty_Winona[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_TateAndLiza[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_TateAndLiza[] = {
{
.iv = 250,
.level = 42,
@@ -3633,7 +3633,7 @@ const struct TrainerPartyMember3 gTrainerParty_TateAndLiza[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wallace[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wallace[] = {
{
.iv = 200,
.level = 40,
@@ -3666,7 +3666,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wallace[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jerry1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jerry1[] = {
{
.iv = 10,
.level = 10,
@@ -3674,7 +3674,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jerry1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ted[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ted[] = {
{
.iv = 10,
.level = 17,
@@ -3682,7 +3682,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ted[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Paul[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Paul[] = {
{
.iv = 10,
.level = 15,
@@ -3700,7 +3700,7 @@ const struct TrainerPartyMember0 gTrainerParty_Paul[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jerry2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jerry2[] = {
{
.iv = 20,
.level = 26,
@@ -3713,7 +3713,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jerry2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jerry3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jerry3[] = {
{
.iv = 30,
.level = 29,
@@ -3726,7 +3726,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jerry3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jerry4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jerry4[] = {
{
.iv = 40,
.level = 32,
@@ -3739,7 +3739,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jerry4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jerry5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jerry5[] = {
{
.iv = 50,
.level = 34,
@@ -3757,7 +3757,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jerry5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Karen1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Karen1[] = {
{
.iv = 10,
.level = 9,
@@ -3770,7 +3770,7 @@ const struct TrainerPartyMember0 gTrainerParty_Karen1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Georgia[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Georgia[] = {
{
.iv = 10,
.level = 16,
@@ -3783,7 +3783,7 @@ const struct TrainerPartyMember0 gTrainerParty_Georgia[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Karen2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Karen2[] = {
{
.iv = 20,
.level = 26,
@@ -3796,7 +3796,7 @@ const struct TrainerPartyMember0 gTrainerParty_Karen2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Karen3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Karen3[] = {
{
.iv = 30,
.level = 29,
@@ -3809,7 +3809,7 @@ const struct TrainerPartyMember0 gTrainerParty_Karen3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Karen4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Karen4[] = {
{
.iv = 40,
.level = 32,
@@ -3822,7 +3822,7 @@ const struct TrainerPartyMember0 gTrainerParty_Karen4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Karen5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Karen5[] = {
{
.iv = 50,
.level = 35,
@@ -3835,7 +3835,7 @@ const struct TrainerPartyMember0 gTrainerParty_Karen5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_KateAndJoy[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_KateAndJoy[] = {
{
.iv = 0,
.level = 30,
@@ -3850,7 +3850,7 @@ const struct TrainerPartyMember1 gTrainerParty_KateAndJoy[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_AnnaAndMeg1[] = {
{
.iv = 0,
.level = 16,
@@ -3865,7 +3865,7 @@ const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg1[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_AnnaAndMeg2[] = {
{
.iv = 10,
.level = 26,
@@ -3880,7 +3880,7 @@ const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_AnnaAndMeg3[] = {
{
.iv = 20,
.level = 29,
@@ -3895,7 +3895,7 @@ const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_AnnaAndMeg4[] = {
{
.iv = 30,
.level = 32,
@@ -3910,7 +3910,7 @@ const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_AnnaAndMeg5[] = {
{
.iv = 40,
.level = 35,
@@ -3925,7 +3925,7 @@ const struct TrainerPartyMember1 gTrainerParty_AnnaAndMeg5[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Victor[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Victor[] = {
{
.iv = 25,
.level = 16,
@@ -3940,7 +3940,7 @@ const struct TrainerPartyMember2 gTrainerParty_Victor[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Miguel1[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Miguel1[] = {
{
.iv = 0,
.level = 16,
@@ -3949,7 +3949,7 @@ const struct TrainerPartyMember2 gTrainerParty_Miguel1[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Colton[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Colton[] = {
{
.iv = 0,
.level = 22,
@@ -3994,7 +3994,7 @@ const struct TrainerPartyMember3 gTrainerParty_Colton[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Miguel2[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Miguel2[] = {
{
.iv = 0,
.level = 27,
@@ -4003,7 +4003,7 @@ const struct TrainerPartyMember2 gTrainerParty_Miguel2[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Miguel3[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Miguel3[] = {
{
.iv = 0,
.level = 30,
@@ -4012,7 +4012,7 @@ const struct TrainerPartyMember2 gTrainerParty_Miguel3[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Miguel4[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Miguel4[] = {
{
.iv = 0,
.level = 33,
@@ -4021,7 +4021,7 @@ const struct TrainerPartyMember2 gTrainerParty_Miguel4[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Miguel5[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Miguel5[] = {
{
.iv = 0,
.level = 36,
@@ -4030,7 +4030,7 @@ const struct TrainerPartyMember2 gTrainerParty_Miguel5[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Victoria[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Victoria[] = {
{
.iv = 50,
.level = 17,
@@ -4039,7 +4039,7 @@ const struct TrainerPartyMember2 gTrainerParty_Victoria[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Vanessa[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Vanessa[] = {
{
.iv = 0,
.level = 31,
@@ -4048,7 +4048,7 @@ const struct TrainerPartyMember2 gTrainerParty_Vanessa[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Marissa[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Marissa[] = {
{
.iv = 100,
.level = 36,
@@ -4069,7 +4069,7 @@ const struct TrainerPartyMember2 gTrainerParty_Marissa[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Isabel1[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Isabel1[] = {
{
.iv = 0,
.level = 15,
@@ -4084,7 +4084,7 @@ const struct TrainerPartyMember2 gTrainerParty_Isabel1[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Isabel2[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Isabel2[] = {
{
.iv = 10,
.level = 26,
@@ -4099,7 +4099,7 @@ const struct TrainerPartyMember2 gTrainerParty_Isabel2[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Isabel3[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Isabel3[] = {
{
.iv = 20,
.level = 29,
@@ -4114,7 +4114,7 @@ const struct TrainerPartyMember2 gTrainerParty_Isabel3[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Isabel4[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Isabel4[] = {
{
.iv = 30,
.level = 32,
@@ -4129,7 +4129,7 @@ const struct TrainerPartyMember2 gTrainerParty_Isabel4[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Isabel5[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Isabel5[] = {
{
.iv = 40,
.level = 35,
@@ -4144,7 +4144,7 @@ const struct TrainerPartyMember2 gTrainerParty_Isabel5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Timothy1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Timothy1[] = {
{
.iv = 200,
.level = 28,
@@ -4152,7 +4152,7 @@ const struct TrainerPartyMember0 gTrainerParty_Timothy1[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Timothy2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Timothy2[] = {
{
.iv = 210,
.level = 31,
@@ -4161,7 +4161,7 @@ const struct TrainerPartyMember1 gTrainerParty_Timothy2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Timothy3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Timothy3[] = {
{
.iv = 220,
.level = 34,
@@ -4170,7 +4170,7 @@ const struct TrainerPartyMember1 gTrainerParty_Timothy3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Timothy4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Timothy4[] = {
{
.iv = 230,
.level = 37,
@@ -4179,7 +4179,7 @@ const struct TrainerPartyMember1 gTrainerParty_Timothy4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Timothy5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Timothy5[] = {
{
.iv = 240,
.level = 40,
@@ -4188,7 +4188,7 @@ const struct TrainerPartyMember1 gTrainerParty_Timothy5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Vicky[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Vicky[] = {
{
.iv = 200,
.level = 18,
@@ -4197,7 +4197,7 @@ const struct TrainerPartyMember1 gTrainerParty_Vicky[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shelby1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shelby1[] = {
{
.iv = 200,
.level = 22,
@@ -4210,7 +4210,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shelby1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shelby2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shelby2[] = {
{
.iv = 210,
.level = 30,
@@ -4223,7 +4223,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shelby2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shelby3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shelby3[] = {
{
.iv = 220,
.level = 33,
@@ -4236,7 +4236,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shelby3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shelby4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shelby4[] = {
{
.iv = 230,
.level = 36,
@@ -4249,7 +4249,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shelby4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Shelby5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Shelby5[] = {
{
.iv = 240,
.level = 39,
@@ -4262,7 +4262,7 @@ const struct TrainerPartyMember0 gTrainerParty_Shelby5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Calvin1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Calvin1[] = {
{
.iv = 0,
.level = 5,
@@ -4270,7 +4270,7 @@ const struct TrainerPartyMember0 gTrainerParty_Calvin1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Billy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Billy[] = {
{
.iv = 0,
.level = 6,
@@ -4283,7 +4283,7 @@ const struct TrainerPartyMember0 gTrainerParty_Billy[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Josh[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Josh[] = {
{
.iv = 100,
.level = 10,
@@ -4304,7 +4304,7 @@ const struct TrainerPartyMember1 gTrainerParty_Josh[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tommy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tommy[] = {
{
.iv = 100,
.level = 11,
@@ -4312,7 +4312,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tommy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Joey[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Joey[] = {
{
.iv = 0,
.level = 8,
@@ -4325,7 +4325,7 @@ const struct TrainerPartyMember0 gTrainerParty_Joey[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Ben[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Ben[] = {
{
.iv = 100,
.level = 19,
@@ -4334,7 +4334,7 @@ const struct TrainerPartyMember1 gTrainerParty_Ben[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous5[] = {
{
.iv = 0,
.level = 9,
@@ -4347,7 +4347,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kevin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kevin[] = {
{
.iv = 0,
.level = 9,
@@ -4360,7 +4360,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kevin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Neal[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Neal[] = {
{
.iv = 0,
.level = 18,
@@ -4373,7 +4373,7 @@ const struct TrainerPartyMember0 gTrainerParty_Neal[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dillon[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dillon[] = {
{
.iv = 0,
.level = 20,
@@ -4381,7 +4381,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dillon[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Calvin2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Calvin2[] = {
{
.iv = 10,
.level = 27,
@@ -4389,7 +4389,7 @@ const struct TrainerPartyMember0 gTrainerParty_Calvin2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Calvin3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Calvin3[] = {
{
.iv = 20,
.level = 28,
@@ -4402,7 +4402,7 @@ const struct TrainerPartyMember0 gTrainerParty_Calvin3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Calvin4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Calvin4[] = {
{
.iv = 30,
.level = 31,
@@ -4415,7 +4415,7 @@ const struct TrainerPartyMember0 gTrainerParty_Calvin4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Calvin5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Calvin5[] = {
{
.iv = 40,
.level = 34,
@@ -4433,7 +4433,7 @@ const struct TrainerPartyMember0 gTrainerParty_Calvin5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Eddie[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Eddie[] = {
{
.iv = 0,
.level = 14,
@@ -4446,7 +4446,7 @@ const struct TrainerPartyMember0 gTrainerParty_Eddie[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Allen[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Allen[] = {
{
.iv = 0,
.level = 5,
@@ -4459,7 +4459,7 @@ const struct TrainerPartyMember0 gTrainerParty_Allen[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Timmy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Timmy[] = {
{
.iv = 0,
.level = 12,
@@ -4477,7 +4477,7 @@ const struct TrainerPartyMember0 gTrainerParty_Timmy[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Steven[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Steven[] = {
{
.iv = 255,
.level = 57,
@@ -4522,7 +4522,7 @@ const struct TrainerPartyMember3 gTrainerParty_Steven[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Andrew[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Andrew[] = {
{
.iv = 0,
.level = 5,
@@ -4540,7 +4540,7 @@ const struct TrainerPartyMember0 gTrainerParty_Andrew[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ivan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ivan[] = {
{
.iv = 0,
.level = 6,
@@ -4558,7 +4558,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ivan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Claude[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Claude[] = {
{
.iv = 0,
.level = 16,
@@ -4581,7 +4581,7 @@ const struct TrainerPartyMember0 gTrainerParty_Claude[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Elliot1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Elliot1[] = {
{
.iv = 0,
.level = 11,
@@ -4599,7 +4599,7 @@ const struct TrainerPartyMember0 gTrainerParty_Elliot1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ned[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ned[] = {
{
.iv = 0,
.level = 12,
@@ -4607,7 +4607,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ned[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dale[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dale[] = {
{
.iv = 0,
.level = 12,
@@ -4630,7 +4630,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dale[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nolan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nolan[] = {
{
.iv = 0,
.level = 20,
@@ -4638,7 +4638,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nolan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Barny[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Barny[] = {
{
.iv = 0,
.level = 26,
@@ -4651,7 +4651,7 @@ const struct TrainerPartyMember0 gTrainerParty_Barny[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wade[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wade[] = {
{
.iv = 0,
.level = 17,
@@ -4659,7 +4659,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wade[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Carter[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Carter[] = {
{
.iv = 0,
.level = 23,
@@ -4682,7 +4682,7 @@ const struct TrainerPartyMember0 gTrainerParty_Carter[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Elliot2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Elliot2[] = {
{
.iv = 10,
.level = 24,
@@ -4700,7 +4700,7 @@ const struct TrainerPartyMember0 gTrainerParty_Elliot2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Elliot3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Elliot3[] = {
{
.iv = 20,
.level = 29,
@@ -4723,7 +4723,7 @@ const struct TrainerPartyMember0 gTrainerParty_Elliot3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Elliot4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Elliot4[] = {
{
.iv = 30,
.level = 31,
@@ -4746,7 +4746,7 @@ const struct TrainerPartyMember0 gTrainerParty_Elliot4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Elliot5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Elliot5[] = {
{
.iv = 40,
.level = 33,
@@ -4769,7 +4769,7 @@ const struct TrainerPartyMember0 gTrainerParty_Elliot5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ronald[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ronald[] = {
{
.iv = 0,
.level = 34,
@@ -4802,7 +4802,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ronald[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jacob[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jacob[] = {
{
.iv = 0,
.level = 7,
@@ -4820,7 +4820,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jacob[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anthony[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anthony[] = {
{
.iv = 0,
.level = 16,
@@ -4833,7 +4833,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anthony[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Benjamin1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Benjamin1[] = {
{
.iv = 0,
.level = 17,
@@ -4841,7 +4841,7 @@ const struct TrainerPartyMember0 gTrainerParty_Benjamin1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Benjamin2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Benjamin2[] = {
{
.iv = 10,
.level = 28,
@@ -4849,7 +4849,7 @@ const struct TrainerPartyMember0 gTrainerParty_Benjamin2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Benjamin3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Benjamin3[] = {
{
.iv = 20,
.level = 31,
@@ -4857,7 +4857,7 @@ const struct TrainerPartyMember0 gTrainerParty_Benjamin3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Benjamin4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Benjamin4[] = {
{
.iv = 30,
.level = 34,
@@ -4865,7 +4865,7 @@ const struct TrainerPartyMember0 gTrainerParty_Benjamin4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Benjamin5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Benjamin5[] = {
{
.iv = 40,
.level = 37,
@@ -4873,7 +4873,7 @@ const struct TrainerPartyMember0 gTrainerParty_Benjamin5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Abigail1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Abigail1[] = {
{
.iv = 0,
.level = 17,
@@ -4881,7 +4881,7 @@ const struct TrainerPartyMember0 gTrainerParty_Abigail1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jasmine[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jasmine[] = {
{
.iv = 80,
.level = 15,
@@ -4899,7 +4899,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jasmine[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Abigail2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Abigail2[] = {
{
.iv = 10,
.level = 28,
@@ -4907,7 +4907,7 @@ const struct TrainerPartyMember0 gTrainerParty_Abigail2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Abigail3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Abigail3[] = {
{
.iv = 20,
.level = 31,
@@ -4915,7 +4915,7 @@ const struct TrainerPartyMember0 gTrainerParty_Abigail3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Abigail4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Abigail4[] = {
{
.iv = 30,
.level = 34,
@@ -4923,7 +4923,7 @@ const struct TrainerPartyMember0 gTrainerParty_Abigail4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Abigail5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Abigail5[] = {
{
.iv = 40,
.level = 37,
@@ -4931,7 +4931,7 @@ const struct TrainerPartyMember0 gTrainerParty_Abigail5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dylan1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dylan1[] = {
{
.iv = 0,
.level = 18,
@@ -4939,7 +4939,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dylan1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dylan2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dylan2[] = {
{
.iv = 10,
.level = 28,
@@ -4947,7 +4947,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dylan2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dylan3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dylan3[] = {
{
.iv = 20,
.level = 31,
@@ -4955,7 +4955,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dylan3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dylan4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dylan4[] = {
{
.iv = 30,
.level = 34,
@@ -4963,7 +4963,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dylan4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dylan5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dylan5[] = {
{
.iv = 40,
.level = 37,
@@ -4971,7 +4971,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dylan5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maria1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maria1[] = {
{
.iv = 0,
.level = 18,
@@ -4979,7 +4979,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maria1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maria2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maria2[] = {
{
.iv = 10,
.level = 28,
@@ -4987,7 +4987,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maria2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maria3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maria3[] = {
{
.iv = 20,
.level = 31,
@@ -4995,7 +4995,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maria3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maria4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maria4[] = {
{
.iv = 30,
.level = 34,
@@ -5003,7 +5003,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maria4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maria5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maria5[] = {
{
.iv = 40,
.level = 37,
@@ -5011,7 +5011,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maria5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Caleb[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Caleb[] = {
{
.iv = 0,
.level = 33,
@@ -5034,7 +5034,7 @@ const struct TrainerPartyMember0 gTrainerParty_Caleb[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous6[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous6[] = {
{
.iv = 0,
.level = 36,
@@ -5042,7 +5042,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaiah1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaiah1[] = {
{
.iv = 0,
.level = 36,
@@ -5050,7 +5050,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaiah1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous7[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous7[] = {
{
.iv = 0,
.level = 36,
@@ -5058,7 +5058,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous7[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Chase[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Chase[] = {
{
.iv = 0,
.level = 27,
@@ -5071,7 +5071,7 @@ const struct TrainerPartyMember0 gTrainerParty_Chase[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaiah2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaiah2[] = {
{
.iv = 10,
.level = 39,
@@ -5079,7 +5079,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaiah2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaiah3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaiah3[] = {
{
.iv = 20,
.level = 42,
@@ -5087,7 +5087,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaiah3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaiah4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaiah4[] = {
{
.iv = 30,
.level = 45,
@@ -5095,7 +5095,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaiah4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaiah5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaiah5[] = {
{
.iv = 40,
.level = 48,
@@ -5103,7 +5103,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaiah5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous8[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous8[] = {
{
.iv = 0,
.level = 26,
@@ -5121,7 +5121,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous8[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Connor[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Connor[] = {
{
.iv = 0,
.level = 25,
@@ -5144,7 +5144,7 @@ const struct TrainerPartyMember0 gTrainerParty_Connor[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous9[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous9[] = {
{
.iv = 0,
.level = 36,
@@ -5152,7 +5152,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous9[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Katelyn1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Katelyn1[] = {
{
.iv = 0,
.level = 36,
@@ -5160,7 +5160,7 @@ const struct TrainerPartyMember0 gTrainerParty_Katelyn1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Allison[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Allison[] = {
{
.iv = 0,
.level = 25,
@@ -5183,7 +5183,7 @@ const struct TrainerPartyMember0 gTrainerParty_Allison[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Katelyn2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Katelyn2[] = {
{
.iv = 10,
.level = 39,
@@ -5191,7 +5191,7 @@ const struct TrainerPartyMember0 gTrainerParty_Katelyn2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Katelyn3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Katelyn3[] = {
{
.iv = 20,
.level = 42,
@@ -5199,7 +5199,7 @@ const struct TrainerPartyMember0 gTrainerParty_Katelyn3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Katelyn4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Katelyn4[] = {
{
.iv = 30,
.level = 45,
@@ -5207,7 +5207,7 @@ const struct TrainerPartyMember0 gTrainerParty_Katelyn4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Katelyn5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Katelyn5[] = {
{
.iv = 40,
.level = 48,
@@ -5215,7 +5215,7 @@ const struct TrainerPartyMember0 gTrainerParty_Katelyn5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nicolas1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nicolas1[] = {
{
.iv = 100,
.level = 38,
@@ -5228,7 +5228,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nicolas1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nicolas2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nicolas2[] = {
{
.iv = 110,
.level = 41,
@@ -5241,7 +5241,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nicolas2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nicolas3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nicolas3[] = {
{
.iv = 120,
.level = 44,
@@ -5254,7 +5254,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nicolas3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nicolas4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nicolas4[] = {
{
.iv = 130,
.level = 46,
@@ -5272,7 +5272,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nicolas4[] = {
}
};
-const struct TrainerPartyMember2 gTrainerParty_Nicolas5[] = {
+const struct TrainerMonItemDefaultMoves gTrainerParty_Nicolas5[] = {
{
.iv = 140,
.level = 49,
@@ -5293,7 +5293,7 @@ const struct TrainerPartyMember2 gTrainerParty_Nicolas5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Aaron[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Aaron[] = {
{
.iv = 100,
.level = 35,
@@ -5301,7 +5301,7 @@ const struct TrainerPartyMember0 gTrainerParty_Aaron[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Perry[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Perry[] = {
{
.iv = 0,
.level = 27,
@@ -5309,7 +5309,7 @@ const struct TrainerPartyMember0 gTrainerParty_Perry[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hugh[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hugh[] = {
{
.iv = 0,
.level = 27,
@@ -5317,7 +5317,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hugh[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Phil[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Phil[] = {
{
.iv = 0,
.level = 25,
@@ -5335,7 +5335,7 @@ const struct TrainerPartyMember0 gTrainerParty_Phil[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jared[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jared[] = {
{
.iv = 100,
.level = 30,
@@ -5343,7 +5343,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jared[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous10[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous10[] = {
{
.iv = 100,
.level = 29,
@@ -5366,7 +5366,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous10[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tanner[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tanner[] = {
{
.iv = 100,
.level = 30,
@@ -5384,7 +5384,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tanner[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Will[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Will[] = {
{
.iv = 100,
.level = 28,
@@ -5402,7 +5402,7 @@ const struct TrainerPartyMember0 gTrainerParty_Will[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Colin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Colin[] = {
{
.iv = 0,
.level = 29,
@@ -5415,7 +5415,7 @@ const struct TrainerPartyMember0 gTrainerParty_Colin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Robert1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Robert1[] = {
{
.iv = 0,
.level = 30,
@@ -5423,7 +5423,7 @@ const struct TrainerPartyMember0 gTrainerParty_Robert1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Benny[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Benny[] = {
{
.iv = 0,
.level = 36,
@@ -5441,7 +5441,7 @@ const struct TrainerPartyMember0 gTrainerParty_Benny[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Chester[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Chester[] = {
{
.iv = 0,
.level = 26,
@@ -5454,7 +5454,7 @@ const struct TrainerPartyMember0 gTrainerParty_Chester[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Robert2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Robert2[] = {
{
.iv = 10,
.level = 32,
@@ -5467,7 +5467,7 @@ const struct TrainerPartyMember0 gTrainerParty_Robert2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Robert3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Robert3[] = {
{
.iv = 20,
.level = 35,
@@ -5480,7 +5480,7 @@ const struct TrainerPartyMember0 gTrainerParty_Robert3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Robert4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Robert4[] = {
{
.iv = 30,
.level = 38,
@@ -5493,7 +5493,7 @@ const struct TrainerPartyMember0 gTrainerParty_Robert4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Robert5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Robert5[] = {
{
.iv = 40,
.level = 41,
@@ -5506,7 +5506,7 @@ const struct TrainerPartyMember0 gTrainerParty_Robert5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Alex[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Alex[] = {
{
.iv = 0,
.level = 32,
@@ -5529,7 +5529,7 @@ const struct TrainerPartyMember0 gTrainerParty_Alex[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Beck[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Beck[] = {
{
.iv = 0,
.level = 34,
@@ -5542,7 +5542,7 @@ const struct TrainerPartyMember0 gTrainerParty_Beck[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Yasu[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Yasu[] = {
{
.iv = 0,
.level = 27,
@@ -5550,7 +5550,7 @@ const struct TrainerPartyMember0 gTrainerParty_Yasu[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Takashi[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Takashi[] = {
{
.iv = 0,
.level = 25,
@@ -5568,7 +5568,7 @@ const struct TrainerPartyMember0 gTrainerParty_Takashi[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Makoto[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Makoto[] = {
{
.iv = 0,
.level = 23,
@@ -5576,7 +5576,7 @@ const struct TrainerPartyMember0 gTrainerParty_Makoto[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hideo1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hideo1[] = {
{
.iv = 0,
.level = 20,
@@ -5599,7 +5599,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hideo1[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Lao1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Lao1[] = {
{
.iv = 0,
.level = 17,
@@ -5626,7 +5626,7 @@ const struct TrainerPartyMember1 gTrainerParty_Lao1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lung[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lung[] = {
{
.iv = 0,
.level = 19,
@@ -5639,7 +5639,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lung[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Lao2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Lao2[] = {
{
.iv = 0,
.level = 24,
@@ -5666,7 +5666,7 @@ const struct TrainerPartyMember1 gTrainerParty_Lao2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Lao3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Lao3[] = {
{
.iv = 20,
.level = 27,
@@ -5693,7 +5693,7 @@ const struct TrainerPartyMember1 gTrainerParty_Lao3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Lao4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Lao4[] = {
{
.iv = 30,
.level = 30,
@@ -5720,7 +5720,7 @@ const struct TrainerPartyMember1 gTrainerParty_Lao4[] = {
}
};
-const struct TrainerPartyMember3 gTrainerParty_Lao5[] = {
+const struct TrainerMonItemCustomMoves gTrainerParty_Lao5[] = {
{
.iv = 40,
.level = 33,
@@ -5751,7 +5751,7 @@ const struct TrainerPartyMember3 gTrainerParty_Lao5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tessa[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tessa[] = {
{
.iv = 100,
.level = 12,
@@ -5769,7 +5769,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tessa[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Laura[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Laura[] = {
{
.iv = 100,
.level = 14,
@@ -5777,7 +5777,7 @@ const struct TrainerPartyMember0 gTrainerParty_Laura[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cyndy1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cyndy1[] = {
{
.iv = 100,
.level = 19,
@@ -5790,7 +5790,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cyndy1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cora[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cora[] = {
{
.iv = 100,
.level = 27,
@@ -5798,7 +5798,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cora[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jill[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jill[] = {
{
.iv = 100,
.level = 27,
@@ -5806,7 +5806,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jill[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cyndy2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cyndy2[] = {
{
.iv = 110,
.level = 26,
@@ -5819,7 +5819,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cyndy2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cyndy3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cyndy3[] = {
{
.iv = 120,
.level = 29,
@@ -5832,7 +5832,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cyndy3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cyndy4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cyndy4[] = {
{
.iv = 130,
.level = 32,
@@ -5845,7 +5845,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cyndy4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Cyndy5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Cyndy5[] = {
{
.iv = 140,
.level = 35,
@@ -5858,7 +5858,7 @@ const struct TrainerPartyMember0 gTrainerParty_Cyndy5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Madeline1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Madeline1[] = {
{
.iv = 0,
.level = 20,
@@ -5867,7 +5867,7 @@ const struct TrainerPartyMember1 gTrainerParty_Madeline1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Clarissa[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Clarissa[] = {
{
.iv = 0,
.level = 29,
@@ -5880,7 +5880,7 @@ const struct TrainerPartyMember0 gTrainerParty_Clarissa[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Angelica[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Angelica[] = {
{
.iv = 0,
.level = 30,
@@ -5888,7 +5888,7 @@ const struct TrainerPartyMember0 gTrainerParty_Angelica[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Madeline2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Madeline2[] = {
{
.iv = 10,
.level = 27,
@@ -5897,7 +5897,7 @@ const struct TrainerPartyMember1 gTrainerParty_Madeline2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Madeline3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Madeline3[] = {
{
.iv = 20,
.level = 30,
@@ -5906,7 +5906,7 @@ const struct TrainerPartyMember1 gTrainerParty_Madeline3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Madeline4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Madeline4[] = {
{
.iv = 30,
.level = 32,
@@ -5921,7 +5921,7 @@ const struct TrainerPartyMember1 gTrainerParty_Madeline4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Madeline5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Madeline5[] = {
{
.iv = 40,
.level = 35,
@@ -5936,7 +5936,7 @@ const struct TrainerPartyMember1 gTrainerParty_Madeline5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Beverly[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Beverly[] = {
{
.iv = 0,
.level = 26,
@@ -5949,7 +5949,7 @@ const struct TrainerPartyMember0 gTrainerParty_Beverly[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dawn[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dawn[] = {
{
.iv = 0,
.level = 27,
@@ -5957,7 +5957,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dawn[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nicole[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nicole[] = {
{
.iv = 0,
.level = 27,
@@ -5965,7 +5965,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nicole[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Denise[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Denise[] = {
{
.iv = 0,
.level = 27,
@@ -5973,7 +5973,7 @@ const struct TrainerPartyMember0 gTrainerParty_Denise[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Beth[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Beth[] = {
{
.iv = 0,
.level = 25,
@@ -5991,7 +5991,7 @@ const struct TrainerPartyMember0 gTrainerParty_Beth[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tara[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tara[] = {
{
.iv = 0,
.level = 26,
@@ -6004,7 +6004,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tara[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Missy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Missy[] = {
{
.iv = 0,
.level = 24,
@@ -6027,7 +6027,7 @@ const struct TrainerPartyMember0 gTrainerParty_Missy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Alice[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Alice[] = {
{
.iv = 0,
.level = 25,
@@ -6045,7 +6045,7 @@ const struct TrainerPartyMember0 gTrainerParty_Alice[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jenny1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jenny1[] = {
{
.iv = 0,
.level = 35,
@@ -6053,7 +6053,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jenny1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grace[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grace[] = {
{
.iv = 0,
.level = 33,
@@ -6071,7 +6071,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grace[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tanya[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tanya[] = {
{
.iv = 0,
.level = 35,
@@ -6079,7 +6079,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tanya[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Sharon[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Sharon[] = {
{
.iv = 0,
.level = 34,
@@ -6092,7 +6092,7 @@ const struct TrainerPartyMember0 gTrainerParty_Sharon[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nikki[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nikki[] = {
{
.iv = 0,
.level = 32,
@@ -6110,7 +6110,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nikki[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brenda[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brenda[] = {
{
.iv = 0,
.level = 35,
@@ -6118,7 +6118,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brenda[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Katie[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Katie[] = {
{
.iv = 0,
.level = 33,
@@ -6136,7 +6136,7 @@ const struct TrainerPartyMember0 gTrainerParty_Katie[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Susie[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Susie[] = {
{
.iv = 0,
.level = 33,
@@ -6154,7 +6154,7 @@ const struct TrainerPartyMember0 gTrainerParty_Susie[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kara[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kara[] = {
{
.iv = 0,
.level = 35,
@@ -6162,7 +6162,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kara[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dana[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dana[] = {
{
.iv = 0,
.level = 33,
@@ -6180,7 +6180,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dana[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Erin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Erin[] = {
{
.iv = 0,
.level = 38,
@@ -6188,7 +6188,7 @@ const struct TrainerPartyMember0 gTrainerParty_Erin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Debra[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Debra[] = {
{
.iv = 0,
.level = 34,
@@ -6201,7 +6201,7 @@ const struct TrainerPartyMember0 gTrainerParty_Debra[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Linda[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Linda[] = {
{
.iv = 0,
.level = 34,
@@ -6214,7 +6214,7 @@ const struct TrainerPartyMember0 gTrainerParty_Linda[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kaylee[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kaylee[] = {
{
.iv = 0,
.level = 34,
@@ -6227,7 +6227,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kaylee[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Laurel[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Laurel[] = {
{
.iv = 0,
.level = 33,
@@ -6245,7 +6245,7 @@ const struct TrainerPartyMember0 gTrainerParty_Laurel[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Darcy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Darcy[] = {
{
.iv = 0,
.level = 13,
@@ -6253,7 +6253,7 @@ const struct TrainerPartyMember0 gTrainerParty_Darcy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jenny2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jenny2[] = {
{
.iv = 0,
.level = 38,
@@ -6261,7 +6261,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jenny2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jenny3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jenny3[] = {
{
.iv = 0,
.level = 41,
@@ -6269,7 +6269,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jenny3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jenny4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jenny4[] = {
{
.iv = 0,
.level = 43,
@@ -6282,7 +6282,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jenny4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jenny5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jenny5[] = {
{
.iv = 0,
.level = 45,
@@ -6300,7 +6300,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jenny5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Heidi[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Heidi[] = {
{
.iv = 0,
.level = 23,
@@ -6315,7 +6315,7 @@ const struct TrainerPartyMember1 gTrainerParty_Heidi[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Becky[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Becky[] = {
{
.iv = 0,
.level = 24,
@@ -6324,7 +6324,7 @@ const struct TrainerPartyMember1 gTrainerParty_Becky[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Carol[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Carol[] = {
{
.iv = 0,
.level = 18,
@@ -6337,7 +6337,7 @@ const struct TrainerPartyMember0 gTrainerParty_Carol[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nancy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nancy[] = {
{
.iv = 0,
.level = 19,
@@ -6350,7 +6350,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nancy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Martha[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Martha[] = {
{
.iv = 0,
.level = 23,
@@ -6363,7 +6363,7 @@ const struct TrainerPartyMember0 gTrainerParty_Martha[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Diana1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Diana1[] = {
{
.iv = 0,
.level = 20,
@@ -6381,7 +6381,7 @@ const struct TrainerPartyMember0 gTrainerParty_Diana1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Nina[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Nina[] = {
{
.iv = 0,
.level = 9,
@@ -6394,7 +6394,7 @@ const struct TrainerPartyMember0 gTrainerParty_Nina[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Irene[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Irene[] = {
{
.iv = 0,
.level = 18,
@@ -6407,7 +6407,7 @@ const struct TrainerPartyMember0 gTrainerParty_Irene[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Diana2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Diana2[] = {
{
.iv = 10,
.level = 25,
@@ -6425,7 +6425,7 @@ const struct TrainerPartyMember0 gTrainerParty_Diana2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Diana3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Diana3[] = {
{
.iv = 20,
.level = 28,
@@ -6443,7 +6443,7 @@ const struct TrainerPartyMember0 gTrainerParty_Diana3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Diana4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Diana4[] = {
{
.iv = 30,
.level = 31,
@@ -6461,7 +6461,7 @@ const struct TrainerPartyMember0 gTrainerParty_Diana4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Diana5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Diana5[] = {
{
.iv = 40,
.level = 40,
@@ -6479,7 +6479,7 @@ const struct TrainerPartyMember0 gTrainerParty_Diana5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_AmyAndLiv1[] = {
{
.iv = 0,
.level = 16,
@@ -6492,7 +6492,7 @@ const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_AmyAndLiv2[] = {
{
.iv = 10,
.level = 27,
@@ -6505,7 +6505,7 @@ const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_GinaAndMia1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_GinaAndMia1[] = {
{
.iv = 0,
.level = 8,
@@ -6518,7 +6518,7 @@ const struct TrainerPartyMember0 gTrainerParty_GinaAndMia1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_MiuAndYuki[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_MiuAndYuki[] = {
{
.iv = 0,
.level = 27,
@@ -6531,7 +6531,7 @@ const struct TrainerPartyMember0 gTrainerParty_MiuAndYuki[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_AmyAndLiv3[] = {
{
.iv = 0,
.level = 9,
@@ -6544,7 +6544,7 @@ const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_GinaAndMia2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_GinaAndMia2[] = {
{
.iv = 0,
.level = 10,
@@ -6559,7 +6559,7 @@ const struct TrainerPartyMember1 gTrainerParty_GinaAndMia2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_AmyAndLiv4[] = {
{
.iv = 20,
.level = 30,
@@ -6572,7 +6572,7 @@ const struct TrainerPartyMember0 gTrainerParty_AmyAndLiv4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_AmyAndLiv5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_AmyAndLiv5[] = {
{
.iv = 30,
.level = 33,
@@ -6587,7 +6587,7 @@ const struct TrainerPartyMember1 gTrainerParty_AmyAndLiv5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_AmyAndLiv6[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_AmyAndLiv6[] = {
{
.iv = 40,
.level = 36,
@@ -6602,7 +6602,7 @@ const struct TrainerPartyMember1 gTrainerParty_AmyAndLiv6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Huey[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Huey[] = {
{
.iv = 0,
.level = 14,
@@ -6610,7 +6610,7 @@ const struct TrainerPartyMember0 gTrainerParty_Huey[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Edmond[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Edmond[] = {
{
.iv = 0,
.level = 12,
@@ -6628,7 +6628,7 @@ const struct TrainerPartyMember0 gTrainerParty_Edmond[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ernest1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ernest1[] = {
{
.iv = 0,
.level = 33,
@@ -6646,7 +6646,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ernest1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Dwayne[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Dwayne[] = {
{
.iv = 0,
.level = 11,
@@ -6664,7 +6664,7 @@ const struct TrainerPartyMember0 gTrainerParty_Dwayne[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Phillip[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Phillip[] = {
{
.iv = 0,
.level = 44,
@@ -6677,7 +6677,7 @@ const struct TrainerPartyMember0 gTrainerParty_Phillip[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Leonard[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Leonard[] = {
{
.iv = 0,
.level = 43,
@@ -6695,7 +6695,7 @@ const struct TrainerPartyMember0 gTrainerParty_Leonard[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Duncan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Duncan[] = {
{
.iv = 0,
.level = 26,
@@ -6708,7 +6708,7 @@ const struct TrainerPartyMember0 gTrainerParty_Duncan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ernest2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ernest2[] = {
{
.iv = 10,
.level = 36,
@@ -6726,7 +6726,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ernest2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ernest3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ernest3[] = {
{
.iv = 20,
.level = 39,
@@ -6744,7 +6744,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ernest3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ernest4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ernest4[] = {
{
.iv = 30,
.level = 42,
@@ -6762,7 +6762,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ernest4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ernest5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ernest5[] = {
{
.iv = 40,
.level = 45,
@@ -6780,7 +6780,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ernest5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous11[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous11[] = {
{
.iv = 0,
.level = 22,
@@ -6793,7 +6793,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous11[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous12[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous12[] = {
{
.iv = 0,
.level = 21,
@@ -6811,7 +6811,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous12[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous13[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous13[] = {
{
.iv = 0,
.level = 23,
@@ -6819,7 +6819,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous13[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Sonny[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Sonny[] = {
{
.iv = 0,
.level = 35,
@@ -6827,7 +6827,7 @@ const struct TrainerPartyMember0 gTrainerParty_Sonny[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Donovan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Donovan[] = {
{
.iv = 0,
.level = 34,
@@ -6840,7 +6840,7 @@ const struct TrainerPartyMember0 gTrainerParty_Donovan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Gerald[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Gerald[] = {
{
.iv = 0,
.level = 33,
@@ -6858,7 +6858,7 @@ const struct TrainerPartyMember0 gTrainerParty_Gerald[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kelvin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kelvin[] = {
{
.iv = 0,
.level = 34,
@@ -6871,7 +6871,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kelvin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kody[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kody[] = {
{
.iv = 0,
.level = 33,
@@ -6889,7 +6889,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kody[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tevin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tevin[] = {
{
.iv = 0,
.level = 35,
@@ -6897,7 +6897,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tevin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Damon[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Damon[] = {
{
.iv = 0,
.level = 34,
@@ -6910,7 +6910,7 @@ const struct TrainerPartyMember0 gTrainerParty_Damon[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Pablo[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Pablo[] = {
{
.iv = 0,
.level = 35,
@@ -6918,7 +6918,7 @@ const struct TrainerPartyMember0 gTrainerParty_Pablo[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Edwin1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Edwin1[] = {
{
.iv = 0,
.level = 14,
@@ -6931,7 +6931,7 @@ const struct TrainerPartyMember0 gTrainerParty_Edwin1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hector1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hector1[] = {
{
.iv = 0,
.level = 20,
@@ -6939,7 +6939,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hector1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Hector2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Hector2[] = {
{
.iv = 0,
.level = 20,
@@ -6947,7 +6947,7 @@ const struct TrainerPartyMember0 gTrainerParty_Hector2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Edwin2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Edwin2[] = {
{
.iv = 0,
.level = 26,
@@ -6960,7 +6960,7 @@ const struct TrainerPartyMember0 gTrainerParty_Edwin2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Edwin3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Edwin3[] = {
{
.iv = 0,
.level = 29,
@@ -6973,7 +6973,7 @@ const struct TrainerPartyMember0 gTrainerParty_Edwin3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Edwin4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Edwin4[] = {
{
.iv = 0,
.level = 32,
@@ -6986,7 +6986,7 @@ const struct TrainerPartyMember0 gTrainerParty_Edwin4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Edwin5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Edwin5[] = {
{
.iv = 0,
.level = 35,
@@ -6999,7 +6999,7 @@ const struct TrainerPartyMember0 gTrainerParty_Edwin5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wally1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wally1[] = {
{
.iv = 150,
.level = 44,
@@ -7032,7 +7032,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wally1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan1[] = {
{
.iv = 0,
.level = 5,
@@ -7040,7 +7040,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan2[] = {
{
.iv = 50,
.level = 18,
@@ -7058,7 +7058,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan3[] = {
{
.iv = 100,
.level = 29,
@@ -7076,7 +7076,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan4[] = {
{
.iv = 0,
.level = 5,
@@ -7084,7 +7084,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan5[] = {
{
.iv = 50,
.level = 18,
@@ -7102,7 +7102,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan6[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan6[] = {
{
.iv = 100,
.level = 29,
@@ -7120,7 +7120,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan7[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan7[] = {
{
.iv = 0,
.level = 5,
@@ -7128,7 +7128,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan7[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan8[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan8[] = {
{
.iv = 50,
.level = 18,
@@ -7146,7 +7146,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan8[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan9[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan9[] = {
{
.iv = 100,
.level = 29,
@@ -7164,7 +7164,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan9[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May1[] = {
{
.iv = 0,
.level = 5,
@@ -7172,7 +7172,7 @@ const struct TrainerPartyMember0 gTrainerParty_May1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May2[] = {
{
.iv = 50,
.level = 18,
@@ -7190,7 +7190,7 @@ const struct TrainerPartyMember0 gTrainerParty_May2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May3[] = {
{
.iv = 100,
.level = 29,
@@ -7208,7 +7208,7 @@ const struct TrainerPartyMember0 gTrainerParty_May3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May4[] = {
{
.iv = 0,
.level = 5,
@@ -7216,7 +7216,7 @@ const struct TrainerPartyMember0 gTrainerParty_May4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May5[] = {
{
.iv = 50,
.level = 18,
@@ -7234,7 +7234,7 @@ const struct TrainerPartyMember0 gTrainerParty_May5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May6[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May6[] = {
{
.iv = 100,
.level = 29,
@@ -7252,7 +7252,7 @@ const struct TrainerPartyMember0 gTrainerParty_May6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May7[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May7[] = {
{
.iv = 0,
.level = 5,
@@ -7260,7 +7260,7 @@ const struct TrainerPartyMember0 gTrainerParty_May7[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May8[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May8[] = {
{
.iv = 50,
.level = 18,
@@ -7278,7 +7278,7 @@ const struct TrainerPartyMember0 gTrainerParty_May8[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May9[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May9[] = {
{
.iv = 100,
.level = 29,
@@ -7296,7 +7296,7 @@ const struct TrainerPartyMember0 gTrainerParty_May9[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaac1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaac1[] = {
{
.iv = 0,
.level = 12,
@@ -7329,7 +7329,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaac1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Riley[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Riley[] = {
{
.iv = 0,
.level = 15,
@@ -7347,7 +7347,7 @@ const struct TrainerPartyMember0 gTrainerParty_Riley[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Aidan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Aidan[] = {
{
.iv = 0,
.level = 13,
@@ -7360,7 +7360,7 @@ const struct TrainerPartyMember0 gTrainerParty_Aidan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaac2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaac2[] = {
{
.iv = 10,
.level = 22,
@@ -7393,7 +7393,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaac2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaac3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaac3[] = {
{
.iv = 20,
.level = 25,
@@ -7426,7 +7426,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaac3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaac4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaac4[] = {
{
.iv = 30,
.level = 28,
@@ -7459,7 +7459,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaac4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Isaac5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Isaac5[] = {
{
.iv = 40,
.level = 31,
@@ -7492,7 +7492,7 @@ const struct TrainerPartyMember0 gTrainerParty_Isaac5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lydia1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lydia1[] = {
{
.iv = 0,
.level = 12,
@@ -7525,7 +7525,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lydia1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Alexia[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Alexia[] = {
{
.iv = 0,
.level = 13,
@@ -7538,7 +7538,7 @@ const struct TrainerPartyMember0 gTrainerParty_Alexia[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Danielle[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Danielle[] = {
{
.iv = 0,
.level = 24,
@@ -7546,7 +7546,7 @@ const struct TrainerPartyMember0 gTrainerParty_Danielle[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lydia2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lydia2[] = {
{
.iv = 10,
.level = 22,
@@ -7579,7 +7579,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lydia2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lydia3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lydia3[] = {
{
.iv = 20,
.level = 25,
@@ -7612,7 +7612,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lydia3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lydia4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lydia4[] = {
{
.iv = 30,
.level = 28,
@@ -7645,7 +7645,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lydia4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lydia5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lydia5[] = {
{
.iv = 40,
.level = 31,
@@ -7678,7 +7678,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lydia5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jackson1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jackson1[] = {
{
.iv = 50,
.level = 28,
@@ -7686,7 +7686,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jackson1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Carlos[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Carlos[] = {
{
.iv = 50,
.level = 29,
@@ -7704,7 +7704,7 @@ const struct TrainerPartyMember0 gTrainerParty_Carlos[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Sebastian[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Sebastian[] = {
{
.iv = 50,
.level = 39,
@@ -7712,7 +7712,7 @@ const struct TrainerPartyMember0 gTrainerParty_Sebastian[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jackson2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jackson2[] = {
{
.iv = 60,
.level = 31,
@@ -7720,7 +7720,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jackson2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jackson3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jackson3[] = {
{
.iv = 70,
.level = 34,
@@ -7728,7 +7728,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jackson3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jackson4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jackson4[] = {
{
.iv = 80,
.level = 37,
@@ -7736,7 +7736,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jackson4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jackson5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jackson5[] = {
{
.iv = 90,
.level = 39,
@@ -7749,7 +7749,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jackson5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Catherine1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Catherine1[] = {
{
.iv = 50,
.level = 27,
@@ -7762,7 +7762,7 @@ const struct TrainerPartyMember0 gTrainerParty_Catherine1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jenna[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jenna[] = {
{
.iv = 50,
.level = 29,
@@ -7780,7 +7780,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jenna[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Sophia[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Sophia[] = {
{
.iv = 50,
.level = 38,
@@ -7793,7 +7793,7 @@ const struct TrainerPartyMember0 gTrainerParty_Sophia[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Catherine2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Catherine2[] = {
{
.iv = 60,
.level = 30,
@@ -7806,7 +7806,7 @@ const struct TrainerPartyMember0 gTrainerParty_Catherine2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Catherine3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Catherine3[] = {
{
.iv = 70,
.level = 33,
@@ -7819,7 +7819,7 @@ const struct TrainerPartyMember0 gTrainerParty_Catherine3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Catherine4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Catherine4[] = {
{
.iv = 80,
.level = 36,
@@ -7832,7 +7832,7 @@ const struct TrainerPartyMember0 gTrainerParty_Catherine4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Catherine5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Catherine5[] = {
{
.iv = 90,
.level = 39,
@@ -7845,7 +7845,7 @@ const struct TrainerPartyMember0 gTrainerParty_Catherine5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maxie1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maxie1[] = {
{
.iv = 0,
.level = 17,
@@ -7858,7 +7858,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maxie1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt28[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt28[] = {
{
.iv = 0,
.level = 32,
@@ -7871,7 +7871,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt28[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt29[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt29[] = {
{
.iv = 0,
.level = 30,
@@ -7894,7 +7894,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt29[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt30[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt30[] = {
{
.iv = 0,
.level = 32,
@@ -7907,7 +7907,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt30[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt31[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt31[] = {
{
.iv = 0,
.level = 33,
@@ -7915,7 +7915,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt31[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt32[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt32[] = {
{
.iv = 0,
.level = 37,
@@ -7928,7 +7928,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt32[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt33[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt33[] = {
{
.iv = 0,
.level = 38,
@@ -7936,7 +7936,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt33[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt34[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt34[] = {
{
.iv = 0,
.level = 36,
@@ -7954,7 +7954,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt34[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt35[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt35[] = {
{
.iv = 0,
.level = 17,
@@ -7962,7 +7962,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt35[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt36[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt36[] = {
{
.iv = 0,
.level = 9,
@@ -7970,7 +7970,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt36[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt37[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt37[] = {
{
.iv = 0,
.level = 9,
@@ -7983,7 +7983,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt37[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt38[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt38[] = {
{
.iv = 0,
.level = 16,
@@ -7996,7 +7996,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt38[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt39[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt39[] = {
{
.iv = 0,
.level = 16,
@@ -8009,7 +8009,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt39[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt40[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt40[] = {
{
.iv = 0,
.level = 20,
@@ -8022,7 +8022,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt40[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt41[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt41[] = {
{
.iv = 0,
.level = 17,
@@ -8035,7 +8035,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt41[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt42[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt42[] = {
{
.iv = 0,
.level = 11,
@@ -8043,7 +8043,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt42[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt43[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt43[] = {
{
.iv = 0,
.level = 27,
@@ -8056,7 +8056,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt43[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt44[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt44[] = {
{
.iv = 0,
.level = 27,
@@ -8069,7 +8069,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt44[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt45[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt45[] = {
{
.iv = 0,
.level = 26,
@@ -8087,7 +8087,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt45[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt46[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt46[] = {
{
.iv = 0,
.level = 15,
@@ -8095,7 +8095,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt46[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt47[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt47[] = {
{
.iv = 0,
.level = 14,
@@ -8108,7 +8108,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt47[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt48[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt48[] = {
{
.iv = 0,
.level = 17,
@@ -8116,7 +8116,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt48[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt49[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt49[] = {
{
.iv = 0,
.level = 30,
@@ -8134,7 +8134,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt49[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt50[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt50[] = {
{
.iv = 0,
.level = 31,
@@ -8147,7 +8147,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt50[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt51[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt51[] = {
{
.iv = 0,
.level = 31,
@@ -8160,7 +8160,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt51[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt52[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt52[] = {
{
.iv = 0,
.level = 28,
@@ -8168,7 +8168,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt52[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt53[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt53[] = {
{
.iv = 0,
.level = 31,
@@ -8186,7 +8186,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt53[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Grunt54[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Grunt54[] = {
{
.iv = 0,
.level = 33,
@@ -8194,7 +8194,7 @@ const struct TrainerPartyMember0 gTrainerParty_Grunt54[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous14[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous14[] = {
{
.iv = 50,
.level = 30,
@@ -8207,7 +8207,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous14[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous15[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous15[] = {
{
.iv = 50,
.level = 30,
@@ -8220,7 +8220,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous15[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tabitha1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tabitha1[] = {
{
.iv = 50,
.level = 32,
@@ -8238,7 +8238,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tabitha1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tabitha2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tabitha2[] = {
{
.iv = 50,
.level = 20,
@@ -8256,7 +8256,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tabitha2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Anonymous16[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Anonymous16[] = {
{
.iv = 50,
.level = 21,
@@ -8269,7 +8269,7 @@ const struct TrainerPartyMember0 gTrainerParty_Anonymous16[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Courtney1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Courtney1[] = {
{
.iv = 50,
.level = 28,
@@ -8282,7 +8282,7 @@ const struct TrainerPartyMember0 gTrainerParty_Courtney1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Courtney2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Courtney2[] = {
{
.iv = 50,
.level = 38,
@@ -8295,7 +8295,7 @@ const struct TrainerPartyMember0 gTrainerParty_Courtney2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maxie2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maxie2[] = {
{
.iv = 150,
.level = 41,
@@ -8313,7 +8313,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maxie2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Maxie3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Maxie3[] = {
{
.iv = 150,
.level = 24,
@@ -8331,7 +8331,7 @@ const struct TrainerPartyMember0 gTrainerParty_Maxie3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tiana[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tiana[] = {
{
.iv = 0,
.level = 4,
@@ -8344,7 +8344,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tiana[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Haley1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Haley1[] = {
{
.iv = 0,
.level = 7,
@@ -8357,7 +8357,7 @@ const struct TrainerPartyMember0 gTrainerParty_Haley1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Janice[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Janice[] = {
{
.iv = 0,
.level = 10,
@@ -8365,7 +8365,7 @@ const struct TrainerPartyMember0 gTrainerParty_Janice[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Vivi[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Vivi[] = {
{
.iv = 100,
.level = 15,
@@ -8383,7 +8383,7 @@ const struct TrainerPartyMember0 gTrainerParty_Vivi[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Haley2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Haley2[] = {
{
.iv = 10,
.level = 26,
@@ -8396,7 +8396,7 @@ const struct TrainerPartyMember0 gTrainerParty_Haley2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Haley3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Haley3[] = {
{
.iv = 20,
.level = 29,
@@ -8409,7 +8409,7 @@ const struct TrainerPartyMember0 gTrainerParty_Haley3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Haley4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Haley4[] = {
{
.iv = 30,
.level = 32,
@@ -8422,7 +8422,7 @@ const struct TrainerPartyMember0 gTrainerParty_Haley4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Haley5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Haley5[] = {
{
.iv = 40,
.level = 34,
@@ -8440,7 +8440,7 @@ const struct TrainerPartyMember0 gTrainerParty_Haley5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Sally[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Sally[] = {
{
.iv = 0,
.level = 16,
@@ -8448,7 +8448,7 @@ const struct TrainerPartyMember0 gTrainerParty_Sally[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Robin[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Robin[] = {
{
.iv = 0,
.level = 14,
@@ -8466,7 +8466,7 @@ const struct TrainerPartyMember0 gTrainerParty_Robin[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Andrea[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Andrea[] = {
{
.iv = 100,
.level = 41,
@@ -8474,7 +8474,7 @@ const struct TrainerPartyMember0 gTrainerParty_Andrea[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Crissy[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Crissy[] = {
{
.iv = 100,
.level = 40,
@@ -8487,7 +8487,7 @@ const struct TrainerPartyMember0 gTrainerParty_Crissy[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Rick[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Rick[] = {
{
.iv = 0,
.level = 4,
@@ -8500,7 +8500,7 @@ const struct TrainerPartyMember0 gTrainerParty_Rick[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lyle[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lyle[] = {
{
.iv = 0,
.level = 3,
@@ -8533,7 +8533,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lyle[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jose[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jose[] = {
{
.iv = 50,
.level = 8,
@@ -8551,7 +8551,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jose[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Doug[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Doug[] = {
{
.iv = 0,
.level = 26,
@@ -8564,7 +8564,7 @@ const struct TrainerPartyMember0 gTrainerParty_Doug[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Greg[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Greg[] = {
{
.iv = 0,
.level = 26,
@@ -8577,7 +8577,7 @@ const struct TrainerPartyMember0 gTrainerParty_Greg[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kent[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kent[] = {
{
.iv = 0,
.level = 26,
@@ -8585,7 +8585,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kent[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_James1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_James1[] = {
{
.iv = 0,
.level = 8,
@@ -8593,7 +8593,7 @@ const struct TrainerPartyMember0 gTrainerParty_James1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_James2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_James2[] = {
{
.iv = 10,
.level = 27,
@@ -8601,7 +8601,7 @@ const struct TrainerPartyMember0 gTrainerParty_James2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_James3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_James3[] = {
{
.iv = 20,
.level = 29,
@@ -8614,7 +8614,7 @@ const struct TrainerPartyMember0 gTrainerParty_James3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_James4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_James4[] = {
{
.iv = 30,
.level = 31,
@@ -8632,7 +8632,7 @@ const struct TrainerPartyMember0 gTrainerParty_James4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_James5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_James5[] = {
{
.iv = 40,
.level = 33,
@@ -8655,7 +8655,7 @@ const struct TrainerPartyMember0 gTrainerParty_James5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brice[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brice[] = {
{
.iv = 0,
.level = 18,
@@ -8668,7 +8668,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brice[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Trent1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Trent1[] = {
{
.iv = 0,
.level = 16,
@@ -8691,7 +8691,7 @@ const struct TrainerPartyMember0 gTrainerParty_Trent1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lenny[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lenny[] = {
{
.iv = 0,
.level = 19,
@@ -8704,7 +8704,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lenny[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Lucas1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Lucas1[] = {
{
.iv = 0,
.level = 18,
@@ -8722,7 +8722,7 @@ const struct TrainerPartyMember0 gTrainerParty_Lucas1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Alan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Alan[] = {
{
.iv = 0,
.level = 22,
@@ -8740,7 +8740,7 @@ const struct TrainerPartyMember0 gTrainerParty_Alan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Clark[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Clark[] = {
{
.iv = 0,
.level = 8,
@@ -8758,7 +8758,7 @@ const struct TrainerPartyMember0 gTrainerParty_Clark[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Eric[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Eric[] = {
{
.iv = 0,
.level = 21,
@@ -8771,7 +8771,7 @@ const struct TrainerPartyMember0 gTrainerParty_Eric[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Lucas2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Lucas2[] = {
{
.iv = 0,
.level = 9,
@@ -8780,7 +8780,7 @@ const struct TrainerPartyMember1 gTrainerParty_Lucas2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Mike1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Mike1[] = {
{
.iv = 0,
.level = 10,
@@ -8795,7 +8795,7 @@ const struct TrainerPartyMember1 gTrainerParty_Mike1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Mike2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Mike2[] = {
{
.iv = 0,
.level = 16,
@@ -8813,7 +8813,7 @@ const struct TrainerPartyMember0 gTrainerParty_Mike2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Trent2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Trent2[] = {
{
.iv = 10,
.level = 24,
@@ -8836,7 +8836,7 @@ const struct TrainerPartyMember0 gTrainerParty_Trent2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Trent3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Trent3[] = {
{
.iv = 20,
.level = 27,
@@ -8859,7 +8859,7 @@ const struct TrainerPartyMember0 gTrainerParty_Trent3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Trent4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Trent4[] = {
{
.iv = 30,
.level = 30,
@@ -8882,7 +8882,7 @@ const struct TrainerPartyMember0 gTrainerParty_Trent4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Trent5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Trent5[] = {
{
.iv = 40,
.level = 33,
@@ -8905,7 +8905,7 @@ const struct TrainerPartyMember0 gTrainerParty_Trent5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_DezAndLuke[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_DezAndLuke[] = {
{
.iv = 0,
.level = 32,
@@ -8918,7 +8918,7 @@ const struct TrainerPartyMember0 gTrainerParty_DezAndLuke[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_LeaAndJed[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_LeaAndJed[] = {
{
.iv = 0,
.level = 45,
@@ -8931,7 +8931,7 @@ const struct TrainerPartyMember0 gTrainerParty_LeaAndJed[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_LoisAndHal1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_LoisAndHal1[] = {
{
.iv = 0,
.level = 27,
@@ -8944,7 +8944,7 @@ const struct TrainerPartyMember0 gTrainerParty_LoisAndHal1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_LoisAndHal2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_LoisAndHal2[] = {
{
.iv = 10,
.level = 30,
@@ -8957,7 +8957,7 @@ const struct TrainerPartyMember0 gTrainerParty_LoisAndHal2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_LoisAndHal3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_LoisAndHal3[] = {
{
.iv = 20,
.level = 33,
@@ -8970,7 +8970,7 @@ const struct TrainerPartyMember0 gTrainerParty_LoisAndHal3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_LoisAndHal4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_LoisAndHal4[] = {
{
.iv = 30,
.level = 36,
@@ -8983,7 +8983,7 @@ const struct TrainerPartyMember0 gTrainerParty_LoisAndHal4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_LoisAndHal5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_LoisAndHal5[] = {
{
.iv = 40,
.level = 39,
@@ -8996,7 +8996,7 @@ const struct TrainerPartyMember0 gTrainerParty_LoisAndHal5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Johanna[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Johanna[] = {
{
.iv = 0,
.level = 13,
@@ -9004,7 +9004,7 @@ const struct TrainerPartyMember0 gTrainerParty_Johanna[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Zane[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Zane[] = {
{
.iv = 100,
.level = 24,
@@ -9013,7 +9013,7 @@ const struct TrainerPartyMember1 gTrainerParty_Zane[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Vivian[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Vivian[] = {
{
.iv = 100,
.level = 19,
@@ -9022,7 +9022,7 @@ const struct TrainerPartyMember1 gTrainerParty_Vivian[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Sadie[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Sadie[] = {
{
.iv = 100,
.level = 24,
@@ -9031,7 +9031,7 @@ const struct TrainerPartyMember1 gTrainerParty_Sadie[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Hideo2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Hideo2[] = {
{
.iv = 0,
.level = 26,
@@ -9046,7 +9046,7 @@ const struct TrainerPartyMember1 gTrainerParty_Hideo2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Keigo[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Keigo[] = {
{
.iv = 0,
.level = 29,
@@ -9061,7 +9061,7 @@ const struct TrainerPartyMember1 gTrainerParty_Keigo[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Tsunao[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Tsunao[] = {
{
.iv = 0,
.level = 28,
@@ -9082,7 +9082,7 @@ const struct TrainerPartyMember1 gTrainerParty_Tsunao[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Terrell[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Terrell[] = {
{
.iv = 100,
.level = 29,
@@ -9095,7 +9095,7 @@ const struct TrainerPartyMember0 gTrainerParty_Terrell[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Kylee[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Kylee[] = {
{
.iv = 100,
.level = 30,
@@ -9103,7 +9103,7 @@ const struct TrainerPartyMember0 gTrainerParty_Kylee[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wally2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wally2[] = {
{
.iv = 30,
.level = 16,
@@ -9111,7 +9111,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wally2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wally3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wally3[] = {
{
.iv = 150,
.level = 47,
@@ -9144,7 +9144,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wally3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wally4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wally4[] = {
{
.iv = 150,
.level = 50,
@@ -9177,7 +9177,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wally4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wally5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wally5[] = {
{
.iv = 150,
.level = 53,
@@ -9210,7 +9210,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wally5[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_Wally6[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_Wally6[] = {
{
.iv = 150,
.level = 56,
@@ -9243,7 +9243,7 @@ const struct TrainerPartyMember1 gTrainerParty_Wally6[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan10[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan10[] = {
{
.iv = 150,
.level = 31,
@@ -9266,7 +9266,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan10[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan11[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan11[] = {
{
.iv = 150,
.level = 31,
@@ -9289,7 +9289,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan11[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Brendan12[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Brendan12[] = {
{
.iv = 150,
.level = 31,
@@ -9312,7 +9312,7 @@ const struct TrainerPartyMember0 gTrainerParty_Brendan12[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May10[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May10[] = {
{
.iv = 150,
.level = 31,
@@ -9335,7 +9335,7 @@ const struct TrainerPartyMember0 gTrainerParty_May10[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May11[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May11[] = {
{
.iv = 150,
.level = 31,
@@ -9358,7 +9358,7 @@ const struct TrainerPartyMember0 gTrainerParty_May11[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_May12[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_May12[] = {
{
.iv = 150,
.level = 31,
@@ -9381,7 +9381,7 @@ const struct TrainerPartyMember0 gTrainerParty_May12[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Jonah[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Jonah[] = {
{
.iv = 0,
.level = 34,
@@ -9404,7 +9404,7 @@ const struct TrainerPartyMember0 gTrainerParty_Jonah[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Henry[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Henry[] = {
{
.iv = 0,
.level = 31,
@@ -9422,7 +9422,7 @@ const struct TrainerPartyMember0 gTrainerParty_Henry[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Roger[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Roger[] = {
{
.iv = 0,
.level = 15,
@@ -9445,7 +9445,7 @@ const struct TrainerPartyMember0 gTrainerParty_Roger[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Alexa[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Alexa[] = {
{
.iv = 100,
.level = 35,
@@ -9458,7 +9458,7 @@ const struct TrainerPartyMember0 gTrainerParty_Alexa[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Ruben[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Ruben[] = {
{
.iv = 100,
.level = 34,
@@ -9476,7 +9476,7 @@ const struct TrainerPartyMember0 gTrainerParty_Ruben[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Koji[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Koji[] = {
{
.iv = 100,
.level = 34,
@@ -9489,7 +9489,7 @@ const struct TrainerPartyMember0 gTrainerParty_Koji[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Wayne[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Wayne[] = {
{
.iv = 0,
.level = 30,
@@ -9512,7 +9512,7 @@ const struct TrainerPartyMember0 gTrainerParty_Wayne[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Byron[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Byron[] = {
{
.iv = 0,
.level = 34,
@@ -9525,7 +9525,7 @@ const struct TrainerPartyMember0 gTrainerParty_Byron[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Reed[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Reed[] = {
{
.iv = 0,
.level = 32,
@@ -9548,7 +9548,7 @@ const struct TrainerPartyMember0 gTrainerParty_Reed[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Tisha[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Tisha[] = {
{
.iv = 0,
.level = 33,
@@ -9566,7 +9566,7 @@ const struct TrainerPartyMember0 gTrainerParty_Tisha[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_ToriAndTia[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_ToriAndTia[] = {
{
.iv = 0,
.level = 20,
@@ -9579,7 +9579,7 @@ const struct TrainerPartyMember0 gTrainerParty_ToriAndTia[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_KimAndIris[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_KimAndIris[] = {
{
.iv = 0,
.level = 34,
@@ -9594,7 +9594,7 @@ const struct TrainerPartyMember1 gTrainerParty_KimAndIris[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_TyraAndIvy[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_TyraAndIvy[] = {
{
.iv = 0,
.level = 19,
@@ -9609,7 +9609,7 @@ const struct TrainerPartyMember1 gTrainerParty_TyraAndIvy[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_MelAndPaul[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_MelAndPaul[] = {
{
.iv = 0,
.level = 27,
@@ -9624,7 +9624,7 @@ const struct TrainerPartyMember1 gTrainerParty_MelAndPaul[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_JohnAndJay1[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_JohnAndJay1[] = {
{
.iv = 200,
.level = 40,
@@ -9639,7 +9639,7 @@ const struct TrainerPartyMember1 gTrainerParty_JohnAndJay1[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_JohnAndJay2[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_JohnAndJay2[] = {
{
.iv = 210,
.level = 43,
@@ -9654,7 +9654,7 @@ const struct TrainerPartyMember1 gTrainerParty_JohnAndJay2[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_JohnAndJay3[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_JohnAndJay3[] = {
{
.iv = 220,
.level = 46,
@@ -9669,7 +9669,7 @@ const struct TrainerPartyMember1 gTrainerParty_JohnAndJay3[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_JohnAndJay4[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_JohnAndJay4[] = {
{
.iv = 230,
.level = 49,
@@ -9684,7 +9684,7 @@ const struct TrainerPartyMember1 gTrainerParty_JohnAndJay4[] = {
}
};
-const struct TrainerPartyMember1 gTrainerParty_JohnAndJay5[] = {
+const struct TrainerMonNoItemCustomMoves gTrainerParty_JohnAndJay5[] = {
{
.iv = 240,
.level = 52,
@@ -9699,7 +9699,7 @@ const struct TrainerPartyMember1 gTrainerParty_JohnAndJay5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_ReliAndIan[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_ReliAndIan[] = {
{
.iv = 0,
.level = 36,
@@ -9712,7 +9712,7 @@ const struct TrainerPartyMember0 gTrainerParty_ReliAndIan[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_RitaAndSam1[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_RitaAndSam1[] = {
{
.iv = 0,
.level = 36,
@@ -9725,7 +9725,7 @@ const struct TrainerPartyMember0 gTrainerParty_RitaAndSam1[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_RitaAndSam2[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_RitaAndSam2[] = {
{
.iv = 0,
.level = 42,
@@ -9738,7 +9738,7 @@ const struct TrainerPartyMember0 gTrainerParty_RitaAndSam2[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_RitaAndSam3[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_RitaAndSam3[] = {
{
.iv = 0,
.level = 45,
@@ -9751,7 +9751,7 @@ const struct TrainerPartyMember0 gTrainerParty_RitaAndSam3[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_RitaAndSam4[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_RitaAndSam4[] = {
{
.iv = 0,
.level = 48,
@@ -9764,7 +9764,7 @@ const struct TrainerPartyMember0 gTrainerParty_RitaAndSam4[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_RitaAndSam5[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_RitaAndSam5[] = {
{
.iv = 0,
.level = 51,
@@ -9777,7 +9777,7 @@ const struct TrainerPartyMember0 gTrainerParty_RitaAndSam5[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_LisaAndRay[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_LisaAndRay[] = {
{
.iv = 0,
.level = 28,
@@ -9790,7 +9790,7 @@ const struct TrainerPartyMember0 gTrainerParty_LisaAndRay[] = {
}
};
-const struct TrainerPartyMember0 gTrainerParty_Eugene[] = {
+const struct TrainerMonNoItemDefaultMoves gTrainerParty_Eugene[] = {
{
.iv = 0,
.level = 30,
diff --git a/src/data/trainers_de.h b/src/data/trainers_de.h
index 7344347e1..46d64d8dc 100644
--- a/src/data/trainers_de.h
+++ b/src/data/trainers_de.h
@@ -10,7 +10,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 0,
- .party = NULL
+ .party = {.NoItemDefaultMoves = NULL }
},
[TRAINER_ARCHIE_1] =
@@ -24,7 +24,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Archie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Archie1 }
},
[TRAINER_GRUNT_1] =
@@ -38,7 +38,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt1 }
},
[TRAINER_GRUNT_2] =
@@ -52,7 +52,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Grunt2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt2 }
},
[TRAINER_GRUNT_3] =
@@ -66,7 +66,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt3 }
},
[TRAINER_GRUNT_4] =
@@ -80,7 +80,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt4 }
},
[TRAINER_GRUNT_5] =
@@ -94,7 +94,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt5 }
},
[TRAINER_GRUNT_6] =
@@ -108,7 +108,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt6
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt6 }
},
[TRAINER_GRUNT_7] =
@@ -122,7 +122,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt7
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt7 }
},
[TRAINER_GRUNT_8] =
@@ -136,7 +136,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt8
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt8 }
},
[TRAINER_GRUNT_9] =
@@ -150,7 +150,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt9
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt9 }
},
[TRAINER_GRUNT_10] =
@@ -164,7 +164,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt10
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt10 }
},
[TRAINER_GRUNT_11] =
@@ -178,7 +178,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt11
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt11 }
},
[TRAINER_GRUNT_12] =
@@ -192,7 +192,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt12
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt12 }
},
[TRAINER_GRUNT_13] =
@@ -206,7 +206,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt13
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt13 }
},
[TRAINER_GRUNT_14] =
@@ -220,7 +220,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt14
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt14 }
},
[TRAINER_GRUNT_15] =
@@ -234,7 +234,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt15
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt15 }
},
[TRAINER_GRUNT_16] =
@@ -248,7 +248,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt16
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt16 }
},
[TRAINER_GRUNT_17] =
@@ -262,7 +262,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt17
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt17 }
},
[TRAINER_GRUNT_18] =
@@ -276,7 +276,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt18
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt18 }
},
[TRAINER_GRUNT_19] =
@@ -290,7 +290,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt19
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt19 }
},
[TRAINER_GRUNT_20] =
@@ -304,7 +304,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt20
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt20 }
},
[TRAINER_GRUNT_21] =
@@ -318,7 +318,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt21
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt21 }
},
[TRAINER_GRUNT_22] =
@@ -332,7 +332,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt22
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt22 }
},
[TRAINER_GRUNT_23] =
@@ -346,7 +346,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt23
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt23 }
},
[TRAINER_GRUNT_24] =
@@ -360,7 +360,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt24
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt24 }
},
[TRAINER_GRUNT_25] =
@@ -374,7 +374,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt25
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt25 }
},
[TRAINER_GRUNT_26] =
@@ -388,7 +388,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt26
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt26 }
},
[TRAINER_GRUNT_27] =
@@ -402,7 +402,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt27
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt27 }
},
[TRAINER_ANONYMOUS_1] =
@@ -416,7 +416,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Anonymous1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous1 }
},
[TRAINER_MATT_1] =
@@ -430,7 +430,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Matt1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Matt1 }
},
[TRAINER_MATT_2] =
@@ -444,7 +444,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Matt2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Matt2 }
},
[TRAINER_SHELLY_1] =
@@ -458,7 +458,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelly1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelly1 }
},
[TRAINER_SHELLY_2] =
@@ -472,7 +472,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelly2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelly2 }
},
[TRAINER_ARCHIE_2] =
@@ -486,7 +486,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Archie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Archie2 }
},
[TRAINER_ARCHIE_3] =
@@ -500,7 +500,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Archie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Archie3 }
},
[TRAINER_DAISY] =
@@ -514,7 +514,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Daisy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Daisy }
},
[TRAINER_ROSE_1] =
@@ -528,7 +528,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rose1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose1 }
},
[TRAINER_LILY] =
@@ -542,7 +542,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lily
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lily }
},
[TRAINER_VIOLET] =
@@ -556,7 +556,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Violet
+ .party = {.NoItemDefaultMoves = gTrainerParty_Violet }
},
[TRAINER_ROSE_2] =
@@ -570,7 +570,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rose2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose2 }
},
[TRAINER_ROSE_3] =
@@ -584,7 +584,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Rose3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose3 }
},
[TRAINER_ROSE_4] =
@@ -598,7 +598,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Rose4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose4 }
},
[TRAINER_ROSE_5] =
@@ -612,7 +612,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Rose5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose5 }
},
[TRAINER_DUSTY_1] =
@@ -626,7 +626,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty1
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty1 }
},
[TRAINER_CHIP] =
@@ -640,7 +640,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Chip
+ .party = {.NoItemCustomMoves = gTrainerParty_Chip }
},
[TRAINER_FOSTER] =
@@ -654,7 +654,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Foster
+ .party = {.NoItemCustomMoves = gTrainerParty_Foster }
},
[TRAINER_DUSTY_2] =
@@ -668,7 +668,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty2
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty2 }
},
[TRAINER_DUSTY_3] =
@@ -682,7 +682,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty3
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty3 }
},
[TRAINER_DUSTY_4] =
@@ -696,7 +696,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty4
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty4 }
},
[TRAINER_DUSTY_5] =
@@ -710,7 +710,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty5
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty5 }
},
[TRAINER_GABBY_AND_TY_1] =
@@ -724,7 +724,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy1
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy1 }
},
[TRAINER_GABBY_AND_TY_2] =
@@ -738,7 +738,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy2
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy2 }
},
[TRAINER_GABBY_AND_TY_3] =
@@ -752,7 +752,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy3
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy3 }
},
[TRAINER_GABBY_AND_TY_4] =
@@ -766,7 +766,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy4
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy4 }
},
[TRAINER_GABBY_AND_TY_5] =
@@ -780,7 +780,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy5
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy5 }
},
[TRAINER_GABBY_AND_TY_6] =
@@ -794,7 +794,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy6
+ .party = {.NoItemCustomMoves = gTrainerParty_GabbyAndTy6 }
},
[TRAINER_LOLA_1] =
@@ -808,7 +808,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola1 }
},
[TRAINER_CARMEN] =
@@ -822,7 +822,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Carmen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carmen }
},
[TRAINER_GWEN] =
@@ -836,7 +836,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Gwen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Gwen }
},
[TRAINER_LOLA_2] =
@@ -850,7 +850,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola2 }
},
[TRAINER_LOLA_3] =
@@ -864,7 +864,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola3 }
},
[TRAINER_LOLA_4] =
@@ -878,7 +878,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola4 }
},
[TRAINER_LOLA_5] =
@@ -892,7 +892,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola5 }
},
[TRAINER_RICKY_1] =
@@ -906,7 +906,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky1
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky1 }
},
[TRAINER_SIMON] =
@@ -920,7 +920,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Simon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Simon }
},
[TRAINER_CHARLIE] =
@@ -934,7 +934,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Charlie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Charlie }
},
[TRAINER_RICKY_2] =
@@ -948,7 +948,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky2
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky2 }
},
[TRAINER_RICKY_3] =
@@ -962,7 +962,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky3
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky3 }
},
[TRAINER_RICKY_4] =
@@ -976,7 +976,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky4
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky4 }
},
[TRAINER_RICKY_5] =
@@ -990,7 +990,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky5
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky5 }
},
[TRAINER_RANDALL] =
@@ -1004,7 +1004,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Randall
+ .party = {.NoItemDefaultMoves = gTrainerParty_Randall }
},
[TRAINER_PARKER] =
@@ -1018,7 +1018,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Parker
+ .party = {.NoItemDefaultMoves = gTrainerParty_Parker }
},
[TRAINER_GEORGE] =
@@ -1032,7 +1032,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_George
+ .party = {.NoItemDefaultMoves = gTrainerParty_George }
},
[TRAINER_BERKE] =
@@ -1046,7 +1046,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Berke
+ .party = {.NoItemDefaultMoves = gTrainerParty_Berke }
},
[TRAINER_CLYDE] =
@@ -1060,7 +1060,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Clyde
+ .party = {.NoItemCustomMoves = gTrainerParty_Clyde }
},
[TRAINER_VINCENT] =
@@ -1074,7 +1074,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Vincent
+ .party = {.NoItemDefaultMoves = gTrainerParty_Vincent }
},
[TRAINER_LEROY] =
@@ -1088,7 +1088,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Leroy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Leroy }
},
[TRAINER_WILTON_1] =
@@ -1102,7 +1102,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton1 }
},
[TRAINER_EDGAR] =
@@ -1116,7 +1116,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Edgar
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edgar }
},
[TRAINER_ALBERT] =
@@ -1130,7 +1130,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Albert
+ .party = {.NoItemDefaultMoves = gTrainerParty_Albert }
},
[TRAINER_SAMUEL] =
@@ -1144,7 +1144,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Samuel
+ .party = {.NoItemDefaultMoves = gTrainerParty_Samuel }
},
[TRAINER_VITO] =
@@ -1158,7 +1158,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Vito
+ .party = {.NoItemDefaultMoves = gTrainerParty_Vito }
},
[TRAINER_OWEN] =
@@ -1172,7 +1172,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Owen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Owen }
},
[TRAINER_WILTON_2] =
@@ -1186,7 +1186,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton2 }
},
[TRAINER_WILTON_3] =
@@ -1200,7 +1200,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton3 }
},
[TRAINER_WILTON_4] =
@@ -1214,7 +1214,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton4 }
},
[TRAINER_WILTON_5] =
@@ -1228,7 +1228,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton5 }
},
[TRAINER_WARREN] =
@@ -1242,7 +1242,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Warren
+ .party = {.NoItemDefaultMoves = gTrainerParty_Warren }
},
[TRAINER_MARY] =
@@ -1256,7 +1256,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Mary
+ .party = {.NoItemDefaultMoves = gTrainerParty_Mary }
},
[TRAINER_LORI] =
@@ -1270,7 +1270,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Lori
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lori }
},
[TRAINER_JODY] =
@@ -1284,7 +1284,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Jody
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jody }
},
[TRAINER_WENDY] =
@@ -1298,7 +1298,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Wendy
+ .party = {.NoItemCustomMoves = gTrainerParty_Wendy }
},
[TRAINER_ELAINE] =
@@ -1312,7 +1312,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Elaine
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elaine }
},
[TRAINER_BROOKE_1] =
@@ -1326,7 +1326,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke1 }
},
[TRAINER_JENNIFER] =
@@ -1340,7 +1340,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Jennifer
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jennifer }
},
[TRAINER_HOPE] =
@@ -1354,7 +1354,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Hope
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hope }
},
[TRAINER_SHANNON] =
@@ -1368,7 +1368,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Shannon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shannon }
},
[TRAINER_MICHELLE] =
@@ -1382,7 +1382,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Michelle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Michelle }
},
[TRAINER_CAROLINE] =
@@ -1396,7 +1396,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Caroline
+ .party = {.NoItemDefaultMoves = gTrainerParty_Caroline }
},
[TRAINER_JULIE] =
@@ -1410,7 +1410,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Julie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Julie }
},
[TRAINER_BROOKE_2] =
@@ -1424,7 +1424,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke2 }
},
[TRAINER_BROOKE_3] =
@@ -1438,7 +1438,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke3 }
},
[TRAINER_BROOKE_4] =
@@ -1452,7 +1452,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke4 }
},
[TRAINER_BROOKE_5] =
@@ -1466,7 +1466,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke5 }
},
[TRAINER_PATRICIA] =
@@ -1480,7 +1480,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Patricia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Patricia }
},
[TRAINER_KINDRA] =
@@ -1494,7 +1494,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kindra
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kindra }
},
[TRAINER_TAMMY] =
@@ -1508,7 +1508,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tammy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tammy }
},
[TRAINER_VALERIE_1] =
@@ -1522,7 +1522,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Valerie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie1 }
},
[TRAINER_TASHA] =
@@ -1536,7 +1536,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tasha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tasha }
},
[TRAINER_VALERIE_2] =
@@ -1550,7 +1550,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Valerie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie2 }
},
[TRAINER_VALERIE_3] =
@@ -1564,7 +1564,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Valerie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie3 }
},
[TRAINER_VALERIE_4] =
@@ -1578,7 +1578,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Valerie4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie4 }
},
[TRAINER_VALERIE_5] =
@@ -1592,7 +1592,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Valerie5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie5 }
},
[TRAINER_CINDY_1] =
@@ -1606,7 +1606,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy1
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy1 }
},
[TRAINER_ANONYMOUS_2] =
@@ -1620,7 +1620,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous2 }
},
[TRAINER_BRIANNA_1] =
@@ -1634,7 +1634,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Brianna1
+ .party = {.NoItemCustomMoves = gTrainerParty_Brianna1 }
},
[TRAINER_CINDY_2] =
@@ -1648,7 +1648,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy2
+ .party = {.NoItemCustomMoves = gTrainerParty_Cindy2 }
},
[TRAINER_BRIANNA_2] =
@@ -1662,7 +1662,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Brianna2
+ .party = {.ItemDefaultMoves = gTrainerParty_Brianna2 }
},
[TRAINER_ANETTE] =
@@ -1676,7 +1676,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anette
+ .party = {.ItemDefaultMoves = gTrainerParty_Anette }
},
[TRAINER_CINDY_3] =
@@ -1690,7 +1690,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy3
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy3 }
},
[TRAINER_CINDY_4] =
@@ -1704,7 +1704,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy4
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy4 }
},
[TRAINER_CINDY_5] =
@@ -1718,7 +1718,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy5
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy5 }
},
[TRAINER_CINDY_6] =
@@ -1732,7 +1732,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy6
+ .party = {.ItemCustomMoves = gTrainerParty_Cindy6 }
},
[TRAINER_MELISSA] =
@@ -1746,7 +1746,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Melissa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Melissa }
},
[TRAINER_SHEILA] =
@@ -1760,7 +1760,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sheila
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sheila }
},
[TRAINER_SHIRLEY] =
@@ -1774,7 +1774,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Shirley
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shirley }
},
[TRAINER_JESSICA_1] =
@@ -1788,7 +1788,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica1
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica1 }
},
[TRAINER_CONNIE] =
@@ -1802,7 +1802,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Connie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Connie }
},
[TRAINER_BRIDGET] =
@@ -1816,7 +1816,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Bridget
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bridget }
},
[TRAINER_OLIVIA] =
@@ -1830,7 +1830,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Olivia
+ .party = {.NoItemCustomMoves = gTrainerParty_Olivia }
},
[TRAINER_TIFFANY] =
@@ -1844,7 +1844,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tiffany
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tiffany }
},
[TRAINER_JESSICA_2] =
@@ -1858,7 +1858,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica2
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica2 }
},
[TRAINER_JESSICA_3] =
@@ -1872,7 +1872,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica3
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica3 }
},
[TRAINER_JESSICA_4] =
@@ -1886,7 +1886,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica4
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica4 }
},
[TRAINER_JESSICA_5] =
@@ -1900,7 +1900,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica5
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica5 }
},
[TRAINER_WINSTON_1] =
@@ -1914,7 +1914,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston1
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston1 }
},
[TRAINER_ANONYMOUS_3] =
@@ -1928,7 +1928,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous3 }
},
[TRAINER_GARRET] =
@@ -1942,7 +1942,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Garret
+ .party = {.ItemDefaultMoves = gTrainerParty_Garret }
},
[TRAINER_WINSTON_2] =
@@ -1956,7 +1956,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston2
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston2 }
},
[TRAINER_WINSTON_3] =
@@ -1970,7 +1970,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston3
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston3 }
},
[TRAINER_WINSTON_4] =
@@ -1984,7 +1984,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston4
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston4 }
},
[TRAINER_WINSTON_5] =
@@ -1998,7 +1998,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston5
+ .party = {.ItemCustomMoves = gTrainerParty_Winston5 }
},
[TRAINER_STEVE_1] =
@@ -2012,7 +2012,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Steve1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve1 }
},
[TRAINER_CHRIS] =
@@ -2026,7 +2026,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Chris
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chris }
},
[TRAINER_MARK] =
@@ -2040,7 +2040,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Mark
+ .party = {.NoItemDefaultMoves = gTrainerParty_Mark }
},
[TRAINER_KENN] =
@@ -2054,7 +2054,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kenn
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kenn }
},
[TRAINER_STEVE_2] =
@@ -2068,7 +2068,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Steve2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve2 }
},
[TRAINER_STEVE_3] =
@@ -2082,7 +2082,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Steve3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve3 }
},
[TRAINER_STEVE_4] =
@@ -2096,7 +2096,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Steve4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve4 }
},
[TRAINER_STEVE_5] =
@@ -2110,7 +2110,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Steve5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve5 }
},
[TRAINER_LUIS] =
@@ -2124,7 +2124,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Luis
+ .party = {.NoItemDefaultMoves = gTrainerParty_Luis }
},
[TRAINER_AUSTIN] =
@@ -2138,7 +2138,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Austin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Austin }
},
[TRAINER_DOUGLAS] =
@@ -2152,7 +2152,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Douglas
+ .party = {.NoItemDefaultMoves = gTrainerParty_Douglas }
},
[TRAINER_DARRIN] =
@@ -2166,7 +2166,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Darrin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Darrin }
},
[TRAINER_TONY_1] =
@@ -2180,7 +2180,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tony1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony1 }
},
[TRAINER_JEROME] =
@@ -2194,7 +2194,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerome
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerome }
},
[TRAINER_MATTHEW] =
@@ -2208,7 +2208,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Matthew
+ .party = {.NoItemDefaultMoves = gTrainerParty_Matthew }
},
[TRAINER_DAVID] =
@@ -2222,7 +2222,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_David
+ .party = {.NoItemDefaultMoves = gTrainerParty_David }
},
[TRAINER_SPENCER] =
@@ -2236,7 +2236,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Spencer
+ .party = {.NoItemDefaultMoves = gTrainerParty_Spencer }
},
[TRAINER_ROLAND] =
@@ -2250,7 +2250,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Roland
+ .party = {.NoItemDefaultMoves = gTrainerParty_Roland }
},
[TRAINER_CODY] =
@@ -2264,7 +2264,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cody
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cody }
},
[TRAINER_STAN] =
@@ -2278,7 +2278,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Stan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Stan }
},
[TRAINER_BARRY] =
@@ -2292,7 +2292,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Barry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Barry }
},
[TRAINER_DEAN] =
@@ -2306,7 +2306,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dean
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dean }
},
[TRAINER_RODNEY] =
@@ -2320,7 +2320,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rodney
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rodney }
},
[TRAINER_RICHARD] =
@@ -2334,7 +2334,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Richard
+ .party = {.NoItemDefaultMoves = gTrainerParty_Richard }
},
[TRAINER_HERMAN] =
@@ -2348,7 +2348,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Herman
+ .party = {.NoItemDefaultMoves = gTrainerParty_Herman }
},
[TRAINER_ANONYMOUS_4] =
@@ -2362,7 +2362,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous4 }
},
[TRAINER_GILBERT] =
@@ -2376,7 +2376,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Gilbert
+ .party = {.NoItemDefaultMoves = gTrainerParty_Gilbert }
},
[TRAINER_FRANKLIN] =
@@ -2390,7 +2390,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Franklin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Franklin }
},
[TRAINER_DANNY] =
@@ -2404,7 +2404,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Danny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Danny }
},
[TRAINER_JACK] =
@@ -2418,7 +2418,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jack
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jack }
},
[TRAINER_DUDLEY] =
@@ -2432,7 +2432,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dudley
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dudley }
},
[TRAINER_CHAD] =
@@ -2446,7 +2446,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Chad
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chad }
},
[TRAINER_TONY_2] =
@@ -2460,7 +2460,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tony2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony2 }
},
[TRAINER_TONY_3] =
@@ -2474,7 +2474,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tony3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony3 }
},
[TRAINER_TONY_4] =
@@ -2488,7 +2488,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tony4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony4 }
},
[TRAINER_TONY_5] =
@@ -2502,7 +2502,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tony5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony5 }
},
[TRAINER_HIDEKI] =
@@ -2516,7 +2516,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hideki
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hideki }
},
[TRAINER_HITOSHI] =
@@ -2530,7 +2530,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Hitoshi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hitoshi }
},
[TRAINER_KIYO] =
@@ -2544,7 +2544,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Kiyo
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kiyo }
},
[TRAINER_KOICHI] =
@@ -2558,7 +2558,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Koichi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Koichi }
},
[TRAINER_NOB_1] =
@@ -2572,7 +2572,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nob1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob1 }
},
[TRAINER_NOB_2] =
@@ -2586,7 +2586,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nob2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob2 }
},
[TRAINER_NOB_3] =
@@ -2600,7 +2600,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nob3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob3 }
},
[TRAINER_NOB_4] =
@@ -2614,7 +2614,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nob4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob4 }
},
[TRAINER_NOB_5] =
@@ -2628,7 +2628,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Nob5
+ .party = {.ItemDefaultMoves = gTrainerParty_Nob5 }
},
[TRAINER_YUJI] =
@@ -2642,7 +2642,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Yuji
+ .party = {.NoItemDefaultMoves = gTrainerParty_Yuji }
},
[TRAINER_DAISUKE] =
@@ -2656,7 +2656,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Daisuke
+ .party = {.NoItemDefaultMoves = gTrainerParty_Daisuke }
},
[TRAINER_ATSUSHI] =
@@ -2670,7 +2670,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Atsushi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Atsushi }
},
[TRAINER_KIRK] =
@@ -2684,7 +2684,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kirk
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kirk }
},
[TRAINER_SCOTT] =
@@ -2698,7 +2698,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Scott
+ .party = {.NoItemDefaultMoves = gTrainerParty_Scott }
},
[TRAINER_HARVEY] =
@@ -2712,7 +2712,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Harvey
+ .party = {.NoItemDefaultMoves = gTrainerParty_Harvey }
},
[TRAINER_SHAWN] =
@@ -2726,7 +2726,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Shawn
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shawn }
},
[TRAINER_RANDY] =
@@ -2740,7 +2740,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Randy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Randy }
},
[TRAINER_DALTON_1] =
@@ -2754,7 +2754,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton1 }
},
[TRAINER_DALTON_2] =
@@ -2768,7 +2768,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton2 }
},
[TRAINER_DALTON_3] =
@@ -2782,7 +2782,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton3 }
},
[TRAINER_DALTON_4] =
@@ -2796,7 +2796,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton4 }
},
[TRAINER_DALTON_5] =
@@ -2810,7 +2810,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton5 }
},
[TRAINER_COLE] =
@@ -2824,7 +2824,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Cole
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cole }
},
[TRAINER_FLINT] =
@@ -2838,7 +2838,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Flint
+ .party = {.NoItemDefaultMoves = gTrainerParty_Flint }
},
[TRAINER_AXLE] =
@@ -2852,7 +2852,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Axle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Axle }
},
[TRAINER_JAKE] =
@@ -2866,7 +2866,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jake
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jake }
},
[TRAINER_ANDY] =
@@ -2880,7 +2880,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Andy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Andy }
},
[TRAINER_BERNIE_1] =
@@ -2894,7 +2894,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie1 }
},
[TRAINER_BERNIE_2] =
@@ -2908,7 +2908,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie2 }
},
[TRAINER_BERNIE_3] =
@@ -2922,7 +2922,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie3 }
},
[TRAINER_BERNIE_4] =
@@ -2936,7 +2936,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie4 }
},
[TRAINER_BERNIE_5] =
@@ -2950,7 +2950,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie5 }
},
[TRAINER_DREW] =
@@ -2964,7 +2964,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Drew
+ .party = {.NoItemCustomMoves = gTrainerParty_Drew }
},
[TRAINER_CLIFF] =
@@ -2978,7 +2978,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Cliff
+ .party = {.NoItemCustomMoves = gTrainerParty_Cliff }
},
[TRAINER_LARRY] =
@@ -2992,7 +2992,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Larry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Larry }
},
[TRAINER_SHANE] =
@@ -3006,7 +3006,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Shane
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shane }
},
[TRAINER_JUSTIN] =
@@ -3020,7 +3020,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Justin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Justin }
},
[TRAINER_ETHAN_1] =
@@ -3034,7 +3034,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Ethan1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan1 }
},
[TRAINER_JEFF] =
@@ -3048,7 +3048,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jeff
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jeff }
},
[TRAINER_TRAVIS] =
@@ -3062,7 +3062,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Travis
+ .party = {.NoItemDefaultMoves = gTrainerParty_Travis }
},
[TRAINER_ETHAN_2] =
@@ -3076,7 +3076,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Ethan2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan2 }
},
[TRAINER_ETHAN_3] =
@@ -3090,7 +3090,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Ethan3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan3 }
},
[TRAINER_ETHAN_4] =
@@ -3104,7 +3104,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ethan4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan4 }
},
[TRAINER_ETHAN_5] =
@@ -3118,7 +3118,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ethan5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan5 }
},
[TRAINER_BRENT] =
@@ -3132,7 +3132,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Brent
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brent }
},
[TRAINER_DONALD] =
@@ -3146,7 +3146,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Donald
+ .party = {.NoItemDefaultMoves = gTrainerParty_Donald }
},
[TRAINER_TAYLOR] =
@@ -3160,7 +3160,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Taylor
+ .party = {.NoItemDefaultMoves = gTrainerParty_Taylor }
},
[TRAINER_BRANDON_1] =
@@ -3174,7 +3174,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Brandon1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon1 }
},
[TRAINER_DEREK] =
@@ -3188,7 +3188,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Derek
+ .party = {.NoItemDefaultMoves = gTrainerParty_Derek }
},
[TRAINER_BRANDON_2] =
@@ -3202,7 +3202,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Brandon2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon2 }
},
[TRAINER_BRANDON_3] =
@@ -3216,7 +3216,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Brandon3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon3 }
},
[TRAINER_BRANDON_4] =
@@ -3230,7 +3230,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Brandon4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon4 }
},
[TRAINER_BRANDON_5] =
@@ -3244,7 +3244,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 5,
- .party = gTrainerParty_Brandon5
+ .party = {.ItemDefaultMoves = gTrainerParty_Brandon5 }
},
[TRAINER_EDWARD] =
@@ -3258,7 +3258,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Edward
+ .party = {.NoItemCustomMoves = gTrainerParty_Edward }
},
[TRAINER_PRESTON] =
@@ -3272,7 +3272,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Preston
+ .party = {.NoItemDefaultMoves = gTrainerParty_Preston }
},
[TRAINER_VIRGIL] =
@@ -3286,7 +3286,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Virgil
+ .party = {.NoItemDefaultMoves = gTrainerParty_Virgil }
},
[TRAINER_FRITZ] =
@@ -3300,7 +3300,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Fritz
+ .party = {.NoItemDefaultMoves = gTrainerParty_Fritz }
},
[TRAINER_WILLIAM] =
@@ -3314,7 +3314,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_William
+ .party = {.NoItemDefaultMoves = gTrainerParty_William }
},
[TRAINER_JOSHUA] =
@@ -3328,7 +3328,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Joshua
+ .party = {.NoItemDefaultMoves = gTrainerParty_Joshua }
},
[TRAINER_CAMERON_1] =
@@ -3342,7 +3342,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron1 }
},
[TRAINER_CAMERON_2] =
@@ -3356,7 +3356,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron2 }
},
[TRAINER_CAMERON_3] =
@@ -3370,7 +3370,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron3 }
},
[TRAINER_CAMERON_4] =
@@ -3384,7 +3384,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron4 }
},
[TRAINER_CAMERON_5] =
@@ -3398,7 +3398,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron5 }
},
[TRAINER_JACLYN] =
@@ -3412,7 +3412,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jaclyn
+ .party = {.NoItemCustomMoves = gTrainerParty_Jaclyn }
},
[TRAINER_HANNAH] =
@@ -3426,7 +3426,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Hannah
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hannah }
},
[TRAINER_SAMANTHA] =
@@ -3440,7 +3440,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Samantha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Samantha }
},
[TRAINER_MAURA] =
@@ -3454,7 +3454,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Maura
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maura }
},
[TRAINER_KAYLA] =
@@ -3468,7 +3468,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kayla
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kayla }
},
[TRAINER_ALEXIS] =
@@ -3482,7 +3482,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Alexis
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alexis }
},
[TRAINER_JACKI_1] =
@@ -3496,7 +3496,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki1 }
},
[TRAINER_JACKI_2] =
@@ -3510,7 +3510,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki2 }
},
[TRAINER_JACKI_3] =
@@ -3524,7 +3524,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki3 }
},
[TRAINER_JACKI_4] =
@@ -3538,7 +3538,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki4 }
},
[TRAINER_JACKI_5] =
@@ -3552,7 +3552,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki5 }
},
[TRAINER_WALTER_1] =
@@ -3566,7 +3566,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Walter1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Walter1 }
},
[TRAINER_TUCKER] =
@@ -3580,7 +3580,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tucker
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tucker }
},
[TRAINER_THOMAS] =
@@ -3594,7 +3594,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Thomas
+ .party = {.NoItemDefaultMoves = gTrainerParty_Thomas }
},
[TRAINER_WALTER_2] =
@@ -3608,7 +3608,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Walter2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Walter2 }
},
[TRAINER_WALTER_3] =
@@ -3622,7 +3622,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Walter3
+ .party = {.NoItemCustomMoves = gTrainerParty_Walter3 }
},
[TRAINER_WALTER_4] =
@@ -3636,7 +3636,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Walter4
+ .party = {.NoItemCustomMoves = gTrainerParty_Walter4 }
},
[TRAINER_WALTER_5] =
@@ -3650,7 +3650,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Walter5
+ .party = {.NoItemCustomMoves = gTrainerParty_Walter5 }
},
[TRAINER_SIDNEY] =
@@ -3664,7 +3664,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Sidney
+ .party = {.ItemCustomMoves = gTrainerParty_Sidney }
},
[TRAINER_PHOEBE] =
@@ -3678,7 +3678,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Phoebe
+ .party = {.ItemCustomMoves = gTrainerParty_Phoebe }
},
[TRAINER_GLACIA] =
@@ -3692,7 +3692,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Glacia
+ .party = {.ItemCustomMoves = gTrainerParty_Glacia }
},
[TRAINER_DRAKE] =
@@ -3706,7 +3706,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Drake
+ .party = {.ItemCustomMoves = gTrainerParty_Drake }
},
[TRAINER_ROXANNE] =
@@ -3720,7 +3720,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Roxanne
+ .party = {.NoItemCustomMoves = gTrainerParty_Roxanne }
},
[TRAINER_BRAWLY] =
@@ -3734,7 +3734,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Brawly
+ .party = {.NoItemCustomMoves = gTrainerParty_Brawly }
},
[TRAINER_WATTSON] =
@@ -3748,7 +3748,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wattson
+ .party = {.NoItemCustomMoves = gTrainerParty_Wattson }
},
[TRAINER_FLANNERY] =
@@ -3762,7 +3762,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Flannery
+ .party = {.NoItemCustomMoves = gTrainerParty_Flannery }
},
[TRAINER_NORMAN] =
@@ -3776,7 +3776,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Norman
+ .party = {.NoItemCustomMoves = gTrainerParty_Norman }
},
[TRAINER_WINONA] =
@@ -3790,7 +3790,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Winona
+ .party = {.NoItemCustomMoves = gTrainerParty_Winona }
},
[TRAINER_TATE_AND_LIZA] =
@@ -3804,7 +3804,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_TateAndLiza
+ .party = {.ItemCustomMoves = gTrainerParty_TateAndLiza }
},
[TRAINER_WALLACE] =
@@ -3818,7 +3818,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wallace
+ .party = {.NoItemCustomMoves = gTrainerParty_Wallace }
},
[TRAINER_JERRY_1] =
@@ -3832,7 +3832,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jerry1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry1 }
},
[TRAINER_TED] =
@@ -3846,7 +3846,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ted
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ted }
},
[TRAINER_PAUL] =
@@ -3860,7 +3860,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Paul
+ .party = {.NoItemDefaultMoves = gTrainerParty_Paul }
},
[TRAINER_JERRY_2] =
@@ -3874,7 +3874,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerry2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry2 }
},
[TRAINER_JERRY_3] =
@@ -3888,7 +3888,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerry3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry3 }
},
[TRAINER_JERRY_4] =
@@ -3902,7 +3902,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerry4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry4 }
},
[TRAINER_JERRY_5] =
@@ -3916,7 +3916,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jerry5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry5 }
},
[TRAINER_KAREN_1] =
@@ -3930,7 +3930,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen1 }
},
[TRAINER_GEORGIA] =
@@ -3944,7 +3944,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Georgia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Georgia }
},
[TRAINER_KAREN_2] =
@@ -3958,7 +3958,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen2 }
},
[TRAINER_KAREN_3] =
@@ -3972,7 +3972,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen3 }
},
[TRAINER_KAREN_4] =
@@ -3986,7 +3986,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen4 }
},
[TRAINER_KAREN_5] =
@@ -4000,7 +4000,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen5 }
},
[TRAINER_KATE_AND_JOY] =
@@ -4014,7 +4014,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_KateAndJoy
+ .party = {.NoItemCustomMoves = gTrainerParty_KateAndJoy }
},
[TRAINER_ANNA_AND_MEG_1] =
@@ -4028,7 +4028,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg1
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg1 }
},
[TRAINER_ANNA_AND_MEG_2] =
@@ -4042,7 +4042,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg2
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg2 }
},
[TRAINER_ANNA_AND_MEG_3] =
@@ -4056,7 +4056,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg3
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg3 }
},
[TRAINER_ANNA_AND_MEG_4] =
@@ -4070,7 +4070,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg4
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg4 }
},
[TRAINER_ANNA_AND_MEG_5] =
@@ -4084,7 +4084,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg5
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg5 }
},
[TRAINER_VICTOR] =
@@ -4098,7 +4098,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Victor
+ .party = {.ItemDefaultMoves = gTrainerParty_Victor }
},
[TRAINER_MIGUEL_1] =
@@ -4112,7 +4112,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel1
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel1 }
},
[TRAINER_COLTON] =
@@ -4126,7 +4126,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Colton
+ .party = {.ItemCustomMoves = gTrainerParty_Colton }
},
[TRAINER_MIGUEL_2] =
@@ -4140,7 +4140,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel2
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel2 }
},
[TRAINER_MIGUEL_3] =
@@ -4154,7 +4154,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel3
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel3 }
},
[TRAINER_MIGUEL_4] =
@@ -4168,7 +4168,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel4
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel4 }
},
[TRAINER_MIGUEL_5] =
@@ -4182,7 +4182,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel5
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel5 }
},
[TRAINER_VICTORIA] =
@@ -4196,7 +4196,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 1,
- .party = gTrainerParty_Victoria
+ .party = {.ItemDefaultMoves = gTrainerParty_Victoria }
},
[TRAINER_VANESSA] =
@@ -4210,7 +4210,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Vanessa
+ .party = {.ItemDefaultMoves = gTrainerParty_Vanessa }
},
[TRAINER_MARISSA] =
@@ -4224,7 +4224,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Marissa
+ .party = {.ItemDefaultMoves = gTrainerParty_Marissa }
},
[TRAINER_ISABEL_1] =
@@ -4238,7 +4238,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel1
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel1 }
},
[TRAINER_ISABEL_2] =
@@ -4252,7 +4252,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel2
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel2 }
},
[TRAINER_ISABEL_3] =
@@ -4266,7 +4266,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel3
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel3 }
},
[TRAINER_ISABEL_4] =
@@ -4280,7 +4280,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel4
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel4 }
},
[TRAINER_ISABEL_5] =
@@ -4294,7 +4294,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel5
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel5 }
},
[TRAINER_TIMOTHY_1] =
@@ -4308,7 +4308,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Timothy1 }
},
[TRAINER_TIMOTHY_2] =
@@ -4322,7 +4322,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy2
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy2 }
},
[TRAINER_TIMOTHY_3] =
@@ -4336,7 +4336,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy3
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy3 }
},
[TRAINER_TIMOTHY_4] =
@@ -4350,7 +4350,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy4
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy4 }
},
[TRAINER_TIMOTHY_5] =
@@ -4364,7 +4364,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy5
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy5 }
},
[TRAINER_VICKY] =
@@ -4378,7 +4378,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Vicky
+ .party = {.NoItemCustomMoves = gTrainerParty_Vicky }
},
[TRAINER_SHELBY_1] =
@@ -4392,7 +4392,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby1 }
},
[TRAINER_SHELBY_2] =
@@ -4406,7 +4406,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby2 }
},
[TRAINER_SHELBY_3] =
@@ -4420,7 +4420,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby3 }
},
[TRAINER_SHELBY_4] =
@@ -4434,7 +4434,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby4 }
},
[TRAINER_SHELBY_5] =
@@ -4448,7 +4448,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby5 }
},
[TRAINER_CALVIN_1] =
@@ -4462,7 +4462,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Calvin1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin1 }
},
[TRAINER_BILLY] =
@@ -4476,7 +4476,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Billy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Billy }
},
[TRAINER_JOSH] =
@@ -4490,7 +4490,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Josh
+ .party = {.NoItemCustomMoves = gTrainerParty_Josh }
},
[TRAINER_TOMMY] =
@@ -4504,7 +4504,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tommy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tommy }
},
[TRAINER_JOEY] =
@@ -4518,7 +4518,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Joey
+ .party = {.NoItemDefaultMoves = gTrainerParty_Joey }
},
[TRAINER_BEN] =
@@ -4532,7 +4532,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ben
+ .party = {.NoItemCustomMoves = gTrainerParty_Ben }
},
[TRAINER_ANONYMOUS_5] =
@@ -4546,7 +4546,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Anonymous5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous5 }
},
[TRAINER_KEVIN] =
@@ -4560,7 +4560,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kevin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kevin }
},
[TRAINER_NEAL] =
@@ -4574,7 +4574,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Neal
+ .party = {.NoItemDefaultMoves = gTrainerParty_Neal }
},
[TRAINER_DILLON] =
@@ -4588,7 +4588,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dillon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dillon }
},
[TRAINER_CALVIN_2] =
@@ -4602,7 +4602,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Calvin2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin2 }
},
[TRAINER_CALVIN_3] =
@@ -4616,7 +4616,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Calvin3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin3 }
},
[TRAINER_CALVIN_4] =
@@ -4630,7 +4630,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Calvin4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin4 }
},
[TRAINER_CALVIN_5] =
@@ -4644,7 +4644,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Calvin5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin5 }
},
[TRAINER_EDDIE] =
@@ -4658,7 +4658,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Eddie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Eddie }
},
[TRAINER_ALLEN] =
@@ -4672,7 +4672,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Allen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Allen }
},
[TRAINER_TIMMY] =
@@ -4686,7 +4686,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Timmy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Timmy }
},
[TRAINER_STEVEN] =
@@ -4700,7 +4700,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 6,
- .party = gTrainerParty_Steven
+ .party = {.ItemCustomMoves = gTrainerParty_Steven }
},
[TRAINER_ANDREW] =
@@ -4714,7 +4714,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Andrew
+ .party = {.NoItemDefaultMoves = gTrainerParty_Andrew }
},
[TRAINER_IVAN] =
@@ -4728,7 +4728,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ivan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ivan }
},
[TRAINER_CLAUDE] =
@@ -4742,7 +4742,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Claude
+ .party = {.NoItemDefaultMoves = gTrainerParty_Claude }
},
[TRAINER_ELLIOT_1] =
@@ -4756,7 +4756,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Elliot1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot1 }
},
[TRAINER_NED] =
@@ -4770,7 +4770,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ned
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ned }
},
[TRAINER_DALE] =
@@ -4784,7 +4784,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Dale
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dale }
},
[TRAINER_NOLAN] =
@@ -4798,7 +4798,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nolan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nolan }
},
[TRAINER_BARNY] =
@@ -4812,7 +4812,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Barny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Barny }
},
[TRAINER_WADE] =
@@ -4826,7 +4826,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Wade
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wade }
},
[TRAINER_CARTER] =
@@ -4840,7 +4840,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Carter
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carter }
},
[TRAINER_ELLIOT_2] =
@@ -4854,7 +4854,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Elliot2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot2 }
},
[TRAINER_ELLIOT_3] =
@@ -4868,7 +4868,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Elliot3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot3 }
},
[TRAINER_ELLIOT_4] =
@@ -4882,7 +4882,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Elliot4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot4 }
},
[TRAINER_ELLIOT_5] =
@@ -4896,7 +4896,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 4,
- .party = gTrainerParty_Elliot5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot5 }
},
[TRAINER_RONALD] =
@@ -4910,7 +4910,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Ronald
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ronald }
},
[TRAINER_JACOB] =
@@ -4924,7 +4924,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jacob
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacob }
},
[TRAINER_ANTHONY] =
@@ -4938,7 +4938,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Anthony
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anthony }
},
[TRAINER_BENJAMIN_1] =
@@ -4952,7 +4952,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin1 }
},
[TRAINER_BENJAMIN_2] =
@@ -4966,7 +4966,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin2 }
},
[TRAINER_BENJAMIN_3] =
@@ -4980,7 +4980,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin3 }
},
[TRAINER_BENJAMIN_4] =
@@ -4994,7 +4994,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin4 }
},
[TRAINER_BENJAMIN_5] =
@@ -5008,7 +5008,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin5 }
},
[TRAINER_ABIGAIL_1] =
@@ -5022,7 +5022,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail1 }
},
[TRAINER_JASMINE] =
@@ -5036,7 +5036,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jasmine
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jasmine }
},
[TRAINER_ABIGAIL_2] =
@@ -5050,7 +5050,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail2 }
},
[TRAINER_ABIGAIL_3] =
@@ -5064,7 +5064,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail3 }
},
[TRAINER_ABIGAIL_4] =
@@ -5078,7 +5078,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail4 }
},
[TRAINER_ABIGAIL_5] =
@@ -5092,7 +5092,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail5 }
},
[TRAINER_DYLAN_1] =
@@ -5106,7 +5106,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan1 }
},
[TRAINER_DYLAN_2] =
@@ -5120,7 +5120,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan2 }
},
[TRAINER_DYLAN_3] =
@@ -5134,7 +5134,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan3 }
},
[TRAINER_DYLAN_4] =
@@ -5148,7 +5148,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan4 }
},
[TRAINER_DYLAN_5] =
@@ -5162,7 +5162,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan5 }
},
[TRAINER_MARIA_1] =
@@ -5176,7 +5176,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria1 }
},
[TRAINER_MARIA_2] =
@@ -5190,7 +5190,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria2 }
},
[TRAINER_MARIA_3] =
@@ -5204,7 +5204,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria3 }
},
[TRAINER_MARIA_4] =
@@ -5218,7 +5218,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria4 }
},
[TRAINER_MARIA_5] =
@@ -5232,7 +5232,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria5 }
},
[TRAINER_CALEB] =
@@ -5246,7 +5246,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Caleb
+ .party = {.NoItemDefaultMoves = gTrainerParty_Caleb }
},
[TRAINER_ANONYMOUS_6] =
@@ -5260,7 +5260,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous6
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous6 }
},
[TRAINER_ISAIAH_1] =
@@ -5274,7 +5274,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah1 }
},
[TRAINER_ANONYMOUS_7] =
@@ -5288,7 +5288,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous7
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous7 }
},
[TRAINER_CHASE] =
@@ -5302,7 +5302,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Chase
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chase }
},
[TRAINER_ISAIAH_2] =
@@ -5316,7 +5316,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah2 }
},
[TRAINER_ISAIAH_3] =
@@ -5330,7 +5330,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah3 }
},
[TRAINER_ISAIAH_4] =
@@ -5344,7 +5344,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah4 }
},
[TRAINER_ISAIAH_5] =
@@ -5358,7 +5358,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah5 }
},
[TRAINER_ANONYMOUS_8] =
@@ -5372,7 +5372,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Anonymous8
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous8 }
},
[TRAINER_CONNOR] =
@@ -5386,7 +5386,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Connor
+ .party = {.NoItemDefaultMoves = gTrainerParty_Connor }
},
[TRAINER_ANONYMOUS_9] =
@@ -5400,7 +5400,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous9
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous9 }
},
[TRAINER_KATELYN_1] =
@@ -5414,7 +5414,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn1 }
},
[TRAINER_ALLISON] =
@@ -5428,7 +5428,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Allison
+ .party = {.NoItemDefaultMoves = gTrainerParty_Allison }
},
[TRAINER_KATELYN_2] =
@@ -5442,7 +5442,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn2 }
},
[TRAINER_KATELYN_3] =
@@ -5456,7 +5456,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn3 }
},
[TRAINER_KATELYN_4] =
@@ -5470,7 +5470,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn4 }
},
[TRAINER_KATELYN_5] =
@@ -5484,7 +5484,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn5 }
},
[TRAINER_NICOLAS_1] =
@@ -5498,7 +5498,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nicolas1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas1 }
},
[TRAINER_NICOLAS_2] =
@@ -5512,7 +5512,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nicolas2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas2 }
},
[TRAINER_NICOLAS_3] =
@@ -5526,7 +5526,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nicolas3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas3 }
},
[TRAINER_NICOLAS_4] =
@@ -5540,7 +5540,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nicolas4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas4 }
},
[TRAINER_NICOLAS_5] =
@@ -5554,7 +5554,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nicolas5
+ .party = {.ItemDefaultMoves = gTrainerParty_Nicolas5 }
},
[TRAINER_AARON] =
@@ -5568,7 +5568,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Aaron
+ .party = {.NoItemDefaultMoves = gTrainerParty_Aaron }
},
[TRAINER_PERRY] =
@@ -5582,7 +5582,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Perry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Perry }
},
[TRAINER_HUGH] =
@@ -5596,7 +5596,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hugh
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hugh }
},
[TRAINER_PHIL] =
@@ -5610,7 +5610,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Phil
+ .party = {.NoItemDefaultMoves = gTrainerParty_Phil }
},
[TRAINER_JARED] =
@@ -5624,7 +5624,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jared
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jared }
},
[TRAINER_ANONYMOUS_10] =
@@ -5638,7 +5638,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Anonymous10
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous10 }
},
[TRAINER_TANNER] =
@@ -5652,7 +5652,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tanner
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tanner }
},
[TRAINER_WILL] =
@@ -5666,7 +5666,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Will
+ .party = {.NoItemDefaultMoves = gTrainerParty_Will }
},
[TRAINER_COLIN] =
@@ -5680,7 +5680,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Colin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Colin }
},
[TRAINER_ROBERT_1] =
@@ -5694,7 +5694,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Robert1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert1 }
},
[TRAINER_BENNY] =
@@ -5708,7 +5708,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Benny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benny }
},
[TRAINER_CHESTER] =
@@ -5722,7 +5722,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Chester
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chester }
},
[TRAINER_ROBERT_2] =
@@ -5736,7 +5736,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert2 }
},
[TRAINER_ROBERT_3] =
@@ -5750,7 +5750,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert3 }
},
[TRAINER_ROBERT_4] =
@@ -5764,7 +5764,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert4 }
},
[TRAINER_ROBERT_5] =
@@ -5778,7 +5778,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert5 }
},
[TRAINER_ALEX] =
@@ -5792,7 +5792,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Alex
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alex }
},
[TRAINER_BECK] =
@@ -5806,7 +5806,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Beck
+ .party = {.NoItemDefaultMoves = gTrainerParty_Beck }
},
[TRAINER_YASU] =
@@ -5820,7 +5820,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 1,
- .party = gTrainerParty_Yasu
+ .party = {.NoItemDefaultMoves = gTrainerParty_Yasu }
},
[TRAINER_TAKASHI] =
@@ -5834,7 +5834,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 3,
- .party = gTrainerParty_Takashi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Takashi }
},
[TRAINER_MAKOTO] =
@@ -5848,7 +5848,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 1,
- .party = gTrainerParty_Makoto
+ .party = {.NoItemDefaultMoves = gTrainerParty_Makoto }
},
[TRAINER_HIDEO_1] =
@@ -5862,7 +5862,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Hideo1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hideo1 }
},
[TRAINER_LAO_1] =
@@ -5876,7 +5876,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao1
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao1 }
},
[TRAINER_LUNG] =
@@ -5890,7 +5890,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 2,
- .party = gTrainerParty_Lung
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lung }
},
[TRAINER_LAO_2] =
@@ -5904,7 +5904,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao2
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao2 }
},
[TRAINER_LAO_3] =
@@ -5918,7 +5918,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao3
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao3 }
},
[TRAINER_LAO_4] =
@@ -5932,7 +5932,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao4
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao4 }
},
[TRAINER_LAO_5] =
@@ -5946,7 +5946,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao5
+ .party = {.ItemCustomMoves = gTrainerParty_Lao5 }
},
[TRAINER_TESSA] =
@@ -5960,7 +5960,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tessa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tessa }
},
[TRAINER_LAURA] =
@@ -5974,7 +5974,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Laura
+ .party = {.NoItemDefaultMoves = gTrainerParty_Laura }
},
[TRAINER_CYNDY_1] =
@@ -5988,7 +5988,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy1 }
},
[TRAINER_CORA] =
@@ -6002,7 +6002,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cora
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cora }
},
[TRAINER_JILL] =
@@ -6016,7 +6016,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jill
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jill }
},
[TRAINER_CYNDY_2] =
@@ -6030,7 +6030,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy2 }
},
[TRAINER_CYNDY_3] =
@@ -6044,7 +6044,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy3 }
},
[TRAINER_CYNDY_4] =
@@ -6058,7 +6058,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy4 }
},
[TRAINER_CYNDY_5] =
@@ -6072,7 +6072,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy5 }
},
[TRAINER_MADELINE_1] =
@@ -6086,7 +6086,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Madeline1
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline1 }
},
[TRAINER_CLARISSA] =
@@ -6100,7 +6100,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Clarissa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Clarissa }
},
[TRAINER_ANGELICA] =
@@ -6114,7 +6114,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Angelica
+ .party = {.NoItemDefaultMoves = gTrainerParty_Angelica }
},
[TRAINER_MADELINE_2] =
@@ -6128,7 +6128,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Madeline2
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline2 }
},
[TRAINER_MADELINE_3] =
@@ -6142,7 +6142,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Madeline3
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline3 }
},
[TRAINER_MADELINE_4] =
@@ -6156,7 +6156,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Madeline4
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline4 }
},
[TRAINER_MADELINE_5] =
@@ -6170,7 +6170,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Madeline5
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline5 }
},
[TRAINER_BEVERLY] =
@@ -6184,7 +6184,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Beverly
+ .party = {.NoItemDefaultMoves = gTrainerParty_Beverly }
},
[TRAINER_DAWN] =
@@ -6198,7 +6198,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dawn
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dawn }
},
[TRAINER_NICOLE] =
@@ -6212,7 +6212,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nicole
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicole }
},
[TRAINER_DENISE] =
@@ -6226,7 +6226,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Denise
+ .party = {.NoItemDefaultMoves = gTrainerParty_Denise }
},
[TRAINER_BETH] =
@@ -6240,7 +6240,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Beth
+ .party = {.NoItemDefaultMoves = gTrainerParty_Beth }
},
[TRAINER_TARA] =
@@ -6254,7 +6254,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tara
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tara }
},
[TRAINER_MISSY] =
@@ -6268,7 +6268,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Missy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Missy }
},
[TRAINER_ALICE] =
@@ -6282,7 +6282,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Alice
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alice }
},
[TRAINER_JENNY_1] =
@@ -6296,7 +6296,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jenny1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny1 }
},
[TRAINER_GRACE] =
@@ -6310,7 +6310,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grace
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grace }
},
[TRAINER_TANYA] =
@@ -6324,7 +6324,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tanya
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tanya }
},
[TRAINER_SHARON] =
@@ -6338,7 +6338,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Sharon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sharon }
},
[TRAINER_NIKKI] =
@@ -6352,7 +6352,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nikki
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nikki }
},
[TRAINER_BRENDA] =
@@ -6366,7 +6366,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Brenda
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brenda }
},
[TRAINER_KATIE] =
@@ -6380,7 +6380,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Katie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katie }
},
[TRAINER_SUSIE] =
@@ -6394,7 +6394,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Susie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Susie }
},
[TRAINER_KARA] =
@@ -6408,7 +6408,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kara
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kara }
},
[TRAINER_DANA] =
@@ -6422,7 +6422,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dana
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dana }
},
[TRAINER_ERIN] =
@@ -6436,7 +6436,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Erin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Erin }
},
[TRAINER_DEBRA] =
@@ -6450,7 +6450,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Debra
+ .party = {.NoItemDefaultMoves = gTrainerParty_Debra }
},
[TRAINER_LINDA] =
@@ -6464,7 +6464,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Linda
+ .party = {.NoItemDefaultMoves = gTrainerParty_Linda }
},
[TRAINER_KAYLEE] =
@@ -6478,7 +6478,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kaylee
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kaylee }
},
[TRAINER_LAUREL] =
@@ -6492,7 +6492,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Laurel
+ .party = {.NoItemDefaultMoves = gTrainerParty_Laurel }
},
[TRAINER_DARCY] =
@@ -6506,7 +6506,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Darcy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Darcy }
},
[TRAINER_JENNY_2] =
@@ -6520,7 +6520,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jenny2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny2 }
},
[TRAINER_JENNY_3] =
@@ -6534,7 +6534,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jenny3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny3 }
},
[TRAINER_JENNY_4] =
@@ -6548,7 +6548,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jenny4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny4 }
},
[TRAINER_JENNY_5] =
@@ -6562,7 +6562,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jenny5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny5 }
},
[TRAINER_HEIDI] =
@@ -6576,7 +6576,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Heidi
+ .party = {.NoItemCustomMoves = gTrainerParty_Heidi }
},
[TRAINER_BECKY] =
@@ -6590,7 +6590,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Becky
+ .party = {.NoItemCustomMoves = gTrainerParty_Becky }
},
[TRAINER_CAROL] =
@@ -6604,7 +6604,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Carol
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carol }
},
[TRAINER_NANCY] =
@@ -6618,7 +6618,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nancy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nancy }
},
[TRAINER_MARTHA] =
@@ -6632,7 +6632,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Martha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Martha }
},
[TRAINER_DIANA_1] =
@@ -6646,7 +6646,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana1 }
},
[TRAINER_NINA] =
@@ -6660,7 +6660,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nina
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nina }
},
[TRAINER_IRENE] =
@@ -6674,7 +6674,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Irene
+ .party = {.NoItemDefaultMoves = gTrainerParty_Irene }
},
[TRAINER_DIANA_2] =
@@ -6688,7 +6688,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana2 }
},
[TRAINER_DIANA_3] =
@@ -6702,7 +6702,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana3 }
},
[TRAINER_DIANA_4] =
@@ -6716,7 +6716,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana4 }
},
[TRAINER_DIANA_5] =
@@ -6730,7 +6730,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana5 }
},
[TRAINER_AMY_AND_LIV_1] =
@@ -6744,7 +6744,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv1
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv1 }
},
[TRAINER_AMY_AND_LIV_2] =
@@ -6758,7 +6758,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv2
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv2 }
},
[TRAINER_GINA_AND_MIA_1] =
@@ -6772,7 +6772,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GinaAndMia1
+ .party = {.NoItemDefaultMoves = gTrainerParty_GinaAndMia1 }
},
[TRAINER_MIU_AND_YUKI] =
@@ -6786,7 +6786,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_MiuAndYuki
+ .party = {.NoItemDefaultMoves = gTrainerParty_MiuAndYuki }
},
[TRAINER_AMY_AND_LIV_3] =
@@ -6800,7 +6800,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv3
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv3 }
},
[TRAINER_GINA_AND_MIA_2] =
@@ -6814,7 +6814,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GinaAndMia2
+ .party = {.NoItemCustomMoves = gTrainerParty_GinaAndMia2 }
},
[TRAINER_AMY_AND_LIV_4] =
@@ -6828,7 +6828,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv4
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv4 }
},
[TRAINER_AMY_AND_LIV_5] =
@@ -6842,7 +6842,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv5
+ .party = {.NoItemCustomMoves = gTrainerParty_AmyAndLiv5 }
},
[TRAINER_AMY_AND_LIV_6] =
@@ -6856,7 +6856,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv6
+ .party = {.NoItemCustomMoves = gTrainerParty_AmyAndLiv6 }
},
[TRAINER_HUEY] =
@@ -6870,7 +6870,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Huey
+ .party = {.NoItemDefaultMoves = gTrainerParty_Huey }
},
[TRAINER_EDMOND] =
@@ -6884,7 +6884,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Edmond
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edmond }
},
[TRAINER_ERNEST_1] =
@@ -6898,7 +6898,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest1 }
},
[TRAINER_DWAYNE] =
@@ -6912,7 +6912,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dwayne
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dwayne }
},
[TRAINER_PHILLIP] =
@@ -6926,7 +6926,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Phillip
+ .party = {.NoItemDefaultMoves = gTrainerParty_Phillip }
},
[TRAINER_LEONARD] =
@@ -6940,7 +6940,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Leonard
+ .party = {.NoItemDefaultMoves = gTrainerParty_Leonard }
},
[TRAINER_DUNCAN] =
@@ -6954,7 +6954,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Duncan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Duncan }
},
[TRAINER_ERNEST_2] =
@@ -6968,7 +6968,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest2 }
},
[TRAINER_ERNEST_3] =
@@ -6982,7 +6982,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest3 }
},
[TRAINER_ERNEST_4] =
@@ -6996,7 +6996,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest4 }
},
[TRAINER_ERNEST_5] =
@@ -7010,7 +7010,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest5 }
},
[TRAINER_ANONYMOUS_11] =
@@ -7024,7 +7024,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Anonymous11
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous11 }
},
[TRAINER_ANONYMOUS_12] =
@@ -7038,7 +7038,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Anonymous12
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous12 }
},
[TRAINER_ANONYMOUS_13] =
@@ -7052,7 +7052,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous13
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous13 }
},
[TRAINER_SONNY] =
@@ -7066,7 +7066,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sonny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sonny }
},
[TRAINER_DONOVAN] =
@@ -7080,7 +7080,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Donovan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Donovan }
},
[TRAINER_GERALD] =
@@ -7094,7 +7094,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Gerald
+ .party = {.NoItemDefaultMoves = gTrainerParty_Gerald }
},
[TRAINER_KELVIN] =
@@ -7108,7 +7108,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kelvin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kelvin }
},
[TRAINER_KODY] =
@@ -7122,7 +7122,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Kody
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kody }
},
[TRAINER_TEVIN] =
@@ -7136,7 +7136,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tevin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tevin }
},
[TRAINER_DAMON] =
@@ -7150,7 +7150,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Damon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Damon }
},
[TRAINER_PABLO] =
@@ -7164,7 +7164,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Pablo
+ .party = {.NoItemDefaultMoves = gTrainerParty_Pablo }
},
[TRAINER_EDWIN_1] =
@@ -7178,7 +7178,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin1 }
},
[TRAINER_HECTOR_1] =
@@ -7192,7 +7192,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hector1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hector1 }
},
[TRAINER_HECTOR_2] =
@@ -7206,7 +7206,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hector2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hector2 }
},
[TRAINER_EDWIN_2] =
@@ -7220,7 +7220,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin2 }
},
[TRAINER_EDWIN_3] =
@@ -7234,7 +7234,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin3 }
},
[TRAINER_EDWIN_4] =
@@ -7248,7 +7248,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin4 }
},
[TRAINER_EDWIN_5] =
@@ -7262,7 +7262,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin5 }
},
[TRAINER_WALLY_1] =
@@ -7276,7 +7276,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally1
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally1 }
},
[TRAINER_BRENDAN_1] =
@@ -7290,7 +7290,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Brendan1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan1 }
},
[TRAINER_BRENDAN_2] =
@@ -7304,7 +7304,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan2 }
},
[TRAINER_BRENDAN_3] =
@@ -7318,7 +7318,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan3 }
},
[TRAINER_BRENDAN_4] =
@@ -7332,7 +7332,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Brendan4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan4 }
},
[TRAINER_BRENDAN_5] =
@@ -7346,7 +7346,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan5 }
},
[TRAINER_BRENDAN_6] =
@@ -7360,7 +7360,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan6
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan6 }
},
[TRAINER_BRENDAN_7] =
@@ -7374,7 +7374,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Brendan7
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan7 }
},
[TRAINER_BRENDAN_8] =
@@ -7388,7 +7388,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan8
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan8 }
},
[TRAINER_BRENDAN_9] =
@@ -7402,7 +7402,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan9
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan9 }
},
[TRAINER_MAY_1] =
@@ -7416,7 +7416,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_May1
+ .party = {.NoItemDefaultMoves = gTrainerParty_May1 }
},
[TRAINER_MAY_2] =
@@ -7430,7 +7430,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May2
+ .party = {.NoItemDefaultMoves = gTrainerParty_May2 }
},
[TRAINER_MAY_3] =
@@ -7444,7 +7444,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May3
+ .party = {.NoItemDefaultMoves = gTrainerParty_May3 }
},
[TRAINER_MAY_4] =
@@ -7458,7 +7458,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_May4
+ .party = {.NoItemDefaultMoves = gTrainerParty_May4 }
},
[TRAINER_MAY_5] =
@@ -7472,7 +7472,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May5
+ .party = {.NoItemDefaultMoves = gTrainerParty_May5 }
},
[TRAINER_MAY_6] =
@@ -7486,7 +7486,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May6
+ .party = {.NoItemDefaultMoves = gTrainerParty_May6 }
},
[TRAINER_MAY_7] =
@@ -7500,7 +7500,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_May7
+ .party = {.NoItemDefaultMoves = gTrainerParty_May7 }
},
[TRAINER_MAY_8] =
@@ -7514,7 +7514,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May8
+ .party = {.NoItemDefaultMoves = gTrainerParty_May8 }
},
[TRAINER_MAY_9] =
@@ -7528,7 +7528,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May9
+ .party = {.NoItemDefaultMoves = gTrainerParty_May9 }
},
[TRAINER_ISAAC_1] =
@@ -7542,7 +7542,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac1 }
},
[TRAINER_RILEY] =
@@ -7556,7 +7556,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Riley
+ .party = {.NoItemDefaultMoves = gTrainerParty_Riley }
},
[TRAINER_AIDAN] =
@@ -7570,7 +7570,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Aidan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Aidan }
},
[TRAINER_ISAAC_2] =
@@ -7584,7 +7584,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac2 }
},
[TRAINER_ISAAC_3] =
@@ -7598,7 +7598,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac3 }
},
[TRAINER_ISAAC_4] =
@@ -7612,7 +7612,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac4 }
},
[TRAINER_ISAAC_5] =
@@ -7626,7 +7626,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac5 }
},
[TRAINER_LYDIA_1] =
@@ -7640,7 +7640,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia1 }
},
[TRAINER_ALEXIA] =
@@ -7654,7 +7654,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Alexia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alexia }
},
[TRAINER_DANIELLE] =
@@ -7668,7 +7668,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Danielle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Danielle }
},
[TRAINER_LYDIA_2] =
@@ -7682,7 +7682,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia2 }
},
[TRAINER_LYDIA_3] =
@@ -7696,7 +7696,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia3 }
},
[TRAINER_LYDIA_4] =
@@ -7710,7 +7710,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia4 }
},
[TRAINER_LYDIA_5] =
@@ -7724,7 +7724,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia5 }
},
[TRAINER_JACKSON_1] =
@@ -7738,7 +7738,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Jackson1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson1 }
},
[TRAINER_CARLOS] =
@@ -7752,7 +7752,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Carlos
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carlos }
},
[TRAINER_SEBASTIAN] =
@@ -7766,7 +7766,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Sebastian
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sebastian }
},
[TRAINER_JACKSON_2] =
@@ -7780,7 +7780,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Jackson2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson2 }
},
[TRAINER_JACKSON_3] =
@@ -7794,7 +7794,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Jackson3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson3 }
},
[TRAINER_JACKSON_4] =
@@ -7808,7 +7808,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Jackson4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson4 }
},
[TRAINER_JACKSON_5] =
@@ -7822,7 +7822,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Jackson5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson5 }
},
[TRAINER_CATHERINE_1] =
@@ -7836,7 +7836,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Catherine1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine1 }
},
[TRAINER_JENNA] =
@@ -7850,7 +7850,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Jenna
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenna }
},
[TRAINER_SOPHIA] =
@@ -7864,7 +7864,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Sophia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sophia }
},
[TRAINER_CATHERINE_2] =
@@ -7878,7 +7878,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Catherine2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine2 }
},
[TRAINER_CATHERINE_3] =
@@ -7892,7 +7892,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Catherine3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine3 }
},
[TRAINER_CATHERINE_4] =
@@ -7906,7 +7906,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Catherine4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine4 }
},
[TRAINER_CATHERINE_5] =
@@ -7920,7 +7920,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Catherine5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine5 }
},
[TRAINER_MAXIE_1] =
@@ -7934,7 +7934,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Maxie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maxie1 }
},
[TRAINER_GRUNT_28] =
@@ -7948,7 +7948,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt28
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt28 }
},
[TRAINER_GRUNT_29] =
@@ -7962,7 +7962,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Grunt29
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt29 }
},
[TRAINER_GRUNT_30] =
@@ -7976,7 +7976,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt30
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt30 }
},
[TRAINER_GRUNT_31] =
@@ -7990,7 +7990,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt31
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt31 }
},
[TRAINER_GRUNT_32] =
@@ -8004,7 +8004,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt32
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt32 }
},
[TRAINER_GRUNT_33] =
@@ -8018,7 +8018,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt33
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt33 }
},
[TRAINER_GRUNT_34] =
@@ -8032,7 +8032,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt34
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt34 }
},
[TRAINER_GRUNT_35] =
@@ -8046,7 +8046,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt35
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt35 }
},
[TRAINER_GRUNT_36] =
@@ -8060,7 +8060,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt36
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt36 }
},
[TRAINER_GRUNT_37] =
@@ -8074,7 +8074,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt37
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt37 }
},
[TRAINER_GRUNT_38] =
@@ -8088,7 +8088,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt38
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt38 }
},
[TRAINER_GRUNT_39] =
@@ -8102,7 +8102,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt39
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt39 }
},
[TRAINER_GRUNT_40] =
@@ -8116,7 +8116,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt40
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt40 }
},
[TRAINER_GRUNT_41] =
@@ -8130,7 +8130,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt41
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt41 }
},
[TRAINER_GRUNT_42] =
@@ -8144,7 +8144,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt42
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt42 }
},
[TRAINER_GRUNT_43] =
@@ -8158,7 +8158,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt43
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt43 }
},
[TRAINER_GRUNT_44] =
@@ -8172,7 +8172,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt44
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt44 }
},
[TRAINER_GRUNT_45] =
@@ -8186,7 +8186,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt45
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt45 }
},
[TRAINER_GRUNT_46] =
@@ -8200,7 +8200,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt46
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt46 }
},
[TRAINER_GRUNT_47] =
@@ -8214,7 +8214,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt47
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt47 }
},
[TRAINER_GRUNT_48] =
@@ -8228,7 +8228,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt48
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt48 }
},
[TRAINER_GRUNT_49] =
@@ -8242,7 +8242,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt49
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt49 }
},
[TRAINER_GRUNT_50] =
@@ -8256,7 +8256,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt50
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt50 }
},
[TRAINER_GRUNT_51] =
@@ -8270,7 +8270,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt51
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt51 }
},
[TRAINER_GRUNT_52] =
@@ -8284,7 +8284,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt52
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt52 }
},
[TRAINER_GRUNT_53] =
@@ -8298,7 +8298,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt53
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt53 }
},
[TRAINER_GRUNT_54] =
@@ -8312,7 +8312,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt54
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt54 }
},
[TRAINER_ANONYMOUS_14] =
@@ -8326,7 +8326,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Anonymous14
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous14 }
},
[TRAINER_ANONYMOUS_15] =
@@ -8340,7 +8340,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Anonymous15
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous15 }
},
[TRAINER_TABITHA_1] =
@@ -8354,7 +8354,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Tabitha1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tabitha1 }
},
[TRAINER_TABITHA_2] =
@@ -8368,7 +8368,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Tabitha2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tabitha2 }
},
[TRAINER_ANONYMOUS_16] =
@@ -8382,7 +8382,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Anonymous16
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous16 }
},
[TRAINER_COURTNEY_1] =
@@ -8396,7 +8396,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Courtney1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Courtney1 }
},
[TRAINER_COURTNEY_2] =
@@ -8410,7 +8410,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Courtney2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Courtney2 }
},
[TRAINER_MAXIE_2] =
@@ -8424,7 +8424,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Maxie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maxie2 }
},
[TRAINER_MAXIE_3] =
@@ -8438,7 +8438,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Maxie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maxie3 }
},
[TRAINER_TIANA] =
@@ -8452,7 +8452,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tiana
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tiana }
},
[TRAINER_HALEY_1] =
@@ -8466,7 +8466,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley1 }
},
[TRAINER_JANICE] =
@@ -8480,7 +8480,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Janice
+ .party = {.NoItemDefaultMoves = gTrainerParty_Janice }
},
[TRAINER_VIVI] =
@@ -8494,7 +8494,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Vivi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Vivi }
},
[TRAINER_HALEY_2] =
@@ -8508,7 +8508,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley2 }
},
[TRAINER_HALEY_3] =
@@ -8522,7 +8522,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley3 }
},
[TRAINER_HALEY_4] =
@@ -8536,7 +8536,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley4 }
},
[TRAINER_HALEY_5] =
@@ -8550,7 +8550,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Haley5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley5 }
},
[TRAINER_SALLY] =
@@ -8564,7 +8564,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sally
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sally }
},
[TRAINER_ROBIN] =
@@ -8578,7 +8578,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Robin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robin }
},
[TRAINER_ANDREA] =
@@ -8592,7 +8592,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Andrea
+ .party = {.NoItemDefaultMoves = gTrainerParty_Andrea }
},
[TRAINER_CRISSY] =
@@ -8606,7 +8606,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Crissy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Crissy }
},
[TRAINER_RICK] =
@@ -8620,7 +8620,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rick
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rick }
},
[TRAINER_LYLE] =
@@ -8634,7 +8634,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lyle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lyle }
},
[TRAINER_JOSE] =
@@ -8648,7 +8648,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jose
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jose }
},
[TRAINER_DOUG] =
@@ -8662,7 +8662,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Doug
+ .party = {.NoItemDefaultMoves = gTrainerParty_Doug }
},
[TRAINER_GREG] =
@@ -8676,7 +8676,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Greg
+ .party = {.NoItemDefaultMoves = gTrainerParty_Greg }
},
[TRAINER_KENT] =
@@ -8690,7 +8690,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kent
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kent }
},
[TRAINER_JAMES_1] =
@@ -8704,7 +8704,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_James1
+ .party = {.NoItemDefaultMoves = gTrainerParty_James1 }
},
[TRAINER_JAMES_2] =
@@ -8718,7 +8718,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_James2
+ .party = {.NoItemDefaultMoves = gTrainerParty_James2 }
},
[TRAINER_JAMES_3] =
@@ -8732,7 +8732,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_James3
+ .party = {.NoItemDefaultMoves = gTrainerParty_James3 }
},
[TRAINER_JAMES_4] =
@@ -8746,7 +8746,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_James4
+ .party = {.NoItemDefaultMoves = gTrainerParty_James4 }
},
[TRAINER_JAMES_5] =
@@ -8760,7 +8760,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_James5
+ .party = {.NoItemDefaultMoves = gTrainerParty_James5 }
},
[TRAINER_BRICE] =
@@ -8774,7 +8774,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Brice
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brice }
},
[TRAINER_TRENT_1] =
@@ -8788,7 +8788,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent1 }
},
[TRAINER_LENNY] =
@@ -8802,7 +8802,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lenny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lenny }
},
[TRAINER_LUCAS_1] =
@@ -8816,7 +8816,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Lucas1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lucas1 }
},
[TRAINER_ALAN] =
@@ -8830,7 +8830,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Alan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alan }
},
[TRAINER_CLARK] =
@@ -8844,7 +8844,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Clark
+ .party = {.NoItemDefaultMoves = gTrainerParty_Clark }
},
[TRAINER_ERIC] =
@@ -8858,7 +8858,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Eric
+ .party = {.NoItemDefaultMoves = gTrainerParty_Eric }
},
[TRAINER_LUCAS_2] =
@@ -8872,7 +8872,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Lucas2
+ .party = {.NoItemCustomMoves = gTrainerParty_Lucas2 }
},
[TRAINER_MIKE_1] =
@@ -8886,7 +8886,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Mike1
+ .party = {.NoItemCustomMoves = gTrainerParty_Mike1 }
},
[TRAINER_MIKE_2] =
@@ -8900,7 +8900,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Mike2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Mike2 }
},
[TRAINER_TRENT_2] =
@@ -8914,7 +8914,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent2 }
},
[TRAINER_TRENT_3] =
@@ -8928,7 +8928,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent3 }
},
[TRAINER_TRENT_4] =
@@ -8942,7 +8942,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent4 }
},
[TRAINER_TRENT_5] =
@@ -8956,7 +8956,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent5 }
},
[TRAINER_DEZ_AND_LUKE] =
@@ -8970,7 +8970,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_DezAndLuke
+ .party = {.NoItemDefaultMoves = gTrainerParty_DezAndLuke }
},
[TRAINER_LEA_AND_JED] =
@@ -8984,7 +8984,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LeaAndJed
+ .party = {.NoItemDefaultMoves = gTrainerParty_LeaAndJed }
},
[TRAINER_LOIS_AND_HAL_1] =
@@ -8998,7 +8998,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal1
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal1 }
},
[TRAINER_LOIS_AND_HAL_2] =
@@ -9012,7 +9012,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal2
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal2 }
},
[TRAINER_LOIS_AND_HAL_3] =
@@ -9026,7 +9026,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal3
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal3 }
},
[TRAINER_LOIS_AND_HAL_4] =
@@ -9040,7 +9040,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal4
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal4 }
},
[TRAINER_LOIS_AND_HAL_5] =
@@ -9054,7 +9054,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal5
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal5 }
},
[TRAINER_JOHANNA] =
@@ -9068,7 +9068,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Johanna
+ .party = {.NoItemDefaultMoves = gTrainerParty_Johanna }
},
[TRAINER_ZANE] =
@@ -9082,7 +9082,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Zane
+ .party = {.NoItemCustomMoves = gTrainerParty_Zane }
},
[TRAINER_VIVIAN] =
@@ -9096,7 +9096,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Vivian
+ .party = {.NoItemCustomMoves = gTrainerParty_Vivian }
},
[TRAINER_SADIE] =
@@ -9110,7 +9110,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sadie
+ .party = {.NoItemCustomMoves = gTrainerParty_Sadie }
},
[TRAINER_HIDEO_2] =
@@ -9124,7 +9124,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 2,
- .party = gTrainerParty_Hideo2
+ .party = {.NoItemCustomMoves = gTrainerParty_Hideo2 }
},
[TRAINER_KEIGO] =
@@ -9138,7 +9138,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 2,
- .party = gTrainerParty_Keigo
+ .party = {.NoItemCustomMoves = gTrainerParty_Keigo }
},
[TRAINER_TSUNAO] =
@@ -9152,7 +9152,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 3,
- .party = gTrainerParty_Tsunao
+ .party = {.NoItemCustomMoves = gTrainerParty_Tsunao }
},
[TRAINER_TERRELL] =
@@ -9166,7 +9166,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Terrell
+ .party = {.NoItemDefaultMoves = gTrainerParty_Terrell }
},
[TRAINER_KYLEE] =
@@ -9180,7 +9180,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kylee
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kylee }
},
[TRAINER_WALLY_2] =
@@ -9194,7 +9194,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Wally2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wally2 }
},
[TRAINER_WALLY_3] =
@@ -9208,7 +9208,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally3
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally3 }
},
[TRAINER_WALLY_4] =
@@ -9222,7 +9222,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally4
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally4 }
},
[TRAINER_WALLY_5] =
@@ -9236,7 +9236,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally5
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally5 }
},
[TRAINER_WALLY_6] =
@@ -9250,7 +9250,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally6
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally6 }
},
[TRAINER_BRENDAN_10] =
@@ -9264,7 +9264,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Brendan10
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan10 }
},
[TRAINER_BRENDAN_11] =
@@ -9278,7 +9278,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Brendan11
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan11 }
},
[TRAINER_BRENDAN_12] =
@@ -9292,7 +9292,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Brendan12
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan12 }
},
[TRAINER_MAY_10] =
@@ -9306,7 +9306,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_May10
+ .party = {.NoItemDefaultMoves = gTrainerParty_May10 }
},
[TRAINER_MAY_11] =
@@ -9320,7 +9320,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_May11
+ .party = {.NoItemDefaultMoves = gTrainerParty_May11 }
},
[TRAINER_MAY_12] =
@@ -9334,7 +9334,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_May12
+ .party = {.NoItemDefaultMoves = gTrainerParty_May12 }
},
[TRAINER_JONAH] =
@@ -9348,7 +9348,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Jonah
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jonah }
},
[TRAINER_HENRY] =
@@ -9362,7 +9362,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Henry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Henry }
},
[TRAINER_ROGER] =
@@ -9376,7 +9376,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Roger
+ .party = {.NoItemDefaultMoves = gTrainerParty_Roger }
},
[TRAINER_ALEXA] =
@@ -9390,7 +9390,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Alexa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alexa }
},
[TRAINER_RUBEN] =
@@ -9404,7 +9404,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Ruben
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ruben }
},
[TRAINER_KOJI] =
@@ -9418,7 +9418,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Koji
+ .party = {.NoItemDefaultMoves = gTrainerParty_Koji }
},
[TRAINER_WAYNE] =
@@ -9432,7 +9432,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Wayne
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wayne }
},
[TRAINER_BYRON] =
@@ -9446,7 +9446,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Byron
+ .party = {.NoItemDefaultMoves = gTrainerParty_Byron }
},
[TRAINER_REED] =
@@ -9460,7 +9460,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Reed
+ .party = {.NoItemDefaultMoves = gTrainerParty_Reed }
},
[TRAINER_TISHA] =
@@ -9474,7 +9474,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tisha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tisha }
},
[TRAINER_TORI_AND_TIA] =
@@ -9488,7 +9488,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_ToriAndTia
+ .party = {.NoItemDefaultMoves = gTrainerParty_ToriAndTia }
},
[TRAINER_KIM_AND_IRIS] =
@@ -9502,7 +9502,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_KimAndIris
+ .party = {.NoItemCustomMoves = gTrainerParty_KimAndIris }
},
[TRAINER_TYRA_AND_IVY] =
@@ -9516,7 +9516,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_TyraAndIvy
+ .party = {.NoItemCustomMoves = gTrainerParty_TyraAndIvy }
},
[TRAINER_MEL_AND_PAUL] =
@@ -9530,7 +9530,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_MelAndPaul
+ .party = {.NoItemCustomMoves = gTrainerParty_MelAndPaul }
},
[TRAINER_JOHN_AND_JAY_1] =
@@ -9544,7 +9544,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay1
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay1 }
},
[TRAINER_JOHN_AND_JAY_2] =
@@ -9558,7 +9558,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay2
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay2 }
},
[TRAINER_JOHN_AND_JAY_3] =
@@ -9572,7 +9572,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay3
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay3 }
},
[TRAINER_JOHN_AND_JAY_4] =
@@ -9586,7 +9586,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay4
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay4 }
},
[TRAINER_JOHN_AND_JAY_5] =
@@ -9600,7 +9600,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay5
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay5 }
},
[TRAINER_RELI_AND_IAN] =
@@ -9614,7 +9614,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_ReliAndIan
+ .party = {.NoItemDefaultMoves = gTrainerParty_ReliAndIan }
},
[TRAINER_RITA_AND_SAM_1] =
@@ -9628,7 +9628,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam1
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam1 }
},
[TRAINER_RITA_AND_SAM_2] =
@@ -9642,7 +9642,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam2
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam2 }
},
[TRAINER_RITA_AND_SAM_3] =
@@ -9656,7 +9656,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam3
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam3 }
},
[TRAINER_RITA_AND_SAM_4] =
@@ -9670,7 +9670,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam4
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam4 }
},
[TRAINER_RITA_AND_SAM_5] =
@@ -9684,7 +9684,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam5
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam5 }
},
[TRAINER_LISA_AND_RAY] =
@@ -9698,7 +9698,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LisaAndRay
+ .party = {.NoItemDefaultMoves = gTrainerParty_LisaAndRay }
},
[TRAINER_EUGENE] =
@@ -9712,6 +9712,6 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Eugene
- }
+ .party = {.NoItemDefaultMoves = gTrainerParty_Eugene }
+ },
};
diff --git a/src/data/trainers_en.h b/src/data/trainers_en.h
index 7f522dd93..621945db8 100644
--- a/src/data/trainers_en.h
+++ b/src/data/trainers_en.h
@@ -10,7 +10,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 0,
- .party = NULL
+ .party = {.NoItemDefaultMoves = NULL }
},
[TRAINER_ARCHIE_1] =
@@ -24,7 +24,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Archie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Archie1 }
},
[TRAINER_GRUNT_1] =
@@ -38,7 +38,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt1 }
},
[TRAINER_GRUNT_2] =
@@ -52,7 +52,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Grunt2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt2 }
},
[TRAINER_GRUNT_3] =
@@ -66,7 +66,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt3 }
},
[TRAINER_GRUNT_4] =
@@ -80,7 +80,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt4 }
},
[TRAINER_GRUNT_5] =
@@ -94,7 +94,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt5 }
},
[TRAINER_GRUNT_6] =
@@ -108,7 +108,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt6
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt6 }
},
[TRAINER_GRUNT_7] =
@@ -122,7 +122,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt7
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt7 }
},
[TRAINER_GRUNT_8] =
@@ -136,7 +136,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt8
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt8 }
},
[TRAINER_GRUNT_9] =
@@ -150,7 +150,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt9
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt9 }
},
[TRAINER_GRUNT_10] =
@@ -164,7 +164,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt10
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt10 }
},
[TRAINER_GRUNT_11] =
@@ -178,7 +178,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt11
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt11 }
},
[TRAINER_GRUNT_12] =
@@ -192,7 +192,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt12
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt12 }
},
[TRAINER_GRUNT_13] =
@@ -206,7 +206,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt13
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt13 }
},
[TRAINER_GRUNT_14] =
@@ -220,7 +220,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt14
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt14 }
},
[TRAINER_GRUNT_15] =
@@ -234,7 +234,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt15
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt15 }
},
[TRAINER_GRUNT_16] =
@@ -248,7 +248,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt16
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt16 }
},
[TRAINER_GRUNT_17] =
@@ -262,7 +262,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt17
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt17 }
},
[TRAINER_GRUNT_18] =
@@ -276,7 +276,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt18
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt18 }
},
[TRAINER_GRUNT_19] =
@@ -290,7 +290,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt19
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt19 }
},
[TRAINER_GRUNT_20] =
@@ -304,7 +304,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt20
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt20 }
},
[TRAINER_GRUNT_21] =
@@ -318,7 +318,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt21
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt21 }
},
[TRAINER_GRUNT_22] =
@@ -332,7 +332,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt22
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt22 }
},
[TRAINER_GRUNT_23] =
@@ -346,7 +346,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt23
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt23 }
},
[TRAINER_GRUNT_24] =
@@ -360,7 +360,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt24
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt24 }
},
[TRAINER_GRUNT_25] =
@@ -374,7 +374,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt25
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt25 }
},
[TRAINER_GRUNT_26] =
@@ -388,7 +388,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt26
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt26 }
},
[TRAINER_GRUNT_27] =
@@ -402,7 +402,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt27
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt27 }
},
[TRAINER_ANONYMOUS_1] =
@@ -416,7 +416,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Anonymous1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous1 }
},
[TRAINER_MATT_1] =
@@ -430,7 +430,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Matt1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Matt1 }
},
[TRAINER_MATT_2] =
@@ -444,7 +444,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Matt2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Matt2 }
},
[TRAINER_SHELLY_1] =
@@ -458,7 +458,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelly1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelly1 }
},
[TRAINER_SHELLY_2] =
@@ -472,7 +472,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelly2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelly2 }
},
[TRAINER_ARCHIE_2] =
@@ -486,7 +486,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Archie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Archie2 }
},
[TRAINER_ARCHIE_3] =
@@ -500,7 +500,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Archie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Archie3 }
},
[TRAINER_DAISY] =
@@ -514,7 +514,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Daisy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Daisy }
},
[TRAINER_ROSE_1] =
@@ -528,7 +528,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rose1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose1 }
},
[TRAINER_LILY] =
@@ -542,7 +542,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lily
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lily }
},
[TRAINER_VIOLET] =
@@ -556,7 +556,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Violet
+ .party = {.NoItemDefaultMoves = gTrainerParty_Violet }
},
[TRAINER_ROSE_2] =
@@ -570,7 +570,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rose2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose2 }
},
[TRAINER_ROSE_3] =
@@ -584,7 +584,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Rose3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose3 }
},
[TRAINER_ROSE_4] =
@@ -598,7 +598,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Rose4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose4 }
},
[TRAINER_ROSE_5] =
@@ -612,7 +612,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Rose5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rose5 }
},
[TRAINER_DUSTY_1] =
@@ -626,7 +626,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty1
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty1 }
},
[TRAINER_CHIP] =
@@ -640,7 +640,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Chip
+ .party = {.NoItemCustomMoves = gTrainerParty_Chip }
},
[TRAINER_FOSTER] =
@@ -654,7 +654,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Foster
+ .party = {.NoItemCustomMoves = gTrainerParty_Foster }
},
[TRAINER_DUSTY_2] =
@@ -668,7 +668,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty2
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty2 }
},
[TRAINER_DUSTY_3] =
@@ -682,7 +682,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty3
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty3 }
},
[TRAINER_DUSTY_4] =
@@ -696,7 +696,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty4
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty4 }
},
[TRAINER_DUSTY_5] =
@@ -710,7 +710,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dusty5
+ .party = {.NoItemCustomMoves = gTrainerParty_Dusty5 }
},
[TRAINER_GABBY_AND_TY_1] =
@@ -724,7 +724,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy1
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy1 }
},
[TRAINER_GABBY_AND_TY_2] =
@@ -738,7 +738,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy2
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy2 }
},
[TRAINER_GABBY_AND_TY_3] =
@@ -752,7 +752,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy3
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy3 }
},
[TRAINER_GABBY_AND_TY_4] =
@@ -766,7 +766,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy4
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy4 }
},
[TRAINER_GABBY_AND_TY_5] =
@@ -780,7 +780,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy5
+ .party = {.NoItemDefaultMoves = gTrainerParty_GabbyAndTy5 }
},
[TRAINER_GABBY_AND_TY_6] =
@@ -794,7 +794,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GabbyAndTy6
+ .party = {.NoItemCustomMoves = gTrainerParty_GabbyAndTy6 }
},
[TRAINER_LOLA_1] =
@@ -808,7 +808,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola1 }
},
[TRAINER_CARMEN] =
@@ -822,7 +822,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Carmen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carmen }
},
[TRAINER_GWEN] =
@@ -836,7 +836,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Gwen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Gwen }
},
[TRAINER_LOLA_2] =
@@ -850,7 +850,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola2 }
},
[TRAINER_LOLA_3] =
@@ -864,7 +864,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola3 }
},
[TRAINER_LOLA_4] =
@@ -878,7 +878,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola4 }
},
[TRAINER_LOLA_5] =
@@ -892,7 +892,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lola5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lola5 }
},
[TRAINER_RICKY_1] =
@@ -906,7 +906,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky1
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky1 }
},
[TRAINER_SIMON] =
@@ -920,7 +920,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Simon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Simon }
},
[TRAINER_CHARLIE] =
@@ -934,7 +934,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Charlie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Charlie }
},
[TRAINER_RICKY_2] =
@@ -948,7 +948,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky2
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky2 }
},
[TRAINER_RICKY_3] =
@@ -962,7 +962,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky3
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky3 }
},
[TRAINER_RICKY_4] =
@@ -976,7 +976,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky4
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky4 }
},
[TRAINER_RICKY_5] =
@@ -990,7 +990,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ricky5
+ .party = {.NoItemCustomMoves = gTrainerParty_Ricky5 }
},
[TRAINER_RANDALL] =
@@ -1004,7 +1004,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Randall
+ .party = {.NoItemDefaultMoves = gTrainerParty_Randall }
},
[TRAINER_PARKER] =
@@ -1018,7 +1018,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Parker
+ .party = {.NoItemDefaultMoves = gTrainerParty_Parker }
},
[TRAINER_GEORGE] =
@@ -1032,7 +1032,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_George
+ .party = {.NoItemDefaultMoves = gTrainerParty_George }
},
[TRAINER_BERKE] =
@@ -1046,7 +1046,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Berke
+ .party = {.NoItemDefaultMoves = gTrainerParty_Berke }
},
[TRAINER_CLYDE] =
@@ -1060,7 +1060,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Clyde
+ .party = {.NoItemCustomMoves = gTrainerParty_Clyde }
},
[TRAINER_VINCENT] =
@@ -1074,7 +1074,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Vincent
+ .party = {.NoItemDefaultMoves = gTrainerParty_Vincent }
},
[TRAINER_LEROY] =
@@ -1088,7 +1088,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Leroy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Leroy }
},
[TRAINER_WILTON_1] =
@@ -1102,7 +1102,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton1 }
},
[TRAINER_EDGAR] =
@@ -1116,7 +1116,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Edgar
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edgar }
},
[TRAINER_ALBERT] =
@@ -1130,7 +1130,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Albert
+ .party = {.NoItemDefaultMoves = gTrainerParty_Albert }
},
[TRAINER_SAMUEL] =
@@ -1144,7 +1144,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Samuel
+ .party = {.NoItemDefaultMoves = gTrainerParty_Samuel }
},
[TRAINER_VITO] =
@@ -1158,7 +1158,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Vito
+ .party = {.NoItemDefaultMoves = gTrainerParty_Vito }
},
[TRAINER_OWEN] =
@@ -1172,7 +1172,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Owen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Owen }
},
[TRAINER_WILTON_2] =
@@ -1186,7 +1186,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton2 }
},
[TRAINER_WILTON_3] =
@@ -1200,7 +1200,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton3 }
},
[TRAINER_WILTON_4] =
@@ -1214,7 +1214,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton4 }
},
[TRAINER_WILTON_5] =
@@ -1228,7 +1228,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wilton5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wilton5 }
},
[TRAINER_WARREN] =
@@ -1242,7 +1242,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Warren
+ .party = {.NoItemDefaultMoves = gTrainerParty_Warren }
},
[TRAINER_MARY] =
@@ -1256,7 +1256,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Mary
+ .party = {.NoItemDefaultMoves = gTrainerParty_Mary }
},
[TRAINER_LORI] =
@@ -1270,7 +1270,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Lori
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lori }
},
[TRAINER_JODY] =
@@ -1284,7 +1284,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Jody
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jody }
},
[TRAINER_WENDY] =
@@ -1298,7 +1298,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Wendy
+ .party = {.NoItemCustomMoves = gTrainerParty_Wendy }
},
[TRAINER_ELAINE] =
@@ -1312,7 +1312,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Elaine
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elaine }
},
[TRAINER_BROOKE_1] =
@@ -1326,7 +1326,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke1 }
},
[TRAINER_JENNIFER] =
@@ -1340,7 +1340,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Jennifer
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jennifer }
},
[TRAINER_HOPE] =
@@ -1354,7 +1354,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Hope
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hope }
},
[TRAINER_SHANNON] =
@@ -1368,7 +1368,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Shannon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shannon }
},
[TRAINER_MICHELLE] =
@@ -1382,7 +1382,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Michelle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Michelle }
},
[TRAINER_CAROLINE] =
@@ -1396,7 +1396,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Caroline
+ .party = {.NoItemDefaultMoves = gTrainerParty_Caroline }
},
[TRAINER_JULIE] =
@@ -1410,7 +1410,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Julie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Julie }
},
[TRAINER_BROOKE_2] =
@@ -1424,7 +1424,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke2 }
},
[TRAINER_BROOKE_3] =
@@ -1438,7 +1438,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke3 }
},
[TRAINER_BROOKE_4] =
@@ -1452,7 +1452,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke4 }
},
[TRAINER_BROOKE_5] =
@@ -1466,7 +1466,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brooke5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brooke5 }
},
[TRAINER_PATRICIA] =
@@ -1480,7 +1480,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Patricia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Patricia }
},
[TRAINER_KINDRA] =
@@ -1494,7 +1494,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kindra
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kindra }
},
[TRAINER_TAMMY] =
@@ -1508,7 +1508,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tammy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tammy }
},
[TRAINER_VALERIE_1] =
@@ -1522,7 +1522,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Valerie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie1 }
},
[TRAINER_TASHA] =
@@ -1536,7 +1536,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tasha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tasha }
},
[TRAINER_VALERIE_2] =
@@ -1550,7 +1550,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Valerie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie2 }
},
[TRAINER_VALERIE_3] =
@@ -1564,7 +1564,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Valerie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie3 }
},
[TRAINER_VALERIE_4] =
@@ -1578,7 +1578,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Valerie4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie4 }
},
[TRAINER_VALERIE_5] =
@@ -1592,7 +1592,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Valerie5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Valerie5 }
},
[TRAINER_CINDY_1] =
@@ -1606,7 +1606,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy1
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy1 }
},
[TRAINER_ANONYMOUS_2] =
@@ -1620,7 +1620,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous2 }
},
[TRAINER_BRIANNA_1] =
@@ -1634,7 +1634,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Brianna1
+ .party = {.NoItemCustomMoves = gTrainerParty_Brianna1 }
},
[TRAINER_CINDY_2] =
@@ -1648,7 +1648,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy2
+ .party = {.NoItemCustomMoves = gTrainerParty_Cindy2 }
},
[TRAINER_BRIANNA_2] =
@@ -1662,7 +1662,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Brianna2
+ .party = {.ItemDefaultMoves = gTrainerParty_Brianna2 }
},
[TRAINER_ANETTE] =
@@ -1676,7 +1676,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anette
+ .party = {.ItemDefaultMoves = gTrainerParty_Anette }
},
[TRAINER_CINDY_3] =
@@ -1690,7 +1690,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy3
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy3 }
},
[TRAINER_CINDY_4] =
@@ -1704,7 +1704,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy4
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy4 }
},
[TRAINER_CINDY_5] =
@@ -1718,7 +1718,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy5
+ .party = {.ItemDefaultMoves = gTrainerParty_Cindy5 }
},
[TRAINER_CINDY_6] =
@@ -1732,7 +1732,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cindy6
+ .party = {.ItemCustomMoves = gTrainerParty_Cindy6 }
},
[TRAINER_MELISSA] =
@@ -1746,7 +1746,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Melissa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Melissa }
},
[TRAINER_SHEILA] =
@@ -1760,7 +1760,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sheila
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sheila }
},
[TRAINER_SHIRLEY] =
@@ -1774,7 +1774,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Shirley
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shirley }
},
[TRAINER_JESSICA_1] =
@@ -1788,7 +1788,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica1
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica1 }
},
[TRAINER_CONNIE] =
@@ -1802,7 +1802,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Connie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Connie }
},
[TRAINER_BRIDGET] =
@@ -1816,7 +1816,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Bridget
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bridget }
},
[TRAINER_OLIVIA] =
@@ -1830,7 +1830,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Olivia
+ .party = {.NoItemCustomMoves = gTrainerParty_Olivia }
},
[TRAINER_TIFFANY] =
@@ -1844,7 +1844,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tiffany
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tiffany }
},
[TRAINER_JESSICA_2] =
@@ -1858,7 +1858,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica2
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica2 }
},
[TRAINER_JESSICA_3] =
@@ -1872,7 +1872,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica3
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica3 }
},
[TRAINER_JESSICA_4] =
@@ -1886,7 +1886,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica4
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica4 }
},
[TRAINER_JESSICA_5] =
@@ -1900,7 +1900,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jessica5
+ .party = {.NoItemCustomMoves = gTrainerParty_Jessica5 }
},
[TRAINER_WINSTON_1] =
@@ -1914,7 +1914,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston1
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston1 }
},
[TRAINER_ANONYMOUS_3] =
@@ -1928,7 +1928,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous3 }
},
[TRAINER_GARRET] =
@@ -1942,7 +1942,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Garret
+ .party = {.ItemDefaultMoves = gTrainerParty_Garret }
},
[TRAINER_WINSTON_2] =
@@ -1956,7 +1956,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston2
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston2 }
},
[TRAINER_WINSTON_3] =
@@ -1970,7 +1970,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston3
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston3 }
},
[TRAINER_WINSTON_4] =
@@ -1984,7 +1984,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston4
+ .party = {.ItemDefaultMoves = gTrainerParty_Winston4 }
},
[TRAINER_WINSTON_5] =
@@ -1998,7 +1998,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Winston5
+ .party = {.ItemCustomMoves = gTrainerParty_Winston5 }
},
[TRAINER_STEVE_1] =
@@ -2012,7 +2012,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Steve1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve1 }
},
[TRAINER_CHRIS] =
@@ -2026,7 +2026,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Chris
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chris }
},
[TRAINER_MARK] =
@@ -2040,7 +2040,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Mark
+ .party = {.NoItemDefaultMoves = gTrainerParty_Mark }
},
[TRAINER_KENN] =
@@ -2054,7 +2054,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kenn
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kenn }
},
[TRAINER_STEVE_2] =
@@ -2068,7 +2068,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Steve2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve2 }
},
[TRAINER_STEVE_3] =
@@ -2082,7 +2082,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Steve3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve3 }
},
[TRAINER_STEVE_4] =
@@ -2096,7 +2096,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Steve4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve4 }
},
[TRAINER_STEVE_5] =
@@ -2110,7 +2110,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Steve5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Steve5 }
},
[TRAINER_LUIS] =
@@ -2124,7 +2124,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Luis
+ .party = {.NoItemDefaultMoves = gTrainerParty_Luis }
},
[TRAINER_AUSTIN] =
@@ -2138,7 +2138,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Austin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Austin }
},
[TRAINER_DOUGLAS] =
@@ -2152,7 +2152,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Douglas
+ .party = {.NoItemDefaultMoves = gTrainerParty_Douglas }
},
[TRAINER_DARRIN] =
@@ -2166,7 +2166,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Darrin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Darrin }
},
[TRAINER_TONY_1] =
@@ -2180,7 +2180,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tony1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony1 }
},
[TRAINER_JEROME] =
@@ -2194,7 +2194,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerome
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerome }
},
[TRAINER_MATTHEW] =
@@ -2208,7 +2208,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Matthew
+ .party = {.NoItemDefaultMoves = gTrainerParty_Matthew }
},
[TRAINER_DAVID] =
@@ -2222,7 +2222,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_David
+ .party = {.NoItemDefaultMoves = gTrainerParty_David }
},
[TRAINER_SPENCER] =
@@ -2236,7 +2236,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Spencer
+ .party = {.NoItemDefaultMoves = gTrainerParty_Spencer }
},
[TRAINER_ROLAND] =
@@ -2250,7 +2250,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Roland
+ .party = {.NoItemDefaultMoves = gTrainerParty_Roland }
},
[TRAINER_CODY] =
@@ -2264,7 +2264,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cody
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cody }
},
[TRAINER_STAN] =
@@ -2278,7 +2278,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Stan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Stan }
},
[TRAINER_BARRY] =
@@ -2292,7 +2292,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Barry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Barry }
},
[TRAINER_DEAN] =
@@ -2306,7 +2306,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dean
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dean }
},
[TRAINER_RODNEY] =
@@ -2320,7 +2320,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rodney
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rodney }
},
[TRAINER_RICHARD] =
@@ -2334,7 +2334,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Richard
+ .party = {.NoItemDefaultMoves = gTrainerParty_Richard }
},
[TRAINER_HERMAN] =
@@ -2348,7 +2348,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Herman
+ .party = {.NoItemDefaultMoves = gTrainerParty_Herman }
},
[TRAINER_ANONYMOUS_4] =
@@ -2362,7 +2362,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous4 }
},
[TRAINER_GILBERT] =
@@ -2376,7 +2376,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Gilbert
+ .party = {.NoItemDefaultMoves = gTrainerParty_Gilbert }
},
[TRAINER_FRANKLIN] =
@@ -2390,7 +2390,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Franklin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Franklin }
},
[TRAINER_DANNY] =
@@ -2404,7 +2404,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Danny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Danny }
},
[TRAINER_JACK] =
@@ -2418,7 +2418,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jack
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jack }
},
[TRAINER_DUDLEY] =
@@ -2432,7 +2432,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dudley
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dudley }
},
[TRAINER_CHAD] =
@@ -2446,7 +2446,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Chad
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chad }
},
[TRAINER_TONY_2] =
@@ -2460,7 +2460,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tony2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony2 }
},
[TRAINER_TONY_3] =
@@ -2474,7 +2474,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tony3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony3 }
},
[TRAINER_TONY_4] =
@@ -2488,7 +2488,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tony4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony4 }
},
[TRAINER_TONY_5] =
@@ -2502,7 +2502,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tony5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tony5 }
},
[TRAINER_HIDEKI] =
@@ -2516,7 +2516,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hideki
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hideki }
},
[TRAINER_HITOSHI] =
@@ -2530,7 +2530,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Hitoshi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hitoshi }
},
[TRAINER_KIYO] =
@@ -2544,7 +2544,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Kiyo
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kiyo }
},
[TRAINER_KOICHI] =
@@ -2558,7 +2558,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Koichi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Koichi }
},
[TRAINER_NOB_1] =
@@ -2572,7 +2572,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nob1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob1 }
},
[TRAINER_NOB_2] =
@@ -2586,7 +2586,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nob2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob2 }
},
[TRAINER_NOB_3] =
@@ -2600,7 +2600,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nob3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob3 }
},
[TRAINER_NOB_4] =
@@ -2614,7 +2614,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nob4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nob4 }
},
[TRAINER_NOB_5] =
@@ -2628,7 +2628,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Nob5
+ .party = {.ItemDefaultMoves = gTrainerParty_Nob5 }
},
[TRAINER_YUJI] =
@@ -2642,7 +2642,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Yuji
+ .party = {.NoItemDefaultMoves = gTrainerParty_Yuji }
},
[TRAINER_DAISUKE] =
@@ -2656,7 +2656,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Daisuke
+ .party = {.NoItemDefaultMoves = gTrainerParty_Daisuke }
},
[TRAINER_ATSUSHI] =
@@ -2670,7 +2670,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Atsushi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Atsushi }
},
[TRAINER_KIRK] =
@@ -2684,7 +2684,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kirk
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kirk }
},
[TRAINER_SCOTT] =
@@ -2698,7 +2698,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Scott
+ .party = {.NoItemDefaultMoves = gTrainerParty_Scott }
},
[TRAINER_HARVEY] =
@@ -2712,7 +2712,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Harvey
+ .party = {.NoItemDefaultMoves = gTrainerParty_Harvey }
},
[TRAINER_SHAWN] =
@@ -2726,7 +2726,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Shawn
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shawn }
},
[TRAINER_RANDY] =
@@ -2740,7 +2740,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Randy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Randy }
},
[TRAINER_DALTON_1] =
@@ -2754,7 +2754,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton1 }
},
[TRAINER_DALTON_2] =
@@ -2768,7 +2768,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton2 }
},
[TRAINER_DALTON_3] =
@@ -2782,7 +2782,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton3 }
},
[TRAINER_DALTON_4] =
@@ -2796,7 +2796,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton4 }
},
[TRAINER_DALTON_5] =
@@ -2810,7 +2810,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dalton5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dalton5 }
},
[TRAINER_COLE] =
@@ -2824,7 +2824,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Cole
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cole }
},
[TRAINER_FLINT] =
@@ -2838,7 +2838,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Flint
+ .party = {.NoItemDefaultMoves = gTrainerParty_Flint }
},
[TRAINER_AXLE] =
@@ -2852,7 +2852,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Axle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Axle }
},
[TRAINER_JAKE] =
@@ -2866,7 +2866,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jake
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jake }
},
[TRAINER_ANDY] =
@@ -2880,7 +2880,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Andy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Andy }
},
[TRAINER_BERNIE_1] =
@@ -2894,7 +2894,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie1 }
},
[TRAINER_BERNIE_2] =
@@ -2908,7 +2908,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie2 }
},
[TRAINER_BERNIE_3] =
@@ -2922,7 +2922,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie3 }
},
[TRAINER_BERNIE_4] =
@@ -2936,7 +2936,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie4 }
},
[TRAINER_BERNIE_5] =
@@ -2950,7 +2950,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Bernie5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Bernie5 }
},
[TRAINER_DREW] =
@@ -2964,7 +2964,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Drew
+ .party = {.NoItemCustomMoves = gTrainerParty_Drew }
},
[TRAINER_CLIFF] =
@@ -2978,7 +2978,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Cliff
+ .party = {.NoItemCustomMoves = gTrainerParty_Cliff }
},
[TRAINER_LARRY] =
@@ -2992,7 +2992,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Larry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Larry }
},
[TRAINER_SHANE] =
@@ -3006,7 +3006,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Shane
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shane }
},
[TRAINER_JUSTIN] =
@@ -3020,7 +3020,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Justin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Justin }
},
[TRAINER_ETHAN_1] =
@@ -3034,7 +3034,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Ethan1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan1 }
},
[TRAINER_JEFF] =
@@ -3048,7 +3048,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jeff
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jeff }
},
[TRAINER_TRAVIS] =
@@ -3062,7 +3062,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Travis
+ .party = {.NoItemDefaultMoves = gTrainerParty_Travis }
},
[TRAINER_ETHAN_2] =
@@ -3076,7 +3076,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Ethan2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan2 }
},
[TRAINER_ETHAN_3] =
@@ -3090,7 +3090,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Ethan3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan3 }
},
[TRAINER_ETHAN_4] =
@@ -3104,7 +3104,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ethan4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan4 }
},
[TRAINER_ETHAN_5] =
@@ -3118,7 +3118,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ethan5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ethan5 }
},
[TRAINER_BRENT] =
@@ -3132,7 +3132,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Brent
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brent }
},
[TRAINER_DONALD] =
@@ -3146,7 +3146,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Donald
+ .party = {.NoItemDefaultMoves = gTrainerParty_Donald }
},
[TRAINER_TAYLOR] =
@@ -3160,7 +3160,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Taylor
+ .party = {.NoItemDefaultMoves = gTrainerParty_Taylor }
},
[TRAINER_BRANDON_1] =
@@ -3174,7 +3174,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Brandon1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon1 }
},
[TRAINER_DEREK] =
@@ -3188,7 +3188,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Derek
+ .party = {.NoItemDefaultMoves = gTrainerParty_Derek }
},
[TRAINER_BRANDON_2] =
@@ -3202,7 +3202,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Brandon2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon2 }
},
[TRAINER_BRANDON_3] =
@@ -3216,7 +3216,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Brandon3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon3 }
},
[TRAINER_BRANDON_4] =
@@ -3230,7 +3230,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Brandon4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brandon4 }
},
[TRAINER_BRANDON_5] =
@@ -3244,7 +3244,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 5,
- .party = gTrainerParty_Brandon5
+ .party = {.ItemDefaultMoves = gTrainerParty_Brandon5 }
},
[TRAINER_EDWARD] =
@@ -3258,7 +3258,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Edward
+ .party = {.NoItemCustomMoves = gTrainerParty_Edward }
},
[TRAINER_PRESTON] =
@@ -3272,7 +3272,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Preston
+ .party = {.NoItemDefaultMoves = gTrainerParty_Preston }
},
[TRAINER_VIRGIL] =
@@ -3286,7 +3286,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Virgil
+ .party = {.NoItemDefaultMoves = gTrainerParty_Virgil }
},
[TRAINER_FRITZ] =
@@ -3300,7 +3300,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Fritz
+ .party = {.NoItemDefaultMoves = gTrainerParty_Fritz }
},
[TRAINER_WILLIAM] =
@@ -3314,7 +3314,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_William
+ .party = {.NoItemDefaultMoves = gTrainerParty_William }
},
[TRAINER_JOSHUA] =
@@ -3328,7 +3328,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Joshua
+ .party = {.NoItemDefaultMoves = gTrainerParty_Joshua }
},
[TRAINER_CAMERON_1] =
@@ -3342,7 +3342,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron1 }
},
[TRAINER_CAMERON_2] =
@@ -3356,7 +3356,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron2 }
},
[TRAINER_CAMERON_3] =
@@ -3370,7 +3370,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron3 }
},
[TRAINER_CAMERON_4] =
@@ -3384,7 +3384,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron4 }
},
[TRAINER_CAMERON_5] =
@@ -3398,7 +3398,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cameron5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cameron5 }
},
[TRAINER_JACLYN] =
@@ -3412,7 +3412,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jaclyn
+ .party = {.NoItemCustomMoves = gTrainerParty_Jaclyn }
},
[TRAINER_HANNAH] =
@@ -3426,7 +3426,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Hannah
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hannah }
},
[TRAINER_SAMANTHA] =
@@ -3440,7 +3440,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Samantha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Samantha }
},
[TRAINER_MAURA] =
@@ -3454,7 +3454,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Maura
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maura }
},
[TRAINER_KAYLA] =
@@ -3468,7 +3468,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kayla
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kayla }
},
[TRAINER_ALEXIS] =
@@ -3482,7 +3482,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Alexis
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alexis }
},
[TRAINER_JACKI_1] =
@@ -3496,7 +3496,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki1 }
},
[TRAINER_JACKI_2] =
@@ -3510,7 +3510,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki2 }
},
[TRAINER_JACKI_3] =
@@ -3524,7 +3524,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki3 }
},
[TRAINER_JACKI_4] =
@@ -3538,7 +3538,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki4 }
},
[TRAINER_JACKI_5] =
@@ -3552,7 +3552,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jacki5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacki5 }
},
[TRAINER_WALTER_1] =
@@ -3566,7 +3566,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Walter1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Walter1 }
},
[TRAINER_TUCKER] =
@@ -3580,7 +3580,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tucker
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tucker }
},
[TRAINER_THOMAS] =
@@ -3594,7 +3594,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Thomas
+ .party = {.NoItemDefaultMoves = gTrainerParty_Thomas }
},
[TRAINER_WALTER_2] =
@@ -3608,7 +3608,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Walter2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Walter2 }
},
[TRAINER_WALTER_3] =
@@ -3622,7 +3622,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Walter3
+ .party = {.NoItemCustomMoves = gTrainerParty_Walter3 }
},
[TRAINER_WALTER_4] =
@@ -3636,7 +3636,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Walter4
+ .party = {.NoItemCustomMoves = gTrainerParty_Walter4 }
},
[TRAINER_WALTER_5] =
@@ -3650,7 +3650,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Walter5
+ .party = {.NoItemCustomMoves = gTrainerParty_Walter5 }
},
[TRAINER_SIDNEY] =
@@ -3664,7 +3664,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Sidney
+ .party = {.ItemCustomMoves = gTrainerParty_Sidney }
},
[TRAINER_PHOEBE] =
@@ -3678,7 +3678,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Phoebe
+ .party = {.ItemCustomMoves = gTrainerParty_Phoebe }
},
[TRAINER_GLACIA] =
@@ -3692,7 +3692,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Glacia
+ .party = {.ItemCustomMoves = gTrainerParty_Glacia }
},
[TRAINER_DRAKE] =
@@ -3706,7 +3706,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Drake
+ .party = {.ItemCustomMoves = gTrainerParty_Drake }
},
[TRAINER_ROXANNE] =
@@ -3720,7 +3720,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Roxanne
+ .party = {.NoItemCustomMoves = gTrainerParty_Roxanne }
},
[TRAINER_BRAWLY] =
@@ -3734,7 +3734,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Brawly
+ .party = {.NoItemCustomMoves = gTrainerParty_Brawly }
},
[TRAINER_WATTSON] =
@@ -3748,7 +3748,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Wattson
+ .party = {.NoItemCustomMoves = gTrainerParty_Wattson }
},
[TRAINER_FLANNERY] =
@@ -3762,7 +3762,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Flannery
+ .party = {.NoItemCustomMoves = gTrainerParty_Flannery }
},
[TRAINER_NORMAN] =
@@ -3776,7 +3776,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Norman
+ .party = {.NoItemCustomMoves = gTrainerParty_Norman }
},
[TRAINER_WINONA] =
@@ -3790,7 +3790,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Winona
+ .party = {.NoItemCustomMoves = gTrainerParty_Winona }
},
[TRAINER_TATE_AND_LIZA] =
@@ -3804,7 +3804,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_TateAndLiza
+ .party = {.ItemCustomMoves = gTrainerParty_TateAndLiza }
},
[TRAINER_WALLACE] =
@@ -3818,7 +3818,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wallace
+ .party = {.NoItemCustomMoves = gTrainerParty_Wallace }
},
[TRAINER_JERRY_1] =
@@ -3832,7 +3832,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jerry1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry1 }
},
[TRAINER_TED] =
@@ -3846,7 +3846,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ted
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ted }
},
[TRAINER_PAUL] =
@@ -3860,7 +3860,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Paul
+ .party = {.NoItemDefaultMoves = gTrainerParty_Paul }
},
[TRAINER_JERRY_2] =
@@ -3874,7 +3874,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerry2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry2 }
},
[TRAINER_JERRY_3] =
@@ -3888,7 +3888,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerry3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry3 }
},
[TRAINER_JERRY_4] =
@@ -3902,7 +3902,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jerry4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry4 }
},
[TRAINER_JERRY_5] =
@@ -3916,7 +3916,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jerry5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jerry5 }
},
[TRAINER_KAREN_1] =
@@ -3930,7 +3930,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen1 }
},
[TRAINER_GEORGIA] =
@@ -3944,7 +3944,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Georgia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Georgia }
},
[TRAINER_KAREN_2] =
@@ -3958,7 +3958,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen2 }
},
[TRAINER_KAREN_3] =
@@ -3972,7 +3972,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen3 }
},
[TRAINER_KAREN_4] =
@@ -3986,7 +3986,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen4 }
},
[TRAINER_KAREN_5] =
@@ -4000,7 +4000,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Karen5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Karen5 }
},
[TRAINER_KATE_AND_JOY] =
@@ -4014,7 +4014,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_KateAndJoy
+ .party = {.NoItemCustomMoves = gTrainerParty_KateAndJoy }
},
[TRAINER_ANNA_AND_MEG_1] =
@@ -4028,7 +4028,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg1
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg1 }
},
[TRAINER_ANNA_AND_MEG_2] =
@@ -4042,7 +4042,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg2
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg2 }
},
[TRAINER_ANNA_AND_MEG_3] =
@@ -4056,7 +4056,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg3
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg3 }
},
[TRAINER_ANNA_AND_MEG_4] =
@@ -4070,7 +4070,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg4
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg4 }
},
[TRAINER_ANNA_AND_MEG_5] =
@@ -4084,7 +4084,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AnnaAndMeg5
+ .party = {.NoItemCustomMoves = gTrainerParty_AnnaAndMeg5 }
},
[TRAINER_VICTOR] =
@@ -4098,7 +4098,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Victor
+ .party = {.ItemDefaultMoves = gTrainerParty_Victor }
},
[TRAINER_MIGUEL_1] =
@@ -4112,7 +4112,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel1
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel1 }
},
[TRAINER_COLTON] =
@@ -4126,7 +4126,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Colton
+ .party = {.ItemCustomMoves = gTrainerParty_Colton }
},
[TRAINER_MIGUEL_2] =
@@ -4140,7 +4140,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel2
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel2 }
},
[TRAINER_MIGUEL_3] =
@@ -4154,7 +4154,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel3
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel3 }
},
[TRAINER_MIGUEL_4] =
@@ -4168,7 +4168,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel4
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel4 }
},
[TRAINER_MIGUEL_5] =
@@ -4182,7 +4182,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Miguel5
+ .party = {.ItemDefaultMoves = gTrainerParty_Miguel5 }
},
[TRAINER_VICTORIA] =
@@ -4196,7 +4196,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 1,
- .party = gTrainerParty_Victoria
+ .party = {.ItemDefaultMoves = gTrainerParty_Victoria }
},
[TRAINER_VANESSA] =
@@ -4210,7 +4210,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Vanessa
+ .party = {.ItemDefaultMoves = gTrainerParty_Vanessa }
},
[TRAINER_MARISSA] =
@@ -4224,7 +4224,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Marissa
+ .party = {.ItemDefaultMoves = gTrainerParty_Marissa }
},
[TRAINER_ISABEL_1] =
@@ -4238,7 +4238,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel1
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel1 }
},
[TRAINER_ISABEL_2] =
@@ -4252,7 +4252,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel2
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel2 }
},
[TRAINER_ISABEL_3] =
@@ -4266,7 +4266,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel3
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel3 }
},
[TRAINER_ISABEL_4] =
@@ -4280,7 +4280,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel4
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel4 }
},
[TRAINER_ISABEL_5] =
@@ -4294,7 +4294,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Isabel5
+ .party = {.ItemDefaultMoves = gTrainerParty_Isabel5 }
},
[TRAINER_TIMOTHY_1] =
@@ -4308,7 +4308,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Timothy1 }
},
[TRAINER_TIMOTHY_2] =
@@ -4322,7 +4322,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy2
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy2 }
},
[TRAINER_TIMOTHY_3] =
@@ -4336,7 +4336,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy3
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy3 }
},
[TRAINER_TIMOTHY_4] =
@@ -4350,7 +4350,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy4
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy4 }
},
[TRAINER_TIMOTHY_5] =
@@ -4364,7 +4364,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Timothy5
+ .party = {.NoItemCustomMoves = gTrainerParty_Timothy5 }
},
[TRAINER_VICKY] =
@@ -4378,7 +4378,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Vicky
+ .party = {.NoItemCustomMoves = gTrainerParty_Vicky }
},
[TRAINER_SHELBY_1] =
@@ -4392,7 +4392,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby1 }
},
[TRAINER_SHELBY_2] =
@@ -4406,7 +4406,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby2 }
},
[TRAINER_SHELBY_3] =
@@ -4420,7 +4420,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby3 }
},
[TRAINER_SHELBY_4] =
@@ -4434,7 +4434,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby4 }
},
[TRAINER_SHELBY_5] =
@@ -4448,7 +4448,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Shelby5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Shelby5 }
},
[TRAINER_CALVIN_1] =
@@ -4462,7 +4462,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Calvin1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin1 }
},
[TRAINER_BILLY] =
@@ -4476,7 +4476,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Billy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Billy }
},
[TRAINER_JOSH] =
@@ -4490,7 +4490,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Josh
+ .party = {.NoItemCustomMoves = gTrainerParty_Josh }
},
[TRAINER_TOMMY] =
@@ -4504,7 +4504,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tommy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tommy }
},
[TRAINER_JOEY] =
@@ -4518,7 +4518,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Joey
+ .party = {.NoItemDefaultMoves = gTrainerParty_Joey }
},
[TRAINER_BEN] =
@@ -4532,7 +4532,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ben
+ .party = {.NoItemCustomMoves = gTrainerParty_Ben }
},
[TRAINER_ANONYMOUS_5] =
@@ -4546,7 +4546,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Anonymous5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous5 }
},
[TRAINER_KEVIN] =
@@ -4560,7 +4560,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kevin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kevin }
},
[TRAINER_NEAL] =
@@ -4574,7 +4574,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Neal
+ .party = {.NoItemDefaultMoves = gTrainerParty_Neal }
},
[TRAINER_DILLON] =
@@ -4588,7 +4588,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dillon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dillon }
},
[TRAINER_CALVIN_2] =
@@ -4602,7 +4602,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Calvin2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin2 }
},
[TRAINER_CALVIN_3] =
@@ -4616,7 +4616,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Calvin3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin3 }
},
[TRAINER_CALVIN_4] =
@@ -4630,7 +4630,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Calvin4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin4 }
},
[TRAINER_CALVIN_5] =
@@ -4644,7 +4644,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Calvin5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Calvin5 }
},
[TRAINER_EDDIE] =
@@ -4658,7 +4658,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Eddie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Eddie }
},
[TRAINER_ALLEN] =
@@ -4672,7 +4672,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Allen
+ .party = {.NoItemDefaultMoves = gTrainerParty_Allen }
},
[TRAINER_TIMMY] =
@@ -4686,7 +4686,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Timmy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Timmy }
},
[TRAINER_STEVEN] =
@@ -4700,7 +4700,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 6,
- .party = gTrainerParty_Steven
+ .party = {.ItemCustomMoves = gTrainerParty_Steven }
},
[TRAINER_ANDREW] =
@@ -4714,7 +4714,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Andrew
+ .party = {.NoItemDefaultMoves = gTrainerParty_Andrew }
},
[TRAINER_IVAN] =
@@ -4728,7 +4728,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ivan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ivan }
},
[TRAINER_CLAUDE] =
@@ -4742,7 +4742,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Claude
+ .party = {.NoItemDefaultMoves = gTrainerParty_Claude }
},
[TRAINER_ELLIOT_1] =
@@ -4756,7 +4756,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Elliot1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot1 }
},
[TRAINER_NED] =
@@ -4770,7 +4770,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Ned
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ned }
},
[TRAINER_DALE] =
@@ -4784,7 +4784,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Dale
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dale }
},
[TRAINER_NOLAN] =
@@ -4798,7 +4798,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nolan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nolan }
},
[TRAINER_BARNY] =
@@ -4812,7 +4812,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Barny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Barny }
},
[TRAINER_WADE] =
@@ -4826,7 +4826,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Wade
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wade }
},
[TRAINER_CARTER] =
@@ -4840,7 +4840,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Carter
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carter }
},
[TRAINER_ELLIOT_2] =
@@ -4854,7 +4854,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Elliot2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot2 }
},
[TRAINER_ELLIOT_3] =
@@ -4868,7 +4868,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Elliot3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot3 }
},
[TRAINER_ELLIOT_4] =
@@ -4882,7 +4882,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Elliot4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot4 }
},
[TRAINER_ELLIOT_5] =
@@ -4896,7 +4896,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 4,
- .party = gTrainerParty_Elliot5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Elliot5 }
},
[TRAINER_RONALD] =
@@ -4910,7 +4910,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Ronald
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ronald }
},
[TRAINER_JACOB] =
@@ -4924,7 +4924,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jacob
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jacob }
},
[TRAINER_ANTHONY] =
@@ -4938,7 +4938,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Anthony
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anthony }
},
[TRAINER_BENJAMIN_1] =
@@ -4952,7 +4952,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin1 }
},
[TRAINER_BENJAMIN_2] =
@@ -4966,7 +4966,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin2 }
},
[TRAINER_BENJAMIN_3] =
@@ -4980,7 +4980,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin3 }
},
[TRAINER_BENJAMIN_4] =
@@ -4994,7 +4994,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin4 }
},
[TRAINER_BENJAMIN_5] =
@@ -5008,7 +5008,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Benjamin5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benjamin5 }
},
[TRAINER_ABIGAIL_1] =
@@ -5022,7 +5022,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail1 }
},
[TRAINER_JASMINE] =
@@ -5036,7 +5036,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jasmine
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jasmine }
},
[TRAINER_ABIGAIL_2] =
@@ -5050,7 +5050,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail2 }
},
[TRAINER_ABIGAIL_3] =
@@ -5064,7 +5064,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail3 }
},
[TRAINER_ABIGAIL_4] =
@@ -5078,7 +5078,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail4 }
},
[TRAINER_ABIGAIL_5] =
@@ -5092,7 +5092,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Abigail5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Abigail5 }
},
[TRAINER_DYLAN_1] =
@@ -5106,7 +5106,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan1 }
},
[TRAINER_DYLAN_2] =
@@ -5120,7 +5120,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan2 }
},
[TRAINER_DYLAN_3] =
@@ -5134,7 +5134,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan3 }
},
[TRAINER_DYLAN_4] =
@@ -5148,7 +5148,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan4 }
},
[TRAINER_DYLAN_5] =
@@ -5162,7 +5162,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dylan5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dylan5 }
},
[TRAINER_MARIA_1] =
@@ -5176,7 +5176,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria1 }
},
[TRAINER_MARIA_2] =
@@ -5190,7 +5190,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria2 }
},
[TRAINER_MARIA_3] =
@@ -5204,7 +5204,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria3 }
},
[TRAINER_MARIA_4] =
@@ -5218,7 +5218,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria4 }
},
[TRAINER_MARIA_5] =
@@ -5232,7 +5232,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Maria5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maria5 }
},
[TRAINER_CALEB] =
@@ -5246,7 +5246,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Caleb
+ .party = {.NoItemDefaultMoves = gTrainerParty_Caleb }
},
[TRAINER_ANONYMOUS_6] =
@@ -5260,7 +5260,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous6
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous6 }
},
[TRAINER_ISAIAH_1] =
@@ -5274,7 +5274,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah1 }
},
[TRAINER_ANONYMOUS_7] =
@@ -5288,7 +5288,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous7
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous7 }
},
[TRAINER_CHASE] =
@@ -5302,7 +5302,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Chase
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chase }
},
[TRAINER_ISAIAH_2] =
@@ -5316,7 +5316,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah2 }
},
[TRAINER_ISAIAH_3] =
@@ -5330,7 +5330,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah3 }
},
[TRAINER_ISAIAH_4] =
@@ -5344,7 +5344,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah4 }
},
[TRAINER_ISAIAH_5] =
@@ -5358,7 +5358,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Isaiah5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaiah5 }
},
[TRAINER_ANONYMOUS_8] =
@@ -5372,7 +5372,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Anonymous8
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous8 }
},
[TRAINER_CONNOR] =
@@ -5386,7 +5386,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Connor
+ .party = {.NoItemDefaultMoves = gTrainerParty_Connor }
},
[TRAINER_ANONYMOUS_9] =
@@ -5400,7 +5400,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous9
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous9 }
},
[TRAINER_KATELYN_1] =
@@ -5414,7 +5414,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn1 }
},
[TRAINER_ALLISON] =
@@ -5428,7 +5428,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Allison
+ .party = {.NoItemDefaultMoves = gTrainerParty_Allison }
},
[TRAINER_KATELYN_2] =
@@ -5442,7 +5442,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn2 }
},
[TRAINER_KATELYN_3] =
@@ -5456,7 +5456,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn3 }
},
[TRAINER_KATELYN_4] =
@@ -5470,7 +5470,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn4 }
},
[TRAINER_KATELYN_5] =
@@ -5484,7 +5484,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Katelyn5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katelyn5 }
},
[TRAINER_NICOLAS_1] =
@@ -5498,7 +5498,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nicolas1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas1 }
},
[TRAINER_NICOLAS_2] =
@@ -5512,7 +5512,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nicolas2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas2 }
},
[TRAINER_NICOLAS_3] =
@@ -5526,7 +5526,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nicolas3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas3 }
},
[TRAINER_NICOLAS_4] =
@@ -5540,7 +5540,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nicolas4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicolas4 }
},
[TRAINER_NICOLAS_5] =
@@ -5554,7 +5554,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nicolas5
+ .party = {.ItemDefaultMoves = gTrainerParty_Nicolas5 }
},
[TRAINER_AARON] =
@@ -5568,7 +5568,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Aaron
+ .party = {.NoItemDefaultMoves = gTrainerParty_Aaron }
},
[TRAINER_PERRY] =
@@ -5582,7 +5582,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Perry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Perry }
},
[TRAINER_HUGH] =
@@ -5596,7 +5596,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hugh
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hugh }
},
[TRAINER_PHIL] =
@@ -5610,7 +5610,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Phil
+ .party = {.NoItemDefaultMoves = gTrainerParty_Phil }
},
[TRAINER_JARED] =
@@ -5624,7 +5624,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jared
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jared }
},
[TRAINER_ANONYMOUS_10] =
@@ -5638,7 +5638,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Anonymous10
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous10 }
},
[TRAINER_TANNER] =
@@ -5652,7 +5652,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tanner
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tanner }
},
[TRAINER_WILL] =
@@ -5666,7 +5666,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Will
+ .party = {.NoItemDefaultMoves = gTrainerParty_Will }
},
[TRAINER_COLIN] =
@@ -5680,7 +5680,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Colin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Colin }
},
[TRAINER_ROBERT_1] =
@@ -5694,7 +5694,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Robert1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert1 }
},
[TRAINER_BENNY] =
@@ -5708,7 +5708,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Benny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Benny }
},
[TRAINER_CHESTER] =
@@ -5722,7 +5722,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Chester
+ .party = {.NoItemDefaultMoves = gTrainerParty_Chester }
},
[TRAINER_ROBERT_2] =
@@ -5736,7 +5736,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert2 }
},
[TRAINER_ROBERT_3] =
@@ -5750,7 +5750,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert3 }
},
[TRAINER_ROBERT_4] =
@@ -5764,7 +5764,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert4 }
},
[TRAINER_ROBERT_5] =
@@ -5778,7 +5778,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Robert5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robert5 }
},
[TRAINER_ALEX] =
@@ -5792,7 +5792,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Alex
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alex }
},
[TRAINER_BECK] =
@@ -5806,7 +5806,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Beck
+ .party = {.NoItemDefaultMoves = gTrainerParty_Beck }
},
[TRAINER_YASU] =
@@ -5820,7 +5820,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 1,
- .party = gTrainerParty_Yasu
+ .party = {.NoItemDefaultMoves = gTrainerParty_Yasu }
},
[TRAINER_TAKASHI] =
@@ -5834,7 +5834,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 3,
- .party = gTrainerParty_Takashi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Takashi }
},
[TRAINER_MAKOTO] =
@@ -5848,7 +5848,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 1,
- .party = gTrainerParty_Makoto
+ .party = {.NoItemDefaultMoves = gTrainerParty_Makoto }
},
[TRAINER_HIDEO_1] =
@@ -5862,7 +5862,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Hideo1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hideo1 }
},
[TRAINER_LAO_1] =
@@ -5876,7 +5876,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao1
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao1 }
},
[TRAINER_LUNG] =
@@ -5890,7 +5890,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 2,
- .party = gTrainerParty_Lung
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lung }
},
[TRAINER_LAO_2] =
@@ -5904,7 +5904,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao2
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao2 }
},
[TRAINER_LAO_3] =
@@ -5918,7 +5918,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao3
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao3 }
},
[TRAINER_LAO_4] =
@@ -5932,7 +5932,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao4
+ .party = {.NoItemCustomMoves = gTrainerParty_Lao4 }
},
[TRAINER_LAO_5] =
@@ -5946,7 +5946,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x0,
.partySize = 4,
- .party = gTrainerParty_Lao5
+ .party = {.ItemCustomMoves = gTrainerParty_Lao5 }
},
[TRAINER_TESSA] =
@@ -5960,7 +5960,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tessa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tessa }
},
[TRAINER_LAURA] =
@@ -5974,7 +5974,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Laura
+ .party = {.NoItemDefaultMoves = gTrainerParty_Laura }
},
[TRAINER_CYNDY_1] =
@@ -5988,7 +5988,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy1 }
},
[TRAINER_CORA] =
@@ -6002,7 +6002,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Cora
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cora }
},
[TRAINER_JILL] =
@@ -6016,7 +6016,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jill
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jill }
},
[TRAINER_CYNDY_2] =
@@ -6030,7 +6030,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy2 }
},
[TRAINER_CYNDY_3] =
@@ -6044,7 +6044,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy3 }
},
[TRAINER_CYNDY_4] =
@@ -6058,7 +6058,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy4 }
},
[TRAINER_CYNDY_5] =
@@ -6072,7 +6072,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Cyndy5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Cyndy5 }
},
[TRAINER_MADELINE_1] =
@@ -6086,7 +6086,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Madeline1
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline1 }
},
[TRAINER_CLARISSA] =
@@ -6100,7 +6100,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Clarissa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Clarissa }
},
[TRAINER_ANGELICA] =
@@ -6114,7 +6114,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Angelica
+ .party = {.NoItemDefaultMoves = gTrainerParty_Angelica }
},
[TRAINER_MADELINE_2] =
@@ -6128,7 +6128,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Madeline2
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline2 }
},
[TRAINER_MADELINE_3] =
@@ -6142,7 +6142,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Madeline3
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline3 }
},
[TRAINER_MADELINE_4] =
@@ -6156,7 +6156,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Madeline4
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline4 }
},
[TRAINER_MADELINE_5] =
@@ -6170,7 +6170,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Madeline5
+ .party = {.NoItemCustomMoves = gTrainerParty_Madeline5 }
},
[TRAINER_BEVERLY] =
@@ -6184,7 +6184,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Beverly
+ .party = {.NoItemDefaultMoves = gTrainerParty_Beverly }
},
[TRAINER_DAWN] =
@@ -6198,7 +6198,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Dawn
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dawn }
},
[TRAINER_NICOLE] =
@@ -6212,7 +6212,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Nicole
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nicole }
},
[TRAINER_DENISE] =
@@ -6226,7 +6226,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Denise
+ .party = {.NoItemDefaultMoves = gTrainerParty_Denise }
},
[TRAINER_BETH] =
@@ -6240,7 +6240,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Beth
+ .party = {.NoItemDefaultMoves = gTrainerParty_Beth }
},
[TRAINER_TARA] =
@@ -6254,7 +6254,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tara
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tara }
},
[TRAINER_MISSY] =
@@ -6268,7 +6268,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Missy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Missy }
},
[TRAINER_ALICE] =
@@ -6282,7 +6282,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Alice
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alice }
},
[TRAINER_JENNY_1] =
@@ -6296,7 +6296,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jenny1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny1 }
},
[TRAINER_GRACE] =
@@ -6310,7 +6310,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grace
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grace }
},
[TRAINER_TANYA] =
@@ -6324,7 +6324,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tanya
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tanya }
},
[TRAINER_SHARON] =
@@ -6338,7 +6338,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Sharon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sharon }
},
[TRAINER_NIKKI] =
@@ -6352,7 +6352,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Nikki
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nikki }
},
[TRAINER_BRENDA] =
@@ -6366,7 +6366,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Brenda
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brenda }
},
[TRAINER_KATIE] =
@@ -6380,7 +6380,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Katie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Katie }
},
[TRAINER_SUSIE] =
@@ -6394,7 +6394,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Susie
+ .party = {.NoItemDefaultMoves = gTrainerParty_Susie }
},
[TRAINER_KARA] =
@@ -6408,7 +6408,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kara
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kara }
},
[TRAINER_DANA] =
@@ -6422,7 +6422,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dana
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dana }
},
[TRAINER_ERIN] =
@@ -6436,7 +6436,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Erin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Erin }
},
[TRAINER_DEBRA] =
@@ -6450,7 +6450,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Debra
+ .party = {.NoItemDefaultMoves = gTrainerParty_Debra }
},
[TRAINER_LINDA] =
@@ -6464,7 +6464,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Linda
+ .party = {.NoItemDefaultMoves = gTrainerParty_Linda }
},
[TRAINER_KAYLEE] =
@@ -6478,7 +6478,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kaylee
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kaylee }
},
[TRAINER_LAUREL] =
@@ -6492,7 +6492,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Laurel
+ .party = {.NoItemDefaultMoves = gTrainerParty_Laurel }
},
[TRAINER_DARCY] =
@@ -6506,7 +6506,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Darcy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Darcy }
},
[TRAINER_JENNY_2] =
@@ -6520,7 +6520,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jenny2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny2 }
},
[TRAINER_JENNY_3] =
@@ -6534,7 +6534,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Jenny3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny3 }
},
[TRAINER_JENNY_4] =
@@ -6548,7 +6548,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Jenny4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny4 }
},
[TRAINER_JENNY_5] =
@@ -6562,7 +6562,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jenny5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenny5 }
},
[TRAINER_HEIDI] =
@@ -6576,7 +6576,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Heidi
+ .party = {.NoItemCustomMoves = gTrainerParty_Heidi }
},
[TRAINER_BECKY] =
@@ -6590,7 +6590,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Becky
+ .party = {.NoItemCustomMoves = gTrainerParty_Becky }
},
[TRAINER_CAROL] =
@@ -6604,7 +6604,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Carol
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carol }
},
[TRAINER_NANCY] =
@@ -6618,7 +6618,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nancy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nancy }
},
[TRAINER_MARTHA] =
@@ -6632,7 +6632,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Martha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Martha }
},
[TRAINER_DIANA_1] =
@@ -6646,7 +6646,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana1 }
},
[TRAINER_NINA] =
@@ -6660,7 +6660,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Nina
+ .party = {.NoItemDefaultMoves = gTrainerParty_Nina }
},
[TRAINER_IRENE] =
@@ -6674,7 +6674,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Irene
+ .party = {.NoItemDefaultMoves = gTrainerParty_Irene }
},
[TRAINER_DIANA_2] =
@@ -6688,7 +6688,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana2 }
},
[TRAINER_DIANA_3] =
@@ -6702,7 +6702,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana3 }
},
[TRAINER_DIANA_4] =
@@ -6716,7 +6716,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana4 }
},
[TRAINER_DIANA_5] =
@@ -6730,7 +6730,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Diana5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Diana5 }
},
[TRAINER_AMY_AND_LIV_1] =
@@ -6744,7 +6744,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv1
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv1 }
},
[TRAINER_AMY_AND_LIV_2] =
@@ -6758,7 +6758,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv2
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv2 }
},
[TRAINER_GINA_AND_MIA_1] =
@@ -6772,7 +6772,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GinaAndMia1
+ .party = {.NoItemDefaultMoves = gTrainerParty_GinaAndMia1 }
},
[TRAINER_MIU_AND_YUKI] =
@@ -6786,7 +6786,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_MiuAndYuki
+ .party = {.NoItemDefaultMoves = gTrainerParty_MiuAndYuki }
},
[TRAINER_AMY_AND_LIV_3] =
@@ -6800,7 +6800,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv3
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv3 }
},
[TRAINER_GINA_AND_MIA_2] =
@@ -6814,7 +6814,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_GinaAndMia2
+ .party = {.NoItemCustomMoves = gTrainerParty_GinaAndMia2 }
},
[TRAINER_AMY_AND_LIV_4] =
@@ -6828,7 +6828,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv4
+ .party = {.NoItemDefaultMoves = gTrainerParty_AmyAndLiv4 }
},
[TRAINER_AMY_AND_LIV_5] =
@@ -6842,7 +6842,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv5
+ .party = {.NoItemCustomMoves = gTrainerParty_AmyAndLiv5 }
},
[TRAINER_AMY_AND_LIV_6] =
@@ -6856,7 +6856,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_AmyAndLiv6
+ .party = {.NoItemCustomMoves = gTrainerParty_AmyAndLiv6 }
},
[TRAINER_HUEY] =
@@ -6870,7 +6870,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Huey
+ .party = {.NoItemDefaultMoves = gTrainerParty_Huey }
},
[TRAINER_EDMOND] =
@@ -6884,7 +6884,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Edmond
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edmond }
},
[TRAINER_ERNEST_1] =
@@ -6898,7 +6898,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest1 }
},
[TRAINER_DWAYNE] =
@@ -6912,7 +6912,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Dwayne
+ .party = {.NoItemDefaultMoves = gTrainerParty_Dwayne }
},
[TRAINER_PHILLIP] =
@@ -6926,7 +6926,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Phillip
+ .party = {.NoItemDefaultMoves = gTrainerParty_Phillip }
},
[TRAINER_LEONARD] =
@@ -6940,7 +6940,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Leonard
+ .party = {.NoItemDefaultMoves = gTrainerParty_Leonard }
},
[TRAINER_DUNCAN] =
@@ -6954,7 +6954,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Duncan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Duncan }
},
[TRAINER_ERNEST_2] =
@@ -6968,7 +6968,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest2 }
},
[TRAINER_ERNEST_3] =
@@ -6982,7 +6982,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest3 }
},
[TRAINER_ERNEST_4] =
@@ -6996,7 +6996,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest4 }
},
[TRAINER_ERNEST_5] =
@@ -7010,7 +7010,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Ernest5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ernest5 }
},
[TRAINER_ANONYMOUS_11] =
@@ -7024,7 +7024,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Anonymous11
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous11 }
},
[TRAINER_ANONYMOUS_12] =
@@ -7038,7 +7038,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Anonymous12
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous12 }
},
[TRAINER_ANONYMOUS_13] =
@@ -7052,7 +7052,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Anonymous13
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous13 }
},
[TRAINER_SONNY] =
@@ -7066,7 +7066,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sonny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sonny }
},
[TRAINER_DONOVAN] =
@@ -7080,7 +7080,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Donovan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Donovan }
},
[TRAINER_GERALD] =
@@ -7094,7 +7094,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Gerald
+ .party = {.NoItemDefaultMoves = gTrainerParty_Gerald }
},
[TRAINER_KELVIN] =
@@ -7108,7 +7108,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Kelvin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kelvin }
},
[TRAINER_KODY] =
@@ -7122,7 +7122,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Kody
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kody }
},
[TRAINER_TEVIN] =
@@ -7136,7 +7136,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Tevin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tevin }
},
[TRAINER_DAMON] =
@@ -7150,7 +7150,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Damon
+ .party = {.NoItemDefaultMoves = gTrainerParty_Damon }
},
[TRAINER_PABLO] =
@@ -7164,7 +7164,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Pablo
+ .party = {.NoItemDefaultMoves = gTrainerParty_Pablo }
},
[TRAINER_EDWIN_1] =
@@ -7178,7 +7178,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin1 }
},
[TRAINER_HECTOR_1] =
@@ -7192,7 +7192,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hector1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hector1 }
},
[TRAINER_HECTOR_2] =
@@ -7206,7 +7206,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Hector2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Hector2 }
},
[TRAINER_EDWIN_2] =
@@ -7220,7 +7220,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin2 }
},
[TRAINER_EDWIN_3] =
@@ -7234,7 +7234,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin3 }
},
[TRAINER_EDWIN_4] =
@@ -7248,7 +7248,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin4 }
},
[TRAINER_EDWIN_5] =
@@ -7262,7 +7262,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Edwin5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Edwin5 }
},
[TRAINER_WALLY_1] =
@@ -7276,7 +7276,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally1
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally1 }
},
[TRAINER_BRENDAN_1] =
@@ -7290,7 +7290,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Brendan1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan1 }
},
[TRAINER_BRENDAN_2] =
@@ -7304,7 +7304,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan2 }
},
[TRAINER_BRENDAN_3] =
@@ -7318,7 +7318,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan3 }
},
[TRAINER_BRENDAN_4] =
@@ -7332,7 +7332,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Brendan4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan4 }
},
[TRAINER_BRENDAN_5] =
@@ -7346,7 +7346,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan5 }
},
[TRAINER_BRENDAN_6] =
@@ -7360,7 +7360,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan6
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan6 }
},
[TRAINER_BRENDAN_7] =
@@ -7374,7 +7374,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Brendan7
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan7 }
},
[TRAINER_BRENDAN_8] =
@@ -7388,7 +7388,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan8
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan8 }
},
[TRAINER_BRENDAN_9] =
@@ -7402,7 +7402,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Brendan9
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan9 }
},
[TRAINER_MAY_1] =
@@ -7416,7 +7416,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_May1
+ .party = {.NoItemDefaultMoves = gTrainerParty_May1 }
},
[TRAINER_MAY_2] =
@@ -7430,7 +7430,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May2
+ .party = {.NoItemDefaultMoves = gTrainerParty_May2 }
},
[TRAINER_MAY_3] =
@@ -7444,7 +7444,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May3
+ .party = {.NoItemDefaultMoves = gTrainerParty_May3 }
},
[TRAINER_MAY_4] =
@@ -7458,7 +7458,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_May4
+ .party = {.NoItemDefaultMoves = gTrainerParty_May4 }
},
[TRAINER_MAY_5] =
@@ -7472,7 +7472,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May5
+ .party = {.NoItemDefaultMoves = gTrainerParty_May5 }
},
[TRAINER_MAY_6] =
@@ -7486,7 +7486,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May6
+ .party = {.NoItemDefaultMoves = gTrainerParty_May6 }
},
[TRAINER_MAY_7] =
@@ -7500,7 +7500,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_May7
+ .party = {.NoItemDefaultMoves = gTrainerParty_May7 }
},
[TRAINER_MAY_8] =
@@ -7514,7 +7514,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May8
+ .party = {.NoItemDefaultMoves = gTrainerParty_May8 }
},
[TRAINER_MAY_9] =
@@ -7528,7 +7528,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_May9
+ .party = {.NoItemDefaultMoves = gTrainerParty_May9 }
},
[TRAINER_ISAAC_1] =
@@ -7542,7 +7542,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac1 }
},
[TRAINER_RILEY] =
@@ -7556,7 +7556,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Riley
+ .party = {.NoItemDefaultMoves = gTrainerParty_Riley }
},
[TRAINER_AIDAN] =
@@ -7570,7 +7570,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Aidan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Aidan }
},
[TRAINER_ISAAC_2] =
@@ -7584,7 +7584,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac2 }
},
[TRAINER_ISAAC_3] =
@@ -7598,7 +7598,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac3 }
},
[TRAINER_ISAAC_4] =
@@ -7612,7 +7612,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac4 }
},
[TRAINER_ISAAC_5] =
@@ -7626,7 +7626,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Isaac5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Isaac5 }
},
[TRAINER_LYDIA_1] =
@@ -7640,7 +7640,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia1 }
},
[TRAINER_ALEXIA] =
@@ -7654,7 +7654,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Alexia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alexia }
},
[TRAINER_DANIELLE] =
@@ -7668,7 +7668,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Danielle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Danielle }
},
[TRAINER_LYDIA_2] =
@@ -7682,7 +7682,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia2 }
},
[TRAINER_LYDIA_3] =
@@ -7696,7 +7696,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia3 }
},
[TRAINER_LYDIA_4] =
@@ -7710,7 +7710,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia4 }
},
[TRAINER_LYDIA_5] =
@@ -7724,7 +7724,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lydia5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lydia5 }
},
[TRAINER_JACKSON_1] =
@@ -7738,7 +7738,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Jackson1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson1 }
},
[TRAINER_CARLOS] =
@@ -7752,7 +7752,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Carlos
+ .party = {.NoItemDefaultMoves = gTrainerParty_Carlos }
},
[TRAINER_SEBASTIAN] =
@@ -7766,7 +7766,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Sebastian
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sebastian }
},
[TRAINER_JACKSON_2] =
@@ -7780,7 +7780,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Jackson2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson2 }
},
[TRAINER_JACKSON_3] =
@@ -7794,7 +7794,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Jackson3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson3 }
},
[TRAINER_JACKSON_4] =
@@ -7808,7 +7808,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 1,
- .party = gTrainerParty_Jackson4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson4 }
},
[TRAINER_JACKSON_5] =
@@ -7822,7 +7822,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Jackson5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jackson5 }
},
[TRAINER_CATHERINE_1] =
@@ -7836,7 +7836,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Catherine1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine1 }
},
[TRAINER_JENNA] =
@@ -7850,7 +7850,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Jenna
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jenna }
},
[TRAINER_SOPHIA] =
@@ -7864,7 +7864,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Sophia
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sophia }
},
[TRAINER_CATHERINE_2] =
@@ -7878,7 +7878,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Catherine2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine2 }
},
[TRAINER_CATHERINE_3] =
@@ -7892,7 +7892,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Catherine3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine3 }
},
[TRAINER_CATHERINE_4] =
@@ -7906,7 +7906,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Catherine4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine4 }
},
[TRAINER_CATHERINE_5] =
@@ -7920,7 +7920,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Catherine5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Catherine5 }
},
[TRAINER_MAXIE_1] =
@@ -7934,7 +7934,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Maxie1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maxie1 }
},
[TRAINER_GRUNT_28] =
@@ -7948,7 +7948,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt28
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt28 }
},
[TRAINER_GRUNT_29] =
@@ -7962,7 +7962,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Grunt29
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt29 }
},
[TRAINER_GRUNT_30] =
@@ -7976,7 +7976,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt30
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt30 }
},
[TRAINER_GRUNT_31] =
@@ -7990,7 +7990,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt31
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt31 }
},
[TRAINER_GRUNT_32] =
@@ -8004,7 +8004,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt32
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt32 }
},
[TRAINER_GRUNT_33] =
@@ -8018,7 +8018,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt33
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt33 }
},
[TRAINER_GRUNT_34] =
@@ -8032,7 +8032,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt34
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt34 }
},
[TRAINER_GRUNT_35] =
@@ -8046,7 +8046,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt35
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt35 }
},
[TRAINER_GRUNT_36] =
@@ -8060,7 +8060,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt36
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt36 }
},
[TRAINER_GRUNT_37] =
@@ -8074,7 +8074,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt37
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt37 }
},
[TRAINER_GRUNT_38] =
@@ -8088,7 +8088,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt38
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt38 }
},
[TRAINER_GRUNT_39] =
@@ -8102,7 +8102,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt39
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt39 }
},
[TRAINER_GRUNT_40] =
@@ -8116,7 +8116,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt40
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt40 }
},
[TRAINER_GRUNT_41] =
@@ -8130,7 +8130,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt41
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt41 }
},
[TRAINER_GRUNT_42] =
@@ -8144,7 +8144,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt42
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt42 }
},
[TRAINER_GRUNT_43] =
@@ -8158,7 +8158,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt43
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt43 }
},
[TRAINER_GRUNT_44] =
@@ -8172,7 +8172,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt44
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt44 }
},
[TRAINER_GRUNT_45] =
@@ -8186,7 +8186,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt45
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt45 }
},
[TRAINER_GRUNT_46] =
@@ -8200,7 +8200,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt46
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt46 }
},
[TRAINER_GRUNT_47] =
@@ -8214,7 +8214,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt47
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt47 }
},
[TRAINER_GRUNT_48] =
@@ -8228,7 +8228,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt48
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt48 }
},
[TRAINER_GRUNT_49] =
@@ -8242,7 +8242,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt49
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt49 }
},
[TRAINER_GRUNT_50] =
@@ -8256,7 +8256,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt50
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt50 }
},
[TRAINER_GRUNT_51] =
@@ -8270,7 +8270,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Grunt51
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt51 }
},
[TRAINER_GRUNT_52] =
@@ -8284,7 +8284,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt52
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt52 }
},
[TRAINER_GRUNT_53] =
@@ -8298,7 +8298,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Grunt53
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt53 }
},
[TRAINER_GRUNT_54] =
@@ -8312,7 +8312,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Grunt54
+ .party = {.NoItemDefaultMoves = gTrainerParty_Grunt54 }
},
[TRAINER_ANONYMOUS_14] =
@@ -8326,7 +8326,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Anonymous14
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous14 }
},
[TRAINER_ANONYMOUS_15] =
@@ -8340,7 +8340,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Anonymous15
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous15 }
},
[TRAINER_TABITHA_1] =
@@ -8354,7 +8354,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 3,
- .party = gTrainerParty_Tabitha1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tabitha1 }
},
[TRAINER_TABITHA_2] =
@@ -8368,7 +8368,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Tabitha2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tabitha2 }
},
[TRAINER_ANONYMOUS_16] =
@@ -8382,7 +8382,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Anonymous16
+ .party = {.NoItemDefaultMoves = gTrainerParty_Anonymous16 }
},
[TRAINER_COURTNEY_1] =
@@ -8396,7 +8396,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Courtney1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Courtney1 }
},
[TRAINER_COURTNEY_2] =
@@ -8410,7 +8410,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_Courtney2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Courtney2 }
},
[TRAINER_MAXIE_2] =
@@ -8424,7 +8424,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Maxie2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maxie2 }
},
[TRAINER_MAXIE_3] =
@@ -8438,7 +8438,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Maxie3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Maxie3 }
},
[TRAINER_TIANA] =
@@ -8452,7 +8452,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Tiana
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tiana }
},
[TRAINER_HALEY_1] =
@@ -8466,7 +8466,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley1 }
},
[TRAINER_JANICE] =
@@ -8480,7 +8480,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Janice
+ .party = {.NoItemDefaultMoves = gTrainerParty_Janice }
},
[TRAINER_VIVI] =
@@ -8494,7 +8494,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Vivi
+ .party = {.NoItemDefaultMoves = gTrainerParty_Vivi }
},
[TRAINER_HALEY_2] =
@@ -8508,7 +8508,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley2 }
},
[TRAINER_HALEY_3] =
@@ -8522,7 +8522,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley3 }
},
[TRAINER_HALEY_4] =
@@ -8536,7 +8536,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Haley4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley4 }
},
[TRAINER_HALEY_5] =
@@ -8550,7 +8550,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Haley5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Haley5 }
},
[TRAINER_SALLY] =
@@ -8564,7 +8564,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sally
+ .party = {.NoItemDefaultMoves = gTrainerParty_Sally }
},
[TRAINER_ROBIN] =
@@ -8578,7 +8578,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Robin
+ .party = {.NoItemDefaultMoves = gTrainerParty_Robin }
},
[TRAINER_ANDREA] =
@@ -8592,7 +8592,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Andrea
+ .party = {.NoItemDefaultMoves = gTrainerParty_Andrea }
},
[TRAINER_CRISSY] =
@@ -8606,7 +8606,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Crissy
+ .party = {.NoItemDefaultMoves = gTrainerParty_Crissy }
},
[TRAINER_RICK] =
@@ -8620,7 +8620,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Rick
+ .party = {.NoItemDefaultMoves = gTrainerParty_Rick }
},
[TRAINER_LYLE] =
@@ -8634,7 +8634,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 6,
- .party = gTrainerParty_Lyle
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lyle }
},
[TRAINER_JOSE] =
@@ -8648,7 +8648,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Jose
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jose }
},
[TRAINER_DOUG] =
@@ -8662,7 +8662,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Doug
+ .party = {.NoItemDefaultMoves = gTrainerParty_Doug }
},
[TRAINER_GREG] =
@@ -8676,7 +8676,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Greg
+ .party = {.NoItemDefaultMoves = gTrainerParty_Greg }
},
[TRAINER_KENT] =
@@ -8690,7 +8690,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kent
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kent }
},
[TRAINER_JAMES_1] =
@@ -8704,7 +8704,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_James1
+ .party = {.NoItemDefaultMoves = gTrainerParty_James1 }
},
[TRAINER_JAMES_2] =
@@ -8718,7 +8718,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_James2
+ .party = {.NoItemDefaultMoves = gTrainerParty_James2 }
},
[TRAINER_JAMES_3] =
@@ -8732,7 +8732,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_James3
+ .party = {.NoItemDefaultMoves = gTrainerParty_James3 }
},
[TRAINER_JAMES_4] =
@@ -8746,7 +8746,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_James4
+ .party = {.NoItemDefaultMoves = gTrainerParty_James4 }
},
[TRAINER_JAMES_5] =
@@ -8760,7 +8760,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_James5
+ .party = {.NoItemDefaultMoves = gTrainerParty_James5 }
},
[TRAINER_BRICE] =
@@ -8774,7 +8774,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Brice
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brice }
},
[TRAINER_TRENT_1] =
@@ -8788,7 +8788,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent1 }
},
[TRAINER_LENNY] =
@@ -8802,7 +8802,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Lenny
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lenny }
},
[TRAINER_LUCAS_1] =
@@ -8816,7 +8816,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Lucas1
+ .party = {.NoItemDefaultMoves = gTrainerParty_Lucas1 }
},
[TRAINER_ALAN] =
@@ -8830,7 +8830,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Alan
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alan }
},
[TRAINER_CLARK] =
@@ -8844,7 +8844,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Clark
+ .party = {.NoItemDefaultMoves = gTrainerParty_Clark }
},
[TRAINER_ERIC] =
@@ -8858,7 +8858,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Eric
+ .party = {.NoItemDefaultMoves = gTrainerParty_Eric }
},
[TRAINER_LUCAS_2] =
@@ -8872,7 +8872,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Lucas2
+ .party = {.NoItemCustomMoves = gTrainerParty_Lucas2 }
},
[TRAINER_MIKE_1] =
@@ -8886,7 +8886,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Mike1
+ .party = {.NoItemCustomMoves = gTrainerParty_Mike1 }
},
[TRAINER_MIKE_2] =
@@ -8900,7 +8900,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Mike2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Mike2 }
},
[TRAINER_TRENT_2] =
@@ -8914,7 +8914,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent2 }
},
[TRAINER_TRENT_3] =
@@ -8928,7 +8928,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent3
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent3 }
},
[TRAINER_TRENT_4] =
@@ -8942,7 +8942,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent4
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent4 }
},
[TRAINER_TRENT_5] =
@@ -8956,7 +8956,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Trent5
+ .party = {.NoItemDefaultMoves = gTrainerParty_Trent5 }
},
[TRAINER_DEZ_AND_LUKE] =
@@ -8970,7 +8970,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_DezAndLuke
+ .party = {.NoItemDefaultMoves = gTrainerParty_DezAndLuke }
},
[TRAINER_LEA_AND_JED] =
@@ -8984,7 +8984,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LeaAndJed
+ .party = {.NoItemDefaultMoves = gTrainerParty_LeaAndJed }
},
[TRAINER_LOIS_AND_HAL_1] =
@@ -8998,7 +8998,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal1
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal1 }
},
[TRAINER_LOIS_AND_HAL_2] =
@@ -9012,7 +9012,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal2
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal2 }
},
[TRAINER_LOIS_AND_HAL_3] =
@@ -9026,7 +9026,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal3
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal3 }
},
[TRAINER_LOIS_AND_HAL_4] =
@@ -9040,7 +9040,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal4
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal4 }
},
[TRAINER_LOIS_AND_HAL_5] =
@@ -9054,7 +9054,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LoisAndHal5
+ .party = {.NoItemDefaultMoves = gTrainerParty_LoisAndHal5 }
},
[TRAINER_JOHANNA] =
@@ -9068,7 +9068,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Johanna
+ .party = {.NoItemDefaultMoves = gTrainerParty_Johanna }
},
[TRAINER_ZANE] =
@@ -9082,7 +9082,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Zane
+ .party = {.NoItemCustomMoves = gTrainerParty_Zane }
},
[TRAINER_VIVIAN] =
@@ -9096,7 +9096,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Vivian
+ .party = {.NoItemCustomMoves = gTrainerParty_Vivian }
},
[TRAINER_SADIE] =
@@ -9110,7 +9110,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Sadie
+ .party = {.NoItemCustomMoves = gTrainerParty_Sadie }
},
[TRAINER_HIDEO_2] =
@@ -9124,7 +9124,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 2,
- .party = gTrainerParty_Hideo2
+ .party = {.NoItemCustomMoves = gTrainerParty_Hideo2 }
},
[TRAINER_KEIGO] =
@@ -9138,7 +9138,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 2,
- .party = gTrainerParty_Keigo
+ .party = {.NoItemCustomMoves = gTrainerParty_Keigo }
},
[TRAINER_TSUNAO] =
@@ -9152,7 +9152,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x3,
.partySize = 3,
- .party = gTrainerParty_Tsunao
+ .party = {.NoItemCustomMoves = gTrainerParty_Tsunao }
},
[TRAINER_TERRELL] =
@@ -9166,7 +9166,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Terrell
+ .party = {.NoItemDefaultMoves = gTrainerParty_Terrell }
},
[TRAINER_KYLEE] =
@@ -9180,7 +9180,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 1,
- .party = gTrainerParty_Kylee
+ .party = {.NoItemDefaultMoves = gTrainerParty_Kylee }
},
[TRAINER_WALLY_2] =
@@ -9194,7 +9194,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 1,
- .party = gTrainerParty_Wally2
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wally2 }
},
[TRAINER_WALLY_3] =
@@ -9208,7 +9208,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally3
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally3 }
},
[TRAINER_WALLY_4] =
@@ -9222,7 +9222,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally4
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally4 }
},
[TRAINER_WALLY_5] =
@@ -9236,7 +9236,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally5
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally5 }
},
[TRAINER_WALLY_6] =
@@ -9250,7 +9250,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 5,
- .party = gTrainerParty_Wally6
+ .party = {.NoItemCustomMoves = gTrainerParty_Wally6 }
},
[TRAINER_BRENDAN_10] =
@@ -9264,7 +9264,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Brendan10
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan10 }
},
[TRAINER_BRENDAN_11] =
@@ -9278,7 +9278,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Brendan11
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan11 }
},
[TRAINER_BRENDAN_12] =
@@ -9292,7 +9292,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_Brendan12
+ .party = {.NoItemDefaultMoves = gTrainerParty_Brendan12 }
},
[TRAINER_MAY_10] =
@@ -9306,7 +9306,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_May10
+ .party = {.NoItemDefaultMoves = gTrainerParty_May10 }
},
[TRAINER_MAY_11] =
@@ -9320,7 +9320,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_May11
+ .party = {.NoItemDefaultMoves = gTrainerParty_May11 }
},
[TRAINER_MAY_12] =
@@ -9334,7 +9334,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 4,
- .party = gTrainerParty_May12
+ .party = {.NoItemDefaultMoves = gTrainerParty_May12 }
},
[TRAINER_JONAH] =
@@ -9348,7 +9348,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Jonah
+ .party = {.NoItemDefaultMoves = gTrainerParty_Jonah }
},
[TRAINER_HENRY] =
@@ -9362,7 +9362,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Henry
+ .party = {.NoItemDefaultMoves = gTrainerParty_Henry }
},
[TRAINER_ROGER] =
@@ -9376,7 +9376,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Roger
+ .party = {.NoItemDefaultMoves = gTrainerParty_Roger }
},
[TRAINER_ALEXA] =
@@ -9390,7 +9390,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_Alexa
+ .party = {.NoItemDefaultMoves = gTrainerParty_Alexa }
},
[TRAINER_RUBEN] =
@@ -9404,7 +9404,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x7,
.partySize = 3,
- .party = gTrainerParty_Ruben
+ .party = {.NoItemDefaultMoves = gTrainerParty_Ruben }
},
[TRAINER_KOJI] =
@@ -9418,7 +9418,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Koji
+ .party = {.NoItemDefaultMoves = gTrainerParty_Koji }
},
[TRAINER_WAYNE] =
@@ -9432,7 +9432,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Wayne
+ .party = {.NoItemDefaultMoves = gTrainerParty_Wayne }
},
[TRAINER_BYRON] =
@@ -9446,7 +9446,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_Byron
+ .party = {.NoItemDefaultMoves = gTrainerParty_Byron }
},
[TRAINER_REED] =
@@ -9460,7 +9460,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Reed
+ .party = {.NoItemDefaultMoves = gTrainerParty_Reed }
},
[TRAINER_TISHA] =
@@ -9474,7 +9474,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 3,
- .party = gTrainerParty_Tisha
+ .party = {.NoItemDefaultMoves = gTrainerParty_Tisha }
},
[TRAINER_TORI_AND_TIA] =
@@ -9488,7 +9488,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_ToriAndTia
+ .party = {.NoItemDefaultMoves = gTrainerParty_ToriAndTia }
},
[TRAINER_KIM_AND_IRIS] =
@@ -9502,7 +9502,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_KimAndIris
+ .party = {.NoItemCustomMoves = gTrainerParty_KimAndIris }
},
[TRAINER_TYRA_AND_IVY] =
@@ -9516,7 +9516,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_TyraAndIvy
+ .party = {.NoItemCustomMoves = gTrainerParty_TyraAndIvy }
},
[TRAINER_MEL_AND_PAUL] =
@@ -9530,7 +9530,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_MelAndPaul
+ .party = {.NoItemCustomMoves = gTrainerParty_MelAndPaul }
},
[TRAINER_JOHN_AND_JAY_1] =
@@ -9544,7 +9544,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay1
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay1 }
},
[TRAINER_JOHN_AND_JAY_2] =
@@ -9558,7 +9558,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay2
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay2 }
},
[TRAINER_JOHN_AND_JAY_3] =
@@ -9572,7 +9572,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay3
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay3 }
},
[TRAINER_JOHN_AND_JAY_4] =
@@ -9586,7 +9586,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0xb,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay4
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay4 }
},
[TRAINER_JOHN_AND_JAY_5] =
@@ -9600,7 +9600,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x7,
.partySize = 2,
- .party = gTrainerParty_JohnAndJay5
+ .party = {.NoItemCustomMoves = gTrainerParty_JohnAndJay5 }
},
[TRAINER_RELI_AND_IAN] =
@@ -9614,7 +9614,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_ReliAndIan
+ .party = {.NoItemDefaultMoves = gTrainerParty_ReliAndIan }
},
[TRAINER_RITA_AND_SAM_1] =
@@ -9628,7 +9628,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam1
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam1 }
},
[TRAINER_RITA_AND_SAM_2] =
@@ -9642,7 +9642,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam2
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam2 }
},
[TRAINER_RITA_AND_SAM_3] =
@@ -9656,7 +9656,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam3
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam3 }
},
[TRAINER_RITA_AND_SAM_4] =
@@ -9670,7 +9670,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam4
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam4 }
},
[TRAINER_RITA_AND_SAM_5] =
@@ -9684,7 +9684,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_RitaAndSam5
+ .party = {.NoItemDefaultMoves = gTrainerParty_RitaAndSam5 }
},
[TRAINER_LISA_AND_RAY] =
@@ -9698,7 +9698,7 @@ const struct Trainer gTrainers[] = {
.doubleBattle = TRUE,
.aiFlags = 0x1,
.partySize = 2,
- .party = gTrainerParty_LisaAndRay
+ .party = {.NoItemDefaultMoves = gTrainerParty_LisaAndRay }
},
[TRAINER_EUGENE] =
@@ -9712,6 +9712,6 @@ const struct Trainer gTrainers[] = {
.doubleBattle = FALSE,
.aiFlags = 0x1,
.partySize = 4,
- .party = gTrainerParty_Eugene
+ .party = {.NoItemDefaultMoves = gTrainerParty_Eugene }
},
};