diff -r 000000000000 -r cc66ad6b0d75 objects/obj_bar.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/objects/obj_bar.lua Sat Mar 27 17:43:08 2010 +0000 @@ -0,0 +1,16 @@ +--[[ +A bar. No, no free drinks! + +by Manole Paul-Sebastian (brokenthorn) +]] + +classes.obj_bar = +{ + _properties = { name = "bar", longname = "a large bar", desc = "You get closer to the bar and the bartender asks if you want a drink." }; + _parent = nil; + sit = function (self, e) + e.person:_say("/me pulls a chair"); + e.person:_say("/me sits quietly at the bar"); + -- bartender should ask if he/she wants a drink here... + end, +} \ No newline at end of file