Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
Advertisement

Documentation for this module may be created at Module:Navbox/Glacidus/doc

local p = {}
p.navbox = function(navbox, highlightline, group, list, line, ni, nid, l)

local glac = l{"Glacidus", [=[<translate><!--T:1--> Glacidus</translate>]=]}

local blocks = [=[<translate><!--T:2--> Blocks</translate>]=]
local ores = [=[<translate><!--T:3--> Ores</translate>]=]
local bioticterrain = [=[<translate><!--T:4--> Biotic terrain</translate>]=]
local miscterrain = [=[<translate><!--T:5--> Misc terrain</translate>]=]
local misc = [=[<translate><!--T:6--> Misc</translate>]=]

local items = [=[<translate><!--T:7--> Items</translate>]=]
local undergroundtools = [=[<translate><!--T:8--> Underground tools</translate>]=]
local antinatrictools = [=[<translate><!--T:9--> Antinatric tools</translate>]=]
local eukeitetools = [=[<translate><!--T:10--> Eukeite tools</translate>]=]
local glaciditetools = [=[<translate><!--T:11--> Glacidite tools</translate>]=]
local food = [=[<translate><!--T:12--> Food</translate>]=]
local misc = [=[<translate><!--T:13--> Misc</translate>]=]

-- misc
local mobs = [=[<translate><!--T:14--> Mobs</translate>]=]

return navbox{title = glac, mod = "GLAC", modname = "Glacidus",
	group{name = "blocks", title = blocks,
		list{title = ores,
			ni{"Crysium Ore"},
			ni{"Eukeite Ore"},
			ni{"Glacidite Ore"},
			ni{"Small Crystal"}
		},
		list{title = bioticterrain,
			ni{"Crysial Flower"},
			ni{"Dead Lumicia Stalk"},
			ni{"Lumicia Double Grass"},
			ni{"Lumicia Grape Vine"},
			ni{"Lumicia Grass Block"},
			ni{"Lumicia Vine"},
			ni{"Pulphorus Flower"},
			ni{"Solegia Flower"},
			ni{"Underground Leaves"},
			ni{"Underground Wood"},
		},
		list{title = miscterrain,
			ni{"Frozen Antinatric Stone"},
			ni{"Glacidus Booster"},
			ni{"Glacium"},
			ni{"Lumicia Dirt"},
			ni{"Thawed Antinatric Stone"}
		},
		list{title = misc,
			ni{"Frozen Antinatric Stairs"},
			ni{"Frozen Antinatric Slab"},
			ni{"Glacidus Portal Block"},
			ni{"Glacidus Portal Frame"},
			ni{"Thawed Antinatric Slab"},
			ni{"Thawed Antinatric Stairs"},
			ni{"Underground Bookshelf"},
			ni{"Underground Door"},
			ni{"Underground Planks"},
			ni{"Underground Slab"},
			ni{"Underground Stairs"}
		}
	},
	group{name = "items", title = items,
		list{title = food,
			nid{"Grapes"},
			nid{"Grape Juice"},
			ni{"Grilled Porcali Meat"},
			nid{"Raisins"},
			ni{"Raw Porcali Meat"}
		},
		list{title = undergroundtools,
			ni{"Underground Sword"},
			ni{"Underground Pickaxe"},
			ni{"Underground Axe"},
			ni{"Underground Shovel"},
			ni{"Underground Hoe"},
		},
		list{title = antinatrictools,
			ni{"Antinatric Sword"},
			ni{"Antinatric Pickaxe"},
			ni{"Antinatric Axe"},
			ni{"Antinatric Shovel"},
			ni{"Antinatric Hoe"},
		},
		list{title = eukeitetools,
			ni{"Eukeite Sword"},
			ni{"Eukeite Pickaxe"},
			ni{"Eukeite Axe"},
			ni{"Eukeite Shovel"},
			ni{"Eukeite Hoe"},
		},
		list{title = glaciditetools,
			ni{"Glacidite Sword"},
			ni{"Glacidite Pickaxe"},
			ni{"Glacidite Axe"},
			ni{"Glacidite Shovel"},
			ni{"Glacidite Hoe"},
		},
		list{title = misc,
			ni{"Crysium"},
			ni{"Black Saddle"},
			ni{"Eukeite"},
			ni{"Glacidite Fragment"}
		}
	},
	group{name = "misc", title = misc,
		list{title = mobs,
			ni{"Spawn Drop Spider", "Drop Spider", [=[<translate><!--T:15--> Drop Spider</translate>]=]},
			ni{"Spawn Merialces", "Merialces", [=[<translate><!--T:16--> Merialces</translate>]=]},
			ni{"Spawn Porcali", "Porcali", [=[<translate><!--T:17--> Porcali</translate>]=]}
		}
	}
}

end
return p
Advertisement