Hey, just letting everyone know what I'm working on!
I have decided that the text in the game was..really really small so I've been working on resizing all the parts of the game to work with larger text, as can be seen in this screenshot:

I have also recoded how NPCs know what to say to the player. All of the words that NPCs say are now stored in text files and are easily editable by anyone (at least during the development process). The code is now also set up to allow installing of multiple languages and translation of the existing text is extremely simple.

Here is the format of the text file of what Mr. Clubtail says to a Swimmer (the text file being used in the above picture), for example:
- Code: on
npcName
Mr. Clubtail
npcType
Clubtail
Start{
Hey, my treestar just
blew away and I have
a tummy ache!
=====
Leave me be!
=====
=====
=====
=====
=====
=====
=====
End}
All you need to do is edit the text between the Start{ and End} lines and make sure you have exactly 12 lines between those tags and you can translate the text (as well as the names of the characters and their species) to any language you want!
The text files are at the location
\Text\Whatever Language\Whatever Dinosaur Type You Are\
and the code is all set up to automatically load the correct language and dinosaur text, based on the choice. All we need now are other language text files; we're all set now to make them.
