Skip to content

Commit

Permalink
3.0.19.8 ->Update Variant
Browse files Browse the repository at this point in the history
  • Loading branch information
xhabit committed Mar 18, 2024
1 parent d41a4b8 commit 042c0bb
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
32 changes: 27 additions & 5 deletions XIVSlothComboX/Combos/PvE/Content/Variant.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,36 @@
namespace XIVSlothComboX.Combos.PvE.Content
using XIVSlothComboX.Services;

namespace XIVSlothComboX.Combos.PvE.Content
{
internal static class Variant
{
public const uint
VariantCure = 29729,
VariantUltimatum = 29730,
VariantRaise = 29731,
VariantSpiritDart = 29732,
VariantRampart = 29733,
VariantRaise2 = 297334;
VariantRaise2 = 29734;
//1069 = The Sil'dihn Subterrane
//1137 = Mount Rokkon
//1176 = Aloalo Island
public static uint VariantCure => Service.ClientState.TerritoryType switch
{
1069 => 29729,
1137 or 1176 => 33862,
_ => 0
};

public static uint VariantSpiritDart => Service.ClientState.TerritoryType switch
{
1069 => 29732,
1137 or 1176 => 33863,
_ => 0
};

public static uint VariantRampart => Service.ClientState.TerritoryType switch
{
1069 => 29733,
1137 or 1176 => 33864,
_ => 0
};

public static class Buffs
{
Expand Down
2 changes: 1 addition & 1 deletion XIVSlothComboX/XIVSlothComboX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<Authors>Aki, k-kz, ele-starshade, damolitionn, Taurenkey, Augporto, grimgal, Genesis-Nova, Tartarga</Authors>
<Company>-</Company>
<Version>3.0.19.7</Version>
<Version>3.0.19.8</Version>
<!-- This is the version that will be used when pushing to the repo.-->
<Description>XIVCombo for lazy players</Description>
<Copyright>Copyleft attick 2021 thanks attick UwU</Copyright>
Expand Down
Binary file modified release/XIVSlothComboX/latest.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions release/pluginmaster.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"Punchline": "Condenses combos and mutually exclusive abilities onto a single button - and then some.",
"Description": "Condenses combos and mutually exclusive abilities onto a single button - and then some.",
"InternalName": "XIVSlothComboX",
"AssemblyVersion": "3.0.19.7",
"Changelog": "Update DNC 无脑模式_伶俐防止溢出",
"AssemblyVersion": "3.0.19.8",
"Changelog": "Update Variant",
"RepoUrl": "https://github.com/44451516/XIVSlothCombo/",
"ApplicableVersion": "any",
"DalamudApiLevel": 9,
Expand Down

0 comments on commit 042c0bb

Please sign in to comment.