recipes.lua 204 B

123456789
  1. minetest.register_craft({
  2. output = 'unicorn:apple',
  3. recipe = {
  4. {'unicorn:horn', '', 'unicorn:horn'},
  5. {'', 'default:apple', ''},
  6. {'unicorn:feather', '', 'unicorn:feather'},
  7. }
  8. })