Skip to content

Commit

Permalink
Wildy Slayer Cave Table Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum committed Feb 19, 2024
1 parent 12c584f commit 8326e41
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 14 deletions.
6 changes: 4 additions & 2 deletions src/lib/minions/data/killableMonsters/chaeldarMonsters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ export const chaeldarMonsters: KillableMonster[] = [
canBarrage: false,
pkActivityRating: 7,
pkBaseDeathChance: 9,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.CaveHorror.id,
Expand Down Expand Up @@ -236,7 +237,8 @@ export const chaeldarMonsters: KillableMonster[] = [
canBarrage: false,
pkActivityRating: 7,
pkBaseDeathChance: 9,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.IronDragon.id,
Expand Down
3 changes: 2 additions & 1 deletion src/lib/minions/data/killableMonsters/nieveMonsters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export const nieveMonsters: KillableMonster[] = [
canBarrage: false,
pkActivityRating: 2,
pkBaseDeathChance: 7,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.BrutalBlackDragon.id,
Expand Down
32 changes: 21 additions & 11 deletions src/lib/minions/data/killableMonsters/vannakaMonsters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ export const vannakaMonsters: KillableMonster[] = [
canBarrage: true,
pkActivityRating: 7,
pkBaseDeathChance: 10,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.AbyssalSire.id,
Expand Down Expand Up @@ -124,7 +125,8 @@ export const vannakaMonsters: KillableMonster[] = [
],
pkActivityRating: 4,
pkBaseDeathChance: 3,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.BabyBlueDragon.id,
Expand Down Expand Up @@ -447,7 +449,8 @@ export const vannakaMonsters: KillableMonster[] = [
attackStylesUsed: [GearStat.AttackCrush],
pkActivityRating: 6,
pkBaseDeathChance: 8,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.ElfArcher.id,
Expand Down Expand Up @@ -618,7 +621,8 @@ export const vannakaMonsters: KillableMonster[] = [
canCannon: true,
pkActivityRating: 8,
pkBaseDeathChance: 9,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.GreenDragon.id,
Expand All @@ -636,7 +640,8 @@ export const vannakaMonsters: KillableMonster[] = [
attackStyleToUse: GearStat.AttackSlash,
attackStylesUsed: [GearStat.AttackSlash],
canCannon: true,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.HarpieBugSwarm.id,
Expand Down Expand Up @@ -684,7 +689,8 @@ export const vannakaMonsters: KillableMonster[] = [
canBarrage: false,
pkActivityRating: 5,
pkBaseDeathChance: 8,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.IceGiant.id,
Expand All @@ -701,11 +707,12 @@ export const vannakaMonsters: KillableMonster[] = [
attackStyleToUse: GearStat.AttackSlash,
attackStylesUsed: [GearStat.AttackSlash],
canCannon: true,
cannonMulti: false,
cannonMulti: true,
canBarrage: false,
pkActivityRating: 2,
pkBaseDeathChance: 6,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.IceTroll.id,
Expand Down Expand Up @@ -800,7 +807,8 @@ export const vannakaMonsters: KillableMonster[] = [
attackStylesUsed: [GearStat.AttackMagic],
pkActivityRating: 6,
pkBaseDeathChance: 8,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.JungleHorror.id,
Expand Down Expand Up @@ -871,7 +879,8 @@ export const vannakaMonsters: KillableMonster[] = [
canBarrage: false,
pkActivityRating: 7,
pkBaseDeathChance: 9,
revsWeaponBoost: true
revsWeaponBoost: true,
wildySlayerCave: true
},
{
id: Monsters.Molanisk.id,
Expand Down Expand Up @@ -908,7 +917,8 @@ export const vannakaMonsters: KillableMonster[] = [
attackStylesUsed: [GearStat.AttackSlash],
canCannon: true,
pkActivityRating: 4,
pkBaseDeathChance: 3
pkBaseDeathChance: 3,
revsWeaponBoost: true
},
{
id: Monsters.Bryophyta.id,
Expand Down
1 change: 1 addition & 0 deletions src/lib/minions/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ export interface KillableMonster {
requiredQuests?: QuestID[];
deathProps?: Omit<Parameters<typeof calculateSimpleMonsterDeathChance>['0'], 'currentKC'>;
diaryRequirement?: [Diary, DiaryTier];
wildySlayerCave?: boolean

Check failure on line 137 in src/lib/minions/types.ts

View workflow job for this annotation

GitHub Actions / ESLint

Insert `;`
}
/*
* Monsters will have an array of Consumables
Expand Down
5 changes: 5 additions & 0 deletions src/tasks/minions/monsterActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,11 @@ export const monsterTask: MinionTask = {
if (isInWilderness) loot.add("Larran's key", newSuperiorCount);
}

if (isInWilderness && monster.wildySlayerCave) {
//Add loot table once merged

Check failure on line 253 in src/tasks/minions/monsterActivity.ts

View workflow job for this annotation

GitHub Actions / ESLint

Expected space or tab after '//' in comment
// loot.add(wildySlayerCaveTable!.kill(finalQuantity))
}

const xpRes: string[] = [];
xpRes.push(
await addMonsterXP(user, {
Expand Down

0 comments on commit 8326e41

Please sign in to comment.