
Ages Primitives is a Forge mod focused on primitive knapping.
What it does:
- Opens a knapping UI when you right-click with the correct material in hand, while looking at air.
- Lets you carve patterns on a grid to craft primitive tool heads and parts
- Uses data-driven JSON knapping recipes
- Consumes material only when you actually take the crafted result
- Includes JEI/EMI integration with recipe categories
- Includes KubeJS integration with a custom knapping recipe schema, so modpack creators can add or modify knapping recipes via scripts
Recipe examples:
Data-driven
{
"type": "agesprimitives:knapping",
"knapping_type": "agesprimitives:rock",
"consume_count": 2,
"pattern": [
"XXXXX",
" XXX ",
" X ",
" X ",
" "
],
"key": {
"X": "filled",
" ": "empty"
},
"result": {
"item": "agesprimitives:stone_knife_head",
"count": 1
}
}
KubeJS
// kubejs/server_scripts/knapping.js
ServerEvents.recipes(event => {
event.custom({
type: 'agesprimitives:knapping',
knapping_type: 'agesprimitives:flint',
consume_count: 1,
pattern: [
'XXXXX',
' XXX ',
' X ',
' X ',
' '
],
key: {
'X': 'filled',
' ': 'empty'
},
result: {
item: 'agesprimitives:flint_knife_head',
count: 1
}
})
})
External resources
Featured versions
See allProject members

hyperlitica.geopolitical
Owner
Technical information
License
Apache-2.0
Client side
required
Server side
required
Project ID

