Main
Vintage Story Mods

Workbench tools

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

The workpiece can be clamped in the jaws and rotated.


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

Blowtorch

Tool code: blowtorch

It is used in all operations where it is necessary to heat certain parts of the glass.


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

Hand items

Tool code: handItem or otherHandItem

An item that must be held in hand during crafting. If it is necessary to hold an additional item in second hand, the otherHandItem can be used.


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

The parameter is "crafting ingredient", i.e. it is possible to specify the type, code, attributes and other parameters. If the item should be used as a tool, isTool: true can be specified.

Liquid

Tool code: liquid

It is necessary to have a liquid container in hand while crafting.


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