########################################################################## # # # Little girl in the big world. An Interactive Fiction story file. # Designed to be compiled and run with StoryFactory. # # Written and declared public domain by Peter Wendrich 2003. # # ########################################################################## # # Kitchen # ########################################################################## object objectKitchen { name: kitchen location: objectWorld run { /dup &look /eqif the kitchen ^ ^ /self _look_child /drop /tret /then /dup &name /eqif the kitchen /drop /tret /then /drop /fret } } object objectDiningTable { name: dining table location: objectKitchen run { /dup &examine /eqif in the middle of the kitchen stands the dining table made of dark oak . /drop /tret /then /dup &name /eqif the dining table /drop /tret /then /drop /fret } } object objectOpenFridge { name: fridge location: objectVoid run { /dup &name /eqif the fridge /drop /tret /then /drop /fret } } object objectClosedFridge { name: fridge location: objectKitchen run { /dup &name /eqif the fridge /drop /tret /then /drop /fret } } object objectOpenFridge { name: bottle location: objectOpenFridge run { } } #object objectMother { # name: mother mommy # location: objectKitchen # run { # /dup &look /eqif Alice's mother is here . /drop /tret /then # /drop /fret # } #}