about summary refs log tree commit diff
path: root/src/entities/creature.rs
AgeCommit message (Collapse)AuthorFilesLines
2019-07-29 Describe what you see when you walk over itGriffin Smith1-1/+7
If the character walks over any number of entities, describe those entities to the character.
2019-07-19 Add templates for messagesGriffin Smith1-1/+1
Implement a template syntax with a nom parser, and a formatter to render templates to strings.
2019-07-14 Implement extremely basic combatGriffin Smith1-5/+19
There's a gormlak, you can kill it. That's it.
2019-07-14 Add (statically-included) entity rawsGriffin Smith1-0/+43
Add a system for statically-included entity raws (which necessitated making a deserializable existential Color struct) and test it out by initializing the game (for now) with a single on-screen gormlak.