Shells don't change when items go from r8 to r7. How can I change it?

02/06/2022 13:43 NosNight#1
Shells don't change when items go from r8 to r7. How can I change it? I want the shells to change.
02/06/2022 15:18 Fizo55#2
Quote:
Originally Posted by NosNight View Post
Shells don't change when items go from r8 to r7. How can I change it? I want the shells to change.
I don't really get what u want but the GenerateShell method should be what u are looking for
02/06/2022 15:48 NosNight#3
Quote:
Originally Posted by Fizo55 View Post
I don't really get what u want but the GenerateShell method should be what u are looking for
The shells in the sword downgrade from r8 to r7 properties of mussels remain constant and do not change.
02/06/2022 16:12 XV50#4
Quote:
Originally Posted by NosNight View Post
The shells in the sword downgrade from r8 to r7 properties of mussels remain constant and do not change.
It's because in the downgrade, there is no method that says that u generate a new shell. Just Generate it again when u downgrade or remove the handler, which stops the Downgrade from generating a shell

For me, it's:

Code:
 if (!isHeroEquipmentDowngrade)
                {
                    GenerateHeroicShell(protection);
                }
Do not just delete it. Still Generate a Shell, but remove the if statement

and set

Code:
 case RarifyMode.HeroEquipmentDowngrade:
                        {
                            rarify(7, true); // <- Set to false
                            return;
                        }