|
Object replicator "replicator"
with name "replicator",
grammar [; return 'rc,'; ],
orders
[; Give:
if (noun in self)
"The replicator serves up a cup of ",
(name) noun, " which you drink eagerly.";
"~That is not something I can replicate.~";
default: "The replicator is unable to oblige.";
],
life
[; Ask, Answer, Tell: "The replicator has no conversation skill.";
],
has talkable;
Object -> "Earl Grey tea" with name "earl" "grey" "tea";
Object -> "Aldebaran brandy" with name "aldebaran" "brandy";
Object -> "distilled water" with name "distilled" "water";
...
Verb "rc," * held -> Give;
The point to note here is that the token means 'held by the
replicator' here, as the actor is the replicator, so this is a neat way of
getting a 'one of the following phrases' token into the grammar.
|