oierbravo / create-paper-line

Create automation for paper and books
MIT License
0 stars 3 forks source link

Create Paper Line

Automation path for making books from trees.

Features

Pending Features:

Drying recipes:

Drying recipe example(included):

{
  "type": "create_paper_line:drying",
  "ingredient": {
      "item": "create_paper_line:wet_cardboard_sheet"
  },
  "result": {
    "item": "create_paper_line:cardboard_sheet"
  },
  "processingTime": 400
}

KubeJS integration (Requires KubeJS 6.1)

ServerEvents.recipes(event => {
    //With default processing time (100)
    event.recipes.createPaperLineDrying(Item.of("minecraft:white_wool"),Item.of("minecraft:stone"))
    //With custom processing time
    event.recipes.createPaperLineDrying(Item.of("minecraft:red_wool"),Item.of("minecraft:cobblestone")).processingTime(500);
})

Thanks to all the translators.