123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- stations.dual_register_recipe('woodworking', {
- input = {
- ['furniture:wheel'] = 1,
- ['default:stick'] = 4,
- ['group:wood'] = 2,
- ['farming:cotton'] = 2,
- },
- output = 'stations:spinning_wheel',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:tree'] = 4,
- ['default:stick'] = 2,
- ['ropes:ropesegment'] = 2,
- },
- output = 'stations:weaving_loom',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['furniture:fabric_white'] = 4,
- ['furniture:thread_white'] = 10,
- ['group:wood'] = 4,
- },
- output = 'stations:sewing',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['furniture:fabric_white'] = 3,
- ['earthbuild:clay_pot_water'] = 1,
- ['group:wood'] = 5,
- },
- output = 'stations:dying',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['default:paper'] = 2,
- ['dye:black'] = 1,
- ['furniture:brush'] = 1,
- ['scaffolding:scaffolding_wrench'] = 1,
- ['group:wood'] = 5,
- },
- output = 'stations:printing_press',
- })
|