123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- 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',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['earthbuild:wattle'] = 2,
- ['moreblocks:slab_iron_stone'] = 1,
- ['group:fabric'] = 1,
- ['group:stick'] = 1,
- ['group:wood'] = 3,
- },
- output = 'stations:flour_mill',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['moreblocks:slab_iron_stone'] = 1,
- ['group:stick'] = 1,
- ['group:wood'] = 3,
- },
- output = 'stations:pottery',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['default:furnace'] = 1,
- ['group:stick'] = 2,
- ['group:wood'] = 3,
- ['armor:ring_gol'] = 1,
- ['armor:ring_tit'] = 1,
- },
- output = 'stations:jewelry',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['earthbuild:bottlegourd_container'] = 4,
- ['xdecor:bowl'] = 1,
- ['group:wood'] = 1,
- },
- output = 'stations:food_prep',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:stick'] = 2,
- ['xdecor:barrel'] = 1,
- ['xdecor:bowl'] = 1,
- },
- output = 'stations:churn',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['furniture:wheel'] = 1,
- ['xdecor:baricade'] = 1,
- ['group:wood'] = 4,
- },
- output = 'stations:threshing',
- })
|