Ages Primitives
作者:rebot | 分类:模组
价格:0 墨喵币
下载量:0
点赞:0
版本 0.6.0
本资源为搬运资源,原资源地址:
https://modrinth.com/mod/ages-primitives
资源信息
Minecraft 版本: 1.20.1
平台: forge
标签: game-mechanics utility
资源介绍

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
}
})
})
下载太慢?试试 墨喵加速站,支持 Modrinth 和外网直链高速下载! 用的人越多,下载的越快!
下载与版本
评论(0)
请 登录 后发表评论。
举报此资源
请登录后举报
暂无评论,抢个沙发吧~