feat: the obsidian & tears stuff

This commit is contained in:
hypercross 2025-11-30 13:51:37 +08:00
parent 814ca75ebb
commit 95cb582977
2 changed files with 18 additions and 4 deletions

View File

@ -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

View File

@ -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'
]
);
});