feat: rope
This commit is contained in:
parent
5b9a34a4d4
commit
7737fc5200
4
edits.md
4
edits.md
|
|
@ -9,8 +9,8 @@
|
||||||
- [x] empty map: 8 paper + spyglass
|
- [x] empty map: 8 paper + spyglass
|
||||||
- [x] map atlases: book + compass + empty map
|
- [x] map atlases: book + compass + empty map
|
||||||
- [x] iron / gold armor: use plates over ingots
|
- [x] iron / gold armor: use plates over ingots
|
||||||
- [ ] rope: prefer farmer's rope over supplementaries
|
- [-] rope: prefer farmer's rope over supplementaries
|
||||||
- [ ] flax: make more ropes than straws maybe?
|
- [x] flax: make more ropes than straws maybe?
|
||||||
|
|
||||||
- [x] fan, reaper use quartz -> replace shaft with, like, rose
|
- [x] fan, reaper use quartz -> replace shaft with, like, rose
|
||||||
- [ ] haunting obsidian -> crying obsidian
|
- [ ] haunting obsidian -> crying obsidian
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
ServerEvents.recipes(event => {
|
||||||
|
event.remove({output:'supplementaries:rope'});
|
||||||
|
event.shaped(
|
||||||
|
'8x farmersdelight:rope',
|
||||||
|
[
|
||||||
|
' A ',
|
||||||
|
' A ',
|
||||||
|
' A '
|
||||||
|
],
|
||||||
|
{
|
||||||
|
A: 'supplementaries:flax'
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
Loading…
Reference in New Issue