Module:LangVars/en

From Vintage Story Wiki
< Module:LangVars
Revision as of 03:58, 23 August 2022 by Sana (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:LangVars/en/doc

local p = {}

local i18n = {
	itemStone = 'Stone',
	itemRock = 'Rock',
	itemLog = 'Log',
	itemPlank = 'Plank',
	metalPrefixes = {
		"Copper",
		"Silver",
		"Gold",
		"Tin",
		"Zinc",
		"Bismuth",
		"Lead",
		"Iron",
		"Brass",
		"Tin bronze",
		"Bismuth bronze",
		"Black bronze",
		"Meteoric iron",
		"Steel",
		"Blister steel",
		"Titanium",
		"Molybdochalkos",
		"Lead solder",
		"Silver solder",
	},
	toolTypes = {
		"Pickaxe",
		"Axe",
		"Shovel",
		"Hoe",
		"Scythe",
		"Prospecting pick",
		"Spear",
		"Falx",
		"Chisel",
	},
	itemToolHead = "Head",
	itemArrowhead = 'Arrowhead',
	itemArrow = 'Arrow',
	itemMetalPlate = 'Metal plate',
	itemLantern = 'Lantern',
	any = 'Any',
}
p.i18n = i18n

return p