Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
Feed The Beast Wiki

Documentation for this module may be created at Module:Navbox/Santa's Toys/doc

-- <languages />
--<pre> 
local p = {}
p.navbox = function(navbox, highlightline, group, list, line, ni, nid, l)

local title = l{"Santa's Toys", [=[<translate><!--T:1--> Santa's Toys</translate>]=]}
local items = [=[<translate><!--T:2--> Items</translate>]=]
local blocks = [=[<translate><!--T:3--> Blocks</translate>]=]
local legacy = [=[<translate><!--T:6--> Legacy</translate>]=]

return navbox{ title = title, mod="STS", modname = "Santa's Toys",
  list{ title=items, --[[
<translate>
<!--T:4-->
]]  nid{"Match"},
    ni{"Ender Blaster"},
    ni{"Nether Blaster"}
--[[</translate>]]
  },
  list{ title=blocks, --[[
<translate>
<!--T:5-->
]]  ni{"Glowstone", mod="V", "Heavy Light", "Heavy Light"},
    ni{"Liquid Sensor"}
--[[</translate>]]
  },
  list{ title=legacy, --[[
<translate>
<!--T:7-->
]]  ni{"Block of Damn Giving"},
	ni{"Spiced Sand"}
--[[</translate>]]
  }
}
end

return p
--</pre>