I fished out the list for you (and for me): http://wiki.2kgames.com/civ5/index.php/Lua_Reference#Lua_Game_Objects
Code was:
Code was:
Code:
local plot = Map.GetPlot(0, 0)
print("Class Plot:")
print("Attributes:");
for k, v in pairs(getmetatable(plot).__index) do print(k, v) end
print("END.");