Main
Vintage Story Mods

Workbench tools

Note: Glassmaking 2.0 introduces some changes in the json structure, update the tools if you're migrating from 1.0.

The tools included in the mod are described below, but in addition to them it is also possible to create custom types of tools.

Lathe

Tool code: lathe

Used to hold the workpiece and turn it.


{
	"lathe": {
		"recipeAttributes": {
			"rpm": ...,
			"transform": { ... },
			"size": ...
		}
	}
}

Blowtorch

Tool code: blowtorch

Used in operation where the glass or some parts should be heated.


{
	"blowtorch": {
		"recipeAttributes": {
			"temperature": ...
		}
	}
}

Hand items

Tool code: handItem or otherHandItem

An item that must be held in the hand during crafting. The otherHandItem tool can be used if there's need to hold an additional item in the second hand.


{
	"handItem": {
		"type": ...,
		"code": ...,
		"isTool": ???,
		...
	}
}

The item will be consumed at the end of the step. If the item should not be consumed, but used as a tool add isTool: true parameter.

Liquid

Tool code: liquid

Consumes the liquid from any container in the hand.


{
	"liquid": {
		"type": ...,
		"code": ...,
		"recipeAttributes": {
			"requiresLitres": ...
		}
	}
}