Skip to content

Commit 8851824

Browse files
authored
Merge pull request #621 from doyle31/main
Fix a bunch of old issues
2 parents 1a38393 + e5ab9e7 commit 8851824

File tree

8 files changed

+39
-14
lines changed

8 files changed

+39
-14
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

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: 13 additions & 11 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,22 +203,22 @@ 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" })
212214
allthemods.remove({ id: "silentgear:graded_mat_test" })
213215
allthemods.remove({ id: "silentgear:diamond_shard" })
214216
allthemods.remove({ id: "actuallyadditions:tagged_slime_block" })
215-
allthemods.remove({ id: `mekanism:compat/ae2/sand_to_silicon` })
216-
allthemods.remove({ id: `create:crushing/deepslate_copper_ore` })
217-
allthemods.remove({ id: `create:crushing/deepslate_zinc_ore` })
218-
allthemods.remove({ id: `create:crushing/deepslate_iron_ore` })
219-
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" })
220222
})
221223

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

kubejs/server_scripts/tweaks/tags.js

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

18+
allthemods.add("c:ingots", [
19+
"allthemodium:unobtainium_allthemodium_alloy_ingot",
20+
"allthemodium:unobtainium_vibranium_alloy_ingot",
21+
"allthemodium:vibranium_allthemodium_alloy_ingot"
22+
])
23+
1824
allthemods.remove("c:relocation_not_supported", [
1925
"geore:budding_diamond",
2026
"geore:budding_gold",
@@ -245,6 +251,8 @@ ServerEvents.tags("item", (allthemods) => {
245251
"mysticalagriculture:draconium_essence",
246252
"mysticalagriculture:marble_seeds",
247253
"mysticalagriculture:marble_essence",
254+
"mysticalagriculture:basalt_seeds",
255+
"mysticalagriculture:basalt_essence",
248256
"exmachinis:netherite_upgrade",
249257
/geore:.*tungsten.*/,
250258
/geore:.*monazite.*/,

0 commit comments

Comments
 (0)