Skip to content
Open
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
4 changes: 3 additions & 1 deletion kubejs/server_scripts/mods/dyenamics/lavender.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
ServerEvents.recipes((allthemods) => {
allthemods.remove({ id: "dyenamics:ma/dye/lavender_dye" })
allthemods.shaped("dyenamics:lavender_dye", [" D ", " ", "D D"], { D: "dyenamics:lavender_dye" })
allthemods.shaped(Item.of("dyenamics:lavender_dye", 6), [" D ", " ", "D D"], {
D: "mysticalagriculture:dye_essence"
})
})
47 changes: 36 additions & 11 deletions kubejs/server_scripts/mods/industrial_foregoing/laser_drill.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,44 @@ ServerEvents.recipes((allthemods) => {
* @param {number} depthMax
* @param {number} weight
*/
function laserDrillFluid(output, entity, catalyst, depthMin, depthMax, weight) {
function laserDrillFluid(output, catalyst, depthMin, depthMax, weight) {
allthemods
.custom({
type: "industrialforegoing:laser_drill_fluid",
output: output,
entity: entity || "minecraft:empty",
rarity: [
{
biome_filter: {
whitelist: [],
blacklist: []
},
dimension_filter: {
whitelist: [],
blacklist: []
},
depth_min: depthMin,
depth_max: depthMax,
weight: weight
}
],
catalyst: {
item: catalyst
}
})
.id(`allthemods:industrialforegoing/laser_drill_fluid/${output.fluid.split(":")[1]}`)
}
function laserDrillFluidWithEntity(output, entity, catalyst, depthMin, depthMax, weight) {
allthemods
.custom({
type: "industrialforegoing:laser_drill_fluid",
output: output,
entity_data: {
data: {},
display: "",
entity: {
type: entity
}
},
rarity: [
{
biome_filter: {
Expand All @@ -74,7 +106,7 @@ ServerEvents.recipes((allthemods) => {

laserDrillOre({ tag: "c:gems/benitoite", count: 8 }, "industrialforegoing:blue_laser_lens", 5, 256, 5)

laserDrillFluid(
laserDrillFluidWithEntity(
{ fluid: "allthemodium:soul_lava", amount: 10 },
"minecraft:warden",
"industrialforegoing:blue_laser_lens",
Expand All @@ -83,14 +115,7 @@ ServerEvents.recipes((allthemods) => {
3
)

laserDrillFluid(
{ fluid: "pneumaticcraft:oil", amount: 50 },
"minecraft:empty",
"industrialforegoing:black_laser_lens",
20,
60,
3
)
laserDrillFluid({ fluid: "pneumaticcraft:oil", amount: 50 }, "industrialforegoing:black_laser_lens", 20, 60, 3)
})

// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10: To the Sky.
Expand Down
1 change: 1 addition & 0 deletions kubejs/server_scripts/tweaks/removals.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ ServerEvents.recipes((allthemods) => {
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` })
allthemods.remove({ id: `industrialforegoing:laser_drill_fluid/oil` })
})

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

allthemods.add("c:sawdust", "exdeorum:wood_chippings")

// Allow additional Ars Elemental armors to be used for Allthemodium Arcanist Gear

allthemods.add("allthearcanistgear:elemental_hat", [/ars_elemental:.*_helmet/, /ars_elemental:.*_hood/])

allthemods.add("allthearcanistgear:elemental_chest", [/ars_elemental:.*_chestplate/, /ars_elemental:.*_tunic/])

allthemods.add("allthearcanistgear:elemental_legs", [/ars_elemental:.*_leggings_heavy/, /ars_elemental:.*_pants/])

allthemods.add("allthearcanistgear:elemental_boots", [/ars_elemental:.*_boots_heavy/, /ars_elemental:.*_shoes/])

// For crushing recipes
allthemods.add("c:deepslate_blocks", ["minecraft:deepslate", "minecraft:cobbled_deepslate"])
})
Expand Down
Loading