You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/constants/pet-stats.js
+24-24Lines changed: 24 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -457,6 +457,9 @@ class Rabbit extends Pet {
457
457
if(this.rarity>=LEGENDARY){
458
458
list.push(this.third);
459
459
}
460
+
if(this.rarity>=MYTHIC){
461
+
list.push(this.fourth);
462
+
}
460
463
returnlist;
461
464
}
462
465
@@ -483,6 +486,15 @@ class Rabbit extends Pet {
483
486
desc: [`§7Farming minions work §a${round(this.level*mult,1)}% §7faster while on your island.`],
484
487
};
485
488
}
489
+
490
+
getfourth(){
491
+
return{
492
+
name: "§6Chocolate Injections",
493
+
desc: [
494
+
`§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.`,
495
+
],
496
+
};
497
+
}
486
498
}
487
499
488
500
classArmadilloextendsPet{
@@ -493,56 +505,44 @@ class Armadillo extends Pet {
493
505
}
494
506
495
507
getabilities(){
496
-
constlist=[this.first,this.second,this.third];
508
+
constlist=[this.first,this.second];
497
509
if(this.rarity>=RARE){
498
-
list.push(this.fourth);
510
+
list.push(this.third);
499
511
}
500
512
if(this.rarity>=LEGENDARY){
501
-
list.push(this.fifth);
513
+
list.push(this.fourth);
502
514
}
503
515
returnlist;
504
516
}
505
517
506
518
getfirst(){
507
519
return{
508
520
name: "§6Rideable",
509
-
desc: [`§7Right-click on your summoned pet to ride it!`],
521
+
desc: [`§7Right-click on your summoned pet to ride it! Moves faster based on your §f${SYMBOLS.speed} Speed§7.`],
510
522
};
511
523
}
512
524
513
525
getsecond(){
514
526
return{
515
527
name: "§6Tunneler",
516
-
desc: [
517
-
`§7The Armadillo breaks all stone or ore in its path while you are riding it in the §3Crystal Hollows §7using your held item.`,
518
-
],
528
+
desc: [`§7While riding in the §5Crystal Hollows§7, this Pet breaks all blocks in its path using your held item.`],
519
529
};
520
530
}
521
531
522
532
getthird(){
523
-
return{
524
-
name: "§6Earth Surfer",
525
-
desc: [`§7The Armadillo moves faster based on your §f${SYMBOLS.speed} Speed§7.`],
0 commit comments