Skip to content

Commit

Permalink
Theamine Tasks and Gold
Browse files Browse the repository at this point in the history
  • Loading branch information
fayaine committed Apr 3, 2024
1 parent f7eb226 commit 34aaa80
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 4 deletions.
8 changes: 8 additions & 0 deletions apps/client/src/app/core/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,14 @@ export const tasks = [
shared: true,
partySize: 4
}),
createTask(`Theamine`, 1610, TaskFrequency.WEEKLY, TaskScope.CHARACTER, 3, 9999, "legion_raid.png", {
shared: true,
partySize: 8
}),
createTask(`Theamine G4`, 1630, TaskFrequency.BIWEEKLY_OFFSET, TaskScope.CHARACTER, 1, 9999, "legion_raid.png", {
shared: true,
partySize: 8
}),

// Weekly Roster
createTask(`South Vern Chaos Line Dungeon`, 1340, TaskFrequency.WEEKLY, TaskScope.ROSTER, 2, 9999, "dungeon.webp"),
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/app/model/lostark-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { TaskFrequency } from "./task-frequency";
import { TaskScope } from "./task-scope";
import { DataModel } from "../core/database/data-model";

export const TASKS_VERSION = 46;
export const TASKS_VERSION = 47;

export interface LostarkTask extends DataModel {
authorId?: string;
Expand Down
66 changes: 66 additions & 0 deletions apps/client/src/app/pages/gold-planner/gold-tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,72 @@ export const goldTasks: GoldTask[] = [
completionId: "T3.L11.4",
chestId: "IvoryTowerH4",
overrideMinIlvl: 1620
},
{
name: "Theamine Normal Gate 1",
goldReward: 3500,
taskName: "Theamine",
chestPrice: 1500,
completionId: "T3.L12.1",
chestId: "TheamineN1",
overrideMinIlvl: 1610,
overrideMaxIlvl: 1630
},
{
name: "Theamine Normal Gate 2",
goldReward: 4000,
taskName: "Theamine",
chestPrice: 1800,
completionId: "T3.L12.2",
chestId: "TheamineN2",
overrideMinIlvl: 1610,
overrideMaxIlvl: 1630
},
{
name: "Theamine Normal Gate 3",
goldReward: 5500,
taskName: "Theamine",
chestPrice: 2500,
completionId: "T3.L12.3",
chestId: "TheamineN3",
overrideMinIlvl: 1610,
overrideMaxIlvl: 1630
},
{
name: "Theamine Hard Gate 1",
goldReward: 5000,
taskName: "Theamine",
chestPrice: 2000,
completionId: "T3.L13.1",
chestId: "TheamineH1",
overrideMinIlvl: 1630
},
{
name: "Theamine Hard Gate 2",
goldReward: 6000,
taskName: "Theamine",
chestPrice: 2400,
completionId: "T3.L13.2",
chestId: "TheamineH2",
overrideMinIlvl: 1630
},
{
name: "Theamine Hard Gate 3",
goldReward: 9000,
taskName: "Theamine",
chestPrice: 2800,
completionId: "T3.L13.3",
chestId: "TheamineH3",
overrideMinIlvl: 1630
},
{
name: "Theamine Hard Gate 4",
goldReward: 21000,
taskName: "Theamine G4",
chestPrice: 3600,
completionId: "T3.L13.4",
chestId: "TheamineH4",
overrideMinIlvl: 1630
}

];
11 changes: 8 additions & 3 deletions apps/client/src/app/pages/party-planner/subtasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ export const subtasks: Subtask[] = [
{ id: `akkan-normal`, name: `Akkan Normal`, parentName: "Akkan", minIlvl: 1580 },
{ id: `akkan-hard`, name: `Akkan Hard`, parentName: "Akkan", minIlvl: 1600 },

//Ivory Tower Difficulties
{ id: `ivory-tower-normal`, name: `Ivory Tower Normal`, parentName: "Ivory Tower", minIlvl: 1600 },
{ id: `ivory-tower-hard`, name: `Ivory Tower Hard`, parentName: "Ivory Tower", minIlvl: 1620 },
//Ivory Tower Difficulties
{ id: `ivory-tower-normal`, name: `Ivory Tower Normal`, parentName: "Ivory Tower", minIlvl: 1600 },
{ id: `ivory-tower-hard`, name: `Ivory Tower Hard`, parentName: "Ivory Tower", minIlvl: 1620 },

//Theamine Difficulties
{ id: `theamine-normal`, name: `Theamine Normal`, parentName: "Theamine", minIlvl: 1610 },
{ id: `theamine-hard`, name: `Theamine Hard`, parentName: "Theamine G4", minIlvl: 1630 },

];

0 comments on commit 34aaa80

Please sign in to comment.