Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: add grade 7 tinctures.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Mar 1, 2023
1 parent af5cce2 commit 8b96ff0
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ private static readonly IBaseItem
TinctureofStrength6 = new BaseItem(36109, 196625),
TinctureofDexterity6 = new BaseItem(36110, 65535),
TinctureofMind6 = new BaseItem(36113, 65535),
TinctureofIntelligence6 = new BaseItem(36112, 65535);
TinctureofIntelligence6 = new BaseItem(36112, 65535),

TinctureofStrength7 = new BaseItem(37840, 196625),
TinctureofDexterity7 = new BaseItem(37841, 65535),
TinctureofMind7 = new BaseItem(37843, 65535),
TinctureofIntelligence7 = new BaseItem(37844, 65535);

protected bool UseTincture(out IAction act)
{
Expand All @@ -23,18 +28,22 @@ protected bool UseTincture(out IAction act)
{
case JobRole.Tank:
case JobRole.Melee:
if (TinctureofStrength7.CanUse(out act)) return true;
if (TinctureofStrength6.CanUse(out act)) return true;
break;

case JobRole.RangedPhysical:
if (TinctureofDexterity7.CanUse(out act)) return true;
if (TinctureofDexterity6.CanUse(out act)) return true;
break;

case JobRole.RangedMagicial:
if (TinctureofIntelligence7.CanUse(out act)) return true;
if (TinctureofIntelligence6.CanUse(out act)) return true;
break;

case JobRole.Healer:
if (TinctureofMind7.CanUse(out act)) return true;
if (TinctureofMind6.CanUse(out act)) return true;
break;
}
Expand Down

0 comments on commit 8b96ff0

Please sign in to comment.