1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- --- 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
- local rope_items = {'farming:cotton', 'farming:hemp_fibre', 'bakedclay:mannagrass', 'default:junglegrass', 'xdecor:cobweb', 'farming:string'}
- for i = 1, 6 do
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- [(rope_items[i])] = 5,
- },
- output = 'ropes:ropesegment',
- })
- end
- stations.dual_register_recipe('spinning_wheel', {
- input = {
- ['group:wool'] = 1,
- },
- output = 'ropes:ropesegment',
- })
|