12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- --- Thread
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['farming:cotton'] = 1,
- },
- output = 'furniture:thread_white',
- })
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['xdecor:cobweb'] = 1,
- },
- output = 'furniture:thread_white',
- })
- --- String
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['farming:cotton'] = 1,
- },
- output = 'farming:string',
- })
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['farming:hemp_fibre'] = 1,
- },
- output = 'farming:string',
- })
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['bakedclay:mannagrass'] = 1,
- },
- output = 'farming:string',
- })
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['default:junglegrass'] = 1,
- },
- output = 'farming:string',
- })
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['xdecor:cobweb'] = 1,
- },
- output = 'farming:string',
- })
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['group:wool'] = 1,
- },
- output = 'farming:string 4',
- })
- --- Rope
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['farming:string'] = 5,
- },
- output = 'ropes:ropesegment',
- })
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['group:wool'] = 1,
- },
- output = 'ropes:ropesegment',
- })
|