Add the computer character

Still a bit buggy, but responds to a few commands
This commit is contained in:
Dan Jones 2022-01-11 10:22:02 -06:00
commit 670fb183e1
4 changed files with 58 additions and 15 deletions

View file

@ -1,11 +1,11 @@
Class Room has light;
Class Set
with before [;
Examine: return false;
default: print_ret "You can't do that with ", (the) self, ".";
],
has scenery;
! Class Set
! with before [;
! Examine: return false;
! default: print_ret "You can't do that with ", (the) self, ".";
! ],
! has scenery;
Class Decoration
with before [;
@ -14,10 +14,10 @@ Class Decoration
],
has static;
Class Furniture
class Decoration,
with before [;
Take,Pull,Push,PushDir:
print_ret (the) self, " is too heavy for that.";
],
has supporter;
! Class Furniture
! class Decoration,
! with before [;
! Take,Pull,Push,PushDir:
! print_ret (the) self, " is too heavy for that.";
! ],
! has supporter;