123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_barn1',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_barn2',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_castle1',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_castle2',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_cottage1',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['xpanes:pane_flat'] = 1,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_cottage2',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_french',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['default:paper'] = 2,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_japanese',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['dye:white'] = 1,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_mansion1',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_wood',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['xpanes:pane_flat'] = 1,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_woodglass1',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['xpanes:pane_flat'] = 1,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_woodglass2',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:door_woodpanel1',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['xpanes:chainlink_flat'] = 1,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:screen_door',
- })
- stations.dual_register_recipe('woodworking', {
- input = {
- ['group:wood'] = 5,
- ['xpanes:pane_flat'] = 1,
- ['furniture:hinge'] = 3,
- },
- output = 'doors:woodglass_door',
- })
|