Module:LangVars/en

From Vintage Story Wiki
< Module:LangVars
Revision as of 03:33, 23 August 2022 by Sana (talk | contribs)

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",
	},
	itemToolHead = "Head",
	itemPickaxe = 'Pickaxe',
	itemProspectingPick = 'Prospecting pick',
	itemAxe = 'Axe',
	itemShovel = 'Shovel',
	itemHoe = 'Hoe',
	itemFalx = 'Falx',
	itemSpear = 'Spear',
	itemScythe = 'Scythe',
	itemArrowhead = 'Arrowhead',
	itemArrow = 'Arrow',
	itemMetalPlate = 'Metal plate',
	itemLantern = 'Lantern',
	any = 'Any',
}
p.i18n = i18n

return p