(include "sci.sh")
(use "Main")
(use "Class_255_0")
(use "Game")
(script 20)



(instance public Room20 of Rm
    (properties
        picture 20
    )

    (method (init)
        = north 14
        = south 26
        = east 21
        = west 19
        = horizon 68
        = global101 0
        (if (global100)
            = picture 120
        )
        (send gEgo:
            view(2)
            init()
        )
        (super:init())
        (self:setRegions(506 518))
    )


    (method (handleEvent pEvent)
        (if ((send pEvent:claimed()))
            return 1
        )
        return 
            (if ((== (send pEvent:type()) 128) and (Said('look/room') or Said('look[<around][/!*]')))
                Print(20 0)
            )(else
                0
            )
    )

)
