Remove unnecessary files.
This commit is contained in:
parent
040472811d
commit
c9633646e9
@ -2148,7 +2148,7 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3215,7 +3215,7 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
});
|
});
|
||||||
World.Leave(skeleton);
|
World.Leave(skeleton);
|
||||||
}
|
}
|
||||||
catch{}
|
catch { }
|
||||||
}
|
}
|
||||||
|
|
||||||
NecromancerSkeletons.Clear();
|
NecromancerSkeletons.Clear();
|
||||||
@ -4013,9 +4013,9 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
{
|
{
|
||||||
var baseStrength = 0.0f;
|
var baseStrength = 0.0f;
|
||||||
var multiplier = StrengthMultiplier;
|
var multiplier = StrengthMultiplier;
|
||||||
baseStrength = Toon.HeroTable.CoreAttribute == GameBalance.PrimaryAttribute.Strength
|
baseStrength = Toon.HeroTable.CoreAttribute == GameBalance.PrimaryAttribute.Strength
|
||||||
? Toon.HeroTable.Strength + (Level - 1) * 3
|
? Toon.HeroTable.Strength + (Level - 1) * 3
|
||||||
: Toon.HeroTable.Strength + (Level - 1);
|
: Toon.HeroTable.Strength + (Level - 1);
|
||||||
|
|
||||||
return baseStrength * multiplier;
|
return baseStrength * multiplier;
|
||||||
}
|
}
|
||||||
@ -4098,7 +4098,9 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
HotBarButtons = SkillSet.HotBarSkills,
|
HotBarButtons = SkillSet.HotBarSkills,
|
||||||
HotBarButton = new HotbarButtonData
|
HotBarButton = new HotbarButtonData
|
||||||
{
|
{
|
||||||
SNOSkill = -1, RuneType = -1, ItemGBId =
|
SNOSkill = -1,
|
||||||
|
RuneType = -1,
|
||||||
|
ItemGBId =
|
||||||
StringHashHelper.HashItemName(
|
StringHashHelper.HashItemName(
|
||||||
"HealthPotionBottomless") //2142362846//this.Toon.DBActiveSkills.PotionGBID
|
"HealthPotionBottomless") //2142362846//this.Toon.DBActiveSkills.PotionGBID
|
||||||
,
|
,
|
||||||
@ -4340,8 +4342,14 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
//returns empty data
|
//returns empty data
|
||||||
var emptyHireling = new HirelingInfo
|
var emptyHireling = new HirelingInfo
|
||||||
{
|
{
|
||||||
HirelingIndex = type, GbidName = 0x0000, Dead = false, Skill1SNOId = -1, Skill2SNOId = -1,
|
HirelingIndex = type,
|
||||||
Skill3SNOId = -1, Skill4SNOId = -1, annItems = -1
|
GbidName = 0x0000,
|
||||||
|
Dead = false,
|
||||||
|
Skill1SNOId = -1,
|
||||||
|
Skill2SNOId = -1,
|
||||||
|
Skill3SNOId = -1,
|
||||||
|
Skill4SNOId = -1,
|
||||||
|
annItems = -1
|
||||||
};
|
};
|
||||||
return emptyHireling;
|
return emptyHireling;
|
||||||
}
|
}
|
||||||
@ -4499,18 +4507,18 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
|
|
||||||
if (BlacksmithUnlocked || InGameClient.Game.CurrentAct == 3000)
|
if (BlacksmithUnlocked || InGameClient.Game.CurrentAct == 3000)
|
||||||
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataBlacksmithInitialMessage)
|
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataBlacksmithInitialMessage)
|
||||||
{ Data = blacksmith.ToByteArray() });
|
{ Data = blacksmith.ToByteArray() });
|
||||||
|
|
||||||
if (JewelerUnlocked || InGameClient.Game.CurrentAct == 3000)
|
if (JewelerUnlocked || InGameClient.Game.CurrentAct == 3000)
|
||||||
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataJewelerInitialMessage)
|
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataJewelerInitialMessage)
|
||||||
{ Data = jeweler.ToByteArray() });
|
{ Data = jeweler.ToByteArray() });
|
||||||
|
|
||||||
if (MysticUnlocked || InGameClient.Game.CurrentAct == 3000)
|
if (MysticUnlocked || InGameClient.Game.CurrentAct == 3000)
|
||||||
{
|
{
|
||||||
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataMysticInitialMessage)
|
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataMysticInitialMessage)
|
||||||
{ Data = mystic.ToByteArray() });
|
{ Data = mystic.ToByteArray() });
|
||||||
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataTransmogInitialMessage)
|
InGameClient.SendMessage(new GenericBlobMessage(Opcodes.CraftingDataTransmogInitialMessage)
|
||||||
{ Data = transmog.ToByteArray() });
|
{ Data = transmog.ToByteArray() });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4609,7 +4617,7 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
private readonly Dictionary<ulong, uint> _achievementCounters = new();
|
private readonly Dictionary<ulong, uint> _achievementCounters = new();
|
||||||
|
|
||||||
public int DodgesInARow { get; set; } = 0;
|
public int DodgesInARow { get; set; } = 0;
|
||||||
public int BlocksInARow { get; set; }= 0;
|
public int BlocksInARow { get; set; } = 0;
|
||||||
|
|
||||||
public void GrantAchievement(ulong id)
|
public void GrantAchievement(ulong id)
|
||||||
{
|
{
|
||||||
@ -5114,13 +5122,15 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
if (World.Game.IsHardcore && Attributes[GameAttributes.Level] >= 70)
|
if (World.Game.IsHardcore && Attributes[GameAttributes.Level] >= 70)
|
||||||
addedExp *= 5;
|
addedExp *= 5;
|
||||||
|
|
||||||
if (Attributes[GameAttributes.Alt_Level] >= 515)
|
// To'do verify this formula.
|
||||||
{
|
// Remove this if to remove paragon level cap.
|
||||||
var XPcap = 91.262575239831f * Math.Pow(Attributes[GameAttributes.Alt_Level], 3) -
|
//if (Attributes[GameAttributes.Alt_Level] >= 515)
|
||||||
44301.083380565047f * Math.Pow(Attributes[GameAttributes.Alt_Level], 2) +
|
//{
|
||||||
3829010.395566940308f * Attributes[GameAttributes.Alt_Level] + 322795582.543823242188f;
|
// var XPcap = 91.262575239831f * Math.Pow(Attributes[GameAttributes.Alt_Level], 3) -
|
||||||
addedExp = (int)((float)(ParagonLevelBorders[Attributes[GameAttributes.Alt_Level]] / XPcap) * addedExp);
|
// 44301.083380565047f * Math.Pow(Attributes[GameAttributes.Alt_Level], 2) +
|
||||||
}
|
// 3829010.395566940308f * Attributes[GameAttributes.Alt_Level] + 322795582.543823242188f;
|
||||||
|
// addedExp = (int)((float)(ParagonLevelBorders[Attributes[GameAttributes.Alt_Level]] / XPcap) * addedExp);
|
||||||
|
//}
|
||||||
|
|
||||||
if (Attributes[GameAttributes.Rest_Experience_Lo] > 0)
|
if (Attributes[GameAttributes.Rest_Experience_Lo] > 0)
|
||||||
{
|
{
|
||||||
@ -5585,9 +5595,9 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
});
|
});
|
||||||
|
|
||||||
plr.InGameClient.SendMessage(new DisplayGameTextMessage(Opcodes.DisplayGameChatTextMessage)
|
plr.InGameClient.SendMessage(new DisplayGameTextMessage(Opcodes.DisplayGameChatTextMessage)
|
||||||
{ Message = "Messages:LR_BossSpawned" });
|
{ Message = "Messages:LR_BossSpawned" });
|
||||||
plr.InGameClient.SendMessage(new DisplayGameTextMessage(Opcodes.DisplayGameTextMessage)
|
plr.InGameClient.SendMessage(new DisplayGameTextMessage(Opcodes.DisplayGameTextMessage)
|
||||||
{ Message = "Messages:LR_BossSpawned" });
|
{ Message = "Messages:LR_BossSpawned" });
|
||||||
}
|
}
|
||||||
|
|
||||||
StartConversation(World, 366542);
|
StartConversation(World, 366542);
|
||||||
@ -5687,40 +5697,40 @@ public class Player : Actor, IMessageConsumer, IUpdateable
|
|||||||
case 0:
|
case 0:
|
||||||
return;
|
return;
|
||||||
case > 0:
|
case > 0:
|
||||||
{
|
|
||||||
if (Attributes[GameAttributes.Hitpoints_Cur] < Attributes[GameAttributes.Hitpoints_Max_Total])
|
|
||||||
{
|
{
|
||||||
if (Toon.Class == ToonClass.Barbarian)
|
if (Attributes[GameAttributes.Hitpoints_Cur] < Attributes[GameAttributes.Hitpoints_Max_Total])
|
||||||
if (SkillSet.HasPassive(205217))
|
|
||||||
quantity += 0.01f * Attributes[GameAttributes.Health_Globe_Bonus_Health];
|
|
||||||
|
|
||||||
if (guidingLight) //Monk -> Guiding Light
|
|
||||||
{
|
{
|
||||||
var missingHP =
|
if (Toon.Class == ToonClass.Barbarian)
|
||||||
(Attributes[GameAttributes.Hitpoints_Max_Total] - Attributes[GameAttributes.Hitpoints_Cur]) /
|
if (SkillSet.HasPassive(205217))
|
||||||
Attributes[GameAttributes.Hitpoints_Max_Total];
|
quantity += 0.01f * Attributes[GameAttributes.Health_Globe_Bonus_Health];
|
||||||
if (missingHP > 0.05f)
|
|
||||||
if (!World.BuffManager.HasBuff<GuidingLightBuff>(this))
|
if (guidingLight) //Monk -> Guiding Light
|
||||||
World.BuffManager.AddBuff(this, this,
|
{
|
||||||
new GuidingLightBuff(Math.Min(missingHP, 0.3f),
|
var missingHP =
|
||||||
TickTimer.WaitSeconds(World.Game, 10.0f)));
|
(Attributes[GameAttributes.Hitpoints_Max_Total] - Attributes[GameAttributes.Hitpoints_Cur]) /
|
||||||
|
Attributes[GameAttributes.Hitpoints_Max_Total];
|
||||||
|
if (missingHP > 0.05f)
|
||||||
|
if (!World.BuffManager.HasBuff<GuidingLightBuff>(this))
|
||||||
|
World.BuffManager.AddBuff(this, this,
|
||||||
|
new GuidingLightBuff(Math.Min(missingHP, 0.3f),
|
||||||
|
TickTimer.WaitSeconds(World.Game, 10.0f)));
|
||||||
|
}
|
||||||
|
|
||||||
|
Attributes[GameAttributes.Hitpoints_Cur] = Math.Min(
|
||||||
|
Attributes[GameAttributes.Hitpoints_Cur] + quantity,
|
||||||
|
Attributes[GameAttributes.Hitpoints_Max_Total]);
|
||||||
|
|
||||||
|
Attributes.BroadcastChangedIfRevealed();
|
||||||
|
InGameClient.SendMessage(new FloatingNumberMessage
|
||||||
|
{
|
||||||
|
ActorID = DynamicID(this),
|
||||||
|
Number = quantity,
|
||||||
|
Type = FloatingNumberMessage.FloatType.Green
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Attributes[GameAttributes.Hitpoints_Cur] = Math.Min(
|
break;
|
||||||
Attributes[GameAttributes.Hitpoints_Cur] + quantity,
|
|
||||||
Attributes[GameAttributes.Hitpoints_Max_Total]);
|
|
||||||
|
|
||||||
Attributes.BroadcastChangedIfRevealed();
|
|
||||||
InGameClient.SendMessage(new FloatingNumberMessage
|
|
||||||
{
|
|
||||||
ActorID = DynamicID(this),
|
|
||||||
Number = quantity,
|
|
||||||
Type = FloatingNumberMessage.FloatType.Green
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
Attributes[GameAttributes.Hitpoints_Cur] = Math.Max(
|
Attributes[GameAttributes.Hitpoints_Cur] = Math.Max(
|
||||||
Attributes[GameAttributes.Hitpoints_Cur] + quantity,
|
Attributes[GameAttributes.Hitpoints_Cur] + quantity,
|
||||||
|
|||||||
Binary file not shown.
@ -1,604 +0,0 @@
|
|||||||
{
|
|
||||||
"Header": {
|
|
||||||
"DeadBeef": -559038737,
|
|
||||||
"SnoType": 2458,
|
|
||||||
"Unknown1": 0,
|
|
||||||
"Unknown2": 0,
|
|
||||||
"Unknown3": 0,
|
|
||||||
"Unknown4": 0,
|
|
||||||
"SNOId": 306532,
|
|
||||||
"BalanceType": 8,
|
|
||||||
"I0": 1655929658,
|
|
||||||
"I1": 0
|
|
||||||
},
|
|
||||||
"Items": [
|
|
||||||
{
|
|
||||||
"Hash": -1292859639,
|
|
||||||
"Name": "1xx_Damage 0.1 Legendary",
|
|
||||||
"GBID": 0,
|
|
||||||
"PAD": 0,
|
|
||||||
"SNOActor": 3,
|
|
||||||
"ItemTypesGBID": 100,
|
|
||||||
"Flags": 1,
|
|
||||||
"DyeType": 1,
|
|
||||||
"ItemLevel": 1,
|
|
||||||
"ItemAct": 1,
|
|
||||||
"AffixLevel": 1,
|
|
||||||
"BonusAffixes": 1,
|
|
||||||
"BonusMajorAffixes": 1,
|
|
||||||
"BonusMinorAffixes": 0,
|
|
||||||
"MaxSockets": 1,
|
|
||||||
"MaxStackSize": 1,
|
|
||||||
"Cost": 1,
|
|
||||||
"CostAlt": 5,
|
|
||||||
"IdentifyCost": 30,
|
|
||||||
"SellOverrideCost": 1215,
|
|
||||||
"RemoveGemCost": 9,
|
|
||||||
"RequiredLevel": 0,
|
|
||||||
"CrafterRequiredLevel": 0,
|
|
||||||
"BaseDurability": 0,
|
|
||||||
"DurabilityVariance": -1,
|
|
||||||
"EnchantAffixCost": -1,
|
|
||||||
"EnchantAffixCostX1": -1,
|
|
||||||
"TransmogUnlockCrafterLevel": 130731,
|
|
||||||
"TransmogCost": 213613,
|
|
||||||
"SNOBaseItem": 2044719016,
|
|
||||||
"SNOSet": -1,
|
|
||||||
"SNOComponentTreasureClass": -1,
|
|
||||||
"SNOComponentTreasureClassMagic": -1,
|
|
||||||
"SNOComponentTreasureClassRare": -1,
|
|
||||||
"SNOComponentTreasureClassLegend": -1,
|
|
||||||
"SNORareNamePrefixStringList": -1,
|
|
||||||
"SNORareNameSuffixStringList": -1,
|
|
||||||
"StartEffect": -1,
|
|
||||||
"EndEffect": -1,
|
|
||||||
"PortraitBkgrnd": -1588776611,
|
|
||||||
"PortraitHPBar": -1,
|
|
||||||
"PortraitBanner": -1,
|
|
||||||
"PortraitFrame": -1,
|
|
||||||
"Labels": [
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1
|
|
||||||
],
|
|
||||||
"Pad": "NaN",
|
|
||||||
"WeaponDamageMin": "NaN",
|
|
||||||
"WeaponDamageDelta": "NaN",
|
|
||||||
"DamageMinVariance": "NaN",
|
|
||||||
"DamageDeltaVariance": "NaN",
|
|
||||||
"AttacksPerSecond": "NaN",
|
|
||||||
"Armor": "NaN",
|
|
||||||
"ArmorDelta": "NaN",
|
|
||||||
"SNOSkill0": -1,
|
|
||||||
"SkillI0": -1,
|
|
||||||
"SNOSkill1": -1,
|
|
||||||
"SkillI1": -1,
|
|
||||||
"SNOSkill2": -1,
|
|
||||||
"SkillI2": -1,
|
|
||||||
"SNOSkill3": -1,
|
|
||||||
"SkillI3": 485534122,
|
|
||||||
"Attribute": [
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 2746136,
|
|
||||||
"SNOParam": 40,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 2746176,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 2746176,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 2746176,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 807429479,
|
|
||||||
"SNOParam": 1277178414,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Quality": 0,
|
|
||||||
"RecipeToGrant": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"TransmogsToGrant": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"Massive0": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryAffixFamily": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"MaxAffixLevel": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"I38": [
|
|
||||||
3,
|
|
||||||
100,
|
|
||||||
1,
|
|
||||||
1,
|
|
||||||
1,
|
|
||||||
1
|
|
||||||
],
|
|
||||||
"LegendaryFamily": 1,
|
|
||||||
"GemT": 1,
|
|
||||||
"CraftingTier": 1,
|
|
||||||
"CraftingQuality": 0,
|
|
||||||
"snoActorPageOfFatePortal": 1,
|
|
||||||
"snoWorldPageOfFate1": 1,
|
|
||||||
"snoWorldPageOfFate2": 1,
|
|
||||||
"snoLevelAreaPageOfFatePortal": 25,
|
|
||||||
"EnchantAffixIngredientsCount": 50,
|
|
||||||
"EnchantAffixIngredients": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 2835,
|
|
||||||
"Count": 29
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 22,
|
|
||||||
"Count": 22
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": -1,
|
|
||||||
"Count": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 130731,
|
|
||||||
"Count": 213613
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 2044719016,
|
|
||||||
"Count": -1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"EnchantAffixIngredientsCountX1": -1,
|
|
||||||
"EnchantAffixIngredientsX1": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": -1,
|
|
||||||
"Count": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": -1,
|
|
||||||
"Count": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": -1,
|
|
||||||
"Count": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": -1,
|
|
||||||
"Count": -1588776611
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": -1,
|
|
||||||
"Count": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": -1,
|
|
||||||
"Count": -1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"LegendaryPowerItemReplacement": -1,
|
|
||||||
"SeasonRequiredToDrop": -1,
|
|
||||||
"Attribute1": [
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"JewelSecondaryEffectUnlockRank": -1,
|
|
||||||
"JewelMaxRank": -1,
|
|
||||||
"MainEffect": -1,
|
|
||||||
"DateReleased": -1,
|
|
||||||
"VacuumPickup": -1,
|
|
||||||
"CostAlt2": 485534122,
|
|
||||||
"DynamicCraftCostMagic": -1,
|
|
||||||
"DynamicCraftCostRare": -1,
|
|
||||||
"DynamicCraftAffixCount": -1,
|
|
||||||
"SeasonCacheTreasureClass": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Hash": 2019952886,
|
|
||||||
"Name": "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
|
||||||
"GBID": 0,
|
|
||||||
"PAD": 0,
|
|
||||||
"SNOActor": 1601730609,
|
|
||||||
"ItemTypesGBID": 1634558276,
|
|
||||||
"Flags": 807429479,
|
|
||||||
"DyeType": 1277178670,
|
|
||||||
"ItemLevel": 1852139365,
|
|
||||||
"ItemAct": 2037539172,
|
|
||||||
"AffixLevel": 0,
|
|
||||||
"BonusAffixes": 0,
|
|
||||||
"BonusMajorAffixes": 0,
|
|
||||||
"BonusMinorAffixes": 0,
|
|
||||||
"MaxSockets": 0,
|
|
||||||
"MaxStackSize": 0,
|
|
||||||
"Cost": 0,
|
|
||||||
"CostAlt": 0,
|
|
||||||
"IdentifyCost": 0,
|
|
||||||
"SellOverrideCost": 0,
|
|
||||||
"RemoveGemCost": 0,
|
|
||||||
"RequiredLevel": 0,
|
|
||||||
"CrafterRequiredLevel": 0,
|
|
||||||
"BaseDurability": 0,
|
|
||||||
"DurabilityVariance": 0,
|
|
||||||
"EnchantAffixCost": 0,
|
|
||||||
"EnchantAffixCostX1": 0,
|
|
||||||
"TransmogUnlockCrafterLevel": 0,
|
|
||||||
"TransmogCost": 0,
|
|
||||||
"SNOBaseItem": 0,
|
|
||||||
"SNOSet": 0,
|
|
||||||
"SNOComponentTreasureClass": 0,
|
|
||||||
"SNOComponentTreasureClassMagic": 0,
|
|
||||||
"SNOComponentTreasureClassRare": 0,
|
|
||||||
"SNOComponentTreasureClassLegend": 0,
|
|
||||||
"SNORareNamePrefixStringList": 0,
|
|
||||||
"SNORareNameSuffixStringList": 0,
|
|
||||||
"StartEffect": 0,
|
|
||||||
"EndEffect": 0,
|
|
||||||
"PortraitBkgrnd": 0,
|
|
||||||
"PortraitHPBar": 0,
|
|
||||||
"PortraitBanner": 0,
|
|
||||||
"PortraitFrame": 0,
|
|
||||||
"Labels": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"Pad": 0.0,
|
|
||||||
"WeaponDamageMin": 0.0,
|
|
||||||
"WeaponDamageDelta": 0.0,
|
|
||||||
"DamageMinVariance": 0.0,
|
|
||||||
"DamageDeltaVariance": 0.0,
|
|
||||||
"AttacksPerSecond": 0.0,
|
|
||||||
"Armor": 0.0,
|
|
||||||
"ArmorDelta": 0.0,
|
|
||||||
"SNOSkill0": 0,
|
|
||||||
"SkillI0": 0,
|
|
||||||
"SNOSkill1": 0,
|
|
||||||
"SkillI1": 0,
|
|
||||||
"SNOSkill2": 0,
|
|
||||||
"SkillI2": 0,
|
|
||||||
"SNOSkill3": 0,
|
|
||||||
"SkillI3": 0,
|
|
||||||
"Attribute": [
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 3,
|
|
||||||
"SNOParam": 100,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 1,
|
|
||||||
"SNOParam": 1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 1,
|
|
||||||
"SNOParam": 40,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 39,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 213613,
|
|
||||||
"SNOParam": 2044719016,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Quality": 2746216,
|
|
||||||
"RecipeToGrant": [
|
|
||||||
40,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
2746256,
|
|
||||||
0,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"TransmogsToGrant": [
|
|
||||||
0,
|
|
||||||
2746256,
|
|
||||||
0,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
2746256
|
|
||||||
],
|
|
||||||
"Massive0": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryAffixFamily": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"MaxAffixLevel": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"I38": [
|
|
||||||
1601730609,
|
|
||||||
1634558276,
|
|
||||||
1226859879,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryFamily": 0,
|
|
||||||
"GemT": 0,
|
|
||||||
"CraftingTier": 0,
|
|
||||||
"CraftingQuality": 0,
|
|
||||||
"snoActorPageOfFatePortal": 0,
|
|
||||||
"snoWorldPageOfFate1": 0,
|
|
||||||
"snoWorldPageOfFate2": 0,
|
|
||||||
"snoLevelAreaPageOfFatePortal": 0,
|
|
||||||
"EnchantAffixIngredientsCount": 0,
|
|
||||||
"EnchantAffixIngredients": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"EnchantAffixIngredientsCountX1": 0,
|
|
||||||
"EnchantAffixIngredientsX1": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"LegendaryPowerItemReplacement": 0,
|
|
||||||
"SeasonRequiredToDrop": 0,
|
|
||||||
"Attribute1": [
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"JewelSecondaryEffectUnlockRank": 0,
|
|
||||||
"JewelMaxRank": 0,
|
|
||||||
"MainEffect": 0,
|
|
||||||
"DateReleased": 0,
|
|
||||||
"VacuumPickup": 0,
|
|
||||||
"CostAlt2": 0,
|
|
||||||
"DynamicCraftCostMagic": 0,
|
|
||||||
"DynamicCraftCostRare": 0,
|
|
||||||
"DynamicCraftAffixCount": 0,
|
|
||||||
"SeasonCacheTreasureClass": 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,604 +0,0 @@
|
|||||||
{
|
|
||||||
"Header": {
|
|
||||||
"DeadBeef": -559038737,
|
|
||||||
"SnoType": 2458,
|
|
||||||
"Unknown1": 0,
|
|
||||||
"Unknown2": 0,
|
|
||||||
"Unknown3": 0,
|
|
||||||
"Unknown4": 0,
|
|
||||||
"SNOId": 19755,
|
|
||||||
"BalanceType": 1,
|
|
||||||
"I0": 934681424,
|
|
||||||
"I1": 0
|
|
||||||
},
|
|
||||||
"Items": [
|
|
||||||
{
|
|
||||||
"Hash": -766798454,
|
|
||||||
"Name": "Weapon",
|
|
||||||
"GBID": 0,
|
|
||||||
"PAD": 0,
|
|
||||||
"SNOActor": -1,
|
|
||||||
"ItemTypesGBID": 0,
|
|
||||||
"Flags": 2,
|
|
||||||
"DyeType": 0,
|
|
||||||
"ItemLevel": 0,
|
|
||||||
"ItemAct": -1,
|
|
||||||
"AffixLevel": -1,
|
|
||||||
"BonusAffixes": -1,
|
|
||||||
"BonusMajorAffixes": -1,
|
|
||||||
"BonusMinorAffixes": -1,
|
|
||||||
"MaxSockets": -1,
|
|
||||||
"MaxStackSize": -1,
|
|
||||||
"Cost": -1,
|
|
||||||
"CostAlt": 1,
|
|
||||||
"IdentifyCost": 0,
|
|
||||||
"SellOverrideCost": 0,
|
|
||||||
"RemoveGemCost": 0,
|
|
||||||
"RequiredLevel": 0,
|
|
||||||
"CrafterRequiredLevel": 1953724749,
|
|
||||||
"BaseDurability": 1467576933,
|
|
||||||
"DurabilityVariance": 1869635941,
|
|
||||||
"EnchantAffixCost": 4731246,
|
|
||||||
"EnchantAffixCostX1": 0,
|
|
||||||
"TransmogUnlockCrafterLevel": 0,
|
|
||||||
"TransmogCost": 0,
|
|
||||||
"SNOBaseItem": 0,
|
|
||||||
"SNOSet": 0,
|
|
||||||
"SNOComponentTreasureClass": 0,
|
|
||||||
"SNOComponentTreasureClassMagic": 0,
|
|
||||||
"SNOComponentTreasureClassRare": 0,
|
|
||||||
"SNOComponentTreasureClassLegend": 0,
|
|
||||||
"SNORareNamePrefixStringList": 0,
|
|
||||||
"SNORareNameSuffixStringList": 0,
|
|
||||||
"StartEffect": 0,
|
|
||||||
"EndEffect": 0,
|
|
||||||
"PortraitBkgrnd": 0,
|
|
||||||
"PortraitHPBar": 0,
|
|
||||||
"PortraitBanner": 0,
|
|
||||||
"PortraitFrame": 0,
|
|
||||||
"Labels": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"Pad": 0.0,
|
|
||||||
"WeaponDamageMin": 0.0,
|
|
||||||
"WeaponDamageDelta": 0.0,
|
|
||||||
"DamageMinVariance": 0.0,
|
|
||||||
"DamageDeltaVariance": 0.0,
|
|
||||||
"AttacksPerSecond": 0.0,
|
|
||||||
"Armor": 0.0,
|
|
||||||
"ArmorDelta": 0.0,
|
|
||||||
"SNOSkill0": 0,
|
|
||||||
"SkillI0": 0,
|
|
||||||
"SNOSkill1": 0,
|
|
||||||
"SkillI1": 0,
|
|
||||||
"SNOSkill2": 0,
|
|
||||||
"SkillI2": 0,
|
|
||||||
"SNOSkill3": 0,
|
|
||||||
"SkillI3": 0,
|
|
||||||
"Attribute": [
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 485534122,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": 512,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 1953724749,
|
|
||||||
"SNOParam": 1467576933,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Quality": 0,
|
|
||||||
"RecipeToGrant": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"TransmogsToGrant": [
|
|
||||||
0,
|
|
||||||
485534122,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
1191680,
|
|
||||||
-1,
|
|
||||||
-1
|
|
||||||
],
|
|
||||||
"Massive0": [
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
1024,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryAffixFamily": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
1701602637,
|
|
||||||
101,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"MaxAffixLevel": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"I38": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryFamily": 0,
|
|
||||||
"GemT": 0,
|
|
||||||
"CraftingTier": 0,
|
|
||||||
"CraftingQuality": 0,
|
|
||||||
"snoActorPageOfFatePortal": 0,
|
|
||||||
"snoWorldPageOfFate1": 0,
|
|
||||||
"snoWorldPageOfFate2": 0,
|
|
||||||
"snoLevelAreaPageOfFatePortal": 0,
|
|
||||||
"EnchantAffixIngredientsCount": 0,
|
|
||||||
"EnchantAffixIngredients": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"EnchantAffixIngredientsCountX1": 0,
|
|
||||||
"EnchantAffixIngredientsX1": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"LegendaryPowerItemReplacement": 0,
|
|
||||||
"SeasonRequiredToDrop": 0,
|
|
||||||
"Attribute1": [
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"JewelSecondaryEffectUnlockRank": 0,
|
|
||||||
"JewelMaxRank": 0,
|
|
||||||
"MainEffect": 485534122,
|
|
||||||
"DateReleased": 0,
|
|
||||||
"VacuumPickup": 0,
|
|
||||||
"CostAlt2": 0,
|
|
||||||
"DynamicCraftCostMagic": 0,
|
|
||||||
"DynamicCraftCostRare": -1,
|
|
||||||
"DynamicCraftAffixCount": -1,
|
|
||||||
"SeasonCacheTreasureClass": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Hash": -2020353786,
|
|
||||||
"Name": "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\u0002",
|
|
||||||
"GBID": 0,
|
|
||||||
"PAD": 0,
|
|
||||||
"SNOActor": 0,
|
|
||||||
"ItemTypesGBID": 0,
|
|
||||||
"Flags": 0,
|
|
||||||
"DyeType": 0,
|
|
||||||
"ItemLevel": 0,
|
|
||||||
"ItemAct": 0,
|
|
||||||
"AffixLevel": 0,
|
|
||||||
"BonusAffixes": 0,
|
|
||||||
"BonusMajorAffixes": 0,
|
|
||||||
"BonusMinorAffixes": 0,
|
|
||||||
"MaxSockets": 133016072,
|
|
||||||
"MaxStackSize": 0,
|
|
||||||
"Cost": 0,
|
|
||||||
"CostAlt": 0,
|
|
||||||
"IdentifyCost": 0,
|
|
||||||
"SellOverrideCost": -1,
|
|
||||||
"RemoveGemCost": -1,
|
|
||||||
"RequiredLevel": -1,
|
|
||||||
"CrafterRequiredLevel": -1,
|
|
||||||
"BaseDurability": -1,
|
|
||||||
"DurabilityVariance": -1,
|
|
||||||
"EnchantAffixCost": -1,
|
|
||||||
"EnchantAffixCostX1": -1,
|
|
||||||
"TransmogUnlockCrafterLevel": 4,
|
|
||||||
"TransmogCost": 0,
|
|
||||||
"SNOBaseItem": 0,
|
|
||||||
"SNOSet": 0,
|
|
||||||
"SNOComponentTreasureClass": 0,
|
|
||||||
"SNOComponentTreasureClassMagic": 1701733703,
|
|
||||||
"SNOComponentTreasureClassRare": 1399023986,
|
|
||||||
"SNOComponentTreasureClassLegend": 1735289207,
|
|
||||||
"SNORareNamePrefixStringList": 1885431127,
|
|
||||||
"SNORareNameSuffixStringList": 28271,
|
|
||||||
"StartEffect": 0,
|
|
||||||
"EndEffect": 0,
|
|
||||||
"PortraitBkgrnd": 0,
|
|
||||||
"PortraitHPBar": 0,
|
|
||||||
"PortraitBanner": 0,
|
|
||||||
"PortraitFrame": 0,
|
|
||||||
"Labels": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"Pad": 0.0,
|
|
||||||
"WeaponDamageMin": 0.0,
|
|
||||||
"WeaponDamageDelta": 0.0,
|
|
||||||
"DamageMinVariance": 0.0,
|
|
||||||
"DamageDeltaVariance": 0.0,
|
|
||||||
"AttacksPerSecond": 0.0,
|
|
||||||
"Armor": 0.0,
|
|
||||||
"ArmorDelta": 0.0,
|
|
||||||
"SNOSkill0": 0,
|
|
||||||
"SkillI0": 0,
|
|
||||||
"SNOSkill1": 0,
|
|
||||||
"SkillI1": 0,
|
|
||||||
"SNOSkill2": 0,
|
|
||||||
"SkillI2": 0,
|
|
||||||
"SNOSkill3": 0,
|
|
||||||
"SkillI3": 0,
|
|
||||||
"Attribute": [
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Quality": 0,
|
|
||||||
"RecipeToGrant": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"TransmogsToGrant": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"Massive0": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
1846932879,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
1273600,
|
|
||||||
3
|
|
||||||
],
|
|
||||||
"LegendaryAffixFamily": [
|
|
||||||
4,
|
|
||||||
21,
|
|
||||||
22,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1
|
|
||||||
],
|
|
||||||
"MaxAffixLevel": [
|
|
||||||
-1,
|
|
||||||
520,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"I38": [
|
|
||||||
845510721,
|
|
||||||
72,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryFamily": 0,
|
|
||||||
"GemT": 0,
|
|
||||||
"CraftingTier": 0,
|
|
||||||
"CraftingQuality": 0,
|
|
||||||
"snoActorPageOfFatePortal": 0,
|
|
||||||
"snoWorldPageOfFate1": 0,
|
|
||||||
"snoWorldPageOfFate2": 0,
|
|
||||||
"snoLevelAreaPageOfFatePortal": 0,
|
|
||||||
"EnchantAffixIngredientsCount": 0,
|
|
||||||
"EnchantAffixIngredients": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"EnchantAffixIngredientsCountX1": 0,
|
|
||||||
"EnchantAffixIngredientsX1": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"LegendaryPowerItemReplacement": 0,
|
|
||||||
"SeasonRequiredToDrop": 0,
|
|
||||||
"Attribute1": [
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": 0,
|
|
||||||
"SNOParam": 0,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"JewelSecondaryEffectUnlockRank": 0,
|
|
||||||
"JewelMaxRank": 0,
|
|
||||||
"MainEffect": 0,
|
|
||||||
"DateReleased": 0,
|
|
||||||
"VacuumPickup": 0,
|
|
||||||
"CostAlt2": 0,
|
|
||||||
"DynamicCraftCostMagic": 0,
|
|
||||||
"DynamicCraftCostRare": 0,
|
|
||||||
"DynamicCraftAffixCount": 0,
|
|
||||||
"SeasonCacheTreasureClass": 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Binary file not shown.
104386
src/GAM/Item_ArtTest.json
104386
src/GAM/Item_ArtTest.json
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
879370
src/GAM/Items_Legendary.json
879370
src/GAM/Items_Legendary.json
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
456598
src/GAM/Items_Other.json
456598
src/GAM/Items_Other.json
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,310 +0,0 @@
|
|||||||
{
|
|
||||||
"Header": {
|
|
||||||
"DeadBeef": -559038737,
|
|
||||||
"SnoType": 2458,
|
|
||||||
"Unknown1": 0,
|
|
||||||
"Unknown2": 0,
|
|
||||||
"Unknown3": 0,
|
|
||||||
"Unknown4": 0,
|
|
||||||
"SNOId": 245193,
|
|
||||||
"BalanceType": 2,
|
|
||||||
"I0": 1708504845,
|
|
||||||
"I1": 0
|
|
||||||
},
|
|
||||||
"Items": [
|
|
||||||
{
|
|
||||||
"Hash": -44768141,
|
|
||||||
"Name": "PageOfFateA",
|
|
||||||
"GBID": 0,
|
|
||||||
"PAD": 0,
|
|
||||||
"SNOActor": 245219,
|
|
||||||
"ItemTypesGBID": 327230447,
|
|
||||||
"Flags": 32,
|
|
||||||
"DyeType": 0,
|
|
||||||
"ItemLevel": 10,
|
|
||||||
"ItemAct": 0,
|
|
||||||
"AffixLevel": 0,
|
|
||||||
"BonusAffixes": 0,
|
|
||||||
"BonusMajorAffixes": 0,
|
|
||||||
"BonusMinorAffixes": 0,
|
|
||||||
"MaxSockets": 0,
|
|
||||||
"MaxStackSize": 5,
|
|
||||||
"Cost": 1200,
|
|
||||||
"CostAlt": 5,
|
|
||||||
"IdentifyCost": 0,
|
|
||||||
"SellOverrideCost": 0,
|
|
||||||
"RemoveGemCost": 0,
|
|
||||||
"RequiredLevel": 0,
|
|
||||||
"CrafterRequiredLevel": 0,
|
|
||||||
"BaseDurability": 250,
|
|
||||||
"DurabilityVariance": 200,
|
|
||||||
"EnchantAffixCost": 500,
|
|
||||||
"EnchantAffixCostX1": 500,
|
|
||||||
"TransmogUnlockCrafterLevel": 0,
|
|
||||||
"TransmogCost": 100,
|
|
||||||
"SNOBaseItem": -1,
|
|
||||||
"SNOSet": -1,
|
|
||||||
"SNOComponentTreasureClass": -1,
|
|
||||||
"SNOComponentTreasureClassMagic": -1,
|
|
||||||
"SNOComponentTreasureClassRare": -1,
|
|
||||||
"SNOComponentTreasureClassLegend": -1,
|
|
||||||
"SNORareNamePrefixStringList": -1,
|
|
||||||
"SNORareNameSuffixStringList": -1,
|
|
||||||
"StartEffect": -1,
|
|
||||||
"EndEffect": -1,
|
|
||||||
"PortraitBkgrnd": 0,
|
|
||||||
"PortraitHPBar": 0,
|
|
||||||
"PortraitBanner": 0,
|
|
||||||
"PortraitFrame": 0,
|
|
||||||
"Labels": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"Pad": 0.0,
|
|
||||||
"WeaponDamageMin": 0.0,
|
|
||||||
"WeaponDamageDelta": 0.0,
|
|
||||||
"DamageMinVariance": 0.0,
|
|
||||||
"DamageDeltaVariance": 0.0,
|
|
||||||
"AttacksPerSecond": 0.0,
|
|
||||||
"Armor": 0.0,
|
|
||||||
"ArmorDelta": 0.0,
|
|
||||||
"SNOSkill0": -1,
|
|
||||||
"SkillI0": 0,
|
|
||||||
"SNOSkill1": -1,
|
|
||||||
"SkillI1": 0,
|
|
||||||
"SNOSkill2": -1,
|
|
||||||
"SkillI2": 0,
|
|
||||||
"SNOSkill3": -1,
|
|
||||||
"SkillI3": 0,
|
|
||||||
"Attribute": [
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Quality": -1,
|
|
||||||
"RecipeToGrant": [
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1
|
|
||||||
],
|
|
||||||
"TransmogsToGrant": [
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1
|
|
||||||
],
|
|
||||||
"Massive0": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryAffixFamily": [
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1,
|
|
||||||
-1
|
|
||||||
],
|
|
||||||
"MaxAffixLevel": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"I38": [
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"LegendaryFamily": -1,
|
|
||||||
"GemT": 0,
|
|
||||||
"CraftingTier": 0,
|
|
||||||
"CraftingQuality": 0,
|
|
||||||
"snoActorPageOfFatePortal": 245449,
|
|
||||||
"snoWorldPageOfFate1": 245391,
|
|
||||||
"snoWorldPageOfFate2": 245402,
|
|
||||||
"snoLevelAreaPageOfFatePortal": 109526,
|
|
||||||
"EnchantAffixIngredientsCount": 0,
|
|
||||||
"EnchantAffixIngredients": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"EnchantAffixIngredientsCountX1": 0,
|
|
||||||
"EnchantAffixIngredientsX1": [
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ItemsGBID": 0,
|
|
||||||
"Count": 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"LegendaryPowerItemReplacement": -1,
|
|
||||||
"SeasonRequiredToDrop": -1,
|
|
||||||
"Attribute1": [
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AttributeId": -1,
|
|
||||||
"SNOParam": -1,
|
|
||||||
"Formula": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"JewelSecondaryEffectUnlockRank": -1,
|
|
||||||
"JewelMaxRank": -1,
|
|
||||||
"MainEffect": -1,
|
|
||||||
"DateReleased": 5,
|
|
||||||
"VacuumPickup": 0,
|
|
||||||
"CostAlt2": 0,
|
|
||||||
"DynamicCraftCostMagic": 0,
|
|
||||||
"DynamicCraftCostRare": 0,
|
|
||||||
"DynamicCraftAffixCount": 0,
|
|
||||||
"SeasonCacheTreasureClass": -1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Binary file not shown.
141136
src/GAM/Items_Quests.json
141136
src/GAM/Items_Quests.json
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
142606
src/GAM/Items_Weapons.json
142606
src/GAM/Items_Weapons.json
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
user.block.title