Skip to content

Commit

Permalink
Deploy preview for PR 5080 🛫
Browse files Browse the repository at this point in the history
  • Loading branch information
RedSparr0w committed Feb 8, 2024
1 parent 1fed3f5 commit 75f5bc9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/preview/pr-5080/scripts/script.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -20349,6 +20349,8 @@ class DungeonGuide {
});
// Stop running the dungeon if we still are
clearInterval(this.intervalRunner);
// Hide modals
$('.modal.show').modal('hide');
// Reset our clears
DungeonGuides.clears(1);
DungeonGuides.hired(null);
Expand Down Expand Up @@ -20463,7 +20465,7 @@ DungeonGuides.add(new DungeonGuide('Shelly', 'Prefers to explore the unknown!',
const randomTile = DungeonGuides.getRandomWeightedNearbyTile(nearbyTiles);
DungeonRunner.map.moveToTile(randomTile.position);
}));
DungeonGuides.add(new DungeonGuide('Angeline', 'Can find treasure anywhere, loves to explore new areas!', [[15, Currency.money], [10, Currency.dungeonToken]], [new Amount(1, Currency.diamond)], 1000, () => {
DungeonGuides.add(new DungeonGuide('Angeline', 'Can find treasure anywhere, loves to explore new areas!', [[15, Currency.money], [10, Currency.dungeonToken]], [new Amount(2, Currency.diamond)], 1000, () => {
// Get current position
const pos = DungeonRunner.map.playerPosition();
const nearbyTiles = DungeonRunner.map.nearbyTiles(pos);
Expand Down Expand Up @@ -20495,7 +20497,7 @@ DungeonGuides.add(new DungeonGuide('Angeline', 'Can find treasure anywhere, love
const randomTile = DungeonGuides.getRandomWeightedNearbyTile(nearbyTiles);
DungeonRunner.map.moveToTile(randomTile.position);
}));
DungeonGuides.add(new DungeonGuide('Georgia', 'Knows the path to the boss, avoids random encounters when possible.', [[20, Currency.money], [20, Currency.dungeonToken]], [new Amount(1, Currency.diamond)], 900, () => {
DungeonGuides.add(new DungeonGuide('Georgia', 'Knows the path to the boss, avoids random encounters when possible.', [[20, Currency.money], [20, Currency.dungeonToken]], [new Amount(5, Currency.diamond)], 900, () => {
var _a, _b;
// Get current position
const pos = DungeonRunner.map.playerPosition();
Expand All @@ -20517,7 +20519,7 @@ DungeonGuides.add(new DungeonGuide('Georgia', 'Knows the path to the boss, avoid
const randomTile = DungeonGuides.getRandomWeightedNearbyTile(nearbyTiles);
DungeonRunner.map.moveToTile(randomTile.position);
}));
DungeonGuides.add(new DungeonGuide('Drake', 'Knows the shortest path to the boss!', [[25, Currency.money], [25, Currency.dungeonToken]], [new Amount(2, Currency.diamond)], 800, () => {
DungeonGuides.add(new DungeonGuide('Drake', 'Knows the shortest path to the boss!', [[25, Currency.money], [25, Currency.dungeonToken]], [new Amount(10, Currency.diamond)], 800, () => {
var _a, _b;
// Get current position
const pos = DungeonRunner.map.playerPosition();
Expand Down

0 comments on commit 75f5bc9

Please sign in to comment.