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
2 changes: 2 additions & 0 deletions game/raids/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Aberrus from 'game/raids/aberrus';
import Amirdrassil from 'game/raids/amirdrassil';
import ManaforgeOmega from 'game/raids/manaforge';
import LiberationOfUndermine from 'game/raids/undermine';
import VaultOfTheIncarnates from 'game/raids/vaultoftheincarnates';
import { StaticImageData } from 'next/image';
Expand All @@ -22,6 +23,7 @@ export interface Zone {
}

export const Raids = [
ManaforgeOmega, // tier 34
LiberationOfUndermine, // tier 33
NerubarPalace, // tier 32
VaultOfTheIncarnates, // tier 29
Expand Down
59 changes: 59 additions & 0 deletions game/raids/manaforge.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import Boss3129Jpg from 'images/raids/manaforgeomega/3129-icon.jpg';
import Boss3131Jpg from 'images/raids/manaforgeomega/3131-icon.jpg';
import Boss3130Jpg from 'images/raids/manaforgeomega/3130-icon.jpg';
import Boss3132Jpg from 'images/raids/manaforgeomega/3132-icon.jpg';
import Boss3122Jpg from 'images/raids/manaforgeomega/3122-icon.jpg';
import Boss3133Jpg from 'images/raids/manaforgeomega/3133-icon.jpg';
import Boss3134Jpg from 'images/raids/manaforgeomega/3134-icon.jpg';
import Boss3135Jpg from 'images/raids/manaforgeomega/3135-icon.jpg';
import Zone43Png from 'images/raids/manaforgeomega/zone-43.png';
import { Zone } from '.';

export default {
name: 'Manaforge Omega',
id: 43,
icon: Zone43Png,
partition: 0,
encounters: [
{
name: 'Plexus Sentinel',
id: 3129,
icon: Boss3129Jpg,
},
{
name: 'Loom\'ithar',
id: 3131,
icon: Boss3131Jpg,
},
{
name: 'Soulbinder Naazindhri',
id: 3130,
icon: Boss3130Jpg,
},
{
name: 'Forgeweaver Araz',
id: 3132,
icon: Boss3132Jpg,
},
{
name: 'The Soul Hunters',
id: 3122,
icon: Boss3122Jpg,
},
{
name: 'Fractilus',
id: 3133,
icon: Boss3133Jpg,
},
{
name: 'Nexus-King Salhadaar',
id: 3134,
icon: Boss3134Jpg,
},
{
name: 'Dimensius, the All-Devouring',
id: 3135,
icon: Boss3135Jpg,
},
],
} satisfies Zone;
Binary file added images/raids/manaforgeomega/3122-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/3129-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/3130-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/3131-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/3132-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/3133-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/3134-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/3135-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/raids/manaforgeomega/zone-43.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.