the-infocom-files / trinity

Trinity
24 stars 5 forks source link

"COUNT HANDS" / "COUNT FEET" inconsistency #76

Open eriktorbjorn opened 4 years ago

eriktorbjorn commented 4 years ago
>COUNT HANDS
You have two.

>COUNT FEET
You only see one.

That's because HANDS-F handles the COUNT action:

           (<VERB? COUNT>
        <TELL "You have ">
        <COND (<NOUN-USED? ,W?FINGERS ,W?FINGER>
               <TELL "ten">)
              (T
               <TELL "two">)>
        <PRINT ,PERIOD>
        <RTRUE>)

While FEET-F does not. If we want to add it, I guess we should add a similar special case for counting toes as there already is for counting fingers.