Skip to content

Commit 23eada6

Browse files
authored
Merge branch 'main' into recipe
2 parents 0578bda + 8851824 commit 23eada6

File tree

9 files changed

+43
-9
lines changed

9 files changed

+43
-9
lines changed

config/ftbquests/quests/chapters/basic_tools.snbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@
11751175
}]
11761176
tasks: [{
11771177
id: "27D9C16A4E2CD5B5"
1178-
item: { components: { "draconicevolution:config_properties": [[ { : "DECIMAL" }, { formatter: "percent_1", max: 1.0d, min: 0.0d, name: "mining_speed", show_on_hud: 1b, value: 1.0d } ]], "draconicevolution:module_entities": [ ], "draconicevolution:provider_identity": [I; -1431768927, 1566720680, -1405879401, 443085220 ] }, count: 1, id: "draconicevolution:chaotic_pickaxe" }
1178+
item: { count: 1, id: "draconicevolution:chaotic_pickaxe" }
11791179
type: "item"
11801180
}]
11811181
x: 0.5d

config/ftbquests/quests/lang/en_us/chapters/draconic_evolution.snbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
quest.1A53B6544782442E.title: "Wyvern Shield Control Module"
5959
quest.1C8210712349A2E3.quest_desc: ["Pretty simple premise, Axes and Swords can do more Damage. Yes, it stacks!"]
6060
quest.1C8210712349A2E3.title: "Basic Damage Module"
61-
quest.1D3E2363CFD4C5E0.quest_desc: ["Fusion Crafting has Tiers which is determined by the Injectors. The Tiers go in ascending order: Draconium (I refer to it as Basic to help differentiate), Wyvern, Draconic, and Chaotic. The Injectors need to be placed on the Left and Right of the Fusion Crafting Core, a few blocks away from it. They can be placed in a cross shape at a max of 5 on each side of the Crafting Core. To give them Energy putting Relay IO Crystals connected to them will work, check out Crystak Binding to learn more."]
61+
quest.1D3E2363CFD4C5E0.quest_desc: ["Fusion Crafting has Tiers which is determined by the Injectors. The Tiers go in ascending order: Draconium (I refer to it as Basic to help differentiate), Wyvern, Draconic, and Chaotic. The Injectors need to be placed on the Left and Right of the Fusion Crafting Core, a few blocks away from it. They can be placed in a cross shape at a max of 5 on each side of the Crafting Core. To give them Energy putting Relay IO Crystals connected to them will work, check out Crystal Binding to learn more."]
6262
quest.1D3E2363CFD4C5E0.title: "Basic Tier"
6363
quest.1E41A5071854DEC8.title: "Wyvern Damage Module"
6464
quest.1F7D147C9AF6A4FC.quest_desc: [
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ServerEvents.recipes((allthemods) => {
2+
allthemods.remove({ id: "dyenamics:ma/dye/lavender_dye" })
3+
allthemods.shaped("dyenamics:lavender_dye", [" D ", " ", "D D"], { L: "dyenamics:lavender_dye" })
4+
})

kubejs/server_scripts/mods/exdeorum/exdeorum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ ServerEvents.recipes((allthemods) => {
204204
sieving("minecraft:sculk", Materials.EndStone, [{ mesh: Meshes.NETHERITE, amount: 1, chance: 0.075 }])
205205

206206
// Crucible heating blocks
207-
allthemods.recipes.exdeorum.crucible_heat_source({ block_tag: "alltheores:uranium" }, 20)
207+
allthemods.recipes.exdeorum.crucible_heat_source({ block: "alltheores:uranium_block" }, 20)
208208
allthemods.recipes.exdeorum.crucible_heat_source({ block: "mekanism:superheating_element" }, 60)
209209
allthemods.recipes.exdeorum.crucible_heat_source({ block: "allthemodium:soul_lava" }, 120)
210210

kubejs/server_scripts/mods/industrial_foregoing/laser_drill.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,15 @@ ServerEvents.recipes((allthemods) => {
8888
80,
8989
3
9090
)
91+
92+
laserDrillFluid(
93+
{ fluid: "pneumaticcraft:oil", amount: 50 },
94+
"minecraft:empty",
95+
"industrialforegoing:black_laser_lens",
96+
20,
97+
60,
98+
3
99+
)
91100
})
92101

93102
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10: To the Sky.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
ServerEvents.tags("item", (allthemods) => {
2+
allthemods.add("minecraft:enchantable/sword", "silentgear:dagger")
3+
allthemods.add("minecraft:enchantable/fire_aspect", "silentgear:dagger")
4+
allthemods.add("minecraft:enchantable/sharp_weapon", "silentgear:dagger")
5+
allthemods.add("minecraft:enchantable/weapon", "silentgear:dagger")
6+
allthemods.add("minecraft:enchantable/vanishing", "silentgear:dagger")
7+
})
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ServerEvents.recipes((allthemods) => {
2+
allthemods.remove({ id: "supplementaries:lapis_bricks" })
3+
allthemods.shaped("supplementaries:lapis_bricks", ["L L", " ", "L L"], { L: "minecraft:lapis_lazuli" })
4+
})

kubejs/server_scripts/tweaks/removals.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ ServerEvents.recipes((allthemods) => {
185185
"mysticalagriculture:compressed_iron_seeds",
186186
"mysticalagriculture:compressed_iron_essence",
187187
"mysticalagriculture:draconium_seeds",
188-
"mysticalagriculture:draconium_essence"
188+
"mysticalagriculture:draconium_essence",
189+
"mysticalagriculture:basalt_seeds",
190+
"mysticalagriculture:basalt_essence"
189191
]
190192

191193
removals.forEach((entry) => {
@@ -201,11 +203,11 @@ ServerEvents.recipes((allthemods) => {
201203

202204
allthemods.remove({ output: /exdeorum:.*_compressed_sieve/ })
203205
allthemods.remove({ output: /generatorgalore:.*_upgrade/ })
204-
allthemods.remove({ id: `create:crushing/nether_gold_ore` })
205-
allthemods.remove({ id: `create:crushing/deepslate_gold_ore` })
206-
allthemods.remove({ id: `create:crushing/netherrack` })
207-
allthemods.remove({ id: `create:crushing/ochrum_recycling` })
208-
allthemods.remove({ id: `mekanism:sulfur_dye` })
206+
allthemods.remove({ id: "create:crushing/nether_gold_ore" })
207+
allthemods.remove({ id: "create:crushing/deepslate_gold_ore" })
208+
allthemods.remove({ id: "create:crushing/netherrack" })
209+
allthemods.remove({ id: "create:crushing/ochrum_recycling" })
210+
allthemods.remove({ id: "mekanism:sulfur_dye" })
209211
allthemods.remove({ id: "alltheores:alloysmelter/brass/ingot" })
210212
allthemods.remove({ id: "soulshards:vile_dust_from_soul_sand" })
211213
allthemods.remove({ id: "oritech:crafting/alloy/steel" })

kubejs/server_scripts/tweaks/tags.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ ServerEvents.tags("block", (allthemods) => {
1616
"@waystones"
1717
])
1818

19+
allthemods.add("c:ingots", [
20+
"allthemodium:unobtainium_allthemodium_alloy_ingot",
21+
"allthemodium:unobtainium_vibranium_alloy_ingot",
22+
"allthemodium:vibranium_allthemodium_alloy_ingot"
23+
])
24+
1925
allthemods.remove("c:relocation_not_supported", [
2026
"geore:budding_diamond",
2127
"geore:budding_gold",
@@ -247,6 +253,8 @@ ServerEvents.tags("item", (allthemods) => {
247253
"mysticalagriculture:draconium_essence",
248254
"mysticalagriculture:marble_seeds",
249255
"mysticalagriculture:marble_essence",
256+
"mysticalagriculture:basalt_seeds",
257+
"mysticalagriculture:basalt_essence",
250258
"exmachinis:netherite_upgrade",
251259
/geore:.*tungsten.*/,
252260
/geore:.*monazite.*/,

0 commit comments

Comments
 (0)