Difference between revisions of "Module:Infobox/en"

From Minetest Wiki
Jump to navigation Jump to search
(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))
m (Added link to Minetest Bower page)
Line 46: Line 46:
 
         {id = "forum", name = "Forum topic"},
 
         {id = "forum", name = "Forum topic"},
 
         {id = "source", name = "Source code"},
 
         {id = "source", name = "Source code"},
         {id = "bower", name = "Bower name"},
+
         {id = "bower", name = "[[Minetest Bower|Bower]] name"},
 
         {id = "luaname", name = "Technical name"},
 
         {id = "luaname", name = "Technical name"},
 
     },
 
     },
 
}
 
}

Revision as of 16:41, 7 May 2017

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"},
   },

}