Add additional Pokemon text references

This commit is contained in:
Evan Dixon 2017-10-17 20:22:03 -05:00
parent 30018fd9ed
commit 289b47ce0f

View File

@ -23,6 +23,10 @@ public enum TextName
SuperTrainerNames,
BattleRoyalNames,
BattleTreeNames,
SpeciesClassifications,
PokedexEntry1,
PokedexEntry2
}
public class TextReference
{
@ -104,7 +108,10 @@ private TextReference(int index, TextName name)
new TextReference(107, TextName.Types),
new TextReference(112, TextName.MoveFlavor),
new TextReference(113, TextName.MoveNames),
new TextReference(114, TextName.Forms)
new TextReference(114, TextName.Forms),
new TextReference(116, TextName.SpeciesClassifications),
new TextReference(119, TextName.PokedexEntry1),
new TextReference(120, TextName.PokedexEntry2)
};
}
}