Skip to content

Commit

Permalink
Asdon fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Sep 9, 2024
1 parent ffc48e7 commit 246011a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
21 changes: 12 additions & 9 deletions src/tasks/leveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ import {
computeWeaponDamage,
findMaxPull,
forbiddenEffects,
fuelUp,
generalStoreXpEffect,
getSynthExpBuff,
getValidComplexCandyPairs,
Expand Down Expand Up @@ -396,15 +397,6 @@ export const LevelingQuest: Quest = {
},
limit: { tries: 3 },
},
{
name: "Driving Recklessly",
ready: () => args.asdon,
completed: () => have($effect`Driving Recklessly`),
do: (): void => {
drive($effect`Driving Recklessly`);
},
limit: { tries: 3 },
},
{
name: "Wardrobe-o-matic",
// eslint-disable-next-line libram/verify-constants
Expand Down Expand Up @@ -869,6 +861,17 @@ export const LevelingQuest: Quest = {
do: () => use($item`MayDay™ supply package`),
limit: { tries: 1 },
},
{
name: "Driving Recklessly",
after: ["Open Mayday"],
ready: () => args.asdon,
completed: () => have($effect`Driving Recklessly`),
do: (): void => {
fuelUp();
drive($effect`Driving Recklessly`);
},
limit: { tries: 3 },
},
{
name: "Map Amateur Ninja",
prepare: (): void => {
Expand Down
1 change: 0 additions & 1 deletion src/tasks/runstart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,6 @@ export const RunStartQuest: Quest = {
do: (): void => {
if (args.asdon) {
use($item`Asdon Martin keyfob`);
fuelUp();
} else use($item`model train set`);
},
},
Expand Down

0 comments on commit 246011a

Please sign in to comment.