objects/obj_drinking_tables.lua

changeset 0
cc66ad6b0d75
equal deleted inserted replaced
-1:000000000000 0:cc66ad6b0d75
1 --[[
2 Tables to sit at in the bar or anywhere else
3
4 by Manole Paul-Sebastian (brokenthorn)
5 ]]
6
7 classes.obj_drinking_tables =
8 {
9 _properties = { name = "tables", longname = "some drinking tables", desc = "You see some uninteresting, uncloathed drinking tables." };
10 _parent = nil;
11 sit = function (self, e)
12 e.person:_say("/me pulls a chair and sits at one of the drinking tables");
13 end,
14 }

mercurial