Some Minecraft modpack thing

URL may change as site structure is figured out

For This Page

Recipe display Research Center

3x3 Example, not intended for use here tho.
➡️
2x2 Example
➡️

Context

This started off because I revisited Pyrotech, and thought maybe I could use the Farmer's Delight cutting board to a similar effect as the chopping log or whatever it's called.

Core Concepts

Origins

Highly versitile datapack tool for defining attributes for the player entity, as well as allowing the player to pick different configurations, or Origins, on joining a world.

Wiki

General Plans

  • Rework or remove vanilla origins
  • Kobolds next

Bees

  • Toggleable Levitation at the cost of hunger equal to sprinting.
  • Climb and cling to blocks outside the climbable tag at the cost of hunger equal to sprinting.
  • Slow falling while sneaking. Free of charge
  • Hexagonal Heart: 6 hearts (12 HP)
  • Fall Immunity: This might just end up being global if I decide to keep Squake, which I might.

Secondary Origin Layer

Applies to all players

  • Weak Arms: a vanilla origins power that prevents the manual mining of natural stones without strength potion
  • Prevent the manual mining of vertical logs that have a vertical log directly above, forcing the player to chop top down, by the same rules as Weak Arms
  • Prevent the use of 3x3 crafting tables. Every recipe that uses the 3x3 crafting grid must be changed for the pack to be considered ready, as I want players to be able to use Create Blueprints, and I don't feel like learning Java yet to make those 2x2

Foraging

Every stick and stone is a treasure, know how to use them

Sapling Cutting

{
  "type": "farmersdelight:cutting",
  "ingredients": [
    {
      "item": "minecraft:oak_sapling"
    }
  ],
  "result": [
    {
      "item": "minecraft:oak_leaves"
    },
    {
      "item": "twigs:twig"
    }
  ],
  "tool": {
    "tag": "forge:tools/knives"
  }
}
          

Tools

Not sure how I want to do swords yet

Stone / Wooden Tools

I like how Pyrotech does it's crude stone tools, so I have used the same shapes, and used farmer's delight rope as the binding. I could've chose to use pebbles, but something about flint gives the impression of "finding the right rock for the job"
Wooden Tools are the same, but using slabs instead of flint, and twigs instead of sticks. Once I figure displaying block renders I'll show them here, since they are needed to make iron and gold tools

Stone Axe
➡️
Stone Pickaxe
➡️
Stone Hoe
➡️
Stone Shovel
➡️

Tool Smithing Tree

I want making strong tools from scratch to require making wood tools, then adding layers of material on via a smithing table.

Where feasable, I would like these smithing recipes to have a sequenced assembly equivelant, with an item application followed by 3 press bonks

  • Wooden Tools
    • Iron Sheet
      • Amythest
      • Dark Metal
    • Golden Sheet
      • Diamond

Carpentry

For now, Oak will be used as an example of each recipe, but keep in mind I'll need to make a version of each of these for every wood type.

Stripped Logs

{
  "type": "create:item_application",
  "ingredients": [
    {
      "item": "minecraft:oak_log"
    },
    {
      "item": "minecraft:flint"
    }
  ],
  "results": [
    {
      "item": "minecraft:stripped_oak_log"
    }
  ]
}
          

Planks

{
  "type": "create:item_application",
  "ingredients": [
    {
      "item": "minecraft:stripped_oak_log"
    },
    {
      "item": "minecraft:flint"
    }
  ],
  "results": [
    {
      "item": "minecraft:oak_planks"
    }
  ]
}
          

Wooden Slabs

{
  "type": "minecraft:crafting_shapeless",
  "ingredients": [
    {
      "item": "minecraft:oak_planks"
    },
    {
      "item": "minecraft:flint"
    }
  ],
  "result": {
    "item": "minecraft:oak_slab",
    "count": 2
  }
}
          

Cutting Board

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "#/"
  ],
  "key": {
    "#": {
      "tag": "minecraft:wooden_slabs"
    },
    "/": {
      "item": "minecraft:stick"
    }
  },
  "result": {
    "item": "farmersdelight:cutting_board"
  }
}
          

Trapdoor

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "/",
    "#"
  ],
  "key": {
    "#": {
      "item": "minecraft:oak_slab"
    },
    "/": {
      "item": "minecraft:stick"
    }
  },
  "result": {
    "item": "minecraft:oak_trapdoor"
  }
}
          

Door

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "#",
    "#"
  ],
  "key": {
    "#": {
      "item": "minecraft:oak_trapdoor"
    }
  },
  "result": {
    "item": "minecraft:oak_door"
  }
}