siege-remontel/Classes.inf

24 lines
513 B
INI
Raw Normal View History

2022-01-09 22:55:57 -06:00
Class Room has light;
Class Set
with before [;
Examine: return false;
default: print_ret "You can't do that with ", (the) self, ".";
],
2022-01-09 23:28:56 -06:00
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;