From a193fd54ed96abcca933cd34ab6f8ed75681dae0 Mon Sep 17 00:00:00 2001 From: Autumn Date: Wed, 25 Sep 2024 08:13:25 -0600 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5224bbf..0131e90 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Still tweaking things but the working examples are the templates I expand. - [public/interactions/{npcClass}/{npcId}.txt](https://github.com/tiliv/fm/tree/main/public/interactions) - Interactions are usually NPCs, but in the game core, fancy coordinates with events attached become interactions too. Interaction tiles become full text files here to get the full set of actions, like Buy/Sell, which have custom formats that don't fit in the #key=value schema available to pure map tiles. For example, the `Fight` block allows for current hp thresholds to activate different movement strategies, `Buy` determines an inventory list, and `Sell` determines which categories of items you can sell to that NPC. - There is currently no net loss of currency when you buy an item and sell it back (if you can sell it back, that is). - - Action block names prefixed by `?` incidate a reactive event, i.e., they catch YOUR event with that name and hijack the response. This may put you into a conversation state with someone you have not bumped against for typical interactions. + - Action block names that are prefixed by `?` incidate a reactive event, i.e., they catch YOUR event with that name and hijack the response. This may put you into a conversation state with someone you have not bumped against for typical interactions. - [public/overlays/{overlayId}.txt](https://github.com/tiliv/fm/tree/main/public/overlays) - Overlays can be referenced in world files, either as a global default, or at specific [r1, c1, r2, c2] rectangles, and with an offset animation sequence that loops forever. The text files are just the full overlay art to be tiled and scrolled over the world display. The world file supplies the colors and animation. - [public/world/{worldId}.txt](https://github.com/tiliv/fm/tree/main/public/world)