Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…atica9 into develop
  • Loading branch information
NielsPilgaard committed Jul 22, 2023
2 parents f061d10 + e66036e commit 833a7a3
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 9 deletions.
3 changes: 3 additions & 0 deletions changelogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Add many items to Mekanism's Painting system [\#494](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/494) ([MuteTiefling](https://github.com/MuteTiefling))
- Apotheosis bosses largely reverted to new defaults. Remaining bosses brought more in line with the new balancing. [\#495](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/495) ([MuteTiefling](https://github.com/MuteTiefling))
- Apotheosis gems that were previously modified have been rebalanced to closer match the new defaults. [\#496](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/496) ([MuteTiefling](https://github.com/MuteTiefling))
- Source Gem Blocks may now be stonecut between types. [\#519](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/519) ([MuteTiefling](https://github.com/MuteTiefling))

### 🐛 Fixed Bugs

Expand All @@ -32,6 +33,8 @@
- Expert Armor Sets no longer affect Normal mode. [\#505](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/505) ([MuteTiefling](https://github.com/MuteTiefling))
- Inhalation Purification no longer removes certain effects that aren't meant to be removed. [\#505](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/505) ([MuteTiefling](https://github.com/MuteTiefling))
- Fix IE Mineral Deposits. [\#506](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/506) ([MuteTiefling](https://github.com/MuteTiefling))
- Enchanters Shield now accepts any source gem. [\#522](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/522) ([MuteTiefling](https://github.com/MuteTiefling))
- Occultism Machine Operator quest is now completable. [\#523](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/523) ([MuteTiefling](https://github.com/MuteTiefling))

---

Expand Down
7 changes: 4 additions & 3 deletions config/ftbquests/quests/chapters/occultism.snbt
Original file line number Diff line number Diff line change
Expand Up @@ -1264,9 +1264,10 @@
}]
subtitle: "I Better Be Gettin' Overtime For This..."
tasks: [{
id: "238EBFECAEB660D2"
item: "occultism:ritual_dummy/summon_djinni_manage_machine"
type: "item"
advancement: "occultism:occultism/summon_djinni_manage_machine"
criterion: ""
id: "4FDCE30BF1570E18"
type: "advancement"
}]
title: "Summon Djinni Machine Operator"
x: 9.0d
Expand Down
7 changes: 4 additions & 3 deletions config/ftbquests/quests/chapters/occultism_expert.snbt
Original file line number Diff line number Diff line change
Expand Up @@ -938,9 +938,10 @@
}]
subtitle: "I Better Be Gettin' Overtime For This..."
tasks: [{
id: "0B788095ADC13FC0"
item: "occultism:ritual_dummy/summon_djinni_manage_machine"
type: "item"
advancement: "occultism:occultism/summon_djinni_manage_machine"
criterion: ""
id: "037CEDAB050E3E9E"
type: "advancement"
}]
title: "Summon Djinni Machine Operator"
x: 9.5d
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions kubejs/assets/railways/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"block.railways.track_switch_brass": "Enchanted Track Switch",
"block.railways.track_switch_andesite": "Compressed Stone Track Switch"
"block.railways.track_switch_brass": "Brass Track Switch",
"block.railways.track_switch_andesite": "Andesite Track Switch"
}
10 changes: 10 additions & 0 deletions kubejs/server_scripts/base/recipes/minecraft/stonecutting.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ ServerEvents.recipes((event) => {
output: 'quark:limestone',
input: 'create:limestone',
id: `${id_prefix}create_to_quark_limestone`
},
{
output: 'emendatusenigmatica:source_block',
input: 'ars_nouveau:source_gem_block',
id: `${id_prefix}ars_nouveau_to_emendatusenigmatica_source_gem_block`
},
{
output: 'ars_nouveau:source_gem_block',
input: 'emendatusenigmatica:source_block',
id: `${id_prefix}emendatusenigmatica_to_ars_nouveau_source_gem_block`
}
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ ServerEvents.tags('enchantment', (event) => {
return;
}

// event.get('the_bumblezone:crystalline_flower/disallowed_enchantments').add(['minecraft:respiration']);
event
.get('the_bumblezone:crystalline_flower/disallowed_enchantments')
.add(['minecraft:respiration', 'minecraft:mending']);
});
22 changes: 22 additions & 0 deletions kubejs/server_scripts/normal/recipes/superiorshields/shaped.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
ServerEvents.recipes((event) => {
if (global.isNormalMode == false) {
return;
}
const id_prefix = 'enigmatica:normal/superiorshields/shaped/';

const recipes = [
{
output: 'superiorshields:enchanter_shield',
pattern: [' A ', 'ABA', ' A '],
key: {
A: '#forge:ingots/gold',
B: '#forge:gems/source'
},
id: 'superiorshields:enchanter_shield'
}
];

recipes.forEach((recipe) => {
event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id);
});
});

0 comments on commit 833a7a3

Please sign in to comment.