feat: rope

This commit is contained in:
hypercross 2025-11-30 13:07:11 +08:00
parent 5b9a34a4d4
commit 7737fc5200
2 changed files with 16 additions and 2 deletions

View File

@ -9,8 +9,8 @@
- [x] empty map: 8 paper + spyglass
- [x] map atlases: book + compass + empty map
- [x] iron / gold armor: use plates over ingots
- [ ] rope: prefer farmer's rope over supplementaries
- [ ] flax: make more ropes than straws maybe?
- [-] rope: prefer farmer's rope over supplementaries
- [x] flax: make more ropes than straws maybe?
- [x] fan, reaper use quartz -> replace shaft with, like, rose
- [ ] haunting obsidian -> crying obsidian

View File

@ -0,0 +1,14 @@
ServerEvents.recipes(event => {
event.remove({output:'supplementaries:rope'});
event.shaped(
'8x farmersdelight:rope',
[
' A ',
' A ',
' A '
],
{
A: 'supplementaries:flax'
}
);
});