Difference between revisions of "Module:Infobox/en"

From Minetest Wiki
Jump to navigation Jump to search
m (Changed "entity" to "mob")
m
Line 6: Line 6:
 
         luminance = "[[:Category:Luminous|Luminance]]",
 
         luminance = "[[:Category:Luminous|Luminance]]",
 
         flammable = "[[:Category:Flammable|Flammable]]",
 
         flammable = "[[:Category:Flammable|Flammable]]",
         generated = "[[:Category:Generated_blocks|Generated]]",
+
         generated = "[[:Category:Generated blocks|Generated]]",
 
         renewable = "Renewable",
 
         renewable = "Renewable",
 
         stackable = "Stackable",
 
         stackable = "Stackable",

Revision as of 09:25, 13 April 2017

return {

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

}