From 90a9a21456615bc02aa925ab65b947a063d6f299 Mon Sep 17 00:00:00 2001 From: Condorra Date: Sun, 17 Sep 2023 13:15:41 +1000 Subject: [PATCH] Update learn on urges. --- hugo-static/content/learn.md | 30 ++++++++++++++++++++++++++++++ update-deps.sh | 5 +++++ 2 files changed, 35 insertions(+) create mode 100755 update-deps.sh diff --git a/hugo-static/content/learn.md b/hugo-static/content/learn.md index c502983..982ecd9 100644 --- a/hugo-static/content/learn.md +++ b/hugo-static/content/learn.md @@ -110,6 +110,36 @@ Put on clothing with the *wear* command, and take it off with *remove*. Try the *gear* command to see what you are wearing, how much protection it offers, and how much impact it has on your ability to dodge. +## Thirst, hunger, stress + +Just like in the real world, in Blastmud, if you don't look after yourself, you will not +have a good time. + +Try the `stat` command to see how stressed, hungry, and thirsty you are. + +Stress is a measure of how tired and worn out you are. You get stressed by doing all kinds +of actions - especially fighting and crafting. If your stress gets too high, you lose the +ability to craft until you bring your stress down. If it gets even higher, you can't fight +back if someone attacks you, and eventually you won't even be able to move. So high stress +in a dangerous place makes you a sitting duck! Luckily, if you are stressed, there is a +very easy cure; just use the `sit` command to sit down, or better yet, try to `recline` +to lie down. It is recommended you chose a safe place to do this! + +You get hungry just by being logged in to the game. You move very slowly as your energy levels +get lower, slowing down drastically by the time you are starving. You can cure hunger by +finding some food. If you can find a corpse and have a suitable blade (try a butcher knife +from an outdoor shop), in a pinch you can cut a steak from it and eat it. Or better yet, +buy a recipe at a book store, and cook your steak in a stove for a much healthier cooked +steak. If you can't be bothered, or are too hungry to fight and cook, you can +also dine out (note that Jill's Diner - JD - in Melbs - will sell you a burger for whatever +credits you have, even $0, as long as you are unstressed enough to ask nicely; recline for +a bit, and buy a burger there if you ever end up broke and hungry). + +You get thirsty from walking around a lot. To quench your thirst, you can `drink from fountain` +on a tile with a fountain - e.g. the one outside the Homeless Shelter (HS). To drink on the go, +try buying a bottle from Grande Outdoors, then `fill bottle from fountain` and then +`drink from bottle`. + ## Consent In Blastmud, you can interact with other players, but many actions are placed behind diff --git a/update-deps.sh b/update-deps.sh new file mode 100755 index 0000000..96f5243 --- /dev/null +++ b/update-deps.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +npx webpack +cp ./node_modules/xterm/css/xterm.css ./assets/ +cp dist/main.js ./assets/main.js