123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- stations.dual_register_recipe('woodworking', {
- input = {
- ['default:coral_skeleton'] = 1,
- },
- output = 'furniture:sanding',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 1,
- },
- output = 'furniture:wheel',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:tree'] = 1,
- ['group:stick'] = 1,
- },
- output = 'furniture:stool_short',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:tree'] = 1,
- ['group:stick'] = 2,
- },
- output = 'furniture:stool_tall',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 2,
- ['group:stick'] = 4,
- },
- output = 'furniture:chair',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 6,
- ['furniture:hinge'] = 2,
- ['furniture:lock'] = 1,
- },
- output = 'furniture:chest_small',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 10,
- ['furniture:hinge'] = 2,
- ['furniture:lock'] = 1,
- },
- output = 'furniture:chest',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 14,
- ['furniture:hinge'] = 3,
- ['furniture:lock'] = 2,
- },
- output = 'furniture:chest_large',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['group:stick'] = 4,
- },
- output = 'furniture:bench',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 6,
- ['group:stick'] = 4,
- },
- output = 'furniture:bench_with_back',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 12,
- ['group:stick'] = 8,
- },
- output = 'furniture:bench_picnic',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- },
- output = 'furniture:cabinet_counter',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 2,
- ['darkage:iron_stick'] = 1,
- },
- output = 'furniture:railing_straight',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['darkage:iron_stick'] = 2,
- },
- output = 'furniture:railing_corner',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- },
- output = 'furniture:cabinet_counter_corner_inside',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- },
- output = 'furniture:cabinet_counter_corner_outside',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- },
- output = 'furniture:desk',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- },
- output = 'furniture:cabinet_wall',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 2,
- ['group:stick'] = 8,
- },
- output = 'furniture:table_basic',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 2,
- ['default:book'] = 1,
- },
- output = 'furniture:lectern',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 1,
- },
- output = 'furniture:fence_1_a',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 1,
- },
- output = 'furniture:fence_1_b',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 1,
- },
- output = 'furniture:fence_1_c',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 2,
- },
- output = 'furniture:fence_1_e',
- })
- local colors = {
- 'grey', 'dark_grey', 'black', 'violet', 'blue', 'cyan', 'dark_green', 'green',
- 'yellow', 'brown', 'orange', 'red', 'magenta', 'pink', 'white'
- }
- for i = 1,15 do
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:tree'] = 1,
- ['group:stick'] = 2,
- ['furniture:cushion_'..(colors[i])] = 1,
- },
- output = 'furniture:stool_tall_'..(colors[i]),
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:tree'] = 1,
- ['group:stick'] = 2,
- ['furniture:cushion_'..(colors[i])] = 1,
- },
- output = 'furniture:stool_short_'..(colors[i]),
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 2,
- ['group:stick'] = 4,
- ['furniture:cushion_'..(colors[i])] = 1,
- },
- output = 'furniture:chair_'..(colors[i]),
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['ropes:ropesegment'] = 3,
- ['group:wool'] = 1,
- ['furniture:fabric_'..(colors[i])] = 3,
- },
- output = 'furniture:bed1_'..(colors[i]),
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['ropes:ropesegment'] = 3,
- ['farming:straw'] = 1,
- ['furniture:fabric_'..(colors[i])] = 3,
- },
- output = 'furniture:bed1_'..(colors[i]),
- })
- end
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['ropes:ropesegment'] = 3,
- ['group:wool'] = 1,
- ['group:fabric'] = 3,
- },
- output = 'beds:bed_bottom',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['ropes:ropesegment'] = 3,
- ['group:wool'] = 1,
- ['group:fabric'] = 3,
- },
- output = 'beds:fancy_bed_bottom',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['ropes:ropesegment'] = 3,
- ['farming:straw'] = 1,
- ['group:fabric'] = 3,
- },
- output = 'beds:bed_bottom',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 4,
- ['ropes:ropesegment'] = 3,
- ['farming:straw'] = 1,
- ['group:fabric'] = 3,
- },
- output = 'beds:fancy_bed_bottom',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 1,
- ['default:stick'] = 2,
- },
- output = 'furniture:well_top',
- })
|