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
desc: [`§7Farming minions work §a${round(this.level*mult,1)}% §7faster while on your island.`]
502
509
};
503
510
}
511
+
512
+
getfourth(){
513
+
return{
514
+
name: "§6Chocolate Injections",
515
+
desc: [
516
+
`§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.`
517
+
]
518
+
};
519
+
}
504
520
}
505
521
506
522
classArmadilloextendsPet{
@@ -511,56 +527,44 @@ class Armadillo extends Pet {
511
527
}
512
528
513
529
getabilities(){
514
-
constlist=[this.first,this.second,this.third];
530
+
constlist=[this.first,this.second];
515
531
if(this.rarity>=RARE){
516
-
list.push(this.fourth);
532
+
list.push(this.third);
517
533
}
518
534
if(this.rarity>=LEGENDARY){
519
-
list.push(this.fifth);
535
+
list.push(this.fourth);
520
536
}
521
537
returnlist;
522
538
}
523
539
524
540
getfirst(){
525
541
return{
526
542
name: "§6Rideable",
527
-
desc: [`§7Right-click on your summoned pet to ride it!`]
543
+
desc: [`§7Right-click on your summoned pet to ride it! Moves faster based on your §f${SYMBOLS.speed} Speed§7.`]
528
544
};
529
545
}
530
546
531
547
getsecond(){
532
548
return{
533
549
name: "§6Tunneler",
534
-
desc: [
535
-
`§7The Armadillo breaks all stone or ore in its path while you are riding it in the §3Crystal Hollows §7using your held item.`
536
-
]
550
+
desc: [`§7While riding in the §5Crystal Hollows§7, this Pet breaks all blocks in its path using your held item.`]
537
551
};
538
552
}
539
553
540
554
getthird(){
541
-
return{
542
-
name: "§6Earth Surfer",
543
-
desc: [`§7The Armadillo moves faster based on your §f${SYMBOLS.speed} Speed§7.`]
`§7Each time you catch a Sea Creature, reduce your §b${SYMBOLS.cold_resistence} Cold §7by §a${round(1+floor(this.level/val),1)}§7.`
3895
+
`§7Each time you catch a Sea Creature, reduce your §b${SYMBOLS.cold_resistance} Cold §7by §a${round(1+floor(this.level/val),1)}§7.`
3893
3896
]
3894
3897
};
3895
3898
}
@@ -3919,7 +3922,7 @@ class Mammoth extends Pet {
3919
3922
getstats(){
3920
3923
return{
3921
3924
defense: 0.5*this.level,
3922
-
cold_resistence: 0.1*this.level
3925
+
cold_resistance: 0.1*this.level
3923
3926
};
3924
3927
}
3925
3928
@@ -3935,7 +3938,7 @@ class Mammoth extends Pet {
3935
3938
return{
3936
3939
name: "§6Wooly Coat",
3937
3940
desc: [
3938
-
`§7Gain a §a${round(this.level*mult,1)}% §7chance for mobs to not inflict §b${SYMBOLS.cold_resistence} Cold §7when damaging you in the §bGlacite Mineshafts§7.`
3941
+
`§7Gain a §a${round(this.level*mult,1)}% §7chance for mobs to not inflict §b${SYMBOLS.cold_resistance} Cold §7when damaging you in the §bGlacite Mineshafts§7.`
3939
3942
]
3940
3943
};
3941
3944
}
@@ -4013,7 +4016,7 @@ class GlaciteGolem extends Pet {
4013
4016
getstats(){
4014
4017
return{
4015
4018
mining_speed: 1.25*this.level,
4016
-
cold_resistence: 0.05*this.level
4019
+
cold_resistance: 0.05*this.level
4017
4020
};
4018
4021
}
4019
4022
@@ -5150,6 +5153,11 @@ const pet_items = {
5150
5153
tier: "UNCOMMON",
5151
5154
description:
5152
5155
"§7Adds particles matching your §c+ §7color to your pet and yourself, defaulting to red. §8Editable in Hypixel lobbies."
5156
+
},
5157
+
PET_ITEM_TITANIUM_MINECART: {
5158
+
name: "Titanium Minecart",
5159
+
tier: "RARE",
5160
+
description: `§7Grants §6+33.3 ${SYMBOLS.mining_fortune} Mining Fortune§7 when mining §fTitanium Ore§7.`
0 commit comments