Twiddle text a bit

This commit is contained in:
3wc 2024-02-16 03:55:49 -03:00
parent 8be7c18d4f
commit 4b00d713a9
1 changed files with 8 additions and 5 deletions

View File

@ -2,12 +2,13 @@ title: Room:quarters
--- ---
<<declare $roll = 0>> <<declare $roll = 0>>
<<declare $hangarKeyFound = false>> <<declare $hangarKeyFound = false>>
<<declare $sleepingMatSetUp = false>>
// You: It's the crew quarters. // You: It's the crew quarters.
// You: Well, it will be. Set-up hasn't started yet. // You: Well, it will be. Set-up hasn't started yet.
// You: That was meant to be one of my first jobs after defrost... // You: That was meant to be one of my first jobs after defrost...
// You: ...but it doesn't exactly seem like a priority now. // You: ...but it doesn't exactly seem like a priority now.
You: Maybe there's something useful here? You: Maybe there's something useful here?
-> Search the lockers [perception] <<if not $hangarKeyFound>> -> Search the lockers (perception) <<if not $hangarKeyFound>>
<<set $roll to dice(6)>> <<set $roll to dice(6)>>
<<if $roll > 2>> <<if $roll > 2>>
You: Aha! A small piece of paper with the **hangar access code**. You: Aha! A small piece of paper with the **hangar access code**.
@ -16,17 +17,19 @@ You: Maybe there's something useful here?
<<else>> <<else>>
You: Just some dust bunnies. Guess they stowed away from Earth. You: Just some dust bunnies. Guess they stowed away from Earth.
<<endif>> <<endif>>
-> Set up a sleeping mat [ingenuity] -> Set up a sleeping mat (ingenuity) <<if not $sleepingMatSetUp>>
<<set $roll to dice(6)>> <<set $roll to dice(6)>>
<<if $roll > 2>> <<if $roll > 2>>
You: Nice, at least I have somewhere to crash now. You: Nice, at least I have somewhere to crash now.
<<set $sleepingMatSetUp to true>>
<<else>> <<else>>
You: Hmm, I was never good at this camping stuff. Maybe I can find somewhere else to rest. You: Hmm, I was never good at this camping stuff. Maybe I can find somewhere else to rest.
<<endif>> <<endif>>
-> Leave
=== ===
title: Room:hangar title: Room:hangar
--- ---
You: The **hangar** seems eerily deserted You: The **hangar** seems eerily deserted.
=== ===
title: Room not open title: Room not open
--- ---