WIP scanning, analysis and AST todo

This commit is contained in:
Nate Anderson
2025-07-17 17:47:08 -06:00
parent dc6b360583
commit 38eab409c6
9 changed files with 536 additions and 38 deletions
+1
View File
@@ -0,0 +1 @@
+31 -3
View File
@@ -1,4 +1,32 @@
[Duct Tape]
d:The tape that does it all.
DuctTape:
str="Duct Tape"
status=[.Full, .Empty]
location=Warehouse
[Flash Light]
FlashLight:
str="Flash Light"
status=[.Bright, .Dead, .Broken]
_onExamine:
if $self.status = .Bright:
A handy tool for seeing your way out.
else if $self.status = .Dead:
A handy tool for seeing your way out, unfortunately its out of batteries.
else:
A handy tool for seeing your way out, unfortunately its busted.
_onUse:
if $context.args.contains(Batteries) and $self.status = .Dead:
$self.status = .Bright
$player.inventory.remove(Batteries)
You screw the back on tight, and the light comes on!
_onFix:
if $context.args.contains(DuctTape) and $self.status = .Broken:
$self.status = .Dead
$DuctTape.status = .Empty
Nothing duct tape cant fix! The flashlight just needs some power.
Batteries:
_onExamine:
Energized little cylinders, good for something...
+12 -16
View File
@@ -1,17 +1,13 @@
[Warehouse]
Warehouse:
_onEnter:
Your vision blurs as you fumble for the tablet. The glow of your fingers is nearly gone. The salty tablet is the last
sensation before everything goes dark.
<pause3>
<clear>
You awaken. How long has it been? Thanks to your dull glow, you can read the clock on the wall. 8:36. Only a few hours.
Thank God you brought one with you. <p1> But its not a cure, just a band-aid. <p4> Time is ticking. <p1> You've got 24 hours
to breathe, better get back before then.
Your vision blurs as you fumble for the tablet. The glow of your fingers is nearly gone. The salty tablet is the last
sensation before everything goes dark.
---
You awaken. How long has it been? Thanks to your dull glow, you can read the clock on the wall. 8:36. Only a few hours.
Thank God you brought one with you. <p1> But its not a cure, just a band-aid. <p4> Time is ticking. <p1> You've got 24 hours
to breathe, better get back before then.
[Warehouse.d]
It might have been an Amazon warehouse. Everything seems sacked. Empty shelves twist in some corporate labrynth before you.
Would have been nice to have something to show for this trip. But information isn't useless.
[Warehouse.i]
Duct Tape
_onExamine:
It might have been an Amazon warehouse. Everything seems sacked. Empty shelves twist in some corporate labrynth before you.
Would have been nice to have something to show for this trip. But information isn't useless.
+25 -1
View File
@@ -1 +1,25 @@
[Bathroom]
Bathroom:
washed=false
_onEnter:
Its a normal bathroom.
if not $washed:
Should probably wash up.
_onLook:
Bathroom complete with sink, faucet, the whole lot.
_onWash:
$washed=true
Nice cold water.
_beforeOnWash:
if $washed:
You dont need to wash again.
_block
_afterOnWash:
if not $previous.bathroom.washed:
You feel refreshed.
<pause2>
Time to get to work.
+1
View File
@@ -0,0 +1 @@
[Bathroom]