Difference between revisions of "Module:Infobox/en"
Jump to navigation
Jump to search
m |
m |
||
Line 1: | Line 1: | ||
return { | return { | ||
block = { | block = { | ||
− | type = "Type", | + | {id = "type", name = "Type"}, |
− | drops = "[[Mining#Drops|Drops]]", | + | {id = "drops", name = "[[Mining#Drops|Drops]]"}, |
− | physics = "[[:Category:Falling|Physics]]", | + | {id = "physics", name = "[[:Category:Falling|Physics]]"}, |
− | luminance = "[[:Category:Luminous|Luminance]]", | + | {id = "luminance", name = "[[:Category:Luminous|Luminance]]"}, |
− | flammable = "[[:Category:Flammable|Flammable]]", | + | {id = "flammable", name = "[[:Category:Flammable|Flammable]]"}, |
− | generated = "[[:Category: | + | {id = "generated", name = "[[:Category:Generated_blocks|Generated]]"}, |
− | renewable = "Renewable", | + | {id = "renewable", name = "Renewable"}, |
− | stackable = "Stackable", | + | {id = "stackable", name = "Stackable"}, |
− | itemstring = "[[Itemstrings|Itemstring]]", | + | {id = "itemstring", name = "[[Itemstrings|Itemstring]]"}, |
}, | }, | ||
item = { | item = { | ||
− | type = "Type", | + | {id = "type", name = "Type"}, |
− | renewable = "Renewable", | + | {id = "renewable", name = "Renewable"}, |
− | durability = "Durability", | + | {id = "durability", name = "Durability"}, |
− | stackable = "Stackable", | + | {id = "stackable", name = "Stackable"}, |
− | itemstring = "[[Itemstrings|Itemstring]]", | + | {id = "itemstring", name = "[[Itemstrings|Itemstring]]"}, |
}, | }, | ||
foodItem = { | foodItem = { | ||
− | type = "Type", | + | {id = "type", name = "Type"}, |
− | restores = "Restores", | + | {id = "restores", name = "Restores"}, |
− | cookable = "Cookable", | + | {id = "cookable", name = "Cookable"}, |
− | renewable = "Renewable", | + | {id = "renewable", name = "Renewable"}, |
− | stackable = "Stackable", | + | {id = "stackable", name = "Stackable"}, |
− | itemstring = "[[Itemstrings|Itemstring]]", | + | {id = "itemstring", name = "[[Itemstrings|Itemstring]]"}, |
}, | }, | ||
mob = { | mob = { | ||
− | health = "Health", | + | {id = "health", name = "Health"}, |
− | armor = "Armor", | + | {id = "armor", name = "Armor"}, |
− | damage = "Damage", | + | {id = "damage", name = "Damage"}, |
− | drops = "Drops", | + | {id = "drops", name = "Drops"}, |
− | entitystring = "Entitystring", | + | {id = "entitystring", name = "Entitystring"}, |
}, | }, | ||
game = { | game = { | ||
− | type = "Type", | + | {id = "type", name = "Type"}, |
− | author = "Author", | + | {id = "author", name = "Author"}, |
− | version = "Latest version", | + | {id = "version", name = "Latest version"}, |
− | forum = "Forum topic", | + | {id = "forum", name = "Forum topic"}, |
− | source = "Source code", | + | {id = "source", name = "Source code"}, |
}, | }, | ||
mod = { | mod = { | ||
− | type = "Type", | + | {id = "type", name = "Type"}, |
− | author = "Author", | + | {id = "author", name = "Author"}, |
− | version = "Latest version", | + | {id = "version", name = "Latest version"}, |
− | forum = "Forum topic", | + | {id = "forum", name = "Forum topic"}, |
− | source = "Source code", | + | {id = "source", name = "Source code"}, |
− | luaname = "Technical name", | + | {id = "luaname", name = "Technical name"}, |
}, | }, | ||
} | } |
Revision as of 18:07, 13 April 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 = "luaname", name = "Technical name"}, },
}