Skip to content

Commit e8850b9

Browse files
authored
Merge pull request #633 from DivineFinal/recipe
A few recipe changes
2 parents 8851824 + 23eada6 commit e8850b9

File tree

5 files changed

+56
-6
lines changed

5 files changed

+56
-6
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"type": "productivebees:bee_conversion",
3+
"source": "productivebees:radioactive",
4+
"result": "productivebees:uranite_crystal",
5+
"item": {
6+
"tag": "c:dusts/plutonium"
7+
},
8+
"chance": 1,
9+
"conditions": [
10+
{
11+
"type": "productivebees:bee_exists",
12+
"bee": "productivebees:radioactive"
13+
},
14+
{
15+
"type": "productivebees:bee_exists",
16+
"bee": "productivebees:uranite_crystal"
17+
}
18+
]
19+
}

kubejs/server_scripts/modpack/atm_star_creative.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ ServerEvents.recipes((allthemods) => {
6868
//Ars Noveau
6969

7070
allthemods.recipes.kubejs.shaped("allthearcanistgear:creative_spell_book", ["BSG", "GGE", "EER"], {
71-
B: "ars_nouveau:archmage_spell_book",
71+
B: "allthearcanistgear:unobtainium_spell_book",
7272
S: "allthetweaks:atm_star",
7373
G: "ars_nouveau:source_gem_block",
7474
E: "minecraft:ender_eye",

kubejs/server_scripts/mods/enderio/recipes.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,34 @@ ServerEvents.recipes((allthemods) => {
1616
right_reagent: "allthemods:tendrils/warden",
1717
ticks: 200
1818
})
19+
// Suspicious Seed Recipe
20+
allthemods
21+
.custom({
22+
type: "enderio:fire_crafting",
23+
base_blocks: ["allthecompressed:obsidian_1x", "minecraft:bedrock"],
24+
dimensions: ["minecraft:overworld"],
25+
results: [
26+
{
27+
chance: 0.8,
28+
max_count: 3,
29+
min_count: 1,
30+
result: {
31+
count: 1,
32+
id: "enderio:grains_of_infinity"
33+
}
34+
},
35+
{
36+
chance: 0.3,
37+
max_count: 1,
38+
min_count: 1,
39+
result: {
40+
count: 1,
41+
id: "enderio:suspicious_seed"
42+
}
43+
}
44+
]
45+
})
46+
.id("enderio:fire_crafting/bedrock_infinity")
1947
})
2048
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10: To the Sky.
2149
// 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.

kubejs/server_scripts/tweaks/removals.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,11 +214,12 @@ ServerEvents.recipes((allthemods) => {
214214
allthemods.remove({ id: "silentgear:graded_mat_test" })
215215
allthemods.remove({ id: "silentgear:diamond_shard" })
216216
allthemods.remove({ id: "actuallyadditions:tagged_slime_block" })
217-
allthemods.remove({ id: "mekanism:compat/ae2/sand_to_silicon" })
218-
allthemods.remove({ id: "create:crushing/deepslate_copper_ore" })
219-
allthemods.remove({ id: "create:crushing/deepslate_zinc_ore" })
220-
allthemods.remove({ id: "create:crushing/deepslate_iron_ore" })
221-
allthemods.remove({ id: "create:crushing/tuff_recycling" })
217+
allthemods.remove({ id: `mekanism:compat/ae2/sand_to_silicon` })
218+
allthemods.remove({ id: `create:crushing/deepslate_copper_ore` })
219+
allthemods.remove({ id: `create:crushing/deepslate_zinc_ore` })
220+
allthemods.remove({ id: `create:crushing/deepslate_iron_ore` })
221+
allthemods.remove({ id: `create:crushing/tuff_recycling` })
222+
allthemods.remove({ id: `modern_industrialization:materials/plutonium/craft/block_from_ingot` })
222223
})
223224

224225
ServerEvents.generateData("after_mods", (allthemods) => {

kubejs/server_scripts/tweaks/tags.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ServerEvents.tags("block", (allthemods) => {
77

88
// Extreme Reactors
99
allthemods.add("c:storage_blocks/yellorium", "alltheores:uranium_block")
10+
allthemods.add("c:storage_blocks/plutonium", "bigreactors:blutonium_block")
1011

1112
allthemods.add("c:relocation_not_supported", [
1213
"minecraft:beehive",
@@ -51,6 +52,7 @@ ServerEvents.tags("item", (allthemods) => {
5152
// Extreme Reactors
5253
allthemods.add("c:ingots/yellorium", "alltheores:uranium_ingot")
5354
allthemods.add("c:storage_blocks/yellorium", "alltheores:uranium_block")
55+
allthemods.add("c:storage_blocks/plutonium", "bigreactors:blutonium_block")
5456

5557
// water buckets
5658
allthemods.add("c:buckets/water", "exdeorum:porcelain_water_bucket")

0 commit comments

Comments
 (0)