Skip to content

Commit 4676944

Browse files
committed
feat: add emperor_chalice compat with Irons Spells cauldron
Closes #3681
1 parent a082595 commit 4676944

4 files changed

Lines changed: 94 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"keys": [
3+
{
4+
"name": "results",
5+
"role": "output",
6+
"type": {
7+
"type": "list",
8+
"component": "fluid_stack",
9+
"min": 0
10+
}
11+
},
12+
{
13+
"name": "input",
14+
"role": "input",
15+
"type": "optional_ingredient"
16+
},
17+
{
18+
"name": "base_fluid",
19+
"role": "input",
20+
"type": "fluid_stack"
21+
},
22+
{
23+
"name": "byproduct",
24+
"role": "output",
25+
"type": "optional_item_stack",
26+
"default_optional": true
27+
}
28+
],
29+
"unique": ["results"]
30+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"keys": [
3+
{
4+
"name": "result",
5+
"role": "output",
6+
"type": "item_stack"
7+
},
8+
{
9+
"name": "input",
10+
"role": "input",
11+
"type": "optional_ingredient"
12+
},
13+
{
14+
"name": "fluid",
15+
"type": "fluid_stack"
16+
},
17+
{
18+
"name": "sound",
19+
"type": {"type": "registry_element","registry": "minecraft:sound_event"},
20+
"default_optional": true
21+
}
22+
],
23+
"unique": ["result"]
24+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"keys": [
3+
{
4+
"name": "fluid",
5+
"type": "fluid_stack"
6+
},
7+
{
8+
"name": "input",
9+
"role": "input",
10+
"type": "optional_ingredient"
11+
},
12+
{
13+
"name": "result",
14+
"role": "output",
15+
"type": "item_stack"
16+
},
17+
{
18+
"name": "mustFitAll",
19+
"type": "boolean",
20+
"optional": true
21+
},
22+
{
23+
"name": "sound",
24+
"type": {"type": "registry_element","registry": "minecraft:sound_event"},
25+
"default_optional": true
26+
}
27+
],
28+
"unique": ["fluid"]
29+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
2+
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
3+
4+
ServerEvents.recipes(allthemods => {
5+
let fill = allthemods.recipes.irons_spellbooks.alchemist_cauldron_fill
6+
7+
fill("1000x minecraft:water", "reliquary:emperor_chalice", "reliquary:emperor_chalice", false, "irons_spellbooks:cast.generic.lightning")
8+
})
9+
10+
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
11+
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.

0 commit comments

Comments
 (0)