🚧 Adding items

This commit is contained in:
Dan Jones 2022-01-09 23:28:56 -06:00
commit 7ea3d64c82
4 changed files with 24 additions and 3 deletions

View file

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