Skip to content

Commit

Permalink
feat: add fourth ability for Mythic Rabbit
Browse files Browse the repository at this point in the history
  • Loading branch information
gylfirst committed Dec 7, 2024
1 parent 6a3f18e commit 861dc20
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/constants/pet-stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,9 @@ class Rabbit extends Pet {
if (this.rarity >= LEGENDARY) {
list.push(this.third);
}
if (this.rarity >= MYTHIC) {
list.push(this.fourth);
}
return list;
}

Expand All @@ -483,6 +486,15 @@ class Rabbit extends Pet {
desc: [`§7Farming minions work §a${round(this.level * mult, 1)}% §7faster while on your island.`],
};
}

get fourth() {
return {
name: "§6Chocolate Injections",
desc: [
`§7Increases §6Chocolate Factory§7 production by §a+${round(0.01 + (this.level - 1) * 0.0004, 3)}x§7. Duplicate §aChocolate Rabbits§7 that you find grant §6${round(1.3 + (this.level - 1) * 0.32, 1)}% Chocolate§7.`,
],
};
}
}

class Armadillo extends Pet {
Expand Down

0 comments on commit 861dc20

Please sign in to comment.