Skip to content

Commit

Permalink
Merge pull request EnigmaticaModpacks#972 from MuteTiefling/all-the-f…
Browse files Browse the repository at this point in the history
…ixins

All the fixins
  • Loading branch information
MuteTiefling authored May 11, 2024
2 parents 1bf5ddc + 85cdf81 commit 6498d97
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 37 deletions.
3 changes: 3 additions & 0 deletions changelogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- [Expert] Several Iron using recipes have been tweaked to adjust their gating [\#961](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/961)
- [Expert] Add a recipe for the new chunkloader upgrade for PNC drones [\#966](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/966)
- [Expert] Processing Metal Shards now has an extra step involving the creation and use of Lacunar Acid [\#968](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/968)
- Add Aloe to the Market [\#972](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/972)

### 🐛 Fixed Bugs

Expand All @@ -27,6 +28,8 @@
- Crafting tables may now be converted to variants with the stonecutter. Variant shaped crafting recipes are removed. [\#966](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/966)
- Remove conflicting furnace recipe. Furnaces are now only crafted with cobblestone [\#966](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/966)
- Remove conflicting chest recipe. Vanilla chest may be crafted by converting any other chest. [\#966](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/966)
- [Normal] Correct Thermal's quests regarding Fluxducts [\#972](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/972)
- Fixed missing Apotheosis bosses [\#972](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/972)

### Enigmatica 9 v1.21.0

Expand Down
10 changes: 3 additions & 7 deletions config/ftbquests/quests/chapters/thermal_series.snbt
Original file line number Diff line number Diff line change
Expand Up @@ -649,11 +649,7 @@
}
{
dependencies: ["4630066EE7196046"]
description: [
"Expandable, upgradable, portable. Perfect for a quick charge just about anywhere."
""
"Thermal Series offers no form of power cable currently. While piping Flux Capacitors or Flux Cells around certainly works, consider using some Universal Cables from Mekanism instead. "
]
description: ["Expandable, upgradable, portable. Perfect for a quick charge just about anywhere."]
hide_dependency_lines: true
id: "0000000000000F85"
rewards: [
Expand All @@ -673,9 +669,9 @@
type: "item"
}
{
count: 8
count: 16
id: "7A2EEDADE9E418F2"
item: "mekanism:basic_universal_cable"
item: "thermal:energy_duct"
type: "item"
}
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
{ "output": "byg:blueberries" },
{ "output": "byg:crimson_berries" },
{ "output": "byg:nightshade_berries" },
{ "output": "byg:aloe_vera" },
{ "output": "farmersdelight:cabbage_seeds" },
{ "output": "farmersdelight:onion" },
{ "output": "minecraft:sweet_berries" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, steps: 3, step: 1 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, steps: 7, step: 1 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, steps: 7, step: 1 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ ServerEvents.highPriorityData((event) => {
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'minecraft:fire_resistance', chance: 1 },
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, steps: 3, step: 1 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, steps: 7, step: 1 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, steps: 7, step: 1 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ ServerEvents.highPriorityData((event) => {
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'minecraft:fire_resistance', chance: 1 },
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ ServerEvents.highPriorityData((event) => {
enchant_chance: 1,
enchantment_levels: [36, 30, 100, 85],
effects: [
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, max: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, max: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, max: 7 }, chance: 1 }
{ effect: 'ars_nouveau:shielding', amplifier: { min: 2, step: 1, steps: 3 }, chance: 1 },
{ effect: 'ars_nouveau:spell_damage', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 },
{ effect: 'ars_nouveau:mana_regen', amplifier: { min: 2, step: 1, steps: 7 }, chance: 1 }
],
attribute_modifiers: [
{
Expand Down

0 comments on commit 6498d97

Please sign in to comment.