Epic/mods/stations/recipes_pottery_wheel.lua

25 lines
511 B
Lua
Raw Permalink Normal View History

2020-10-07 06:32:00 -07:00
stations.dual_register_recipe('pottery', {
input = {
['default:clay_lump'] = 6,
},
output = 'earthbuild:storage_pot_unfired',
})
stations.dual_register_recipe('pottery', {
input = {
['default:clay_lump'] = 2,
2020-10-24 08:44:25 -07:00
-- ['bucket:bucket_water'] = 1,
2020-10-07 06:32:00 -07:00
},
output = 'earthbuild:unfired_clay_pot',
2020-10-24 08:44:25 -07:00
-- returns = {
-- ["bucket:bucket_empty"] = 1,
-- },
2020-10-07 06:32:00 -07:00
})
stations.dual_register_recipe('pottery', {
input = {
['default:clay_lump'] = 1,
},
output = 'xdecor:bowl',
})