Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "productivebees:bee_conversion",
"source": "productivebees:radioactive",
"result": "productivebees:uranite_crystal",
"item": {
"tag": "c:dusts/plutonium"
},
"chance": 1,
"conditions": [
{
"type": "productivebees:bee_exists",
"bee": "productivebees:radioactive"
},
{
"type": "productivebees:bee_exists",
"bee": "productivebees:uranite_crystal"
}
]
}
2 changes: 1 addition & 1 deletion kubejs/server_scripts/modpack/atm_star_creative.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ServerEvents.recipes((allthemods) => {
//Ars Noveau

allthemods.recipes.kubejs.shaped("allthearcanistgear:creative_spell_book", ["BSG", "GGE", "EER"], {
B: "ars_nouveau:archmage_spell_book",
B: "allthearcanistgear:unobtainium_spell_book",
S: "allthetweaks:atm_star",
G: "ars_nouveau:source_gem_block",
E: "minecraft:ender_eye",
Expand Down
28 changes: 28 additions & 0 deletions kubejs/server_scripts/mods/enderio/recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,34 @@ ServerEvents.recipes((allthemods) => {
right_reagent: "allthemods:tendrils/warden",
ticks: 200
})
// Suspicious Seed Recipe
allthemods
.custom({
type: "enderio:fire_crafting",
base_blocks: ["allthecompressed:obsidian_1x", "minecraft:bedrock"],
dimensions: ["minecraft:overworld"],
results: [
{
chance: 0.8,
max_count: 3,
min_count: 1,
result: {
count: 1,
id: "enderio:grains_of_infinity"
}
},
{
chance: 0.3,
max_count: 1,
min_count: 1,
result: {
count: 1,
id: "enderio:suspicious_seed"
}
}
]
})
.id("enderio:fire_crafting/bedrock_infinity")
})
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10: To the Sky.
// 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.
11 changes: 6 additions & 5 deletions kubejs/server_scripts/tweaks/removals.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,12 @@ ServerEvents.recipes((allthemods) => {
allthemods.remove({ id: "silentgear:graded_mat_test" })
allthemods.remove({ id: "silentgear:diamond_shard" })
allthemods.remove({ id: "actuallyadditions:tagged_slime_block" })
allthemods.remove({ id: "mekanism:compat/ae2/sand_to_silicon" })
allthemods.remove({ id: "create:crushing/deepslate_copper_ore" })
allthemods.remove({ id: "create:crushing/deepslate_zinc_ore" })
allthemods.remove({ id: "create:crushing/deepslate_iron_ore" })
allthemods.remove({ id: "create:crushing/tuff_recycling" })
allthemods.remove({ id: `mekanism:compat/ae2/sand_to_silicon` })
allthemods.remove({ id: `create:crushing/deepslate_copper_ore` })
allthemods.remove({ id: `create:crushing/deepslate_zinc_ore` })
allthemods.remove({ id: `create:crushing/deepslate_iron_ore` })
allthemods.remove({ id: `create:crushing/tuff_recycling` })
allthemods.remove({ id: `modern_industrialization:materials/plutonium/craft/block_from_ingot` })
})

ServerEvents.generateData("after_mods", (allthemods) => {
Expand Down
2 changes: 2 additions & 0 deletions kubejs/server_scripts/tweaks/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ServerEvents.tags("block", (allthemods) => {

// Extreme Reactors
allthemods.add("c:storage_blocks/yellorium", "alltheores:uranium_block")
allthemods.add("c:storage_blocks/plutonium", "bigreactors:blutonium_block")

allthemods.add("c:relocation_not_supported", [
"minecraft:beehive",
Expand Down Expand Up @@ -51,6 +52,7 @@ ServerEvents.tags("item", (allthemods) => {
// Extreme Reactors
allthemods.add("c:ingots/yellorium", "alltheores:uranium_ingot")
allthemods.add("c:storage_blocks/yellorium", "alltheores:uranium_block")
allthemods.add("c:storage_blocks/plutonium", "bigreactors:blutonium_block")

// water buckets
allthemods.add("c:buckets/water", "exdeorum:porcelain_water_bucket")
Expand Down
Loading