feat: the obsidian & tears stuff
This commit is contained in:
parent
814ca75ebb
commit
95cb582977
8
edits.md
8
edits.md
|
|
@ -13,7 +13,7 @@
|
||||||
- [x] 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
|
- [x] haunting obsidian -> crying obsidian
|
||||||
- [ ] diamond armor requires brass crafter
|
- [x] diamond armor requires brass crafter
|
||||||
- [ ] drill/cutter requires brass
|
- [x] drill/cutter requires brass
|
||||||
- [ ] crying obsidian + glowstone dust -> dimension tears don't need blaze
|
- [x] crying obsidian + glowstone dust -> dimension tears don't need blaze
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
ServerEvents.recipes(event => {
|
||||||
|
// obsidian -> crying obsidian
|
||||||
|
event.recipes.create.haunting('minecraft:crying_obsidian', 'minecraft:obsidian');
|
||||||
|
event.remove({output: Fluid.of('spelunkery:portal_fluid')});
|
||||||
|
event.recipes.create.mixing(
|
||||||
|
['minecraft:obsidian',
|
||||||
|
Fluid.of('spelunkery:portal_fluid', 144),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'minecraft:crying_obsidian',
|
||||||
|
'minecraft:glowstone_dust'
|
||||||
|
]
|
||||||
|
);
|
||||||
|
});
|
||||||
Loading…
Reference in New Issue