Module:Infobox/en

From Minetest Wiki
< Module:Infobox
Revision as of 13:57, 3 May 2017 by Diogogomes (talk | contribs) (Add bower id on mod (with this id on mod template, users can install mods without leaving the wiki and searching on Minetest Bower or similar))
Jump to navigation Jump to search

return {

   block = {
       {id = "type", name = "Type"},
       {id = "drops", name = "Drops"},
       {id = "physics", name = "Physics"},
       {id = "luminance", name = "Luminance"},
       {id = "flammable", name = "Flammable"},
       {id = "generated", name = "Generated"},
       {id = "renewable", name = "Renewable"},
       {id = "stackable", name = "Stackable"},
       {id = "itemstring", name = "Itemstring"},
   },
   item = {
       {id = "type", name = "Type"},
       {id = "renewable", name = "Renewable"},
       {id = "durability", name = "Durability"},
       {id = "stackable", name = "Stackable"},
       {id = "itemstring", name = "Itemstring"},
   },
   foodItem = {
       {id = "type", name = "Type"},
       {id = "restores", name = "Restores"},
       {id = "cookable", name = "Cookable"},
       {id = "renewable", name = "Renewable"},
       {id = "stackable", name = "Stackable"},
       {id = "itemstring", name = "Itemstring"},
   },
   mob = {
       {id = "health", name = "Health"},
       {id = "armor", name = "Armor"},
       {id = "damage", name = "Damage"},
       {id = "drops", name = "Drops"},
       {id = "entitystring", name = "Entitystring"},
   },
   game = {
       {id = "type", name = "Type"},
       {id = "author", name = "Author"},
       {id = "version", name = "Latest version"},
       {id = "forum", name = "Forum topic"},
       {id = "source", name = "Source code"},
   },
   mod = {
       {id = "type", name = "Type"},
       {id = "author", name = "Author"},
       {id = "version", name = "Latest version"},
       {id = "forum", name = "Forum topic"},
       {id = "source", name = "Source code"},
       {id = "bower", name = "Bower name"},
       {id = "luaname", name = "Technical name"},
   },

}