What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

New Item Ids - Anyone have them?

xzjv

Community Developer
Joined
Mar 17, 2014
Messages
1,243
Reaction score
46
We need ids for the following items, if you have them can you please click the button in adventurer tab labelled. 'Dump Backpack' when the item is in your backpack. And then paste the log message in this thread. Thanks.

/// <summary>
/// Bakuli Jungle Wraps Firebats deals 150–200% increased damage to enemies affected by Locust Swarm or Piranhas.
/// </summary>
public static Item BakuliJungleWraps = new Item
{
Id = 0,
Name = "Bakuli Jungle Wraps",
Quality = ItemQuality.Legendary,
Slug = "bakuli-jungle-wraps",
ItemType = ItemType.Belt,
TrinityItemType = TrinityItemType.Belt,
IsTwoHanded = false,
BaseType = ItemBaseType.Armor,
InternalName = "",
DataUrl = "https://us.battle.net/api/d3/data/item/bakuli-jungle-wraps",
Url = "https://us.battle.net/d3/en/item/bakuli-jungle-wraps",
IconUrl = "http://media.blizzard.com/d3/icons/items/large/p41_unique_belt_007_demonhunter_male.png",
RelativeUrl = "/d3/en/item/bakuli-jungle-wraps",
IsCrafted = false,
LegendaryAffix = "Firebats deals 150–200% increased damage to enemies affected by Locust Swarm or Piranhas.",
SetName = "",
};

/// <summary>
/// Halo of Karini You take 45–60% less damage for 3 seconds after your Storm Armor electrocutes an enemy more than 30 yards away.
/// </summary>
public static Item HaloOfKarini = new Item
{
Id = 0,
Name = "Halo of Karini",
Quality = ItemQuality.Legendary,
Slug = "halo-of-karini",
ItemType = ItemType.Ring,
TrinityItemType = TrinityItemType.Ring,
IsTwoHanded = false,
BaseType = ItemBaseType.Jewelry,
InternalName = "",
DataUrl = "https://us.battle.net/api/d3/data/item/halo-of-karini",
Url = "https://us.battle.net/d3/en/item/halo-of-karini",
IconUrl = "http://media.blizzard.com/d3/icons/items/large/p41_unique_ring_01_demonhunter_male.png",
RelativeUrl = "/d3/en/item/halo-of-karini",
IsCrafted = false,
LegendaryAffix = "You take 45–60% less damage for 3 seconds after your Storm Armor electrocutes an enemy more than 30 yards away.",
SetName = "",
};



/// <summary>
/// Augustine's Panacea Elemental Arrow gains an effect based on the rune: Ball Lightning now travels at 30% speed. Frost Arrow damage and Chilled duration increased by 200–250%. Immolation Arrow ground damage over time increased by 200–250%. Lightning Bolts damage and Stun duration increased by 200–250%. Nether Tentacles damage and healing amount increased by 200–250%.
/// </summary>
public static Item AugustinesPanacea = new Item
{
Id = 0,
Name = "Augustine's Panacea",
Quality = ItemQuality.Legendary,
Slug = "augustines-panacea",
ItemType = ItemType.Quiver,
TrinityItemType = TrinityItemType.Quiver,
IsTwoHanded = false,
BaseType = ItemBaseType.None,
InternalName = "",
DataUrl = "https://us.battle.net/api/d3/data/item/augustines-panacea",
Url = "https://us.battle.net/d3/en/item/augustines-panacea",
IconUrl = "http://media.blizzard.com/d3/icons/items/large/p41_unique_quiver_001_demonhunter_male.png",
RelativeUrl = "/d3/en/item/augustines-panacea",
IsCrafted = false,
LegendaryAffix = "Elemental Arrow gains an effect based on the rune: Ball Lightning now travels at 30% speed. Frost Arrow damage and Chilled duration increased by 200–250%. Immolation Arrow ground damage over time increased by 200–250%. Lightning Bolts damage and Stun duration increased by 200–250%. Nether Tentacles damage and healing amount increased by 200–250%.",
SetName = "",
};

/// <summary>
/// Flail of the Ascended Your Shield Glare deals damage equal to up to your last 5 Shield Bash casts.
/// </summary>
public static Item FlailOfTheAscended = new Item
{
Id = 0,
Name = "Flail of the Ascended",
Quality = ItemQuality.Legendary,
Slug = "flail-of-the-ascended",
ItemType = ItemType.Flail,
TrinityItemType = TrinityItemType.TwoHandFlail,
IsTwoHanded = true,
BaseType = ItemBaseType.Weapon,
InternalName = "",
DataUrl = "https://us.battle.net/api/d3/data/item/flail-of-the-ascended",
Url = "https://us.battle.net/d3/en/item/flail-of-the-ascended",
IconUrl = "http://media.blizzard.com/d3/icons/items/large/p4_unique_flail_2h_002_demonhunter_male.png",
RelativeUrl = "/d3/en/item/flail-of-the-ascended",
IsCrafted = false,
LegendaryAffix = "Your Shield Glare deals damage equal to up to your last 5 Shield Bash casts.",
SetName = "",
};
 
Back
Top