Set items and Poison Gems

Play Now

Jicaa

Pooslice
Golden Oldie
Jul 9, 2003
2,386
36
184
So let's start with the set items.

The 2 sets I've seen so far is the purity set and smash set. Both of these sets have a 2 set bonus and 4 set bonus, the 4 set cannot be obtained as it's a 3 set bonus. These need changing to 3 set.

The smash sets 4 set is also wrong, it's listed as 4 aspeed, that would give the set a whopping 6 aspeed o.O

The purity set is 2-2 SC for both bonuses, it needs something extra... I'm not sure what tho, some HP? Maybe PA+2 or something if PA becomes effective for Taoists poison.

This brings me onto poison gems (PA). Currently I am guessing they don't effect a Taoists poison(or even a sin/archers poison). I suggest making each PA give the poison 1 extra damage, this would give the Taoist something else to aim for other than just SC (And other classes of course).
 

IceMan

Hero's Act Mir 2
Legendary
Apr 17, 2003
8,544
2
375
330
This is stand files. Dunno if they changed it here.

I notice when using this you can end up with a speed +4. But you should only get a speed 2 from two items and the full bonus from all 3.
Here gives the a speed 2 for the 2 items needed.

Code:
                if ((s.Set == ItemSet.Smash) && (s.Type.Contains(ItemType.Ring)) && (s.Type.Contains(ItemType.Bracelet)))
                    ASpeed = (sbyte)Math.Min(sbyte.MaxValue, ASpeed + 2);


Then here for the full you should get the rest of the bonus but it also adds more a speed.

Code:
                    case ItemSet.Smash:
                        MinDC = (ushort)Math.Min(ushort.MaxValue, MinDC + 1);
                        MaxDC = (ushort)Math.Min(ushort.MaxValue, MaxDC + 3);
                        ASpeed = (sbyte)Math.Min(sbyte.MaxValue, ASpeed + 2);
                        break;
 

Koriban

Addict
Legendary
Loyal Member
Aug 18, 2006
5,842
215
260
Brighton
Not to mention FiveString set, Hwan set, or any of the crafted sets doesn't have the notes on them so no idea if they actually give a set bonus.