Skip to content

Commit

Permalink
Nevermind
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Jun 29, 2024
1 parent c4ef1fa commit 4375653
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 69 deletions.
38 changes: 0 additions & 38 deletions src/tasks/earlyleveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,44 +268,6 @@ export const earlyLevelingQuest: Quest = {
},
limit: { tries: 2 },
},
{
name: "Cooler Kramco",
after: ["ReConfigure Trainset"],
prepare: (): void => {
restoreHp(clamp(1000, myMaxhp() / 2, myMaxhp()));
restoreMp(50);
},
ready: () => getKramcoWandererChance() >= 1.0 && have($familiar`Patriotic Eagle`),
completed: () => getKramcoWandererChance() < 1.0 || !have($item`Kramco Sausage-o-Matic™`),
do: $location`Madness Bakery`,
outfit: () => ({
...baseOutfit(),
offhand: $item`Kramco Sausage-o-Matic™`,
familiar: $familiar`Patriotic Eagle`,
}),
combat: new CombatStrategy().macro(
Macro.trySkill($skill`%fn, let's pledge allegiance to a Zone`).trySkill(
$skill`%fn, fire a Red, White and Blue Blast`
).default
),
},
{
name: "Cooler Kramco Part 2",
after: ["Cooler Kramco"],
prepare: (): void => {
restoreHp(clamp(1000, myMaxhp() / 2, myMaxhp()));
restoreMp(50);
},
ready: () => get("rwbMonster") === $monster`Sausage Goblin`,
completed: () => get("rwbMonsterCount") === 0,
do: $location`Madness Bakery`,
outfit: () => ({
...baseOutfit(),
familiar: have($familiar`Melodramedary`) ? $familiar`Melodramedary` : undefined,
}),
combat: new CombatStrategy().macro(Macro.default),
limit: { tries: 2 },
},
{
name: "Kramco",
after: ["ReConfigure Trainset"],
Expand Down
32 changes: 1 addition & 31 deletions src/tasks/leveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1391,10 +1391,6 @@ export const LevelingQuest: Quest = {
...baseOutfit(),
offhand: $item`Kramco Sausage-o-Matic™`,
shirt: garbageShirt() ? $item`makeshift garbage shirt` : undefined,
familiar:
have($familiar`Patriotic Eagle`) && !have($effect`Seeing Red, White and Blue`)
? $familiar`Patriotic Eagle`
: undefined,
}),
combat: new CombatStrategy().macro(() =>
Macro.externalIf(
Expand All @@ -1404,40 +1400,14 @@ export const LevelingQuest: Quest = {
(haveFreeBanish() ||
Array.from(getBanishedMonsters().values()).includes($monster`fluffy bunny`)),
Macro.trySkill($skill`Recall Facts: Monster Habitats`)
)
.trySkill($skill`%fn, fire a Red, White and Blue Blast`)
.default(useCinch())
).default(useCinch())
),
post: (): void => {
sendAutumnaton();
sellMiscellaneousItems();
boomBoxProfit();
},
},
{
name: "RWB Kramco",
prepare: (): void => {
restoreHp(clamp(1000, myMaxhp() / 2, myMaxhp()));
unbreakableUmbrella();
garbageShirt();
[...usefulEffects, ...statEffects].forEach((ef) => tryAcquiringEffect(ef));
restoreMp(50);
},
ready: () => get("rwbMonster") === $monster`Sausage Goblin`,
completed: () => get("rwbMonsterCount") === 0,
do: $location`Noob Cave`,
outfit: () => ({
...baseOutfit(),
shirt: garbageShirt() ? $item`makeshift garbage shirt` : undefined,
}),
combat: new CombatStrategy().macro(() => Macro.default(useCinch())),
post: (): void => {
sendAutumnaton();
sellMiscellaneousItems();
boomBoxProfit();
},
limit: { tries: 2 },
},
{
name: "Oliver's Place (Map)",
prepare: (): void => {
Expand Down

0 comments on commit 4375653

Please sign in to comment.