Generally speaking (and in my own opinion), when dealing with school assignments it's better to keep yourself focused on the relevant task the assignment is about. For example, I presume you tried to provide a different Image for a game character, but that's not necessary for your task.
Worst error in your code is that you are creating four different enumerations, not a single enumeration with four possibily states.
Instead,
you should have a single enumeration type and a private variable to keep track of character's status.
For example:
Honestly I think you should review C# enum usage.
Hope it helps !