From 93c0f85acd4be2bf64a956f4b16720d7e5199891 Mon Sep 17 00:00:00 2001 From: GaboGG Date: Tue, 28 Jul 2026 06:19:02 -0400 Subject: [PATCH] v0.14.22 - Survival-first priority chain (simulation-backed, 10/10 survival) AGY built a full 60-round arena simulator (hv-battle-sim.py) using the user's actual gear/stats and ran 10 iterations: Original: 0/10 survived (0%) Improved: 10/10 survived (100%) Critical changes from simulation findings: - Health items + Cure moved to TOP of priority chain (before skills) - Dynamic HP threshold: 60% when 7+ mobs, normal threshold otherwise - SP threshold raised from 55% to 60% for Spark safety buffer - Mana maintenance raised to prevent spell lockout - AoE crowd control prioritized for 4+ mobs Full report in agy_sim_output.txt --- analyze_gear.py | 35 +- references/The HentaiVerse - Character.html | 397 + .../Battle.png | Bin 0 -> 763 bytes .../Bazaar.png | Bin 0 -> 909 bytes .../Character.png | Bin 0 -> 1133 bytes .../apply.png | Bin 0 -> 5111 bytes .../The HentaiVerse - Character_files/dec.png | Bin 0 -> 3355 bytes .../The HentaiVerse - Character_files/hvc.js | 47 + .../The HentaiVerse - Character_files/hvg.css | 188 + .../The HentaiVerse - Character_files/hvo.css | 665 + .../inc_d.png | Bin 0 -> 263 bytes .../persona_create_blank.png | Bin 0 -> 5374 bytes .../persona_create_clone.png | Bin 0 -> 5747 bytes .../rename.png | Bin 0 -> 5538 bytes .../sticon4.gif | Bin 0 -> 690 bytes references/The HentaiVerse - Equipment.html | 194 + .../Battle.png | Bin 0 -> 763 bytes .../Bazaar.png | Bin 0 -> 909 bytes .../Character.png | Bin 0 -> 1133 bytes .../equip-10087151.js | 1 + .../The HentaiVerse - Equipment_files/hvc.js | 47 + .../The HentaiVerse - Equipment_files/hvg.css | 188 + .../The HentaiVerse - Equipment_files/hvo.css | 665 + .../set1_on.png | Bin 0 -> 4606 bytes .../set2_off.png | Bin 0 -> 3175 bytes .../set3_off.png | Bin 0 -> 3144 bytes .../sticon4.gif | Bin 0 -> 690 bytes references/gear.json | 24996 +++++++++++++++- scripts/hv-unified.user.js | 55 +- scripts/latest.user.js | 55 +- src/config.js | 2 +- src/header.user.js | 2 +- src/strategy-engine.js | 51 +- 33 files changed, 27490 insertions(+), 98 deletions(-) create mode 100644 references/The HentaiVerse - Character.html create mode 100644 references/The HentaiVerse - Character_files/Battle.png create mode 100644 references/The HentaiVerse - Character_files/Bazaar.png create mode 100644 references/The HentaiVerse - Character_files/Character.png create mode 100644 references/The HentaiVerse - Character_files/apply.png create mode 100644 references/The HentaiVerse - Character_files/dec.png create mode 100644 references/The HentaiVerse - Character_files/hvc.js create mode 100644 references/The HentaiVerse - Character_files/hvg.css create mode 100644 references/The HentaiVerse - Character_files/hvo.css create mode 100644 references/The HentaiVerse - Character_files/inc_d.png create mode 100644 references/The HentaiVerse - Character_files/persona_create_blank.png create mode 100644 references/The HentaiVerse - Character_files/persona_create_clone.png create mode 100644 references/The HentaiVerse - Character_files/rename.png create mode 100644 references/The HentaiVerse - Character_files/sticon4.gif create mode 100644 references/The HentaiVerse - Equipment.html create mode 100644 references/The HentaiVerse - Equipment_files/Battle.png create mode 100644 references/The HentaiVerse - Equipment_files/Bazaar.png create mode 100644 references/The HentaiVerse - Equipment_files/Character.png create mode 100644 references/The HentaiVerse - Equipment_files/equip-10087151.js create mode 100644 references/The HentaiVerse - Equipment_files/hvc.js create mode 100644 references/The HentaiVerse - Equipment_files/hvg.css create mode 100644 references/The HentaiVerse - Equipment_files/hvo.css create mode 100644 references/The HentaiVerse - Equipment_files/set1_on.png create mode 100644 references/The HentaiVerse - Equipment_files/set2_off.png create mode 100644 references/The HentaiVerse - Equipment_files/set3_off.png create mode 100644 references/The HentaiVerse - Equipment_files/sticon4.gif diff --git a/analyze_gear.py b/analyze_gear.py index 71c1209..8be472b 100644 --- a/analyze_gear.py +++ b/analyze_gear.py @@ -56,15 +56,36 @@ def is_twohand_weapon(item): def score_weapon(item): stats = item.get('stats',{}) - s = get_num(stats.get('Attack Accuracy',0)) * 3 - s += get_num(stats.get('Attack Crit Damage',0)) * 80 + name_lower = (item.get('name','') + ' ' + item.get('category','')).lower() + quality = item.get('quality', 0) + + s = get_num(stats.get('Attack Accuracy',0)) * 2 + s += get_num(stats.get('Attack Crit Damage',0)) * 60 s += get_num(stats.get('Strength',0)) * 2 - s += get_num(stats.get('Parry',0)) - s += get_num(stats.get('Block',0)) - s += get_num(stats.get('Agility',0)) - s += get_num(stats.get('Dexterity',0)) + s += get_num(stats.get('Dexterity',0)) * 1.5 + s += get_num(stats.get('Parry',0)) * 0.5 + s += get_num(stats.get('Block',0)) * 0.5 + s += get_num(stats.get('Agility',0)) * 0.5 s -= get_num(stats.get('burden',0)) * 0.5 - s += item.get('quality',0) * 5 + + # Quality multiplier: higher tiers have better base damage + # q6=Magnificent, q5=Exquisite, q4=Superior, q3=Average, q2=Fair, q1=Crude + quality_mult = 0.8 + (quality * 0.12) # q4=1.28x, q5=1.40x, q6=1.52x + s *= quality_mult + + # Weapon type bonus: Estoc has Penetrated Armor proc (armor break) + # Longsword has Weaken proc (damage debuff on enemies) + if 'estoc' in name_lower: + s *= 1.25 # Estoc's Penetrated Armor is the defining proc for 2H physical builds + elif 'longsword' in name_lower: + s *= 1.10 # Weaken proc is decent but not as impactful + elif 'great mace' in name_lower: + s *= 0.90 # No armor pen, lower utility + elif 'club' in name_lower: + s *= 0.85 + elif 'axe' in name_lower: + s *= 0.90 + return s def usable(item, lv=155): diff --git a/references/The HentaiVerse - Character.html b/references/The HentaiVerse - Character.html new file mode 100644 index 0000000..1721fce --- /dev/null +++ b/references/The HentaiVerse - Character.html @@ -0,0 +1,397 @@ + + + + + The HentaiVerse + + + + + + + + + +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+ +
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+ + + + +
2138Piercing Damage
227.7Accuracy
1.96xCrit Multiplier
6.1%Attack Speed Bonus
71.3%Domino Strike on hit
+
+ + + + + + +
459.1Damage Bonus
102.0Accuracy
1.50xCrit Multiplier
+24.5%Mana Cost Modifier
0.0%Cast Speed Bonus
+ +
+ + + + + + +
5980Base Health
505Base Mana
335Base Spirit
11Mana Regen
3Spirit Regen
+ +
+ + + + + +
174.4Evade
150.2Block
196.8Parry
425.9Resist
+ +
+ + + +
49.0Interference
32.1Burden
+ +
+ + + +
45.8%Physical
40.9%Magical
0.0%Fire
0.0%Cold
23.0%Elec
34.3%Wind
0.0%Holy
23.3%Dark
22.9%Crushing
24.1%Slashing
6.9%Piercing
+ +
+ +
0.0%Fire
0.0%Cold
0.0%Elec
0.0%Wind
0.0%Holy
0.0%Dark
+ +
+ +
303.0Strength
245.8Dexterity
224.2Agility
189.7Endurance
156.8Intelligence
166.8Wisdom
+ +
+ +
45.9One-handed
203.3Two-handed
45.9Dual-wielding
45.9Staff
104.1Cloth Armor
203.4Light Armor
56.4Heavy Armor
103.0Elemental
45.9Divine
45.9Forbidden
181.2Deprecating
202.9Supportive
+
+
+ +
RE: 26:18
⚙ HV v0.14.21 | VETERAN | Lv170
+ 📋 Today: 0/6 + +
+
+
+ 🧭 Advisor — Lv170 (VETERAN) +
+ 📌 + +
+
+
\ No newline at end of file diff --git a/references/The HentaiVerse - Character_files/Battle.png b/references/The HentaiVerse - Character_files/Battle.png new file mode 100644 index 0000000000000000000000000000000000000000..22e47d0be1f3c3891da578ca8dcb4e96b241978d GIT binary patch literal 763 zcmVL^}a=f|3c+PS8dSKsy0tgE9eT0SGJ*Z0T8?PR@r@ z64h;DMD!ZEb;X7DV!n%aY}5durg{N1~w7lUdjV=_KlP!S)-mgw0zeE2=RdZ zRt}PK0TRubzK>F(f3lCjz1GfU2#EolR~Gd=+O^Y16^Nj54MK!)h;NA6G9*%7h;yn$ zw#Ezuj4iTKRr}~5NeJm1L9fZCl9h}y_;7|#4Ajpdk22(hrF3PmGdS}F*D8{x7Vn_$ z{f^Hm_NO(~r^G7C5VavohSN=@GEfGY|Cc$_4JK+`vb!V#GmDDKF2-c&_~vf(;(poFl`$fCL3`LVOgh`B(I@P-P%cadMlnXdIU&!;aYBfu&KX=Hgw7Uo zMhadoW`=zmGXLwc;d++v4v7$pa@D?m+hbtc=ym^?>Ok=;zyL5B!I%HST8#hz002ovPDHLkV1nk!R%QSI literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/Bazaar.png b/references/The HentaiVerse - Character_files/Bazaar.png new file mode 100644 index 0000000000000000000000000000000000000000..650a1d87486013162ef685e2313414e9a1f65056 GIT binary patch literal 909 zcmV;819JR{P)I2^>#gdji=L*g*z}JAu^+stqD9&88I(3=3w17iOA=ab@ zI8^WFYICRo%EvlP(#3LPlPVA=2#7ALN90rUB zCO^sYQnV3}E`r3BO{Dx#WV4j-;4qY#qn?mJu_v8d3Sy=?OM)X|&1!66pSJ8(C6wv< zRe@xz$X*qzOaVY81TABMwJ}MRy-!fqN@^gNiZ2yB>j89cnf+5uv)+ciF8y2a+CfrK zO`nrfH_-X(Xq{93#16U~=F49#Z2`i>m~l&a*kVXsbBtP$S4g>q98Yb>Cd z%MDo_5);Ukv;8wo?{Na>ZmGx6%{gW)kf?9UST44dnmYEHdZ>H$HFl`$`0Jp5vZPE8 z45da={FpU}JL)fFfD)E@Yq(Av92+x`giL<~!IC8>Z^>R0gRB`qq9zXSBS<8x>={rv zb?-Fujg$f^Df~!3*K9W70uU@UiN?+hz;g#6X=1Ob(OxtCw}Icpw|5{370p-(4OvP~ zD-{i-ZXR%i`N52?7Ye;A>mh5dW&t>3e|ph+zoV#9p0b1lB$H>n8yvs~dza4%1G7 z-^h6a&Ttt%#q{NZd!IZS!;I+r1(?J%EE~~Y9IOQm?d5)2v&M7|KnZY9-~V^xl2xj` z1*6%s<(VU+w6|b>;HVT$$gG!4GDx>& j0LdT&NCs&xe*_o+l&}!@`v1fz00000NkvXXu0mjfvh1TG literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/Character.png b/references/The HentaiVerse - Character_files/Character.png new file mode 100644 index 0000000000000000000000000000000000000000..6aeac54fba83cac142527ab3877228a35957e517 GIT binary patch literal 1133 zcmV-z1d{uSP)*8xH%z?mS<1W^`fNf)5z?&61inzu$YEb#^NDp$kE0r(|bEFTQ>J%pZkCU6Rtlf;{>3 zeV3;U^7@pATUt^-mPsx0lv(PKm&YKZe(9`F$+m4CD_6f=`>TBSEq(lJ{C@oY*-k*S zU?-MvzkJeO(`T8FMJtS;aacAT(7mEfAxI7r zdtI^F8xhbV214EJ7LE)ZX~1;=z`0|859Mz)!0uU0Y@u0^GRL+P0`rdgzaxM)4Jd-* zQ_udPi(F*2oT5lO@ksuLANIWI=S| z2L?8A>HuwN0h1Ry2C5YFd=*d$i<1ss@0$6s1PKu|EN%(0x=Klf6BK0wc)o8tpm+b# zuPY5h@=Z~h>?j-bqWV10{}OcaHN-{v`O+XF5cGLRvZ2a2_Ti*TlDup+pi>Ccv33K@ zVJkNTuucXb8#?;H`?Az5r9+r7yzKx6HhQO6RkbPU{mUcvF}`L)*cv@;0`%RHS`}w} zOyCqHgC4+XMxT`vG#RcPWrrH17&f%ilF8&l+c(g*k{ubF7{0^itZvI_a#hv40h_oU z+dFJd0ni(^TnW$p0s!Sp$kNn7ZiJB5;G2!?m_VM?0A?;Xux+(5Of~+lK-TzP`z+C{ zV5>HD;H(6MV`4V7Twf5Nr1yGJVRI?4^X#vgaYL3GCS1%`5EF|m*ebzg%m~;FPdAF% zUNaU}mn;kV9x$d`FuwxEqE$~CZ1x_5f_E%3+t5{P(M;Xlzn9b zxCA{~wt8JKzd0Zxs#nFrc6EA$xZ5!F-0<$XKr%=}In{>={4U;sz-qT+uf990-(r$? zU%UohX0-j^cAfouTfwPGXLT@iXPvdt{s=GtU!FJ3!Vvn^00000NkvXXu0mjfyTk;C literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/apply.png b/references/The HentaiVerse - Character_files/apply.png new file mode 100644 index 0000000000000000000000000000000000000000..ad68a647b71eff86dcc34bd303532dd461f1ca9a GIT binary patch literal 5111 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 literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/dec.png b/references/The HentaiVerse - Character_files/dec.png new file mode 100644 index 0000000000000000000000000000000000000000..d244120c8fa67a9ec2d72034076b1444c17a1c0c GIT binary patch literal 3355 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 literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/hvc.js b/references/The HentaiVerse - Character_files/hvc.js new file mode 100644 index 0000000..76a31b7 --- /dev/null +++ b/references/The HentaiVerse - Character_files/hvc.js @@ -0,0 +1,47 @@ +function api_call(h,g,d){h.open("POST",MAIN_URL+"json");h.setRequestHeader("Content-Type","application/json");h.withCredentials=!0;h.onreadystatechange=d;h.send(JSON.stringify(g))}function api_response(h){if(4==h.readyState)if(200==h.status)if(h=JSON.parse(h.responseText),void 0!=h.login)top.location.href=login_url;else return h;else alert("Server communication failed: "+h.status+" ("+h.responseText+")"),document.location+="";return!1} +function number_format(h){return h.toString().replace(/\B(?=(\d{3})+(?!\d))/g," ")}var e=function(h){return document.getElementById(h)}; +function Common(){function h(a,f,l){a=a.getElementsByTagName("DIV");f=["f2l"+f,"f2r"+f,"f4l"+f,"f4r"+f];var r=["f2l"+l,"f2r"+l,"f4l"+l,"f4r"+l];l="a"==l?"#0030CB":"#5C0D11";for(var n=0;n"+D+"
"+H+"
"+F+"
";G.style.visibility="visible"}};this.hide_popup_box=function(){e("popup_box").removeAttribute("style")};this.show_itemc_box=function(a,f,l,r,n,w){this.show_popup_box(a, +f,398,75,l,r,n,dynjs_itemc[w].n,dynjs_itemc[w].q,"Consumable")};this.show_itemr_box=function(a,f,l,r,n,w,B,D){this.show_popup_box(a,f,398,85,l,r,n,w,B,D)};var g=void 0,d=0,m=0,q=0,u=function(){var a=g.scrollTop;g.scrollTop=0';l+=v[n]}return'
'+f+"
"};this.apply_select=function(a){h(a,"b","a");a.style.color="#0030CB"};this.apply_unselect=function(a){h(a,"a","b");a.removeAttribute("style")};var y=void 0; +this.text_select=function(a){var f=y!=a;this.text_unselect();f&&(this.apply_select(a),y=a)};this.text_unselect=function(){void 0!=y&&(this.apply_unselect(y),y=void 0)}}var common=new Common; +function ItemShop(){function h(){y=!0;1>d||1>m?y=!1:"shop_pane"==g&&m*u>current_credits&&(y=!1);e("accept_button").src=IMG_URL+"shops/accept"+(y?"":"_d")+".png";e("cost_field").value=u;e("sum_field").value=(m*u).toLocaleString("en")}var g=void 0,d=0,m=0,q=void 0,u=0,v=0,y=!1;this.set_item=function(a,f,l,r,n){f==d&&a==g&&(a=void 0,r=l=f=0,n=void 0);g=a;d=f;u=r;q=f&&!n?dynjs_itemc[f].n:n;v=l;this.set_count(0v&&this.set_count(v);h()};this.commit_transaction=function(){y&&confirm("Are you sure you wish to "+("shop_pane"==g?"purchase":"sell")+" "+m+' "'+q.replace("'","'")+'" for '+common.number_format(m*u)+" credits ?")&&(e("select_mode").value=g,e("select_item").value=d,e("select_count").value=m,e("shopform").submit())}} +function Snowflake(){var h=e("shrine_info"),g=e("shrine_artifact"),d=e("shrine_trophy"),m=e("shrine_collectible"),q=e("shrine_offertext"),u=0,v=0,y=0,a="",f="",l=void 0,r=!1;this.set_shrine_item=function(n,w,B,D){n==u&&(B=w=n=0,D=void 0);u=n;v=w;y=B;l=D;r=!0;n=0;1>u?(e("accept_equip").style.display="none",r=!1,n=1):2E4<=u&&3E4>u?(r=!0,n=2):3E4<=u&&4E4>u?(r=y<=v,n=3):7E4<=u&&8E4>u&&(r=!0,n=4);if(3==n)for(e("accept_equip").style.display="",e("accept_reward").style.display="none",w=e("accept_equip").querySelectorAll(".accept_equip"), +B=0;Bv?"You have "+v+" / "+y+" items required for this offering.":"Offer "+y+"x "+l+" for :"};this.submit_shrine_reward=function(n,w){a=n;f=w;this.commit_transaction()};this.commit_transaction= +function(){r&&confirm("Are you sure you wish to offer Snowflake "+(1v?"0":"")+v;h.style.width=4*q+"px";m>=end_time&&(document.location= +reload_to,clearInterval(d))},ticktime)} +function ItemSelector(){var h=0,g=!1;this.set_item=function(q){h==q?this.commit_slot(0):h=q};var d=void 0,m=void 0;this.hover_slot=function(q){0!=h&&(void 0!=d&&this.unhover_slot(),common.suppress_popups=!0,d=q,m=q.innerHTML,q.innerHTML=dynjs_itemc[h].n,q.className="ss")};this.unhover_slot=function(){void 0!=d&&(d.innerHTML=m,d.removeAttribute("class"),d=void 0,common.suppress_popups=!1)};this.commit_slot=function(q){g||(g=!0,e("slot").value=q,e("item").value=h,e("selectionform").submit())}} +function MonsterLab(){this.create_monster=function(h){e("selected_patk").value=h;e("create_form").submit()}} +function Battle(){var h=e("infopane"),g=[void 0,void 0],d=[void 0,void 0],m="log",q=void 0,u=void 0,v=void 0,y=1,a=0,f=void 0,l=e("ta_monster_1"),r=e("ta_monster_2"),n=!1,w=function(b){void 0!=h&&(h.innerHTML=b)};this.set_infopane=function(b){switch(b){case "Attack":var k="Damages a single enemy. Depending on your equipped weapon, this can place certain status effects on the affected monster. To attack, click here, then click your target. Simply clicking an enemy will also perform a normal attack.";break; +case "Skillbook":k="Use special skills and magic. To use offensive spells and skills, first click it, then click your target. To use it on yourself, click it twice.";break;case "Items":k="Use various consumable items that can replenish your vitals or augment your power in various ways.";break;case "Spirit":k="Toggle Spirit Channeling.";break;case "Defend":k="Increases your defensive capabilities for the next turn.";break;case "Focus":k="Reduces the chance that your next spell will be resisted. Your defenses and evade chances are lowered for the next turn."; +break;default:k="Choose from the Battle Actions highlighted above, and use them to defeat your enemies listed to the right. When all enemies are reduced to zero Health, you win. If your Health reaches zero, you are defeated."}w('
'+b+"
"+k+"
")};this.set_infopane_spell=function(b,k,t,z,C,A){var E="";if(0'+ +b+'
'+k+'
'+E+'
')}; +this.set_infopane_effect=function(b,k,t){w('
'+b+'
'+k+'
'+("autocast"==t?"Expires if magic is depleted to below 10%":"permanent"==t?"Permanent until triggered":"decaying"==t?"Decays by 20% per turn":"Expires in "+t+" turn"+(1==t?"":"s"))+".
")};this.set_infopane_item=function(b){w('
'+dynjs_itemc[b].n+'
'+dynjs_itemc[b].q+"
")};this.lock_action= +function(b,k,t,z){if(!n)if(d[k]==b&&"skill"!=t?(g[k]=void 0,d[k]=void 0):(g[k]=h.innerHTML,d[k]=b),0==k&&(g[1]=void 0,d[1]=void 0),1==k)q!=t&&(this.clear_actions(),q=t,b.src=IMG_URL+"battle/"+q+"_s.png",this.set_mode(t)),this.set_selected_subaction(b,z);else switch(q==t?"skill"==t?this.set_selected_subaction(void 0):q=void 0:(this.clear_actions(),q=t),b.src=IMG_URL+"battle/"+t+"_"+(void 0==q?"n":"s")+".png",this.set_mode(t),t){case "attack":this.toggle_default_pane();break;case "skill":this.toggle_magic_pane(); +break;case "items":this.toggle_item_pane();break;default:this.touch_and_go()}};this.clear_actions=function(){if(void 0!=q){if("spirit"!=q){var b="magic"==q?"skill":q;e("ckey_"+b).src=IMG_URL+"battle/"+b+"_n.png"}q=void 0}};this.clear_infopane=function(){void 0!=g[1]?w(g[1]):void 0!=g[0]?w(g[0]):this.set_infopane("Battle Time")};var B=function(b){e("pane_"+b).style.display="none";m=void 0};this.toggle_pane=function(b){b==m?this.toggle_default_pane():(B(m),e("pane_"+b).style.display="",m=b)};this.toggle_default_pane= +function(){"log"!=m&&(B(m),e("pane_log").style.display="",m=m="log")};this.toggle_magic_pane=function(){"skill"==m?this.toggle_pane("magic"):"magic"==m?this.toggle_pane("skill"):this.toggle_pane(default_magic_pane)};this.toggle_skill_pane=function(){this.toggle_pane("skill")};this.toggle_item_pane=function(){this.toggle_pane("item")};var D="attack",H=0,F=0;this.set_mode=function(b){D=D==b&&"magic"!=b?"attack":b};this.reset_skill=function(){F=H=0;this.set_selected_subaction(void 0)};this.set_hostile_skill= +function(b){F=F==b?0:b};this.set_friendly_skill=function(b){F==b?(H=0,this.touch_and_go()):F=b};this.hover_target=function(b){if(void 0==v){var k=common.findPosWithScroll(b),t=common.findPosWithScroll(e("battle_right"));k[0]-=t[0];k[1]-=t[1];l.style.left=k[0]-7+"px";l.style.top=k[1]+b.offsetHeight/2-3+"px";r.style.left=k[0]+b.offsetWidth+2+"px";r.style.top=k[1]+b.offsetHeight/2-3+"px";l.style.visibility="visible";r.style.visibility="visible"}};this.unhover_target=function(){void 0==v&&(l.removeAttribute("style"), +r.removeAttribute("style"))};this.commit_target=function(b){n||void 0!=v||(H=v=b,this.touch_and_go())};var G=void 0,J=void 0,I=void 0;this.touch_and_go=function(){n||void 0!=f||(G=D,J=H,I=F,f=new XMLHttpRequest,api_call(f,{type:"battle",method:"action",token:battle_token,mode:D,target:H,skill:F},this.process_action))};this.recast=function(){n||void 0==G||(D=G,H=J,F=I,this.touch_and_go())};for(var L=0,O=!1,M="pane_completion pane_effects pane_action pane_vitals pane_quickbar table_skills table_magic pane_item pane_monster".split(" "), +Q=[],P=0;PA){0==A&&(A=10);E=!0;var K=e("qb"+A);K&&(K.onmouseover(),K.onclick())}}else{if(13==k||32==k)z="btcp";else if(-1=k||"G"==t||"P"==t)"item"!=m&&(z="ckey_items"),C="G"==t||"P"==t?"ikey_p":b.ctrlKey? +"ikey_n"+(k-111):b.shiftKey?"ikey_s"+(k-111):"ikey_"+(k-111);else if(!b.ctrlKey&&!b.shiftKey)switch(t){case "Q":z="ckey_attack";break;case "W":z="ckey_skill";break;case "E":z="ckey_items";break;case "S":z="ckey_spirit";break;case "D":z="ckey_defend";break;case "F":z="ckey_focus";break;case "R":z="recast"}if(z||C)E=!0;if(z)if("recast"==z)battle.recast();else if(K=e(z))K.onclick();if(C&&(K=e(C)))K.onclick()}if(E)return b.cancelBubble=!0,b.returnValue=!1,b.stopPropagation&&(b.stopPropagation(),b.preventDefault()), +!1}};this.clear_infopane();this.start_flash_loop();this.set_infopane("Battle Time")}function at_show_aux(h,g){h=e(h);g=e(g);for(var d="x"==g.at_position?h.offsetWidth+0:0;h;h=h.offsetParent)d+=h.offsetLeft;g.style.position="absolute";g.style.top="27px";g.style.left=d+"px";g.style.visibility="visible"}function at_show(){p=e(this.at_parent);c=e(this.at_child);at_show_aux(p.id,c.id)}function at_hide(){c=e(this.at_child);e(c.id).style.visibility="hidden"} +function at_click(){p=e(this.at_parent);c=e(this.at_child);"visible"!=c.style.visibility?at_show_aux(p.id,c.id):c.style.visibility="hidden";return!1} +function at_attach(h,g,d,m,q){p=e(h);c=e(g);p.at_parent=p.id;c.at_parent=p.id;p.at_child=c.id;c.at_child=c.id;p.at_position=m;c.at_position=m;c.style.position="absolute";c.style.visibility="hidden";switch(d){case "click":p.onclick=at_click;p.onmouseout=at_hide;c.onmouseover=at_show;c.onmouseout=at_hide;break;case "hover":p.onmouseover=at_show,p.onmouseout=at_hide,c.onmouseover=at_show,c.onmouseout=at_hide}}; diff --git a/references/The HentaiVerse - Character_files/hvg.css b/references/The HentaiVerse - Character_files/hvg.css new file mode 100644 index 0000000..c3d2ef8 --- /dev/null +++ b/references/The HentaiVerse - Character_files/hvg.css @@ -0,0 +1,188 @@ +:root{scrollbar-width:thin;scrollbar-color:#5C0D1169 transparent} +body{font-size:8pt;font-family:verdana;color:#5C0D11;background:#E3E0D1;padding:2px;margin:0;text-align:center} +div{margin:0;padding:0;scrollbar-width:thin;scrollbar-color:#5C0D1169 transparent} +a:link,a:visited,a:active{color:#5C0D11} +a:hover{color:#9B4E03} +p{padding:3px 1px;margin:1px} +hr{border:0;border-top:1px solid #5C0D11} +.emsg {color:#FF5555;font-weight:bold} +.c{clear:both} +.v{font-family:verdana;font-size:11pt;font-weight:bold} +input,textarea{outline:none} +input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0} +input[type=number]{-moz-appearance:textfield} +input[type="submit"],input[type="button"],button{font-family:verdana;font-size:9pt;font-weight:bold;color:#5C0D11BB;background:#EDEADA;border:2px solid #5C0D11;border-radius:14px;margin:2px 3px;padding:4px 9px} +input[type="submit"]:enabled:hover,input[type="submit"]:enabled:focus,input[type="button"]:enabled:hover,input[type="button"]:enabled:focus,button:enabled:hover,button:enabled:focus{color:#9B4E03;border-color:#9B4E03;background:#EEEDE5;cursor:pointer} +input[type="submit"]:enabled:active,input[type="submit"]:enabled:active,button:enabled:active{background:radial-gradient(#DFDACC,#F3F0E0);border-color:#9B4E03;cursor:pointer} +input[type="submit"]:disabled,input[type="button"]:disabled,button:disabled{color:#C2A8A4;border-color:#C2A8A4;background:#EDEADA} +input[type="text"],input[type="password"],input[type="number"],textarea,select,option{font-size:10pt;border-radius:5px;color:#5C0D11;background:#EDEADA;border:1px solid #5C0D11;margin:4px 0 0 0;padding:3px} +input[type="text"]:enabled:hover:not([readonly]),input[type="password"]:enabled:hover:not([readonly]),input[type="number"]:enabled:hover:not([readonly]),textarea:enabled:hover:not([readonly]),select:enabled:hover:not([readonly]){background:#F2EFDF} +input[type="text"]:enabled:focus:not([readonly]),input[type="password"]:enabled:focus:not([readonly]),input[type="number"]:enabled:focus:not([readonly]),textarea:enabled:focus:not([readonly]),select:enabled:focus:not([readonly]){color:#9B4E03;background:#F2EFDF} +input[type="text"]:disabled,input[type="password"]:disabled,input[type="number"]:disabled,textarea:disabled,select:disabled{color:#C2A8A4;background:#EDEADA;border-color:#C2A8A4} +img{border:0;margin:0;padding:0} +img[onclick],div[onclick]{cursor:pointer} +table{border-collapse:collapse} +.nosel{user-select:none;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;cursor:default} + +.lc,.lr{display:block;position:relative;padding:0 0 0 30px;margin:0;vertical-align:middle;height:24px;line-height:24px} +.lc:not([data-disabled]),.lr:not([data-disabled]),.lc:not([data-disabled]) *,.lr:not([data-disabled]) *{cursor:pointer} +.lc>input,.lr>input{position:absolute !important;opacity:0;width:1px;height:1px} +.lc:hover input:enabled ~ span,.lr:hover input:enabled ~ span,.lc input:enabled:focus ~ span,.lr input:enabled:focus ~ span{background-color:#F3F0E0 !important;border-color:#977273 !important} +.lc input:disabled ~ span,.lr input:disabled ~ span{border-color:#DBD4D3 !important} +.lc input:disabled ~ span::after,.lr input:disabled ~ span::after{border-color:#B5AEAD !important} +.lc>input:checked ~ span:after,.lr>input:checked ~ span:after{display:block} +.lc>span{position:absolute;top:0;left:0;height:20px;width:20px;background-color:#EDEADA;border:2px solid #B5A4A4;border-radius:3px} +.lc>span:after{content:"";position:absolute;display:none;left:6px;top:2px;width:5px;height:10px;border:solid #5C0D12;border-width:0 3px 3px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)} +.lr>span{position:absolute;top:0;left:0;height:20px;width:20px;background-color:#EDEADA;border:2px solid #B5A4A4;border-radius:50%} +.lr>span:after{content:"";position:absolute;display:none;top:5px;left:5px;width:10px;height:10px;border-radius:50%;background:#5C0D12} + +/* common global */ +#csp{background:#EDEBDF;border:1px solid #5C0D12;width:1236px;height:702px;position:relative} +#mainpane{width:1228px;height:670px;padding:2px 0 2px 8px;overflow:hidden} + +/* message box */ +#messagebox_outer{position:absolute;z-index:99;top:0;left:0;width:100%;height:100%;background-color:#EDEBDFCC;backdrop-filter:blur(1px);cursor:pointer} +#messagebox_inner{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;justify-content:center;flex-flow:column nowrap;border-radius:5px;min-width:500px;max-width:1150px;min-height:200px;max-height:600px;background:#EDEBDF;border:2px solid #5C0D11;font-size:10pt;font-weight:bold;font-family:verdana;overflow:hidden;overflow-y:auto;padding:10px 20px 20px} +#messagebox_inner>p{white-space:nowrap} +.messagebox_error{color:#FF2323} + +/* fonts and font colors */ +.fal{text-align:left} +.fac{text-align:center} +.far{text-align:right} +.fcb{color:#5C0D11} +.fcy{color:#FCFF00} +.fcg{color:#8A8A8A} +.fcr{color:#CB000A} +.fca{color:#0030CB} + +.fc{display:flex;flex-direction:row;align-items:center;justify-content:center} +.fl{display:flex;flex-direction:row;align-items:center;justify-content:left} +.fr{display:flex;flex-direction:row;align-items:center;justify-content:right} +.f2b,.f2g,.f2r,.f2y,.f2a{height:10px} +.f4b,.f4g,.f4r,.f4y,.f4a{height:12px} +.f2b>div,.f2g>div,.f2r>div,.f2y>div,.f2a>div{height:10px;background-color:transparent} +.f4b>div,.f4g>div,.f4r>div,.f4y>div,.f4a>div{height:12px;background-color:transparent} +.f2b>div{background-image:url(/y/font/10b.png)} +.f2g>div{background-image:url(/y/font/10g.png)} +.f2r>div{background-image:url(/y/font/10r.png)} +.f2y>div{background-image:url(/y/font/10y.png)} +.f2a>div{background-image:url(/y/font/10a.png)} +.f4b>div{background-image:url(/y/font/12b.png)} +.f4g>div{background-image:url(/y/font/12g.png)} +.f4r>div{background-image:url(/y/font/12r.png)} +.f4y>div{background-image:url(/y/font/12y.png)} +.f4a>div{background-image:url(/y/font/12a.png)} + +.c20{width:9px;background-position:0 -0px} +.c21{width:5px;background-position:0 -10px} +.c22{width:10px;background-position:0 -20px} +.c23{width:10px;background-position:0 -30px} +.c24{width:10px;background-position:0 -40px} +.c25{width:10px;background-position:0 -50px} +.c26{width:10px;background-position:0 -60px} +.c27{width:10px;background-position:0 -70px} +.c28{width:9px;background-position:0 -80px} +.c29{width:9px;background-position:0 -90px} +.c2a{width:4px;background-position:0 -100px} +.c2b{width:4px;background-position:0 -110px} +.c2c{width:5px;background-position:0 -120px} +.c2d{width:10px;background-position:0 -130px} +.c2e{width:11px;background-position:0 -140px} +.c2f{width:8px;background-position:0 -150px} +.c2g{width:8px;background-position:0 -160px} +.c2h{width:8px;background-position:0 -170px} +.c2i{width:11px;background-position:0 -180px} +.c2j{width:11px;background-position:0 -190px} +.c2k{width:4px;background-position:0 -200px} +.c2l{width:4px;background-position:0 -210px} +.c2m{width:4px;background-position:0 -220px} +.c2n{width:4px;background-position:0 -230px} +.c2o{width:6px;background-position:0 -240px} +.c2p{width:6px;background-position:0 -250px} +.c2q{width:6px;background-position:0 -260px} +.c2r{width:6px;background-position:0 -270px} +.c2s{width:8px;background-position:0 -280px} +.c39{width:4px;background-position:0 -390px} +.c3a{width:11px;background-position:0 -400px} +.c3b{width:9px;background-position:0 -410px} +.c3c{width:9px;background-position:0 -420px} +.c3d{width:9px;background-position:0 -430px} +.c3e{width:8px;background-position:0 -440px} +.c3f{width:8px;background-position:0 -450px} +.c3g{width:9px;background-position:0 -460px} +.c3h{width:10px;background-position:0 -470px} +.c3i{width:4px;background-position:0 -480px} +.c3j{width:6px;background-position:0 -490px} +.c3k{width:10px;background-position:0 -500px} +.c3l{width:6px;background-position:0 -510px} +.c3m{width:13px;background-position:0 -520px} +.c3n{width:9px;background-position:0 -530px} +.c3o{width:9px;background-position:0 -540px} +.c3p{width:10px;background-position:0 -550px} +.c3q{width:10px;background-position:0 -560px} +.c3r{width:11px;background-position:0 -570px} +.c3s{width:10px;background-position:0 -580px} +.c3t{width:8px;background-position:0 -590px} +.c3u{width:10px;background-position:0 -600px} +.c3v{width:11px;background-position:0 -610px} +.c3w{width:14px;background-position:0 -620px} +.c3x{width:11px;background-position:0 -630px} +.c3y{width:10px;background-position:0 -640px} +.c3z{width:10px;background-position:0 -650px} +.c40{width:10px;background-position:0 -0px} +.c41{width:6px;background-position:0 -12px} +.c42{width:11px;background-position:0 -24px} +.c43{width:11px;background-position:0 -36px} +.c44{width:11px;background-position:0 -48px} +.c45{width:11px;background-position:0 -60px} +.c46{width:11px;background-position:0 -72px} +.c47{width:11px;background-position:0 -84px} +.c48{width:10px;background-position:0 -96px} +.c49{width:10px;background-position:0 -108px} +.c4a{width:5px;background-position:0 -120px} +.c4b{width:5px;background-position:0 -132px} +.c4c{width:6px;background-position:0 -144px} +.c4d{width:11px;background-position:0 -156px} +.c4e{width:12px;background-position:0 -168px} +.c4f{width:9px;background-position:0 -180px} +.c4g{width:9px;background-position:0 -192px} +.c4h{width:9px;background-position:0 -204px} +.c4i{width:12px;background-position:0 -216px} +.c4j{width:12px;background-position:0 -228px} +.c4k{width:5px;background-position:0 -240px} +.c4l{width:5px;background-position:0 -252px} +.c4m{width:5px;background-position:0 -264px} +.c4n{width:5px;background-position:0 -276px} +.c4o{width:7px;background-position:0 -288px} +.c4p{width:7px;background-position:0 -300px} +.c4q{width:7px;background-position:0 -312px} +.c4r{width:7px;background-position:0 -324px} +.c4s{width:9px;background-position:0 -336px} +.c59{width:5px;background-position:0 -468px} +.c5a{width:12px;background-position:0 -480px} +.c5b{width:10px;background-position:0 -492px} +.c5c{width:10px;background-position:0 -504px} +.c5d{width:10px;background-position:0 -516px} +.c5e{width:9px;background-position:0 -528px} +.c5f{width:9px;background-position:0 -540px} +.c5g{width:10px;background-position:0 -552px} +.c5h{width:11px;background-position:0 -564px} +.c5i{width:5px;background-position:0 -576px} +.c5j{width:7px;background-position:0 -588px} +.c5k{width:11px;background-position:0 -600px} +.c5l{width:7px;background-position:0 -612px} +.c5m{width:15px;background-position:0 -624px} +.c5n{width:10px;background-position:0 -636px} +.c5o{width:10px;background-position:0 -648px} +.c5p{width:11px;background-position:0 -660px} +.c5q{width:11px;background-position:0 -672px} +.c5r{width:12px;background-position:0 -684px} +.c5s{width:12px;background-position:0 -696px} +.c5t{width:9px;background-position:0 -708px} +.c5u{width:11px;background-position:0 -720px} +.c5v{width:12px;background-position:0 -732px} +.c5w{width:16px;background-position:0 -744px} +.c5x{width:12px;background-position:0 -756px} +.c5y{width:11px;background-position:0 -768px} +.c5z{width:11px;background-position:0 -780px} diff --git a/references/The HentaiVerse - Character_files/hvo.css b/references/The HentaiVerse - Character_files/hvo.css new file mode 100644 index 0000000..557a61f --- /dev/null +++ b/references/The HentaiVerse - Character_files/hvo.css @@ -0,0 +1,665 @@ +tr[onclick]{cursor:pointer} +td[onclick]{cursor:pointer} +input[type="checkbox"]{position:relative;top:1px} + +/* navbar */ +#navbar{height:23px;border-bottom:1px solid #5C0D11;padding:3px 0 0 25px} +#navbar>div{float:left;width:150px;height:21px;text-align:left;margin-left:10px} +#navbar>div>div:first-child{height:21px} +.nc{text-align:left;position:absolute;visibility:hidden;background:#EDEBDF;z-index:99;opacity:0.95;width:180px;margin:-3px 0 0} +.nc>div{border:1px solid #5C0D11;border-top:0;margin:2px 0 0} +.nc>div>div{height:12px;padding:8px 3px 5px;background:#EDEBDF} +.nc>div>div:hover{background:#F2EFDF} +#stamina_readout{cursor:default} +#stamina_readout>div:nth-child(1){width:20px;float:left;position:relative;top:-3px;left:-3px;font-size:12pt;padding-left:15px} +#stamina_readout>div:nth-child(2){width:110px;padding-top:5px;float:left} +#stamina_readout>div:nth-child(3){width:25px;padding-left:5px;float:left} +#stamina_restore{width:180px} +#stamina_restore>div>div:first-child{padding:10px 0 10px 5px !important} +#stamina_restore img{width:135px;height:15px;padding-left:6px} +#level_readout{padding:5px 2px 0 0} +#level_details,#world_text{background:transparent !important;font-size:10pt;font-weight:bold;font-family:verdana;text-align:center} +#level_details>div{width:340px;margin-left:-90px;background:#EDEBDF;opacity:0.99;padding:5px 0 !important;height:48px} +#level_details>div>div:hover{background:inherit !important} +#world_readout{padding:5px 2px 0 0} +#world_text>div{width:250px;margin-left:-30px;background:#EDEBDF;opacity:0.99;padding:5px 0 !important} +#mail_img{padding:0 4px} +#nav_mail{padding-top:4px;float:right !important;width:44px !important} +#nav_mail>div:nth-child(1){float:left;width:20px} +#nav_mail>div:nth-child(2){float:left;width:24px} + +/* filter bar */ +#filterbar{padding:5px 15px;font-size:14px;font-family:verdana;font-weight:bold;display:flex;flex-direction:row;align-items:center;user-select:none} +#filterbar>a{flex-grow:1;text-decoration:none} +#filterbar>a>div{border-radius:9px 9px 0px 0px} +.cfb{padding:5px 1px;border-top:1px solid #EDEBDF;border-bottom:1px solid #5C0D11} +.cfb:hover{color:#9B4E03;} +.cfbs{padding:5px 0;border-top:1px solid #EDEBD !importantF;border:1px solid #5C0D11;border-bottom:1px solid #EDEBDF} + +/* forge */ +#forge_outer{width:1066px;height:600px;padding-top:4px;position:relative;margin:auto} + +/* common non-battle screens */ +#networth{position:absolute;top:675px;left:0px;height:19px;padding:3px;border:1px solid #5C0D12;border-bottom:0;border-left:0;font-size:10pt;font-weight:bold;font-family:verdana} + +/* scrollpane */ +.csps{height:19px;width:99%} +.csps>img{margin:2px} +.csps>img:first-child{float:left} +.csps>img:last-child{float:right} +.cspp{clear:both;overflow:hidden} + +/* equip/char shared */ +#eqch_outer{height:650px;text-align:center;padding-top:4px;position:relative} +#eqch_left{width:840px;height:648px;text-align:center;float:left;position:relative} +#eqch_stats{width:375px;height:748px;float:left;position:relative} +#stats_scrollable{height:641px;padding:0 10px 5px;overflow-y:scroll;scrollbar-gutter:stable;border:2px ridge #5C0D12;border-right:0;margin-top:3px;border-radius:9px 0 0 9px} +#stats_scrollable td:nth-child(1){text-align:right;padding-left:15px;padding-right:3px;min-width:40px} +#stats_scrollable td:nth-child(2){text-align:left} +#stats_scrollable table{margin-bottom:8px} +.spc{padding:10px 0 3px 10px;width:320px} + +/* character */ +#persona_outer{width:530px;text-align:center;padding-top:40px;margin:auto} +#persona_outer img{padding-top:2px} +#persona_outer select{font-family:verdana;font-size:11pt;font-weight:bold;width:280px;margin:auto} +#persona_outer select>option{font-family:verdana;font-size:10pt;font-weight:bold;width:280px} +#persona_select{margin:auto;height:28px} +#persona_select>div:nth-child(1){float:left;width:150px;padding-top:8px;height:20px} +#persona_select>div:nth-child(2){float:left;width:300px} +#persona_select>div:nth-child(3){float:left;width:75px;padding-top:4px} +#persona_new{margin:10px auto 0} +#persona_used{margin:10px auto 0;width:300px;height:10px} +#attr_outer{width:624px;text-align:center;padding-top:40px;margin:auto} +#attr_outer>div:first-child{height:12px} +#attr_table{border-top:1px solid #5C0D11;margin:auto} +#attr_table img{padding-top:2px} +#attr_table>tbody>tr>td{height:16px} +#attr_table>tbody>tr>td:nth-child(1){width:100px} +#attr_table>tbody>tr>td:nth-child(2){width:50px} +#attr_table>tbody>tr>td:nth-child(3){width:35px;padding-left:6px} +#attr_table>tbody>tr>td:nth-child(4){width:45px} +#attr_table>tbody>tr>td:nth-child(5){width:40px;text-align:right} +#attr_table>tbody>tr>td:nth-child(6){width:40px;padding:2px 5px 0 0} +#attr_table>tbody>tr>td:nth-child(7){width:40px;text-align:left} +#attr_table>tbody>tr>td:nth-child(8){width:160px} +#attr_table>tbody>tr:last-child>td:nth-child(2){width:auto;text-align:center} +#attr_table>tbody>tr:last-child>td:nth-child(3){width:auto;padding:0} +#pabonus{width:624px;margin:10px auto 0} +#prof_outer{width:524px;text-align:center;padding-top:40px;margin:auto} +#prof_outer>div{width:260px;float:left;height:150px} +#prof_outer>div>div{height:12px} +#prof_outer table{border-top:1px solid #5C0D11;margin:auto;height:135px} +#prof_outer table>tbody>tr>td:nth-child(1){width:150px;height:18px} +#prof_outer table>tbody>tr>td:nth-child(2){width:80px;height:18px} + +/* itemlist */ +.itemlist{font-family:verdana;font-size:9pt;font-weight:bold;text-align:right} +.itemlist>tbody>tr:first-child>td{padding-top:5px} +.itemlist>tbody>tr>td:first-child{width:300px !important;padding-left:5px} +.itemlist>tbody>tr>td:last-child{width:50px} +.itemlist>tbody>tr>td>div{padding:1px 5px 5px 18px;float:right} +.itemlist>tbody>tr>td>div[onclick]:not([style]):hover{opacity:0.6;color:#0030CB !important} +.it{padding-top:7px} + +/* item inventory */ +#item_outer{width:1066px;margin:auto;height:650px;padding-top:4px;position:relative} +#item_left{width:354px;height:648px;float:left;position:relative} +#item_right{width:650px;height:648px;float:left;position:relative;margin-left:50px} +#item_left>div:first-child,#item_right>div:first-child{height:20px;padding:5px 3px} +#item_list{height:620px;padding:0 3px} +#item_slots{height:620px;padding:0 2px;font-family:verdana;font-size:9pt;font-weight:bold} +#item_slots>div{float:left;width:320px} +.sa{width:300px;height:40px;margin:2px auto;clear:both;text-align:left;position:relative} +.sa>div:first-child{float:left;height:20px;width:24px;padding:13px 22px 8px 2px;text-align:right} +.sa>div:last-child{float:left;min-width:120px;height:40px} +.sa>div:last-child>div{min-width:120px;height:20px;padding:10px 0} +.sa>div:last-child>div:hover{text-decoration:line-through;color:#C2A8A4} +.sd>div:last-child>div{color:#C2A8A4} +.ss,.ss:hover{opacity:0.6;color:#0030CB !important;text-decoration:none !important} + +/* item shop */ +#itshop_outer{width:800px;height:620px;padding-top:4px;margin:auto} +.itshop_pane{width:400px;height:540px;float:left;position:relative;z-index:3} +.itshop_pane>div:first-child{width:350px;height:20px;position:absolute;top:5px;left:13px} +.itshop_pane>div:last-child{width:400px;height:520px;position:absolute;top:0px;left:0px} +#itshop_touter{clear:both;width:320px;height:60px;margin:auto;padding-top:8px} +#itshop_t1{padding-top:2px;height:20px;display:flex;flex-flow:row nowrap;justify-content:center} +#itshop_t1>div{margin:auto} +#itshop_t1>input{margin:auto;font-family:verdana;font-size:10pt;font-weight:bold;text-align:right;padding:1px 2px 2px;background:#F2EFDF !important;border:1px solid #9B4E03 !important;color:#5C0D11 !important} +#itshop_t1>input:nth-child(1),#itshop_t1>input:nth-child(3){width:75px} +#itshop_t1>input:nth-child(6){width:100px} +#itshop_t1>div:nth-child(2),#itshop_t1>div:nth-child(5){padding:4px 10px 0;width:25px} +#itshop_t1>div:nth-child(4),#itshop_t1>div:nth-child(7){padding:5px 2px 0 5px;width:10px} +#itshop_t2{padding:9px 10px 0 0;height:15px;display:flex;flex-flow:row nowrap;justify-content:center} +#itshop_t2>div{margin:auto;font-weight:bold;padding:2px} +#itshop_t2>div:nth-child(1){width:20px} +#itshop_t2>div:nth-child(2){width:30px} +#itshop_t2>div:nth-child(3){width:35px} +#itshop_t2>div:nth-child(4){width:45px} +#itshop_t2>div:nth-child(5){width:50px} +#itshop_t3{padding-top:11px} + +/* equiplist */ +.equiplist{font-family:verdana;font-size:9pt;font-weight:bold;text-align:left} +.eqp{clear:both;position:relative;height:22px;width:540px} +.eqp>div:last-child{padding:1px 5px 5px 0;float:left;position:absolute;top:0px;left:20px} +.eqp>div:last-child:not([onclick]){color:#C2A8A4} +.eqp>div:last-child[onclick]:not([data-locked="1"]):not([style]):hover{opacity:0.6;color:#0030CB !important} +.eqp>div:last-child[data-locked="1"]{cursor:default !important} +.tp{margin-top:7px} +.tp>div:first-child>img{top:8px} + +/* equipment stat readout */ +.showequip{margin:10px auto 0;width:420px;min-height:300px} +.showequip>div{margin:3px auto 0;text-align:center} +.showequip>div:first-child{border-bottom:1px solid #A47C78;font-size:10pt;font-weight:bold;padding:2px 0 4px} +.showequip>div:first-child>div:nth-child(2){font-size:9pt;font-weight:normal;padding:3px 0 2px} +.showequip a{text-decoration:none} +#equip_extended{margin:10px auto 0;border:1px solid #5C0D11;background:#EDEBDF;width:320px;height:400px;padding:3px} +#equip_extended>div:last-child{margin:7px auto 2px;text-align:center} +#equip_extended>div:last-child>div{font-weight:bold} +.eq>div{margin:1px auto;padding:1px;text-align:center;min-height:17px} +.eq span,.ep span{font-weight:bold} +.eq div[title],.ep div[title]{cursor:help} +.eqt,.eqr{font-size:110%;font-weight:bold} +.eqc{font-weight:bold} +.eqs{color:red} +.ex{display:grid;grid-template-columns:repeat(2,1fr);gap:2px 5px;text-align:center;justify-items:center;border-top:1px solid #A47C78;padding-top:2px;text-align:right !important} +.ex>div{width:165px;height:18px} +.ex>div>div:nth-child(1){float:left;width:99px;padding:2px;white-space:nowrap} +.ex>div>div:nth-child(2){float:left;width:45px;padding:2px 0 2px 2px} +.ex>div>div:nth-child(3){float:left;width:6px;padding:2px} +.ep>div:first-child{font-weight:bold;margin:4px auto 0 !important;width:320px !important;grid-column:1/-1} +.ep>div{width:115px;height:18px} +.ep>div>div:nth-child(1){float:left;width:60px;padding:2px;white-space:nowrap;text-align:right} +.ep>div>div:nth-child(2){float:left;width:45px;padding:2px 0 2px 2px;text-align:left} +.ep{display:grid;gap:2px 5px;justify-items:center} +.ep1{grid-template-columns:repeat(1,1fr)} +.ep2{grid-template-columns:repeat(2,1fr)} +.ep3{grid-template-columns:repeat(3,1fr)} +#eu>span{white-space:nowrap;color:red} +#ep>span{white-space:nowrap;color:blue} +#ee>span{white-space:nowrap;color:purple} +.fbr{flex-basis:100%;height:0 !important} + +/* equip popup */ +#popup_box{visibility:hidden;border:1px solid #5C0D11;background:#EDEBDF;opacity:0.95;text-align:left;padding:3px;z-index:5;position:absolute} +#popup_box>div:nth-child(1){text-align:center;font-weight:bold;padding-bottom:3px;margin-bottom:5px;font-size:120%;border-bottom:1px solid #A47C78} +#popup_box>div:nth-child(2){text-align:left;margin-bottom:5px} +#popup_box>div:nth-child(3){font-weight:bold} + +/* ability */ +#ability_outer{width:1066px;text-align:center;padding:4px 0 0 5px;position:relative;margin:auto} +#ability_top{width:99%;margin:10px auto 0;height:130px;position:relative} +#ability_top>div{position:absolute} +#ability_top>div:nth-child(1){height:32px;top:0px;left:6px} +#ability_top>div:nth-child(2){height:32px;top:42px;left:6px} +#ability_top>div:nth-child(3){height:32px;width:145px;top:84px;left:474px} +#ability_top>div:nth-child(4){height:30px;width:200px;left:10px;top:102px} +#ability_top>div:nth-child(5){height:30px;width:200px;left:190px;top:102px} +#ability_top>div:nth-child(6){height:30px;width:100px;left:370px;top:99px} +#ability_bot{width:100%;margin:auto;height:500px;clear:both} +#ability_treelist{float:left;width:145px;height:488px;padding-top:5px;border-right:1px solid #5C0D12} +#ability_treelist>div{height:31px} +#ability_treepane{float:left;width:906px;height:500px;padding:10px 0 0 10px} +#ability_treepane>div{position:relative;clear:both;padding:5px 0 0} +#ability_treepane>div>div{float:left} +#ability_treepane>div>div:nth-child(1){width:184px;padding-top:17px} +#ability_treepane>div>div:nth-child(2){width:48px;margin-left:5px} +#ability_treepane>div>div:nth-child(3){width:500px;margin-left:-3px;padding-top:6px} +#ability_treepane>div>div:nth-child(3)>div{float:left;height:30px} +#ability_treepane>div>div:nth-child(4){width:100px;padding-top:16px} +#ability_treepane>div>div:nth-child(5){width:60px;margin-left:8px;padding-top:13px} +#ability_info{position:absolute;visibility:hidden;left:400px;top:155px;width:680px;height:280px;background:#F2EFDF;border:1px solid #5C0D12;z-index:1;overflow:hidden} +#ability_info>div:nth-child(1){text-align:center;font-weight:bold;font-size:110%;margin:3px auto 0} +#ability_info>div:nth-child(2){margin:4px auto 6px} +#ability_info>div:nth-child(3){display:flex;flex-flow:row nowrap;justify-content:center} +#ability_info>div:nth-child(3)>div:first-child{border-right:1px solid #5C0D11} +#ability_info>div:nth-child(3)>div{flex:1;min-width:335px;height:250px;overflow:hidden} +#ability_info>div:nth-child(3)>div>div:first-child{margin:2px auto 2px;font-weight:bold;border-bottom:1px solid #5C0D11} +#ability_info>div:nth-child(3)>div>div:last-child{margin-top:6px} +#ability_info>div:nth-child(3)>div>div:last-child>div{margin-top:6px} +.ability_slotbar>div{float:left;width:44px;height:46px;position:relative;z-index:3;margin-left:8px} +.ability_slotbox>div{width:44px;height:46px;position:relative;z-index:3} +.ability_slotbar>div>div,div.ability_slotbox>div>div{opacity:1.0;width:34px;height:36px;position:absolute;top:3px;left:5px;z-index:4} +.aw1>div{width:500px} +.aw2>div{width:250px} +.aw3>div{width:166px} +.aw5>div{width:100px} +.aw7>div{width:71px} +.aw10>div{width:50px} + +/* lottery */ +#lottery_eqname{margin:5px auto 0;width:440px;font-family:verdana;font-size:10pt;font-weight:bold} +#lottery_eqstat{margin:10px auto 0;border:1px solid #5C0D11;background:#EDEBDF;width:420px;height:320px;opacity:0.9;text-align:left;padding:3px} + +/* monster lab */ +#monster_outer{width:1066px;height:650px;padding-top:4px;position:relative;margin:auto;font-family:verdana;font-size:10pt;font-weight:bold} +#monster_nav{width:1000px;height:32px;margin:auto} +#monster_nav>div:first-child,#monster_nav>div:last-child{width:100px;padding-top:9px;float:left} +#monster_nav>div:nth-child(2){width:795px;padding-top:8px;float:left} +#monster_head{width:1066px;padding-top:4px;} +.msl{border:2px ridge #5C0D12;width:996px;height:26px;margin:2px auto} +.msl:hover{background:#F2EFDF} +.msl>div:nth-child(1){float:left;width:25px;padding:8px 10px 0 0} +.msl>div:nth-child(2){float:left;width:300px;padding:8px 0 0 0} +.msl>div:nth-child(3){float:right;width:90px;padding:8px 0 0 6px} +.msl>div:nth-child(4){float:right;width:100px;padding:8px 0 0 0} +.msl>div:nth-child(5)>div{background-image:url(/y/monster/hungerbar.png)} +.msl>div:nth-child(6)>div{background-image:url(/y/monster/moralebar.png)} +.msn{float:right;width:200px;height:20px;position:relative} +.msn>div{position:absolute;top:2px;left:0px;z-index:2;height:22px;width:200px} +.msn>div>img{border:0;position:absolute;top:7px;left:64px;height:8px} +#monster_list{width:1076px;height:565px;margin:auto} +#monster_actions{width:1000px;margin:auto;font-size:10pt;font-family:verdana;font-weight:bold;display:flex;flex-flow:row nowrap;justify-content:center} +#monster_actions>div{width:300px;height:70px;margin:auto} +#monster_actions>div>div{margin:2px auto} +#monster_actions>div:nth-child(2)>div:last-child{padding-top:12px} +#monsterstats_outer{width:1066px;height:660px;padding-top:4px} +#monsterstats_rename{width:900px;padding-top:10px;height:10px;margin:auto} +#monsterstats_left{width:800px;float:left;padding-top:20px} +#monsterstats_top>div{width:200px;height:180px;float:left;margin:0 23px} +#monsterstats_top>div:first-child{display:flex;flex-flow:column nowrap;justify-content:center;align-items:center} +#monsterstats_top>div:first-child>div{padding-bottom:20px} +#monsterstats_rendel{height:16px;padding:0 !important} +#monsterstats_rendel>img:first-child{padding:0 5px 0 0} +#monsterstats_rendel>img:last-child{padding:0 0 0 5px} +.mcr>div{width:200px;height:12px;margin:0 auto 5px;border-bottom:1px solid #5C0D11} +.mcr>table{width:200px;height:160px;margin:auto} +.mcr>table>tbody>tr>td:nth-child(1){width:50px;height:18px;text-align:left} +.mcr>table>tbody>tr>td:nth-child(2){width:50px;height:18px;text-align:left} +.mcr>table>tbody>tr>td:nth-child(3){width:70px;height:18px} +#monsterstats_right{width:200px;float:right;margin-right:65px;padding-top:20px} +#monsterstats_right>div:first-child{width:200px;height:12px;margin:auto;border-bottom:1px solid #5C0D11;padding-bottom:1px} +.mst{width:195px;height:17px;padding-top:8px} +.mst>div:first-child{width:140px;float:left} +.mst>div:last-child{width:55px;float:left} +#upgrade_text{width:800px;padding-top:28px;margin:auto;height:14px;clear:both} +#monsterstats_chaos{width:800px;height:340px;margin:26px auto 0 20px} +#chaosupg{text-align:left;margin:auto} +#chaosupg>tbody>tr>td:nth-child(1){width:120px;padding:2px 10px 0 0} +#chaosupg>tbody>tr>td:nth-child(2){width:160px;padding:2px 0 0} +#chaosupg>tbody>tr>td:nth-child(3){width:20px;padding:3px 6px 0 0} +#chaosupg>tbody>tr>td:nth-child(4){width:400px;padding:0 0 1px} +.mcu0,.mcu1,.mcu2{float:left;width:8px;height:15px;background-repeat:no-repeat} +.mcu0{background-image:url(/y/monster/upg0.png)} +.mcu1{background-image:url(/y/monster/upg1.png)} +.mcu2{background-image:url(/y/monster/upg2.png)} +#monsterskills{text-align:left;margin:20px auto 10px} +#monsterskills th{border-bottom:1px solid #5C0D11} +#monsterskills>tbody>tr>td:nth-child(1){width:200px;height:20px} +#monsterskills>tbody>tr>td:nth-child(1)>input{border-color:#C2A8A4;font-size:11pt;font-weight:bold;width:190px;height:17px;margin-right:5px} +#monsterskills>tbody>tr>td:nth-child(3){width:125px;height:30px} +#monsterskills>tbody>tr>td:nth-child(2),#monsterskills>tbody>tr>td:nth-child(4){width:125px;height:30px;padding-top:5px} +#monsterskills>tbody>tr>td:nth-child(5),#monsterskills>tbody>tr>td:nth-child(6){width:75px;height:30px;padding-top:5px} +.msp{position:relative} +.msp>div:first-child{position:absolute;height:25px;top:-12px;border:1px solid #9B4E03;background:#F2EFDF;z-index:2} +.msp>div:first-child>div{width:125px;height:25px;float:left;padding-top:6px} +.msp>div:last-child{width:125px;height:25px;position:absolute;top:-5px} +#monstercreate_outer{width:808px;height:650px;padding-top:4px;position:relative;margin:auto;font-family:verdana;font-size:10pt;font-weight:bold} +#monstercreate_left{width:254px;height:640px;float:left} +#monstercreate_left>div{width:200px;height:20px;text-align:right;padding-top:28px} +#monstercreate_right{width:554px;height:640px;float:left} +#monstercreate_info{width:554px;text-align:left;padding-top:25px;height:370px} +#monstercreate_info>ul{margin:4px 0} +#monstercreate_stats{width:480px;padding-top:20px;padding-left:30px; height:140px} +#monstercreate_stats>div{width:158px;float:left;height:138px} +#monstercreate_stats>div>div:first-child{width:158px;margin:auto;height:12px;border-bottom:1px solid #9B4E03} +#monstercreate_stats>div:nth-child(1)>table{width:150px} +#monstercreate_stats>div:nth-child(2)>table{width:100px} +#monstercreate_stats>div:nth-child(3)>table{width:135px} +.mcs{margin:auto;padding-top:5px} +.mcs>tbody>tr>td{height:16px} +.mcs>tbody>tr>td:last-child{width:40px} +#monstercreate_patk{width:480px;padding:20px 0 0 30px;height:50px} +#monstercreate_patk>div:first-child{height:12px} +#monstercreate_patk>div:last-child{margin:auto;padding-top:10px} +#monstercreate_patk>div:last-child>div{float:left;width:90px} + +/* training */ +#train_outer{margin:25px auto 0} +#train_progress{text-align:center;width:465px;margin:auto} +#train_progress>div:nth-child(1)>div{float:left;height:20px} +#train_progress>div:nth-child(1)>div:nth-child(1){width:25px;text-align:right;padding:3px} +#train_progress>div:nth-child(1)>div:nth-child(2){width:400px;background-color:#E3E0D1;border:1px solid #5C0D12;text-align:left} +#train_progress>div:nth-child(1)>div:nth-child(3){width:25px;text-align:left;padding:3px} +#train_progress>div:nth-child(3){font-weight:bold;padding-top:6px} +#train_progbar{height:20px} +#train_progcnt{font-weight:bold} +#train_table{text-align:left;margin:15px auto 0;height:500px} +#train_table td{border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11} +#train_table>tbody>tr>td:nth-child(1){width:160px} +#train_table>tbody>tr>td:nth-child(2){width:300px;padding:0 5px 0 20px} +#train_table>tbody>tr>td:nth-child(3){width:120px} +#train_table>tbody>tr>td:nth-child(4){width:60px} +#train_table>tbody>tr>td:nth-child(5){width:35px} +#train_table>tbody>tr>td:nth-child(6){width:10px} +#train_table>tbody>tr>td:nth-child(7){width:35px} +#train_table>tbody>tr>td:nth-child(8){width:80px;text-align:center} + +/* settings */ +#settings_outer{height:668px;overflow:auto;font-size:9pt} +#settings_outer>div{width:650px;text-align:justify;margin:auto} +.settings_block{padding-top:20px;clear:both} +.settings_block>div:first-child{width:400px;height:12px} +.settings_block p{padding:2px 5px} +#settings_apply{padding-top:10px;text-align:center} +#settings_challenge,#settings_title{margin:10px auto 5px} +#settings_challenge td,#settings_title td{border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11;height:27px} +#settings_challenge>tbody>tr>td:nth-child(1){width:150px} +#settings_challenge>tbody>tr>td:nth-child(2){width:100px} +#settings_challenge>tbody>tr>td:nth-child(3){width:250px} +#settings_challenge>tbody>tr>td:nth-child(4){width:25px} +#settings_title>tbody>tr>td:nth-child(1){width:200px} +#settings_title>tbody>tr>td:nth-child(2){width:300px} +#settings_title>tbody>tr>td:nth-child(3){width:25px} +#settings_cfont{padding-left:30px} +#settings_quickbar{position:relative} +#settings_quickbar>table{width:260px;float:left;margin-left:40px} +#settings_autocast{margin-left:20px} +#settings_autosalvage{margin-left:20px} +#settings_autosalvage td,#settings_autocast td,#settings_quickbar td{padding:4px} +#settings_autosalvage td:first-child,#settings_autocast td:first-child,#settings_quickbar td:first-child{text-align:right;padding:4px 5px 0 0} + +/* shrine */ +#shrine_outer{width:910px;height:660px;padding-top:4px;margin:auto} +#shrine_left{width:404px;height:640px;float:left} +#shrine_left>div:first-child{height:20px;padding-top:10px} +#shrine_left>div:last-child{height:620px} +#shrine_right{width:504px;height:640px;float:left;font-family:verdana;font-size:10pt;font-weight:bold} +#shrine_right>div:first-child{padding:50px 0 10px 30px;text-align:left} +#shrine_right>div:last-child{padding:10px 0 0} +#accept_equip{padding:10px} +#accept_equip>div{padding:7px} + +/* mooglemail */ +#mmail_outer{width:1220px;height:650px;padding-top:10px;margin:auto} +#mmail_outer>div:first-child{height:20px;margin:2px auto 10px} +#mmail_left{width:604px;height:625px;float:left} +#mmail_left>table{margin:15px auto 5px} +#mmail_left>table>tbody>tr>td:first-child{text-align:right;width:100px;padding-top:3px} +#mmail_left>table input{border-color:#C2A8A4;height:17px;width:496px;font-family:verdana;font-size:10pt;font-weight:bold} +#mmail_left>textarea{border-color:#C2A8A4;width:585px;height:500px;font-family:verdana;font-size:10pt;font-weight:bold} +#mmail_showbuttons{height:20px;padding-top:8px} +#mmail_right{width:563px;height:625px;float:left;padding:5px 0 0 30px} +#mmail_attachpanes{height:585px;font-family:verdana;font-size:10pt;font-weight:bold} +#mmail_attachpanes input{font-family:verdana;font-size:10pt;font-weight:bold;width:100px;text-align:right} +#mmail_attachitem,#mmail_attachequip{height:570px;position:relative} +#mmail_attachequip>div:nth-child(1),#mmail_attachitem>div:nth-child(1){height:20px;width:450px;position:absolute;top:5px;left:50px} +#mmail_attachequip>div:nth-child(2){height:550px;width:550px;position:absolute;top:0px;left:0px} +#mmail_attachitem>div:nth-child(2){height:520px;width:550px;position:absolute;top:0px;left:0px} +#mmail_attachitem>div:nth-child(3){height:25px;width:550px;position:absolute;top:535px;left:0px} +#mmail_attachitem>div:nth-child(3)>img{position:relative;top:2px} +#mmail_attachinfo{text-align:justify} +#mmail_attachcount{width:540px;padding-top:10px;height:20px !important} +#mmail_attachremove{width:540px;text-align:center;padding-top:3px} +#mmail_attachlist{padding-top:5px;width:540px} +#mmail_attachlist>div{height:42px;display:flex;flex-flow:row nowrap;justify-content:center;align-items:center} +#mmail_currentcod{width:540px;height:20px;padding-top:20px} +#mmail_setcod{width:540px;height:20px;text-align:center;padding-left:40px} +#mmail_setcod>img{position:relative;top:2px} +#mmail_attachlist>div>div{cursor:default} +#mmail_attachlist>div>div:first-child{margin:auto;width:360px;padding:0 0 0 80px;text-align:center} +#mmail_attachlist>div>div:last-child{margin:auto;height:15px;width:80px;padding:1px 10px 0} +#mmail_attachcredits,#mmail_attachhath{padding-top:25px} +#mmail_attachcredits>div,#mmail_attachhath>div{height:30px} +#mmail_attachcredits img,#mmail_attachhath img{position:relative;top:2px} +#mmail_attachbuttons{height:20px;margin:15px auto 5px} +#mmail_attachhelp{padding:10px 30px} +#mmail_attachhelp>p{padding:5px 2px} +#mmail_fin{width:604px;height:625px;float:left;padding-top:215px} +#mmail_fin>div{height:30px} +#mmail_outerlist{height:580px} +#mmail_list{text-align:left;margin:25px auto 0;width:1000px} +#mmail_list>tbody>tr>th{border-bottom:1px solid #5C0D11;height:20px} +#mmail_list>tbody>tr>td{border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11;height:24px;font-size:10pt;font-weight:bold} +#mmail_list>tbody>tr>td:nth-child(1){width:150px} +#mmail_list>tbody>tr>td:nth-child(3){width:130px} +#mmail_list>tbody>tr>td:nth-child(4){width:120px} +#mmail_list>tbody>tr[onclick]:hover{background:#F2EFDF} +#mmail_nnm{padding-top:20px;border:0 !important} +#mmail_pager{height:20px;width:1000px;margin:auto;font:bold 12px verdana} +#mmail_pager>div:first-child{float:left;width:80px} +#mmail_pager>div:last-child{float:right;width:80px} +#mmail_pager>div>a{text-decoration:none} +#mmail_pager>div>span{color:#C2A8A4} + +/* battleinit */ +#arena_list{margin:20px auto 0px} +#arena_list>tbody>tr>td{height:33px;border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11;position:relative} +#arena_list>tbody>tr>td>div{height:20px} +#arena_list>tbody>tr>td>div:first-child,#grindfest>div>div:first-child{z-index:1} +#arena_list>tbody>tr>td>div:last-child,#grindfest>div>div:last-child{z-index:2} +#arena_list>tbody>tr>th{padding-bottom:6px} +#arena_list>tbody>tr>th:nth-child(1){width:375px} +#arena_list>tbody>tr>th:nth-child(2){width:120px} +#arena_list>tbody>tr>th:nth-child(3){width:95px} +#arena_list>tbody>tr>th:nth-child(4){width:85px} +#arena_list>tbody>tr>th:nth-child(5){width:90px} +#arena_list>tbody>tr>th:nth-child(6){width:115px} +#arena_list>tbody>tr>th:nth-child(7){width:117px} +#arena_list>tbody>tr>th:nth-child(8){width:90px} +#arena_tokens{margin:20px auto 0;width:500px;height:12px} +#grindfest{margin:200px auto 0;width:730px} +#grindfest>div{position:relative;width:233px;margin:5px auto} +#grindfest>div>img{position:absolute;top:2px;left:0px;width:233px;height:20px} +#itemworld_outer{width:1066px;height:660px;padding-top:10px;margin:auto} +#itemworld_left{width:604px;height:540px;float:left} +#itemworld_left>div{width:598px;height:580px} +#itemworld_right{width:460px;height:540px;float:left;text-align:justify} +#itemworld_right>div:first-child{padding:50px 20px 30px 10px} +#itemworld_right>div:last-child{text-align:center;padding-top:10px} +#towerstart{width:520px;margin:160px auto 0} +#towerstart>p{padding:5px 0} +#towerstart>div{padding:5px 0} + +/* market */ +#market_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:100%} +#market_left,#market_itemlist,#market_itempage,#market_itemfilter{user-select:none} +#market_left{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#market_left>div,#market_left>a>div{border-right:1px solid #5C0D11} +#market_left>div:last-of-type{flex-grow:1} +#market_left a,#market_right a{text-decoration:none} +#market_right{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;flex-grow:1} +#market_xfer{text-align:center;font-size:10pt;white-space:nowrap;padding:10px 10px 20px 0} +#market_xfer>form>div{margin:5px auto} +#market_xfer>form>div:nth-child(2){padding-left:5px;margin-bottom:9px} +#market_xfer input[type="submit"]{width:120px} +#market_xfer input[type="text"]{width:105px;font-size:12pt;font-weight:bold;text-align:right;border-radius:5px;margin-left:8px} +.credit_balance{margin-top:10px} +.credit_balance>div:last-child{padding:3px 0 5px} +.market_tab{padding:15px 5px;font-weight:bold;font-size:14px;font-family:verdana;cursor:pointer;border-radius:9px 0 0 9px;border:1px solid transparent} +.market_tab:hover{color:#9B4E03} +.market_cur{border:1px solid #5C0D11;border-right:1px solid transparent !important} +#market_itemlist{flex-grow:1;flex-shrink:1;overflow:auto} +#market_itemlist>table{min-width:800px;text-align:right;margin:auto;font-family:verdana;font-size:10pt;font-weight:bold;border-collapse:separate;border-spacing:0} +#market_itemlist tr:hover:not(:first-child),.market_itemorders tr[onclick]:hover{color:#9B4E03;background:linear-gradient(to right,#605A5A00 0%, #605A5A0A 5%, #605A5A0A 95%,#605A5A00 100%)} +#market_itemlist th{border-bottom:1px solid #5C0D11;padding:10px 0 10px 20px;position:sticky;top:0;background:#EDEBDF} +#market_itemlist th:first-child{min-width:200px} +#market_itemlist td{height:30px;border-bottom:1px solid #5C0D1136} +#market_itemlist td:nth-child(2), #market_itemlist td:nth-child(3){padding-right:20px} +#market_itemlist td:last-child,#market_itemlist th:last-child{padding-right:20px} +#market_itemlist td:not(:first-child){font-weight:normal} +#market_itemlist>p{font-size:9pt;font-style:italic;padding:10px} +#market_itemlist tr[data-orderdisabled="1"]{color:#e63e3e} +#market_itemfilter{padding:5px 20px;display:flex;flex-direction:row;align-items:center;justify-content:center;font-weight:bold;font-size:10pt} +#market_itemfilter>div{padding:0 20px} +#market_itempage{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;flex-grow:1;font-weight:bold} +#market_itempage>div:nth-child(4){padding:10px 0 5px;font-size:10pt;font-family:verdana} +#market_itempage>div:first-child,#market_itempage>div:last-child{padding:15px 0;font-size:10pt;font-family:verdana} +#market_itemheader{display:flex;flex-direction:row;align-items:center;justify-content:center} +#market_itemheader>div:nth-child(2){width:400px} +#market_iteminfo{padding:0 0 15px;font-weight:normal;font-size:9pt} +#market_iteminfo span{font-weight:bold} +#market_itembody{flex-grow:1;display:flex;flex-direction:row;align-items:stretch;justify-content:space-around;flex-wrap:nowrap} +#market_itemsell,#market_itembuy{display:flex;flex-direction:column;align-items:stretch;justify-content:start} +#market_itemhistory{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;font-size:9pt} +#market_itemhistory td,#market_itemhistory th{padding:4px 6px} +#market_itemhistory td{text-align:right;height:16px} +#market_itemhistory th{text-align:center;border-bottom:1px solid #5C0D1136} +#market_itemhistory td:not(:first-child){font-weight:normal} +#market_itemhistory p{font-weight:normal;font-style:italic;font-size:8pt;padding:6px} +#market_itemhistory>div:not(:first-child){padding-top:3px} +#buyorder_update[data-orderdisabled="1"]:enabled{color:#e63e3e;border-color:#e63e3e} +#buyorder_update[data-orderdisabled="1"]:disabled{color:#ec9999;border-color:#ec9999} +.market_placeorder{margin:10px;font-size:10pt} +.market_placeorder span{font-weight:bold} +.market_placeorder td{padding:5px 2px;min-width:50px} +.market_placeorder td:nth-child(1){padding-top:6px;text-align:right} +.market_placeorder td:nth-child(3){padding-top:6px;text-align:left} +.market_placeorder td:nth-child(2){text-align:center} +.market_placeorder tr:nth-child(3) td,.market_placeorder tr:nth-child(4) td,.market_placeorder tr:nth-child(5) td{text-align:center;padding:7px 0 2px} +.market_placeorder input[type=number],.market_placeorder input[type=text]{width:70px;height:18px;border-width:1px 0;padding:2px 4px;margin:0;border-radius:0;text-align:right;vertical-align:top} +.market_placeorder input[type=button]{width:24px;height:24px;border-width:1px;margin:0} +.market_placeorder input[type=button]:nth-child(1){border-radius:50% 0 0 50%;padding:0 0 0 2px} +.market_placeorder input[type=button]:nth-child(3){border-radius:0 50% 50% 0;padding:0 2px 0 0} +.market_itemorders{padding-top:10px} +.market_itemorders p{font-weight:normal;font-style:italic;padding:6px} +.market_itemorders table{min-width:100px;margin:5px auto 0;font-weight:normal;font-size:9pt;font-weight:bold} +.market_itemorders th{padding:4px 8px;text-align:right;border-bottom:1px solid #5C0D1136} +.market_itemorders td{padding:8px;text-align:right} +.market_itemorders tr[data-orderconflict="1"]{color:#e63e3e} +.market_itemorders tr[data-orderconflict="1"]:hover{color:#ce3131} +.market_itemorders tr[data-orderactive="1"]{font-style:italic} +.market_itemorders tr[data-orderinsufficient="1"]{font-weight:normal} +.market_itemorders span,#market_itemhistory span,#market_tradelog span{opacity:0.3} +#market_recent{margin:8px auto 0} +#market_recent td>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-align:left;max-width:100px} +#market_recent td>div>span,#market_tradelog td:nth-child(2)>span{font-style:italic} +#market_price{margin:8px auto} +#market_accountlog{overflow:auto} +#market_accountlog table,#market_tradelog table{margin:0 auto;text-align:left;font-size:9pt} +#market_accountlog td,#market_tradelog td{padding:3px 5px} +#market_accountlog th,#market_tradelog th{padding:5px 5px 3px;position:sticky;top:0;background:#EDEBDF} +#market_accountlog td:nth-child(1),#market_tradelog td:nth-child(1){font-weight:bold} +#market_accountlog td:nth-child(2),#market_accountlog td:nth-child(3){text-align:right} +#market_accountlog th:nth-child(2),#market_accountlog th:nth-child(3){text-align:center} +#market_tradelog_top,#market_tradelog_bot{font-weight:bold;font-size:10pt;font-family:verdana;padding:5px} +#market_tradelog{flex-grow:1;flex-shrink:1;overflow:auto} +#market_tradelog td:nth-last-child(1),#market_tradelog td:nth-last-child(2),#market_tradelog td:nth-last-child(3){text-align:right} +#market_tradelog th:nth-last-child(1),#market_tradelog th:nth-last-child(2),#market_tradelog th:nth-last-child(3){text-align:center} + +/* equipment */ +#eqsh{height:20px;text-align:center;padding-top:10px} +#eqsl{height:20px;margin:auto;position:relative} +#eqsl>div{float:left} +#eqsb{height:608px;overflow:auto;position:relative} +.eqb{width:650px;height:20px;margin:4px auto;padding:8px 0 14px;clear:both;text-align:left;position:relative;border:1px solid #5C0D11;border-radius:9px;user-select:none} +.eqb:not(.eqdisabled):hover{background:#F2EFDF;border:1px solid #9B4E03} +.eqb>div{clear:both;width:650px;margin:auto;text-align:center;font-size:10pt;font-weight:bold} +.eqb>div:last-child{padding-top:2px} +.eqempty{color:#9C9C9C} +.eqdisabled{border-color:#9C9C9C !important;color:#9C9C9C !important} +.eqselected{border:2px solid !important;padding:4px 0 !important} +.eqtplabel td{padding-left:10px !important;font-style:italic} + +/* armory */ +#armory_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:100%;user-select:none} +#armory_left{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;padding-top:50px} +#armory_left>div,#armory_left>a>div{border-right:1px solid #5C0D11} +#armory_left>div:last-of-type{flex-grow:1} +#armory_left a,#armory_right a{text-decoration:none} +#armory_right{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;flex-grow:1} +.armory_tab{padding:15px 5px;font-weight:bold;font-size:14px;font-family:verdana;cursor:pointer;border-radius:9px 0 0 9px;border:1px solid transparent} +.armory_tab:hover{color:#9B4E03} +.armory_cur{border:1px solid #5C0D11;border-right:1px solid transparent !important} +#equipselect_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:630px;width:100%} +#equipselect_left{padding:10px 20px;background:#EDEBDF;flex:1;display:flex;flex-direction:column;align-items:stretch} +#equiplist{overflow-y:scroll;scrollbar-gutter:stable;flex:1;padding-right:5px} +#equiplist tr[data-eqprotect]{opacity:0.5} +#equipselect_left table{width:100%;background:#EDEBDF} +#equipselect_left td,#equipselect_left th{padding:6px 2px;text-align:left} +#equipselect_left th{font-style:italic;font-weight:normal;font-size:9pt} +#equipselect_left td{font-size:10pt;font-weight:bold;border-top:1px solid #5C0D1136;border-bottom:1px solid #5C0D1136} +#equipselect_left tr:not(.eqselall):not(.eqtplabel):hover,tr[data-hover="1"]{color:#9B4E03;background:linear-gradient(to right,#605A5A00 0%, #605A5A0A 5%, #605A5A0A 95%,#605A5A00 100%)} +#equipselect_left td:not(:first-child){text-align:right;padding-right:5px} +#equipselect_right{width:440px;display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#eqback{font-weight:bold;text-align:left;font-size:9pt;margin:0 0 8px 2px} +#equipinfo{flex:1} +#equipblurb{text-align:justify;font-size:10pt;padding:0 10px 0 3px} +#equipblurb table{margin:10px 0 0 20px} +#equipblurb td{padding:3px;text-align:right} +#equipblurb td:not(:first-child){font-weight:bold} +#equipblurb a{font-weight:bold} +#equipaction{padding-bottom:7px} +#equipaction label{text-align:left;margin:5px 0 5px 15px;font-weight:bold;font-size:9pt} +#equipaction p{font-weight:bold;font-size:9pt} +#equipaction td:first-child{font-weight:bold;text-align:right} +#equipaction td[data-inactive="1"]{filter:saturate(0);opacity:0.5} +.eqaction{width:250px;margin:auto} +.eqorganize{margin:auto} +.eqorganize td{min-width:54px} +.eqorganize span{font-size:12pt} +.eqmodify td:first-child{font-size:12pt} +#equipsubmit{margin:10px auto 5px} +#itemlist{margin:5px auto;font-size:9pt;font-weight:bold;overflow-y:scroll;scrollbar-gutter:stable;flex-shrink:1} +#itemlist>table{margin:auto} +#itemlist th,.eqils td{padding:2px;text-align:center} +.eqilm td{padding:2px;text-align:left} +.eqilm td:first-child{min-width:40px;text-align:right;padding-left:0} +.eqilm td:last-child{min-width:50px} +#eqcredits{margin:auto} +#eqcredits td{width:100px;font-weight:bold;font-size:9pt} +#eqcredits td:nth-child(2){width:120px;text-align:center} +#eqcredits td:nth-child(3){text-align:left} +#equipmodify_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:630px;width:100%} +#equipmodify_left{padding:10px 20px;flex:1} +#equipmodify_left>p{font-weight:bold;font-size:9pt} +#equipmodify_middle{padding:10px 20px;flex:1;display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#equipmodify_middle>div{flex:1} +#equipmodify_right{width:440px;display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#equipmodify_right button{width:165px;margin:5px;white-space:nowrap} +#equipmodify_right table{margin:auto} +#charmslots{margin:-7px 0 -1px} +.eqcharm{width:300px;height:52px;margin:9px auto;padding:6px 1px 5px;border:1px solid #5C0D11;border-radius:9px;user-select:none} +.eqcharm:not(.eqdisabled):hover{background:#F2EFDF;border:1px solid #9B4E03} +.eqcharm>div{text-align:center;font-size:10pt;font-weight:bold} +.eqcharm>div:last-child{padding-top:2px} +.eqcharm p{padding:1px} +.eqcharm table{margin:2px auto 0;text-align:center;font-size:10pt;font-weight:bold;width:280px} +.eqcharm td:first-child{text-align:left;padding-left:50px} +.eqcharm td:last-child{text-align:right;padding-right:50px} +.chsel{border:2px solid !important;padding:5px 0 4px !important} +.chdmg{text-decoration:line-through} +.eqce{color:#9C9C9C;margin-top:7px} +#equpgrade>p,#eqbaserolls>p{font-weight:bold;font-size:9pt} +#equpgrade>p:first-child,#eqbaserolls>p:first-child{font-size:10pt} +#equpgrade>button,#eqbaserolls>button{width:175px;margin:5px} +.upgrmats,#eqbaserolls>table{margin:auto} +.upgrmats td,#eqbaserolls td{font-size:9pt;padding:3px 2px;text-align:left} +.upgrmats td:first-child,#eqbaserolls td:first-child{text-align:right} +.eqred{color:#FF0000} +#confirm_body .upgrmats{font-weight:bold} +#eqbaserolls td:last-child{text-align:left;padding-right:5px;font-weight:bold} +#confirm_outer{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#EDEBDFCC;z-index:9999;display:flex;flex-flow:column;justify-content:center;align-items:center;backdrop-filter:blur(1px)} +#confirm_inner{background:#EDEBDF;border:2px solid;border-radius:9px} +#confirm_inner>div{width:500px;padding:5px;text-align:center} +#confirm_header{display:flex;flex-flow:row;justify-content:start;border-bottom:1px solid} +#confirm_header>div:first-child{text-align:left;flex-grow:1;font-size:12pt;padding-top:3px} +#confirm_header>div:last-child{width:30px;text-align:right;font-size:14pt;padding-right:5px} +#confirm_body{font-size:10pt} +#confirm_body>input[type="text"]{width:95%;margin:5px 0} +#confirm_body>button{margin:10px} +#confirm_body>table{margin:auto} +#confirm_body label{position:relative;left:3px;margin:0 10px} +#eqselcharm{overflow-y:scroll;scrollbar-gutter:stable} +#eqselcharm table,#eqselpouch table{width:290px} +#eqselcharm td,#eqselpouch td{font-size:10pt;font-weight:bold;text-align:left;padding:5px 0} +#eqselcharm td:last-child,#eqselpouch td:last-child{text-align:right} +#eqselpouch{flex:0 !important} +#equipmodify_outer tr[data-disabled]{color:#9C9C9C !important;border-color:#9C9C9C !important} +#setcharm{margin-bottom:0} +#cdreason{font-weight:bold;padding:0;margin:0 0 3px} +#charmats td:first-child,#iwinfo td:first-child{text-align:right;padding-right:5px} +#charmats td:last-child{text-align:left} +#iwinfo{margin:0 auto 5px !important} +#iwinfo td{padding:3px} +#iwinfo td:last-child{text-align:left;font-weight:bold} +#armory_repaircosts{font-weight:bold;margin:0 auto 3px !important} +#armory_repaircosts td{padding:3px} +#fuseinfo{margin:3px auto 0 !important} +#fuseinfo td:nth-child(1){text-align:right} +#fuseinfo td:nth-child(2){padding:1px 2px 1px 5px} +#fuseinfo td:nth-child(3){font-weight:bold;padding:1px 5px 1px 2px} +#fuseinfo td:nth-child(4){text-align:left} \ No newline at end of file diff --git a/references/The HentaiVerse - Character_files/inc_d.png b/references/The HentaiVerse - Character_files/inc_d.png new file mode 100644 index 0000000000000000000000000000000000000000..3ebed8e144f681c852f18292fafe4aa42b2e9da3 GIT binary patch literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^B0wy_!2%@r2u_~>q&N#aB8wRqxP?KOkzv*x37{ZL zx}&cn1H;C?n%{wwfqaEzk04(LhALGChK6PahM)g|^h*YYQUeBtR|yOZRx=nF#PcV` zA9Vw&t@U(q45_$vn158+X4Jdc&K~7|3$+ z1j)78&qol`;+ E0Aig~_5c6? literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/persona_create_blank.png b/references/The HentaiVerse - Character_files/persona_create_blank.png new file mode 100644 index 0000000000000000000000000000000000000000..1a60eaa7f4382ea5ad3f4fe8bcb1d38403c8d5da GIT binary patch literal 5374 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 literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/persona_create_clone.png b/references/The HentaiVerse - Character_files/persona_create_clone.png new file mode 100644 index 0000000000000000000000000000000000000000..43ce44907f9fe25af0dae20bb88163fad08482d8 GIT binary patch literal 5747 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 literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/rename.png b/references/The HentaiVerse - Character_files/rename.png new file mode 100644 index 0000000000000000000000000000000000000000..d63e2d3bbf4d6d43be11425bd44a007e7d30ccb0 GIT binary patch literal 5538 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 literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Character_files/sticon4.gif b/references/The HentaiVerse - Character_files/sticon4.gif new file mode 100644 index 0000000000000000000000000000000000000000..ffaf6a5b839b94ddf490c65924becf2454499b2b GIT binary patch literal 690 zcmV;j0!{r#Nk%w1VH5xq0OouE_}d=-OY z^pb^R?(y>Z+aKb$5_o4ko^}f5yA*e3I`-EcUr7}IAt7~RHq_F|qnUo8mU{Bh8}QB= z=DZYQO&Qgp3(?QT*x1qJx)krs8SBOu>B1J}ycFiY7UH)Pt&bAe*U+bm5$?g32cegHb73=PP#mY8gus#uY)%Kgj0xDM4b!j{rh*OKuMp|S8QZQ9 z-mwsz3u#m!Z&V5M)E#V73cHF4)uIf|subkB z7O;~NX;mQ5n+naE3)!p?_0}CPBnv|{5dY>P_4)k(0000000000A^8LW004XdEC2ui z02BZe000O7fP8|3goTEL3RXrt9UWX+Jqm|{2Lx^^I4f0gFj)i#haeU&X#fHO0C*d6 zTNWUN2y`|81pxyC0R;dWBrIzPgFaw$4PttFd&$QQ2^=m941zjTZ3W1C$jB{v6C+PF zAA&1A*=;#9i2_Z)hf(B0W_0HYPN5()u8RY^dQzznt9fN!x zESX^Kn8k}Dpd<+*C_|J44fNz0Nphqf4q?n(5%htL2@S_en$+{94iYbd7%X5yVnfUd z74jUL;z0 + + + + The HentaiVerse + + + + + + + + + +
+
+
+ +
+ +
+ +
+
+ +
+
+
+
Exquisite Estoc of Slaughter
+
+
+
+
(unavailable with current mainhand)
+
+
+
+
Superior Shade Helmet of the Fleet
+
+
+
+
Exquisite Leather Breastplate of the Thunder-child
+
+
+
+
Superior Jade Shade Gauntlets of the Fleet
+
+
+
+
Magnificent Jade Drakehide Leggings of the Spirit-ward
+
+
+
+
Magnificent Savage Shade Boots of the Arcanist
+
+
+
+
+
+ + + + +
2138Piercing Damage
227.7Accuracy
1.96xCrit Multiplier
6.1%Attack Speed Bonus
71.3%Domino Strike on hit
+
+ + + + + + +
459.1Damage Bonus
102.0Accuracy
1.50xCrit Multiplier
+24.5%Mana Cost Modifier
0.0%Cast Speed Bonus
+ +
+ + + + + + +
5980Base Health
505Base Mana
335Base Spirit
11Mana Regen
3Spirit Regen
+ +
+ + + + + +
174.4Evade
150.2Block
196.8Parry
425.9Resist
+ +
+ + + +
49.0Interference
32.1Burden
+ +
+ + + +
45.8%Physical
40.9%Magical
0.0%Fire
0.0%Cold
23.0%Elec
34.3%Wind
0.0%Holy
23.3%Dark
22.9%Crushing
24.1%Slashing
6.9%Piercing
+ +
+ +
0.0%Fire
0.0%Cold
0.0%Elec
0.0%Wind
0.0%Holy
0.0%Dark
+ +
+ +
303.0Strength
245.8Dexterity
224.2Agility
189.7Endurance
156.8Intelligence
166.8Wisdom
+ +
+ +
45.9One-handed
203.3Two-handed
45.9Dual-wielding
45.9Staff
104.1Cloth Armor
203.4Light Armor
56.4Heavy Armor
103.0Elemental
45.9Divine
45.9Forbidden
181.2Deprecating
202.9Supportive
+
+
+
RE: 25:46
⚙ HV v0.14.21 | VETERAN | Lv170
+ 📋 Today: 0/6 + +
+
\ No newline at end of file diff --git a/references/The HentaiVerse - Equipment_files/Battle.png b/references/The HentaiVerse - Equipment_files/Battle.png new file mode 100644 index 0000000000000000000000000000000000000000..22e47d0be1f3c3891da578ca8dcb4e96b241978d GIT binary patch literal 763 zcmVL^}a=f|3c+PS8dSKsy0tgE9eT0SGJ*Z0T8?PR@r@ z64h;DMD!ZEb;X7DV!n%aY}5durg{N1~w7lUdjV=_KlP!S)-mgw0zeE2=RdZ zRt}PK0TRubzK>F(f3lCjz1GfU2#EolR~Gd=+O^Y16^Nj54MK!)h;NA6G9*%7h;yn$ zw#Ezuj4iTKRr}~5NeJm1L9fZCl9h}y_;7|#4Ajpdk22(hrF3PmGdS}F*D8{x7Vn_$ z{f^Hm_NO(~r^G7C5VavohSN=@GEfGY|Cc$_4JK+`vb!V#GmDDKF2-c&_~vf(;(poFl`$fCL3`LVOgh`B(I@P-P%cadMlnXdIU&!;aYBfu&KX=Hgw7Uo zMhadoW`=zmGXLwc;d++v4v7$pa@D?m+hbtc=ym^?>Ok=;zyL5B!I%HST8#hz002ovPDHLkV1nk!R%QSI literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Equipment_files/Bazaar.png b/references/The HentaiVerse - Equipment_files/Bazaar.png new file mode 100644 index 0000000000000000000000000000000000000000..650a1d87486013162ef685e2313414e9a1f65056 GIT binary patch literal 909 zcmV;819JR{P)I2^>#gdji=L*g*z}JAu^+stqD9&88I(3=3w17iOA=ab@ zI8^WFYICRo%EvlP(#3LPlPVA=2#7ALN90rUB zCO^sYQnV3}E`r3BO{Dx#WV4j-;4qY#qn?mJu_v8d3Sy=?OM)X|&1!66pSJ8(C6wv< zRe@xz$X*qzOaVY81TABMwJ}MRy-!fqN@^gNiZ2yB>j89cnf+5uv)+ciF8y2a+CfrK zO`nrfH_-X(Xq{93#16U~=F49#Z2`i>m~l&a*kVXsbBtP$S4g>q98Yb>Cd z%MDo_5);Ukv;8wo?{Na>ZmGx6%{gW)kf?9UST44dnmYEHdZ>H$HFl`$`0Jp5vZPE8 z45da={FpU}JL)fFfD)E@Yq(Av92+x`giL<~!IC8>Z^>R0gRB`qq9zXSBS<8x>={rv zb?-Fujg$f^Df~!3*K9W70uU@UiN?+hz;g#6X=1Ob(OxtCw}Icpw|5{370p-(4OvP~ zD-{i-ZXR%i`N52?7Ye;A>mh5dW&t>3e|ph+zoV#9p0b1lB$H>n8yvs~dza4%1G7 z-^h6a&Ttt%#q{NZd!IZS!;I+r1(?J%EE~~Y9IOQm?d5)2v&M7|KnZY9-~V^xl2xj` z1*6%s<(VU+w6|b>;HVT$$gG!4GDx>& j0LdT&NCs&xe*_o+l&}!@`v1fz00000NkvXXu0mjfvh1TG literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Equipment_files/Character.png b/references/The HentaiVerse - Equipment_files/Character.png new file mode 100644 index 0000000000000000000000000000000000000000..6aeac54fba83cac142527ab3877228a35957e517 GIT binary patch literal 1133 zcmV-z1d{uSP)*8xH%z?mS<1W^`fNf)5z?&61inzu$YEb#^NDp$kE0r(|bEFTQ>J%pZkCU6Rtlf;{>3 zeV3;U^7@pATUt^-mPsx0lv(PKm&YKZe(9`F$+m4CD_6f=`>TBSEq(lJ{C@oY*-k*S zU?-MvzkJeO(`T8FMJtS;aacAT(7mEfAxI7r zdtI^F8xhbV214EJ7LE)ZX~1;=z`0|859Mz)!0uU0Y@u0^GRL+P0`rdgzaxM)4Jd-* zQ_udPi(F*2oT5lO@ksuLANIWI=S| z2L?8A>HuwN0h1Ry2C5YFd=*d$i<1ss@0$6s1PKu|EN%(0x=Klf6BK0wc)o8tpm+b# zuPY5h@=Z~h>?j-bqWV10{}OcaHN-{v`O+XF5cGLRvZ2a2_Ti*TlDup+pi>Ccv33K@ zVJkNTuucXb8#?;H`?Az5r9+r7yzKx6HhQO6RkbPU{mUcvF}`L)*cv@;0`%RHS`}w} zOyCqHgC4+XMxT`vG#RcPWrrH17&f%ilF8&l+c(g*k{ubF7{0^itZvI_a#hv40h_oU z+dFJd0ni(^TnW$p0s!Sp$kNn7ZiJB5;G2!?m_VM?0A?;Xux+(5Of~+lK-TzP`z+C{ zV5>HD;H(6MV`4V7Twf5Nr1yGJVRI?4^X#vgaYL3GCS1%`5EF|m*ebzg%m~;FPdAF% zUNaU}mn;kV9x$d`FuwxEqE$~CZ1x_5f_E%3+t5{P(M;Xlzn9b zxCA{~wt8JKzd0Zxs#nFrc6EA$xZ5!F-0<$XKr%=}In{>={4U;sz-qT+uf990-(r$? zU%UohX0-j^cAfouTfwPGXLT@iXPvdt{s=GtU!FJ3!Vvn^00000NkvXXu0mjfyTk;C literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Equipment_files/equip-10087151.js b/references/The HentaiVerse - Equipment_files/equip-10087151.js new file mode 100644 index 0000000..647be4a --- /dev/null +++ b/references/The HentaiVerse - Equipment_files/equip-10087151.js @@ -0,0 +1 @@ +var dynjs_equip={"313459546":{"t":"Exquisite Cotton Robe of the Thunder-child","k":"1bee083b4f","q":5,"d":"
Cloth Armor     Level 142     Tradeable<\/span><\/div>
Condition: 70%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.82<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.18<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.13<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.07<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+24.40<\/span><\/div><\/div>
Resist<\/div>
+37.14<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.81<\/span><\/div><\/div>
Elec<\/div>
+22.03<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+21.03<\/span><\/div><\/div>
Intelligence<\/div>
+22.85<\/span><\/div><\/div><\/div><\/div>"},"313551370":{"t":"Superior Cotton Robe of Warding","k":"e24dddc972","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 84%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.72<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.66<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.72<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.31<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+22.40<\/span><\/div><\/div>
Resist<\/div>
+34.48<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.67<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+22.40<\/span><\/div><\/div><\/div><\/div>"},"313382111":{"t":"Superior Cotton Robe of the Fire-eater","k":"5b93ffc758","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 85%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+12.45<\/span><\/div><\/div>
Magic Accuracy<\/div>
+13.05<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.68<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.57<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+19.11<\/span><\/div><\/div>
Resist<\/div>
+40.30<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.62<\/span><\/div><\/div>
Fire<\/div>
+19.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+16.93<\/span><\/div><\/div><\/div><\/div>"},"313458124":{"t":"Superior Cotton Robe of the Frost-born","k":"006745a35d","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+12.24<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.59<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.56<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.38<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+22.39<\/span><\/div><\/div>
Resist<\/div>
+37.96<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.34<\/span><\/div><\/div>
Cold<\/div>
+18.45<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+16.42<\/span><\/div><\/div>
Wisdom<\/div>
+20.55<\/span><\/div><\/div><\/div><\/div>"},"313512224":{"t":"Superior Cotton Robe of the Wind-waker","k":"988dd43b2c","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 92%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.65<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.51<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.82<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.54<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+20.96<\/span><\/div><\/div>
Resist<\/div>
+37.00<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.57<\/span><\/div><\/div>
Wind<\/div>
+19.35<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+18.76<\/span><\/div><\/div><\/div><\/div>"},"313243437":{"t":"Superior Cotton Robe of the Thrice-blessed","k":"c5fda20b13","q":4,"d":"
Cloth Armor     Level 61     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+5.68<\/span><\/div><\/div>
Magic Accuracy<\/div>
+5.58<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.89<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.66<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+13.39<\/span><\/div><\/div>
Resist<\/div>
+26.09<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.34<\/span><\/div><\/div>
Holy<\/div>
+19.25<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+11.61<\/span><\/div><\/div><\/div><\/div>"},"313461196":{"t":"Superior Cotton Robe of the Thrice-blessed","k":"c995c0caec","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 95%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+12.26<\/span><\/div><\/div>
Magic Accuracy<\/div>
+11.77<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.89<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.66<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.95<\/span><\/div><\/div>
Resist<\/div>
+38.40<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.66<\/span><\/div><\/div>
Holy<\/div>
+19.25<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.05<\/span><\/div><\/div><\/div><\/div>"},"313509516":{"t":"Superior Cotton Robe of the Thrice-blessed","k":"9781f90435","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 90%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+12.72<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.40<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.76<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.54<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.72<\/span><\/div><\/div>
Resist<\/div>
+36.38<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.64<\/span><\/div><\/div>
Holy<\/div>
+18.85<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+22.40<\/span><\/div><\/div><\/div><\/div>"},"313318930":{"t":"Superior Cotton Robe of the Curse-weaver","k":"5446f0c0b9","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 91%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.81<\/span><\/div><\/div>
Magic Accuracy<\/div>
+11.70<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.95<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.52<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+22.00<\/span><\/div><\/div>
Resist<\/div>
+34.31<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Deprecating<\/div>
+39.47<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.44<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+26.63<\/span><\/div><\/div>
Wisdom<\/div>
+27.21<\/span><\/div><\/div><\/div><\/div>"},"313421049":{"t":"Superior Cotton Robe of the Curse-weaver","k":"c310ce947c","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 72%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+12.08<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.94<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.09<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.56<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+21.74<\/span><\/div><\/div>
Resist<\/div>
+39.04<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Deprecating<\/div>
+39.79<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.40<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+25.67<\/span><\/div><\/div><\/div><\/div>"},"313292847":{"t":"Superior Cotton Robe of the Earth-walker","k":"b0773ba707","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 97%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+13.22<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.59<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.06<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.61<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+21.87<\/span><\/div><\/div>
Resist<\/div>
+33.05<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+39.95<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.52<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+15.95<\/span><\/div><\/div>
Intelligence<\/div>
+27.21<\/span><\/div><\/div><\/div><\/div>"},"313550984":{"t":"Superior Cotton Robe of the Earth-walker","k":"de8847fc00","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+11.35<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.66<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.76<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.66<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.73<\/span><\/div><\/div>
Resist<\/div>
+35.63<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+39.47<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.58<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+27.60<\/span><\/div><\/div><\/div><\/div>"},"313575845":{"t":"Superior Cotton Robe of the Earth-walker","k":"e9aea10508","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 64%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.80<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.66<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.84<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.50<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+21.08<\/span><\/div><\/div>
Resist<\/div>
+39.64<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+38.85<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.45<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+20.39<\/span><\/div><\/div><\/div><\/div>"},"313382227":{"t":"Exquisite Cotton Pants of the Fire-eater","k":"c569acf644","q":5,"d":"
Cloth Armor     Level 121     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.73<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.15<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.81<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.44<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.05<\/span><\/div><\/div>
Resist<\/div>
+31.62<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.57<\/span><\/div><\/div>
Fire<\/div>
+20.09<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+22.60<\/span><\/div><\/div>
Wisdom<\/div>
+23.67<\/span><\/div><\/div><\/div><\/div>"},"313542146":{"t":"Superior Cotton Pants of Warding","k":"77146b5b45","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 59%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.60<\/span><\/div><\/div>
Magic Accuracy<\/div>
+11.13<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.46<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.13<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.63<\/span><\/div><\/div>
Resist<\/div>
+32.66<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.36<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+19.24<\/span><\/div><\/div><\/div><\/div>"},"313554817":{"t":"Superior Cotton Pants of the Fire-eater","k":"620fbad654","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+11.85<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.11<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.81<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.59<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.09<\/span><\/div><\/div>
Resist<\/div>
+32.32<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.27<\/span><\/div><\/div>
Fire<\/div>
+18.02<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+19.45<\/span><\/div><\/div><\/div><\/div>"},"313255401":{"t":"Superior Cotton Pants of the Frost-born","k":"699cc6b335","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 86%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.36<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.20<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.36<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.15<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.40<\/span><\/div><\/div>
Resist<\/div>
+32.11<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.45<\/span><\/div><\/div>
Cold<\/div>
+17.10<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.39<\/span><\/div><\/div>
Intelligence<\/div>
+23.01<\/span><\/div><\/div><\/div><\/div>"},"313418634":{"t":"Superior Cotton Pants of the Heaven-sent","k":"d783577bad","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+11.15<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.65<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.29<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.33<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.95<\/span><\/div><\/div>
Resist<\/div>
+34.08<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Divine<\/div>
+35.61<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.49<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+20.06<\/span><\/div><\/div><\/div><\/div>"},"313291034":{"t":"Superior Cotton Pants of the Curse-weaver","k":"ffa8ae3c28","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 53%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.15<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.59<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.49<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.30<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.45<\/span><\/div><\/div>
Resist<\/div>
+30.10<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Deprecating<\/div>
+35.47<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.51<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.50<\/span><\/div><\/div><\/div><\/div>"},"313560453":{"t":"Superior Amber Cotton Pants of the Frost-born","k":"da27f348bc","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 91%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+11.77<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.86<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.36<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.55<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.52<\/span><\/div><\/div>
Resist<\/div>
+36.56<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.38<\/span><\/div><\/div>
Elec<\/div>
+18.11<\/span><\/div><\/div>
Cold<\/div>
+18.11<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.02<\/span><\/div><\/div>
Wisdom<\/div>
+22.34<\/span><\/div><\/div><\/div><\/div>"},"313090148":{"t":"Superior Cotton Cap of Protection","k":"bf2163cd8f","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 62%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.13<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.99<\/span><\/div><\/div>
Physical Mitigation<\/div>
+5.28<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.27<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.53<\/span><\/div><\/div>
Resist<\/div>
+29.68<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.03<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+17.26<\/span><\/div><\/div>
Wisdom<\/div>
+18.10<\/span><\/div><\/div><\/div><\/div>"},"313076055":{"t":"Superior Cotton Cap of Warding","k":"f1264fbd1c","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 93%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.52<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.86<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.09<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.24<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.93<\/span><\/div><\/div>
Resist<\/div>
+27.81<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.07<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+13.49<\/span><\/div><\/div><\/div><\/div>"},"313254940":{"t":"Superior Cotton Cap of Warding","k":"1630ab0955","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 96%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.11<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.68<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.47<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.48<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.01<\/span><\/div><\/div>
Resist<\/div>
+32.70<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.01<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+17.68<\/span><\/div><\/div>
Wisdom<\/div>
+20.00<\/span><\/div><\/div><\/div><\/div>"},"313418685":{"t":"Superior Cotton Cap of Warding","k":"a4c9db5114","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 57%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.79<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.23<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.05<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.26<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.43<\/span><\/div><\/div>
Resist<\/div>
+30.32<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.09<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+15.63<\/span><\/div><\/div>
Wisdom<\/div>
+20.61<\/span><\/div><\/div><\/div><\/div>"},"313551337":{"t":"Superior Cotton Cap of the Thunder-child","k":"9b6a514d47","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 72%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.75<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.87<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.41<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.91<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.02<\/span><\/div><\/div>
Resist<\/div>
+27.98<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.05<\/span><\/div><\/div>
Elec<\/div>
+15.96<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+18.82<\/span><\/div><\/div>
Wisdom<\/div>
+22.84<\/span><\/div><\/div><\/div><\/div>"},"313416461":{"t":"Superior Cotton Cap of the Thrice-blessed","k":"a503e6458d","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 93%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.69<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.30<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.37<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.94<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.43<\/span><\/div><\/div>
Resist<\/div>
+32.36<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.99<\/span><\/div><\/div>
Holy<\/div>
+16.38<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.24<\/span><\/div><\/div><\/div><\/div>"},"313321059":{"t":"Superior Cotton Cap of the Elementalist","k":"1d597cbe72","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 74%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.45<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.99<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.33<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.92<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+14.96<\/span><\/div><\/div>
Resist<\/div>
+28.73<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+32.50<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.18<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+15.85<\/span><\/div><\/div>
Wisdom<\/div>
+18.96<\/span><\/div><\/div><\/div><\/div>"},"313343929":{"t":"Superior Cotton Cap of the Demon-fiend","k":"4b8e4433b9","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 62%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.66<\/span><\/div><\/div>
Magic Accuracy<\/div>
+10.68<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.25<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.86<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.04<\/span><\/div><\/div>
Resist<\/div>
+31.84<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Forbidden<\/div>
+32.90<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.22<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.43<\/span><\/div><\/div>
Wisdom<\/div>
+19.55<\/span><\/div><\/div><\/div><\/div>"},"313576147":{"t":"Superior Cotton Cap of the Demon-fiend","k":"1e017c9a89","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 51%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.01<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.22<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.19<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.92<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.05<\/span><\/div><\/div>
Resist<\/div>
+31.48<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Forbidden<\/div>
+32.24<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.22<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+15.07<\/span><\/div><\/div>
Wisdom<\/div>
+18.24<\/span><\/div><\/div><\/div><\/div>"},"313575960":{"t":"Exquisite Charged Cotton Gloves of the Heaven-sent","k":"cd3d0e5b6f","q":5,"d":"
Cloth Armor     Level 168     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+10.29<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.61<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.16<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.85<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+19.36<\/span><\/div><\/div>
Resist<\/div>
+31.42<\/span><\/div><\/div>
Casting Speed<\/div>
+1.91<\/span><\/div>
%<\/div><\/div><\/div>
Proficiency<\/div>
Divine<\/div>
+32.29<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.09<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.41<\/span><\/div><\/div>
Wisdom<\/div>
+22.94<\/span><\/div><\/div><\/div><\/div>"},"313512262":{"t":"Superior Cotton Gloves of Protection","k":"d8d8030c36","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.05<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.78<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.79<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.94<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+14.24<\/span><\/div><\/div>
Resist<\/div>
+27.45<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.05<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+18.28<\/span><\/div><\/div>
Wisdom<\/div>
+16.55<\/span><\/div><\/div><\/div><\/div>"},"313256119":{"t":"Superior Cotton Gloves of Warding","k":"827184bea9","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 57%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.06<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.00<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.90<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.59<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.82<\/span><\/div><\/div>
Resist<\/div>
+26.72<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.05<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+19.54<\/span><\/div><\/div><\/div><\/div>"},"313418257":{"t":"Superior Cotton Gloves of Warding","k":"15b065ce81","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 87%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.54<\/span><\/div><\/div>
Magic Accuracy<\/div>
+7.84<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.68<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.55<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+13.54<\/span><\/div><\/div>
Resist<\/div>
+26.40<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.82<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+15.53<\/span><\/div><\/div><\/div><\/div>"},"313551254":{"t":"Superior Cotton Gloves of Warding","k":"ddb90eecad","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 57%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.91<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.38<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.72<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.90<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+14.60<\/span><\/div><\/div>
Resist<\/div>
+26.01<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.90<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+18.41<\/span><\/div><\/div><\/div><\/div>"},"313576525":{"t":"Superior Cotton Gloves of Warding","k":"1f9f935e36","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 92%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+7.54<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.61<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.74<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.69<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.01<\/span><\/div><\/div>
Resist<\/div>
+27.00<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.96<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.27<\/span><\/div><\/div><\/div><\/div>"},"313576544":{"t":"Superior Cotton Gloves of Warding","k":"56e968ec3c","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.05<\/span><\/div><\/div>
Magic Accuracy<\/div>
+7.80<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.71<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.62<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.72<\/span><\/div><\/div>
Resist<\/div>
+28.80<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.97<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+16.55<\/span><\/div><\/div>
Wisdom<\/div>
+19.54<\/span><\/div><\/div><\/div><\/div>"},"313576084":{"t":"Superior Cotton Gloves of the Thunder-child","k":"0679c768aa","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 50%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.31<\/span><\/div><\/div>
Magic Accuracy<\/div>
+9.61<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.85<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.66<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.70<\/span><\/div><\/div>
Resist<\/div>
+27.90<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.93<\/span><\/div><\/div>
Elec<\/div>
+14.66<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+18.55<\/span><\/div><\/div>
Wisdom<\/div>
+17.87<\/span><\/div><\/div><\/div><\/div>"},"313326124":{"t":"Superior Cotton Gloves of the Wind-waker","k":"25eeeb02fe","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 83%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.78<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.15<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.00<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.89<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+14.60<\/span><\/div><\/div>
Resist<\/div>
+27.15<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.99<\/span><\/div><\/div>
Wind<\/div>
+14.43<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+11.96<\/span><\/div><\/div><\/div><\/div>"},"313511850":{"t":"Superior Cotton Gloves of the Elementalist","k":"990bcda297","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 55%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.71<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.35<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.68<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.61<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.30<\/span><\/div><\/div>
Resist<\/div>
+25.58<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+29.14<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.01<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.99<\/span><\/div><\/div>
Intelligence<\/div>
+16.03<\/span><\/div><\/div><\/div><\/div>"},"313292584":{"t":"Superior Jade Cotton Gloves of Protection","k":"dc470b9bed","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 79%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+9.19<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.15<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.68<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.75<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.91<\/span><\/div><\/div>
Resist<\/div>
+26.42<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.83<\/span><\/div><\/div>
Wind<\/div>
+14.28<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+11.87<\/span><\/div><\/div>
Intelligence<\/div>
+19.39<\/span><\/div><\/div><\/div><\/div>"},"313417642":{"t":"Superior Cotton Shoes of the Elementalist","k":"8750d36f46","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 79%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.55<\/span><\/div><\/div>
Magic Accuracy<\/div>
+6.98<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.76<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.31<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+14.58<\/span><\/div><\/div>
Resist<\/div>
+22.63<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+26.42<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.72<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+13.33<\/span><\/div><\/div>
Intelligence<\/div>
+15.64<\/span><\/div><\/div><\/div><\/div>"},"313293200":{"t":"Superior Cotton Shoes of the Curse-weaver","k":"45de9096de","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 78%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+6.97<\/span><\/div><\/div>
Magic Accuracy<\/div>
+7.15<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.37<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.41<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+13.46<\/span><\/div><\/div>
Resist<\/div>
+21.88<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Deprecating<\/div>
+25.29<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.77<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+11.03<\/span><\/div><\/div>
Intelligence<\/div>
+14.14<\/span><\/div><\/div><\/div><\/div>"},"313419092":{"t":"Superior Cotton Shoes of the Curse-weaver","k":"01a58ebe6e","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 80%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.30<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.04<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.41<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.48<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+12.90<\/span><\/div><\/div>
Resist<\/div>
+22.14<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Deprecating<\/div>
+26.21<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.72<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+13.71<\/span><\/div><\/div>
Intelligence<\/div>
+15.29<\/span><\/div><\/div><\/div><\/div>"},"313510017":{"t":"Superior Cotton Shoes of the Curse-weaver","k":"a889a9082b","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 99%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.36<\/span><\/div><\/div>
Magic Accuracy<\/div>
+7.20<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.66<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.27<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+11.97<\/span><\/div><\/div>
Resist<\/div>
+23.88<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Deprecating<\/div>
+26.11<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.77<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+11.80<\/span><\/div><\/div>
Wisdom<\/div>
+17.75<\/span><\/div><\/div><\/div><\/div>"},"313382057":{"t":"Superior Cotton Shoes of the Earth-walker","k":"6ddf20c30c","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+7.50<\/span><\/div><\/div>
Magic Accuracy<\/div>
+6.98<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.58<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.27<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.03<\/span><\/div><\/div>
Resist<\/div>
+26.30<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+26.42<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.74<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+16.99<\/span><\/div><\/div><\/div><\/div>"},"313457679":{"t":"Superior Cotton Shoes of the Earth-walker","k":"33d8e6eb0e","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 70%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+6.70<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.75<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.63<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.46<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+13.06<\/span><\/div><\/div>
Resist<\/div>
+23.24<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+26.00<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.58<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+12.50<\/span><\/div><\/div><\/div><\/div>"},"313552106":{"t":"Superior Ruby Cotton Shoes of the Spirit-ward","k":"83211306ed","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 58%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+7.87<\/span><\/div><\/div>
Magic Accuracy<\/div>
+8.76<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.51<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.57<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+14.32<\/span><\/div><\/div>
Resist<\/div>
+25.22<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.78<\/span><\/div><\/div>
Fire<\/div>
+13.38<\/span><\/div><\/div>
Dark<\/div>
+13.38<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+15.77<\/span><\/div><\/div><\/div><\/div>"},"313550946":{"t":"Superior Charged Cotton Shoes of the Fire-eater","k":"cfc1042986","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 86%<\/span>     Energy: N\/A<\/span><\/div>
Attack Accuracy<\/div>
+8.82<\/span><\/div><\/div>
Magic Accuracy<\/div>
+7.71<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.77<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.58<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+13.39<\/span><\/div><\/div>
Resist<\/div>
+22.53<\/span><\/div><\/div>
Casting Speed<\/div>
+1.53<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.71<\/span><\/div><\/div>
Fire<\/div>
+13.38<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+12.96<\/span><\/div><\/div>
Intelligence<\/div>
+18.41<\/span><\/div><\/div><\/div><\/div>"},"313551500":{"t":"Exquisite Gossamer Cap of the Owl","k":"d155261c60","q":5,"d":"
Cloth Armor     Level 156     Tradeable<\/span><\/div>
Condition: 89%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+10.33<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.63<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.43<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+22.47<\/span><\/div><\/div>
Resist<\/div>
+45.44<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+26.16<\/span><\/div><\/div>
Wisdom<\/div>
+38.77<\/span><\/div><\/div><\/div><\/div>"},"313242133":{"t":"Superior Gossamer Cap of the Curse-weaver","k":"88a63d1bc6","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 87%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+10.93<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.29<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.13<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.19<\/span><\/div><\/div>
Resist<\/div>
+35.38<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Deprecating<\/div>
+32.50<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+18.67<\/span><\/div><\/div><\/div><\/div>"},"313542106":{"t":"Superior Gossamer Cap of the Fox","k":"b51ab737f2","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+9.58<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.45<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.01<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+23.67<\/span><\/div><\/div>
Resist<\/div>
+41.07<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+19.56<\/span><\/div><\/div>
Wisdom<\/div>
+20.93<\/span><\/div><\/div>
Intelligence<\/div>
+12.99<\/span><\/div><\/div><\/div><\/div>"},"313326037":{"t":"Superior Gossamer Cap of the Owl","k":"13dbed0131","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 84%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+10.18<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.44<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.90<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+23.33<\/span><\/div><\/div>
Resist<\/div>
+42.09<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+20.16<\/span><\/div><\/div>
Wisdom<\/div>
+13.04<\/span><\/div><\/div><\/div><\/div>"},"313458329":{"t":"Superior Gossamer Gloves of the Demon-fiend","k":"981e1f9ef0","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+7.79<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.70<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.72<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.85<\/span><\/div><\/div>
Resist<\/div>
+37.37<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Forbidden<\/div>
+28.45<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+17.06<\/span><\/div><\/div><\/div><\/div>"},"313293726":{"t":"Superior Gossamer Shoes of the Demon-fiend","k":"e89d1abbd1","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 80%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+8.60<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.49<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.60<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.10<\/span><\/div><\/div>
Resist<\/div>
+32.66<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Forbidden<\/div>
+26.96<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+16.74<\/span><\/div><\/div><\/div><\/div>"},"313382169":{"t":"Superior Gossamer Shoes of the Earth-walker","k":"84b13ec760","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 53%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+7.80<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.49<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.54<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.34<\/span><\/div><\/div>
Resist<\/div>
+28.85<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+26.42<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+18.14<\/span><\/div><\/div>
Intelligence<\/div>
+16.74<\/span><\/div><\/div><\/div><\/div>"},"313418359":{"t":"Superior Gossamer Shoes of the Fox","k":"35845b50a1","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 87%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+8.24<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.49<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.35<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.74<\/span><\/div><\/div>
Resist<\/div>
+34.69<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+16.12<\/span><\/div><\/div>
Wisdom<\/div>
+15.05<\/span><\/div><\/div>
Intelligence<\/div>
+10.22<\/span><\/div><\/div><\/div><\/div>"},"313512052":{"t":"Superior Gossamer Shoes of the Fox","k":"5c6086fda1","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 54%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+6.94<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.74<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.49<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.26<\/span><\/div><\/div>
Resist<\/div>
+30.51<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+16.37<\/span><\/div><\/div>
Intelligence<\/div>
+10.22<\/span><\/div><\/div><\/div><\/div>"},"313291995":{"t":"Superior Jade Gossamer Shoes of the Earth-walker","k":"3b274c2af3","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 81%<\/span>     Energy: N\/A<\/span><\/div>
Magic Accuracy<\/div>
+7.61<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.55<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.49<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.25<\/span><\/div><\/div>
Resist<\/div>
+34.68<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+26.21<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Wind<\/div>
+12.83<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+15.05<\/span><\/div><\/div><\/div><\/div>"},"313576549":{"t":"Superior Ironsilk Robe of the Cheetah","k":"fccfdb2476","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 3.0<\/div>
Attack Accuracy<\/div>
+11.33<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.60<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.66<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+21.34<\/span><\/div><\/div>
Resist<\/div>
+33.00<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.49<\/span><\/div><\/div>
Slashing<\/div>
+2.44<\/span><\/div><\/div>
Piercing<\/div>
+1.22<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.04<\/span><\/div><\/div>
Wisdom<\/div>
+20.38<\/span><\/div><\/div>
Agility<\/div>
+14.73<\/span><\/div><\/div><\/div><\/div>"},"313419873":{"t":"Superior Cobalt Ironsilk Robe of the Fleet","k":"79fa43d5aa","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 52%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 2.9<\/div>
Attack Accuracy<\/div>
+12.74<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.06<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.73<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+35.76<\/span><\/div><\/div>
Resist<\/div>
+40.51<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.41<\/span><\/div><\/div>
Slashing<\/div>
+2.53<\/span><\/div><\/div>
Piercing<\/div>
+1.28<\/span><\/div><\/div>
Cold<\/div>
+19.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+20.56<\/span><\/div><\/div><\/div><\/div>"},"313511009":{"t":"Superior Amber Ironsilk Robe of Warding","k":"38f19eb9e2","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 59%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 2.9<\/div>
Attack Accuracy<\/div>
+10.90<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.00<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.50<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+19.83<\/span><\/div><\/div>
Resist<\/div>
+33.75<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.49<\/span><\/div><\/div>
Slashing<\/div>
+2.56<\/span><\/div><\/div>
Piercing<\/div>
+1.36<\/span><\/div><\/div>
Elec<\/div>
+19.05<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.05<\/span><\/div><\/div>
Wisdom<\/div>
+23.10<\/span><\/div><\/div><\/div><\/div>"},"313542102":{"t":"Magnificent Ruby Ironsilk Pants of Warding","k":"ae7005e2a7","q":6,"d":"
Cloth Armor     Level 152     Tradeable<\/span><\/div>
Condition: 66%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 1.2<\/div>
Attack Accuracy<\/div>
+14.94<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.24<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+9.23<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+23.44<\/span><\/div><\/div>
Resist<\/div>
+44.00<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.01<\/span><\/div><\/div>
Slashing<\/div>
+3.00<\/span><\/div><\/div>
Piercing<\/div>
+1.40<\/span><\/div><\/div>
Fire<\/div>
+22.91<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+20.12<\/span><\/div><\/div>
Intelligence<\/div>
+26.92<\/span><\/div><\/div>
Wisdom<\/div>
+27.28<\/span><\/div><\/div><\/div><\/div>"},"313551115":{"t":"Superior Ironsilk Pants of Warding","k":"eb067cc781","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 50%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 1.4<\/div>
Attack Accuracy<\/div>
+11.94<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.51<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.86<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+18.07<\/span><\/div><\/div>
Resist<\/div>
+33.19<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.45<\/span><\/div><\/div>
Slashing<\/div>
+2.51<\/span><\/div><\/div>
Piercing<\/div>
+1.08<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+22.84<\/span><\/div><\/div><\/div><\/div>"},"313419431":{"t":"Superior Ironsilk Pants of the Raccoon","k":"082632980d","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 98%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 1.5<\/div>
Attack Accuracy<\/div>
+10.56<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.53<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.26<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+17.73<\/span><\/div><\/div>
Resist<\/div>
+30.43<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.31<\/span><\/div><\/div>
Slashing<\/div>
+2.46<\/span><\/div><\/div>
Piercing<\/div>
+1.15<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+18.69<\/span><\/div><\/div>
Wisdom<\/div>
+20.22<\/span><\/div><\/div>
Dexterity<\/div>
+13.67<\/span><\/div><\/div><\/div><\/div>"},"313335282":{"t":"Superior Ironsilk Gloves of Protection","k":"bd9e68a3a0","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 3.4<\/div>
Attack Accuracy<\/div>
+8.99<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.96<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.89<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+13.98<\/span><\/div><\/div>
Resist<\/div>
+25.06<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.93<\/span><\/div><\/div>
Slashing<\/div>
+1.96<\/span><\/div><\/div>
Piercing<\/div>
+1.01<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.48<\/span><\/div><\/div>
Intelligence<\/div>
+17.07<\/span><\/div><\/div><\/div><\/div>"},"313576557":{"t":"Superior Ironsilk Gloves of Protection","k":"18e9d0f43a","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 61%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 3.5<\/div>
Attack Accuracy<\/div>
+7.30<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.64<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.61<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.70<\/span><\/div><\/div>
Resist<\/div>
+28.81<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.87<\/span><\/div><\/div>
Slashing<\/div>
+2.04<\/span><\/div><\/div>
Piercing<\/div>
+1.01<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+17.07<\/span><\/div><\/div>
Wisdom<\/div>
+18.97<\/span><\/div><\/div><\/div><\/div>"},"313075445":{"t":"Superior Ironsilk Shoes of Protection","k":"6292d0d52d","q":4,"d":"
Cloth Armor     Level 27     Tradeable<\/span><\/div>
Condition: 39%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 0.9<\/div>
Attack Accuracy<\/div>
+2.77<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.98<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.11<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+8.11<\/span><\/div><\/div>
Resist<\/div>
+15.70<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.58<\/span><\/div><\/div>
Slashing<\/div>
+1.80<\/span><\/div><\/div>
Piercing<\/div>
+0.83<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+3.51<\/span><\/div><\/div>
Intelligence<\/div>
+4.30<\/span><\/div><\/div><\/div><\/div>"},"313292542":{"t":"Superior Ironsilk Shoes of Protection","k":"332a87b466","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 0.9<\/div>
Attack Accuracy<\/div>
+8.05<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.11<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.34<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+15.12<\/span><\/div><\/div>
Resist<\/div>
+25.61<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.77<\/span><\/div><\/div>
Slashing<\/div>
+1.65<\/span><\/div><\/div>
Piercing<\/div>
+0.85<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+10.47<\/span><\/div><\/div><\/div><\/div>"},"313552730":{"t":"Superior Ironsilk Shoes of Warding","k":"075376242f","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 0.9<\/div>
Attack Accuracy<\/div>
+8.17<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.39<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.26<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+13.55<\/span><\/div><\/div>
Resist<\/div>
+24.13<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.58<\/span><\/div><\/div>
Slashing<\/div>
+1.64<\/span><\/div><\/div>
Piercing<\/div>
+0.86<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+13.90<\/span><\/div><\/div>
Intelligence<\/div>
+15.17<\/span><\/div><\/div><\/div><\/div>"},"313576078":{"t":"Superior Ironsilk Shoes of the Fleet","k":"2d91287483","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 67%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: 0.9<\/div>
Attack Accuracy<\/div>
+6.65<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.63<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.63<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+21.95<\/span><\/div><\/div>
Resist<\/div>
+24.41<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.77<\/span><\/div><\/div>
Slashing<\/div>
+1.80<\/span><\/div><\/div>
Piercing<\/div>
+0.90<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+12.42<\/span><\/div><\/div>
Intelligence<\/div>
+15.29<\/span><\/div><\/div><\/div><\/div>"},"313554819":{"t":"Magnificent Cobalt Phase Robe of Surtr","k":"1a9548244c","q":6,"d":"
Cloth Armor     Level 161     Tradeable<\/span><\/div>
Condition: 54%<\/span>     Energy: 79%<\/span><\/div>
Attack Accuracy<\/div>
+16.38<\/span><\/div><\/div>
Magic Accuracy<\/div>
+19.99<\/span><\/div><\/div>
Physical Mitigation<\/div>
+3.47<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.42<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+38.71<\/span><\/div><\/div>
Resist<\/div>
+48.89<\/span><\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+32.57<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.28<\/span><\/div><\/div>
Cold<\/div>
+25.37<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+34.63<\/span><\/div><\/div>
Wisdom<\/div>
+41.42<\/span><\/div><\/div><\/div><\/div>"},"313320579":{"t":"Exquisite Charged Phase Robe of Heimdall","k":"4125fcfe11","q":5,"d":"
Cloth Armor     Level 102     Tradeable<\/span><\/div>
Condition: 71%<\/span>     Energy: 97%<\/span><\/div>
Attack Accuracy<\/div>
+11.38<\/span><\/div><\/div>
Magic Accuracy<\/div>
+12.35<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.97<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.72<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+27.81<\/span><\/div><\/div>
Resist<\/div>
+33.05<\/span><\/div><\/div>
Casting Speed<\/div>
+2.51<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Holy<\/div>
+23.95<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.32<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+16.88<\/span><\/div><\/div>
Wisdom<\/div>
+20.83<\/span><\/div><\/div><\/div><\/div>"},"313512240":{"t":"Superior Phase Cap of Mjolnir","k":"59c5486c93","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 95%<\/span>     Energy: 70%<\/span><\/div>
Attack Accuracy<\/div>
+8.59<\/span><\/div><\/div>
Magic Accuracy<\/div>
+13.98<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.57<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.15<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+24.12<\/span><\/div><\/div>
Resist<\/div>
+34.84<\/span><\/div><\/div><\/div>
Spell Damage<\/div>
Elec<\/div>
+22.48<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.47<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+26.10<\/span><\/div><\/div><\/div><\/div>"},"313417929":{"t":"Exquisite Phase Gloves of the Earth-walker","k":"50c4559765","q":5,"d":"
Cloth Armor     Level 126     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: 52%<\/span><\/div>
Attack Accuracy<\/div>
+8.62<\/span><\/div><\/div>
Magic Accuracy<\/div>
+11.76<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.29<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.26<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+23.72<\/span><\/div><\/div>
Resist<\/div>
+33.22<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Supportive<\/div>
+26.25<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+17.77<\/span><\/div><\/div>
Wisdom<\/div>
+17.75<\/span><\/div><\/div><\/div><\/div>"},"313560498":{"t":"Exquisite Mystic Phase Gloves of the Fox","k":"28d881d707","q":5,"d":"
Cloth Armor     Level 167     Tradeable<\/span><\/div>
Condition: 55%<\/span>     Energy: 51%<\/span><\/div>
Attack Accuracy<\/div>
+10.55<\/span><\/div><\/div>
Magic Accuracy<\/div>
+13.43<\/span><\/div><\/div>
Physical Mitigation<\/div>
+2.40<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.20<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+27.24<\/span><\/div><\/div>
Resist<\/div>
+31.89<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.54<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+19.32<\/span><\/div><\/div>
Intelligence<\/div>
+37.71<\/span><\/div><\/div><\/div><\/div>"},"313333928":{"t":"Superior Phase Shoes of the Elementalist","k":"01ce5a37f3","q":4,"d":"
Cloth Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 59%<\/span>     Energy: 77%<\/span><\/div>
Attack Accuracy<\/div>
+8.17<\/span><\/div><\/div>
Magic Accuracy<\/div>
+11.65<\/span><\/div><\/div>
Physical Mitigation<\/div>
+1.83<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.26<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+20.70<\/span><\/div><\/div>
Resist<\/div>
+23.44<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+25.69<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+1.27<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+13.79<\/span><\/div><\/div><\/div><\/div>"},"313420779":{"t":"Exquisite Leather Breastplate of the Thunder-child","k":"2d9d3edd3b","q":5,"d":"
Light Armor     Level 135     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.7     Interference: 7.8<\/div>
Physical Mitigation<\/div>
+8.97<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.27<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+11.59<\/span><\/div><\/div>
Resist<\/div>
+67.44<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+7.55<\/span><\/div><\/div>
Slashing<\/div>
+7.46<\/span><\/div><\/div>
Piercing<\/div>
+3.36<\/span><\/div><\/div>
Elec<\/div>
+22.95<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+21.42<\/span><\/div><\/div>
Agility<\/div>
+17.88<\/span><\/div><\/div><\/div><\/div>"},"313560445":{"t":"Superior Leather Breastplate of Stoneskin","k":"378446b74a","q":4,"d":"
Light Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 81%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.7     Interference: 8.4<\/div>
Physical Mitigation<\/div>
+8.23<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.33<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+9.97<\/span><\/div><\/div>
Resist<\/div>
+69.60<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.33<\/span><\/div><\/div>
Slashing<\/div>
+11.41<\/span><\/div><\/div>
Piercing<\/div>
+3.03<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+18.80<\/span><\/div><\/div>
Endurance<\/div>
+14.21<\/span><\/div><\/div><\/div><\/div>"},"313560254":{"t":"Superior Leather Breastplate of the Frost-born","k":"1222737b07","q":4,"d":"
Light Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 93%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.5     Interference: 8.3<\/div>
Physical Mitigation<\/div>
+8.55<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.71<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+10.50<\/span><\/div><\/div>
Resist<\/div>
+58.64<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.43<\/span><\/div><\/div>
Slashing<\/div>
+6.78<\/span><\/div><\/div>
Piercing<\/div>
+3.25<\/span><\/div><\/div>
Cold<\/div>
+19.65<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+21.01<\/span><\/div><\/div>
Dexterity<\/div>
+20.01<\/span><\/div><\/div><\/div><\/div>"},"313458122":{"t":"Exquisite Leather Leggings of the Thunder-child","k":"6f885f2c19","q":5,"d":"
Light Armor     Level 140     Tradeable<\/span><\/div>
Condition: 88%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 9.0     Interference: 3.9<\/div>
Physical Mitigation<\/div>
+8.31<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.07<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+12.46<\/span><\/div><\/div>
Resist<\/div>
+57.72<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.34<\/span><\/div><\/div>
Slashing<\/div>
+6.90<\/span><\/div><\/div>
Piercing<\/div>
+3.32<\/span><\/div><\/div>
Elec<\/div>
+20.93<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+15.73<\/span><\/div><\/div>
Agility<\/div>
+15.18<\/span><\/div><\/div><\/div><\/div>"},"313417157":{"t":"Exquisite Amber Leather Leggings of the Thunder-child","k":"d19e75edfa","q":5,"d":"
Light Armor     Level 123     Tradeable<\/span><\/div>
Condition: 97%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 9.2     Interference: 4.0<\/div>
Physical Mitigation<\/div>
+7.73<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.59<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+10.10<\/span><\/div><\/div>
Resist<\/div>
+60.99<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.44<\/span><\/div><\/div>
Slashing<\/div>
+6.73<\/span><\/div><\/div>
Piercing<\/div>
+3.15<\/span><\/div><\/div>
Elec<\/div>
+40.18<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+15.14<\/span><\/div><\/div>
Dexterity<\/div>
+17.84<\/span><\/div><\/div><\/div><\/div>"},"313576601":{"t":"Superior Leather Leggings of Stoneskin","k":"4dab3713e6","q":4,"d":"
Light Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 89%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.0     Interference: 4.2<\/div>
Physical Mitigation<\/div>
+7.46<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.61<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+9.21<\/span><\/div><\/div>
Resist<\/div>
+54.43<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.16<\/span><\/div><\/div>
Slashing<\/div>
+10.40<\/span><\/div><\/div>
Piercing<\/div>
+3.12<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+15.59<\/span><\/div><\/div><\/div><\/div>"},"313576597":{"t":"Exquisite Cobalt Leather Helmet of the Spirit-ward","k":"16521665e0","q":5,"d":"
Light Armor     Level 170     Tradeable<\/span><\/div>
Condition: 58%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 2.2     Interference: 15.7<\/div>
Physical Mitigation<\/div>
+7.73<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.89<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+12.56<\/span><\/div><\/div>
Resist<\/div>
+70.84<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.10<\/span><\/div><\/div>
Slashing<\/div>
+5.47<\/span><\/div><\/div>
Piercing<\/div>
+2.85<\/span><\/div><\/div>
Cold<\/div>
+19.12<\/span><\/div><\/div>
Dark<\/div>
+19.12<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+17.64<\/span><\/div><\/div>
Agility<\/div>
+17.14<\/span><\/div><\/div><\/div><\/div>"},"313576462":{"t":"Superior Leather Gauntlets of Protection","k":"b96a23fbe9","q":4,"d":"
Light Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 76%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 2.0     Interference: 10.0<\/div>
Physical Mitigation<\/div>
+7.77<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.59<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+7.70<\/span><\/div><\/div>
Resist<\/div>
+49.45<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.53<\/span><\/div><\/div>
Slashing<\/div>
+5.12<\/span><\/div><\/div>
Piercing<\/div>
+2.43<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+13.50<\/span><\/div><\/div>
Agility<\/div>
+13.41<\/span><\/div><\/div><\/div><\/div>"},"313576524":{"t":"Superior Cobalt Leather Boots of Warding","k":"b6378ab3f7","q":4,"d":"
Light Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 95%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 3.1     Interference: 2.5<\/div>
Physical Mitigation<\/div>
+5.23<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.22<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+8.51<\/span><\/div><\/div>
Resist<\/div>
+45.58<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.37<\/span><\/div><\/div>
Slashing<\/div>
+4.29<\/span><\/div><\/div>
Piercing<\/div>
+1.98<\/span><\/div><\/div>
Cold<\/div>
+12.83<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+14.17<\/span><\/div><\/div>
Agility<\/div>
+10.51<\/span><\/div><\/div><\/div><\/div>"},"313343232":{"t":"Magnificent Jade Drakehide Leggings of the Spirit-ward","k":"dccab514cd","q":6,"d":"
Light Armor     Level 115     Tradeable<\/span><\/div>
Condition: 52%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.1     Interference: 2.1<\/div>
Physical Mitigation<\/div>
+7.42<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.66<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+16.83<\/span><\/div><\/div>
Resist<\/div>
+66.91<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.82<\/span><\/div><\/div>
Slashing<\/div>
+7.53<\/span><\/div><\/div>
Piercing<\/div>
+3.67<\/span><\/div><\/div>
Wind<\/div>
+23.25<\/span><\/div><\/div>
Dark<\/div>
+23.25<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+19.16<\/span><\/div><\/div>
Endurance<\/div>
+14.73<\/span><\/div><\/div>
Agility<\/div>
+14.90<\/span><\/div><\/div><\/div><\/div>"},"313538779":{"t":"Superior Shade Helmet of the Fleet","k":"8756b9c5b4","q":4,"d":"
Light Armor     Level 163     Untradeable<\/span><\/div>
Condition: 27%<\/span>     Energy: 105%<\/span><\/div>
Burden: None     Interference: 18.2<\/div>
Attack Damage<\/div>
+53.17<\/span><\/div><\/div>
Attack Accuracy<\/div>
+16.35<\/span><\/div><\/div>
Physical Mitigation<\/div>
+5.41<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.01<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+30.71<\/span><\/div><\/div>
Resist<\/div>
+76.79<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.69<\/span><\/div><\/div>
Slashing<\/div>
+3.83<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+17.74<\/span><\/div><\/div>
Agility<\/div>
+16.81<\/span><\/div><\/div><\/div><\/div>"},"313550215":{"t":"Superior Jade Shade Gauntlets of the Fleet","k":"4bd75cd0d6","q":4,"d":"
Light Armor     Level 163     Untradeable<\/span><\/div>
Condition: 23%<\/span>     Energy: 105%<\/span><\/div>
Burden: None     Interference: 11.0<\/div>
Attack Damage<\/div>
+46.59<\/span><\/div><\/div>
Attack Accuracy<\/div>
+13.77<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.39<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.53<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+25.20<\/span><\/div><\/div>
Resist<\/div>
+68.20<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.53<\/span><\/div><\/div>
Slashing<\/div>
+3.78<\/span><\/div><\/div>
Wind<\/div>
+14.43<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+10.50<\/span><\/div><\/div>
Dexterity<\/div>
+14.49<\/span><\/div><\/div><\/div><\/div>"},"313551946":{"t":"Magnificent Savage Shade Boots of the Arcanist","k":"421d0389f1","q":6,"d":"
Light Armor     Level 156     Tradeable<\/span><\/div>
Condition: 27%<\/span>     Energy: 100%<\/span><\/div>
Burden: None     Interference: 0.7<\/div>
Attack Damage<\/div>
+63.20<\/span><\/div><\/div>
Attack Accuracy<\/div>
+14.98<\/span><\/div><\/div>
Physical Mitigation<\/div>
+5.09<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.86<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+20.46<\/span><\/div><\/div>
Resist<\/div>
+79.88<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.10<\/span><\/div>
x<\/div><\/div>
Magic Accuracy<\/div>
+18.58<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.73<\/span><\/div><\/div>
Slashing<\/div>
+4.10<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+13.71<\/span><\/div><\/div>
Dexterity<\/div>
+17.16<\/span><\/div><\/div>
Agility<\/div>
+16.42<\/span><\/div><\/div>
Intelligence<\/div>
+11.75<\/span><\/div><\/div>
Wisdom<\/div>
+11.75<\/span><\/div><\/div><\/div><\/div>"},"313560253":{"t":"Superior Shade Boots of the Fleet","k":"a64ed4b778","q":4,"d":"
Light Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 56%<\/span>     Energy: 99%<\/span><\/div>
Burden: None     Interference: 2.8<\/div>
Attack Damage<\/div>
+52.21<\/span><\/div><\/div>
Attack Accuracy<\/div>
+10.78<\/span><\/div><\/div>
Physical Mitigation<\/div>
+4.12<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.96<\/span><\/div>
%<\/div><\/div>
Evade<\/div>
+22.82<\/span><\/div><\/div>
Resist<\/div>
+58.26<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.07<\/span><\/div><\/div>
Slashing<\/div>
+3.11<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+9.66<\/span><\/div><\/div>
Endurance<\/div>
+11.34<\/span><\/div><\/div><\/div><\/div>"},"313343829":{"t":"Superior Chain Cuirass of Warding","k":"e5c17d44f8","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 70%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 12.6     Interference: 15.7<\/div>
Physical Mitigation<\/div>
+9.32<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+9.39<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+5.05<\/span><\/div><\/div>
Slashing<\/div>
+7.07<\/span><\/div><\/div>
Piercing<\/div>
+3.82<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+15.82<\/span><\/div><\/div><\/div><\/div>"},"313552808":{"t":"Superior Chain Cuirass of the Fire-eater","k":"9d1c4ab2fd","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 12.5     Interference: 15.6<\/div>
Physical Mitigation<\/div>
+9.31<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.70<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.91<\/span><\/div><\/div>
Slashing<\/div>
+7.42<\/span><\/div><\/div>
Piercing<\/div>
+3.58<\/span><\/div><\/div>
Fire<\/div>
+19.15<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+19.44<\/span><\/div><\/div>
Agility<\/div>
+11.13<\/span><\/div><\/div><\/div><\/div>"},"313512016":{"t":"Superior Chain Cuirass of the Thunder-child","k":"4450f1c77b","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 99%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 12.7     Interference: 15.7<\/div>
Physical Mitigation<\/div>
+9.22<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.54<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.66<\/span><\/div><\/div>
Slashing<\/div>
+7.78<\/span><\/div><\/div>
Piercing<\/div>
+3.61<\/span><\/div><\/div>
Elec<\/div>
+18.65<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+17.05<\/span><\/div><\/div>
Agility<\/div>
+10.84<\/span><\/div><\/div><\/div><\/div>"},"313552204":{"t":"Superior Chain Cuirass of the Thrice-blessed","k":"e93c57861a","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 98%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 12.3     Interference: 15.4<\/div>
Physical Mitigation<\/div>
+9.61<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.80<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+5.23<\/span><\/div><\/div>
Slashing<\/div>
+8.10<\/span><\/div><\/div>
Piercing<\/div>
+3.96<\/span><\/div><\/div>
Holy<\/div>
+20.39<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+10.67<\/span><\/div><\/div><\/div><\/div>"},"313575829":{"t":"Superior Chain Greaves of Protection","k":"548c22e611","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 16.6     Interference: 7.8<\/div>
Physical Mitigation<\/div>
+10.58<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.29<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.97<\/span><\/div><\/div>
Slashing<\/div>
+6.43<\/span><\/div><\/div>
Piercing<\/div>
+3.57<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+17.32<\/span><\/div><\/div>
Agility<\/div>
+11.38<\/span><\/div><\/div><\/div><\/div>"},"313551862":{"t":"Superior Chain Greaves of Warding","k":"6958144a50","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 83%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 17.0     Interference: 7.9<\/div>
Physical Mitigation<\/div>
+8.41<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+8.05<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.34<\/span><\/div><\/div>
Slashing<\/div>
+7.30<\/span><\/div><\/div>
Piercing<\/div>
+3.28<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+14.72<\/span><\/div><\/div>
Agility<\/div>
+9.76<\/span><\/div><\/div><\/div><\/div>"},"313576083":{"t":"Superior Chain Greaves of Warding","k":"652e44470e","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 16.6     Interference: 7.8<\/div>
Physical Mitigation<\/div>
+8.53<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+9.22<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.45<\/span><\/div><\/div>
Slashing<\/div>
+7.19<\/span><\/div><\/div>
Piercing<\/div>
+3.44<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+17.69<\/span><\/div><\/div>
Agility<\/div>
+10.56<\/span><\/div><\/div><\/div><\/div>"},"313292001":{"t":"Superior Chain Greaves of the Thunder-child","k":"b7896f0abe","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 51%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 16.7     Interference: 7.8<\/div>
Physical Mitigation<\/div>
+8.59<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.77<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.72<\/span><\/div><\/div>
Slashing<\/div>
+6.43<\/span><\/div><\/div>
Piercing<\/div>
+3.43<\/span><\/div><\/div>
Elec<\/div>
+17.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+12.23<\/span><\/div><\/div><\/div><\/div>"},"313419983":{"t":"Superior Chain Greaves of the Thrice-blessed","k":"df948b4bab","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 93%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 16.8     Interference: 7.8<\/div>
Physical Mitigation<\/div>
+8.57<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.70<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.76<\/span><\/div><\/div>
Slashing<\/div>
+6.64<\/span><\/div><\/div>
Piercing<\/div>
+3.39<\/span><\/div><\/div>
Holy<\/div>
+17.46<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+18.07<\/span><\/div><\/div>
Endurance<\/div>
+16.34<\/span><\/div><\/div><\/div><\/div>"},"313256019":{"t":"Superior Chain Greaves of the Spirit-ward","k":"5b9de297ca","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 88%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 16.6     Interference: 7.8<\/div>
Physical Mitigation<\/div>
+8.42<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.35<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.48<\/span><\/div><\/div>
Slashing<\/div>
+7.33<\/span><\/div><\/div>
Piercing<\/div>
+3.69<\/span><\/div><\/div>
Dark<\/div>
+17.83<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+14.73<\/span><\/div><\/div>
Agility<\/div>
+10.74<\/span><\/div><\/div><\/div><\/div>"},"313418416":{"t":"Superior Mithril Chain Greaves of Warding","k":"bc1ffac31d","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 12.5     Interference: 7.8<\/div>
Physical Mitigation<\/div>
+8.56<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+9.08<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.43<\/span><\/div><\/div>
Slashing<\/div>
+7.25<\/span><\/div><\/div>
Piercing<\/div>
+3.28<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.29<\/span><\/div><\/div>
Agility<\/div>
+10.03<\/span><\/div><\/div><\/div><\/div>"},"313560359":{"t":"Superior Chain Helmet of Dampening","k":"1f71e7a0a4","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 58%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.1     Interference: 30.9<\/div>
Physical Mitigation<\/div>
+7.71<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.95<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+8.33<\/span><\/div><\/div>
Slashing<\/div>
+6.77<\/span><\/div><\/div>
Piercing<\/div>
+3.25<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+16.67<\/span><\/div><\/div><\/div><\/div>"},"313256184":{"t":"Superior Chain Gauntlets of Stoneskin","k":"6a1e968dce","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 80%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 3.3     Interference: 18.7<\/div>
Physical Mitigation<\/div>
+6.84<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.24<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.74<\/span><\/div><\/div>
Slashing<\/div>
+9.35<\/span><\/div><\/div>
Piercing<\/div>
+2.98<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+12.89<\/span><\/div><\/div>
Agility<\/div>
+8.86<\/span><\/div><\/div><\/div><\/div>"},"313459596":{"t":"Exquisite Chain Sabatons of the Fire-eater","k":"44516fd728","q":5,"d":"
Heavy Armor     Level 142     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.8     Interference: 4.5<\/div>
Physical Mitigation<\/div>
+6.27<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.02<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.65<\/span><\/div><\/div>
Slashing<\/div>
+5.64<\/span><\/div><\/div>
Piercing<\/div>
+2.80<\/span><\/div><\/div>
Fire<\/div>
+14.69<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+14.02<\/span><\/div><\/div>
Agility<\/div>
+8.13<\/span><\/div><\/div><\/div><\/div>"},"313420243":{"t":"Superior Chain Sabatons of the Thunder-child","k":"0e4c8e33b4","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 5.1     Interference: 4.7<\/div>
Physical Mitigation<\/div>
+6.02<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.54<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.42<\/span><\/div><\/div>
Slashing<\/div>
+4.72<\/span><\/div><\/div>
Piercing<\/div>
+2.72<\/span><\/div><\/div>
Elec<\/div>
+12.50<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+11.45<\/span><\/div><\/div><\/div><\/div>"},"313462529":{"t":"Superior Chain Sabatons of the Thrice-blessed","k":"954e54dabf","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 85%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 5.0     Interference: 4.6<\/div>
Physical Mitigation<\/div>
+6.19<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.70<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.43<\/span><\/div><\/div>
Slashing<\/div>
+5.35<\/span><\/div><\/div>
Piercing<\/div>
+2.67<\/span><\/div><\/div>
Holy<\/div>
+13.24<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+12.42<\/span><\/div><\/div><\/div><\/div>"},"313511907":{"t":"Superior Onyx Chain Sabatons of Deflection","k":"2fd48f0d87","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 84%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 5.0     Interference: 4.7<\/div>
Physical Mitigation<\/div>
+6.36<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.65<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.36<\/span><\/div><\/div>
Slashing<\/div>
+5.04<\/span><\/div><\/div>
Piercing<\/div>
+5.60<\/span><\/div><\/div>
Dark<\/div>
+12.70<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+11.20<\/span><\/div><\/div>
Agility<\/div>
+7.17<\/span><\/div><\/div><\/div><\/div>"},"313343868":{"t":"Superior Plate Cuirass of Protection","k":"ab204fadc5","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.5     Interference: 17.0<\/div>
Physical Mitigation<\/div>
+14.32<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.55<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.50<\/span><\/div><\/div>
Slashing<\/div>
+8.97<\/span><\/div><\/div>
Piercing<\/div>
+8.81<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+21.05<\/span><\/div><\/div><\/div><\/div>"},"313511852":{"t":"Superior Plate Cuirass of Warding","k":"07792b432a","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 61%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 26.0     Interference: 17.4<\/div>
Physical Mitigation<\/div>
+11.56<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+10.53<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.72<\/span><\/div><\/div>
Slashing<\/div>
+8.08<\/span><\/div><\/div>
Piercing<\/div>
+8.41<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+17.56<\/span><\/div><\/div>
Endurance<\/div>
+25.28<\/span><\/div><\/div><\/div><\/div>"},"313552093":{"t":"Superior Plate Cuirass of Warding","k":"0e447be621","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 50%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.7     Interference: 17.2<\/div>
Physical Mitigation<\/div>
+11.97<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+11.15<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.88<\/span><\/div><\/div>
Slashing<\/div>
+8.76<\/span><\/div><\/div>
Piercing<\/div>
+8.15<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+16.80<\/span><\/div><\/div><\/div><\/div>"},"313332679":{"t":"Superior Plate Cuirass of Stoneskin","k":"27c6a55167","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 83%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 26.0     Interference: 17.4<\/div>
Physical Mitigation<\/div>
+11.48<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.47<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.93<\/span><\/div><\/div>
Slashing<\/div>
+12.81<\/span><\/div><\/div>
Piercing<\/div>
+8.66<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+24.91<\/span><\/div><\/div><\/div><\/div>"},"313420862":{"t":"Superior Plate Cuirass of the Fire-eater","k":"52eb3e6133","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 89%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.7     Interference: 17.2<\/div>
Physical Mitigation<\/div>
+11.65<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.80<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.03<\/span><\/div><\/div>
Slashing<\/div>
+9.03<\/span><\/div><\/div>
Piercing<\/div>
+8.29<\/span><\/div><\/div>
Fire<\/div>
+19.15<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+22.40<\/span><\/div><\/div><\/div><\/div>"},"313551499":{"t":"Superior Plate Cuirass of the Fire-eater","k":"6fe5269c87","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 96%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.3     Interference: 16.9<\/div>
Physical Mitigation<\/div>
+11.95<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.22<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.45<\/span><\/div><\/div>
Slashing<\/div>
+9.00<\/span><\/div><\/div>
Piercing<\/div>
+8.43<\/span><\/div><\/div>
Fire<\/div>
+19.97<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+17.32<\/span><\/div><\/div>
Endurance<\/div>
+24.01<\/span><\/div><\/div><\/div><\/div>"},"313382202":{"t":"Superior Plate Cuirass of the Thrice-blessed","k":"55443540a9","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 53%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.8     Interference: 17.2<\/div>
Physical Mitigation<\/div>
+11.73<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.02<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.03<\/span><\/div><\/div>
Slashing<\/div>
+8.43<\/span><\/div><\/div>
Piercing<\/div>
+8.43<\/span><\/div><\/div>
Holy<\/div>
+19.05<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+16.06<\/span><\/div><\/div>
Endurance<\/div>
+24.36<\/span><\/div><\/div><\/div><\/div>"},"313576141":{"t":"Superior Plate Cuirass of the Spirit-ward","k":"bb95dc759f","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 86%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.4     Interference: 16.9<\/div>
Physical Mitigation<\/div>
+11.97<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.78<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.74<\/span><\/div><\/div>
Slashing<\/div>
+8.79<\/span><\/div><\/div>
Piercing<\/div>
+8.76<\/span><\/div><\/div>
Dark<\/div>
+19.76<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+20.00<\/span><\/div><\/div><\/div><\/div>"},"313419363":{"t":"Superior Cobalt Plate Cuirass of Protection","k":"208ca19cf2","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 97%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.5     Interference: 17.0<\/div>
Physical Mitigation<\/div>
+14.12<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.33<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.88<\/span><\/div><\/div>
Slashing<\/div>
+8.56<\/span><\/div><\/div>
Piercing<\/div>
+9.00<\/span><\/div><\/div>
Cold<\/div>
+19.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+18.89<\/span><\/div><\/div>
Endurance<\/div>
+21.55<\/span><\/div><\/div><\/div><\/div>"},"313512260":{"t":"Superior Mithril Plate Cuirass of the Wind-waker","k":"bf00d4c017","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 92%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 19.3     Interference: 17.2<\/div>
Physical Mitigation<\/div>
+11.79<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.91<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.86<\/span><\/div><\/div>
Slashing<\/div>
+8.17<\/span><\/div><\/div>
Piercing<\/div>
+8.84<\/span><\/div><\/div>
Wind<\/div>
+19.15<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+22.93<\/span><\/div><\/div><\/div><\/div>"},"313512313":{"t":"Magnificent Plate Greaves of the Wind-waker","k":"c908819437","q":6,"d":"
Heavy Armor     Level 151     Tradeable<\/span><\/div>
Condition: 85%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 30.5     Interference: 7.6<\/div>
Physical Mitigation<\/div>
+11.46<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.92<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.95<\/span><\/div><\/div>
Slashing<\/div>
+9.44<\/span><\/div><\/div>
Piercing<\/div>
+9.36<\/span><\/div><\/div>
Wind<\/div>
+23.14<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+22.57<\/span><\/div><\/div>
Dexterity<\/div>
+20.41<\/span><\/div><\/div>
Endurance<\/div>
+27.32<\/span><\/div><\/div><\/div><\/div>"},"313256436":{"t":"Superior Plate Greaves of Protection","k":"f31cc5eb43","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 78%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.0     Interference: 8.5<\/div>
Physical Mitigation<\/div>
+13.23<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.12<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.32<\/span><\/div><\/div>
Slashing<\/div>
+8.18<\/span><\/div><\/div>
Piercing<\/div>
+8.32<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+15.87<\/span><\/div><\/div>
Dexterity<\/div>
+17.95<\/span><\/div><\/div><\/div><\/div>"},"313510148":{"t":"Superior Plate Greaves of the Frost-born","k":"45da4628b6","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.3     Interference: 8.6<\/div>
Physical Mitigation<\/div>
+10.43<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.91<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.00<\/span><\/div><\/div>
Slashing<\/div>
+8.20<\/span><\/div><\/div>
Piercing<\/div>
+7.98<\/span><\/div><\/div>
Cold<\/div>
+17.64<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+16.46<\/span><\/div><\/div><\/div><\/div>"},"313417803":{"t":"Superior Plate Greaves of the Wind-waker","k":"b63eca80da","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.2     Interference: 8.5<\/div>
Physical Mitigation<\/div>
+10.35<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.80<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.49<\/span><\/div><\/div>
Slashing<\/div>
+7.60<\/span><\/div><\/div>
Piercing<\/div>
+7.80<\/span><\/div><\/div>
Wind<\/div>
+17.74<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+18.46<\/span><\/div><\/div>
Dexterity<\/div>
+18.72<\/span><\/div><\/div><\/div><\/div>"},"313509528":{"t":"Superior Plate Greaves of the Wind-waker","k":"af7cfda5ac","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 83%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.7     Interference: 8.7<\/div>
Physical Mitigation<\/div>
+10.39<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.54<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.93<\/span><\/div><\/div>
Slashing<\/div>
+7.60<\/span><\/div><\/div>
Piercing<\/div>
+7.47<\/span><\/div><\/div>
Wind<\/div>
+17.10<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+20.06<\/span><\/div><\/div><\/div><\/div>"},"313417829":{"t":"Superior Plate Greaves of the Spirit-ward","k":"12ed598fbb","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.6     Interference: 8.7<\/div>
Physical Mitigation<\/div>
+10.35<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.36<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.00<\/span><\/div><\/div>
Slashing<\/div>
+7.57<\/span><\/div><\/div>
Piercing<\/div>
+7.84<\/span><\/div><\/div>
Dark<\/div>
+17.28<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.75<\/span><\/div><\/div><\/div><\/div>"},"313418769":{"t":"Superior Plate Greaves of the Spirit-ward","k":"fb29793f46","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.2     Interference: 8.5<\/div>
Physical Mitigation<\/div>
+11.01<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.56<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.34<\/span><\/div><\/div>
Slashing<\/div>
+7.94<\/span><\/div><\/div>
Piercing<\/div>
+7.57<\/span><\/div><\/div>
Dark<\/div>
+17.83<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+17.57<\/span><\/div><\/div><\/div><\/div>"},"313292003":{"t":"Superior Jade Plate Greaves of Protection","k":"556a1d09e3","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.3     Interference: 8.6<\/div>
Physical Mitigation<\/div>
+12.68<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.21<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.20<\/span><\/div><\/div>
Slashing<\/div>
+7.87<\/span><\/div><\/div>
Piercing<\/div>
+7.68<\/span><\/div><\/div>
Wind<\/div>
+17.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+16.22<\/span><\/div><\/div>
Dexterity<\/div>
+16.22<\/span><\/div><\/div><\/div><\/div>"},"313560426":{"t":"Superior Jade Plate Greaves of Warding","k":"2b8cbf6d5a","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 89%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 34.6     Interference: 8.7<\/div>
Physical Mitigation<\/div>
+10.51<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+10.34<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.43<\/span><\/div><\/div>
Slashing<\/div>
+7.86<\/span><\/div><\/div>
Piercing<\/div>
+7.53<\/span><\/div><\/div>
Wind<\/div>
+17.28<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+17.43<\/span><\/div><\/div>
Endurance<\/div>
+18.69<\/span><\/div><\/div><\/div><\/div>"},"313419844":{"t":"Superior Jade Plate Greaves of Stoneskin","k":"776d7efb9f","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 33.7     Interference: 8.4<\/div>
Physical Mitigation<\/div>
+10.86<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.26<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.63<\/span><\/div><\/div>
Slashing<\/div>
+12.81<\/span><\/div><\/div>
Piercing<\/div>
+7.94<\/span><\/div><\/div>
Wind<\/div>
+18.30<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+18.08<\/span><\/div><\/div>
Endurance<\/div>
+25.13<\/span><\/div><\/div><\/div><\/div>"},"313256437":{"t":"Superior Plate Helmet of Warding","k":"ca92e02cce","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.4     Interference: 33.7<\/div>
Physical Mitigation<\/div>
+9.58<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+9.55<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.64<\/span><\/div><\/div>
Slashing<\/div>
+7.52<\/span><\/div><\/div>
Piercing<\/div>
+7.57<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+14.32<\/span><\/div><\/div><\/div><\/div>"},"313417165":{"t":"Superior Plate Helmet of Warding","k":"3db39f0c98","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 91%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.6     Interference: 34.3<\/div>
Physical Mitigation<\/div>
+9.69<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+9.51<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.20<\/span><\/div><\/div>
Slashing<\/div>
+7.21<\/span><\/div><\/div>
Piercing<\/div>
+6.77<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+20.15<\/span><\/div><\/div><\/div><\/div>"},"313290986":{"t":"Superior Plate Helmet of Deflection","k":"93cd0a2fab","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 94%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.7     Interference: 34.7<\/div>
Physical Mitigation<\/div>
+9.63<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.67<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.32<\/span><\/div><\/div>
Slashing<\/div>
+7.13<\/span><\/div><\/div>
Piercing<\/div>
+10.71<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+14.10<\/span><\/div><\/div><\/div><\/div>"},"313557679":{"t":"Superior Plate Helmet of the Frost-born","k":"6165fe5261","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 54%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.5     Interference: 34.2<\/div>
Physical Mitigation<\/div>
+9.74<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.37<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.55<\/span><\/div><\/div>
Slashing<\/div>
+7.19<\/span><\/div><\/div>
Piercing<\/div>
+6.75<\/span><\/div><\/div>
Cold<\/div>
+16.21<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+17.25<\/span><\/div><\/div>
Endurance<\/div>
+22.19<\/span><\/div><\/div><\/div><\/div>"},"313320995":{"t":"Superior Plate Helmet of the Thunder-child","k":"d2a43ca9ae","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 93%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.6     Interference: 34.4<\/div>
Physical Mitigation<\/div>
+9.77<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.31<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.59<\/span><\/div><\/div>
Slashing<\/div>
+6.79<\/span><\/div><\/div>
Piercing<\/div>
+7.19<\/span><\/div><\/div>
Elec<\/div>
+15.79<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.18<\/span><\/div><\/div><\/div><\/div>"},"313419312":{"t":"Superior Plate Helmet of the Thunder-child","k":"c170bf97f0","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.6     Interference: 34.4<\/div>
Physical Mitigation<\/div>
+9.96<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.69<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.51<\/span><\/div><\/div>
Slashing<\/div>
+6.77<\/span><\/div><\/div>
Piercing<\/div>
+7.19<\/span><\/div><\/div>
Elec<\/div>
+15.87<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+15.40<\/span><\/div><\/div>
Endurance<\/div>
+17.26<\/span><\/div><\/div><\/div><\/div>"},"313419388":{"t":"Superior Plate Helmet of the Thunder-child","k":"ce02431a77","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 54%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.6     Interference: 34.3<\/div>
Physical Mitigation<\/div>
+9.86<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.33<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.08<\/span><\/div><\/div>
Slashing<\/div>
+7.09<\/span><\/div><\/div>
Piercing<\/div>
+7.13<\/span><\/div><\/div>
Elec<\/div>
+16.04<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+16.78<\/span><\/div><\/div>
Dexterity<\/div>
+16.20<\/span><\/div><\/div><\/div><\/div>"},"313256154":{"t":"Superior Plate Helmet of the Wind-waker","k":"90ff002da8","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 59%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.5     Interference: 34.0<\/div>
Physical Mitigation<\/div>
+9.79<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.94<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.64<\/span><\/div><\/div>
Slashing<\/div>
+7.41<\/span><\/div><\/div>
Piercing<\/div>
+6.89<\/span><\/div><\/div>
Wind<\/div>
+16.29<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+18.10<\/span><\/div><\/div><\/div><\/div>"},"313510149":{"t":"Superior Plate Helmet of the Thrice-blessed","k":"7da85c7ee8","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 73%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.5     Interference: 34.0<\/div>
Physical Mitigation<\/div>
+9.71<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.71<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.82<\/span><\/div><\/div>
Slashing<\/div>
+6.81<\/span><\/div><\/div>
Piercing<\/div>
+6.95<\/span><\/div><\/div>
Holy<\/div>
+16.38<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+17.26<\/span><\/div><\/div>
Dexterity<\/div>
+16.66<\/span><\/div><\/div><\/div><\/div>"},"313575833":{"t":"Exquisite Jade Plate Gauntlets of the Thrice-blessed","k":"1c116840a9","q":5,"d":"
Heavy Armor     Level 167     Tradeable<\/span><\/div>
Condition: 78%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.4     Interference: 19.2<\/div>
Physical Mitigation<\/div>
+8.97<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.97<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.58<\/span><\/div><\/div>
Slashing<\/div>
+7.44<\/span><\/div><\/div>
Piercing<\/div>
+6.94<\/span><\/div><\/div>
Wind<\/div>
+17.21<\/span><\/div><\/div>
Holy<\/div>
+17.21<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+18.94<\/span><\/div><\/div>
Dexterity<\/div>
+16.97<\/span><\/div><\/div><\/div><\/div>"},"313344064":{"t":"Superior Plate Gauntlets of Protection","k":"c17e14ac57","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 62%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.5<\/div>
Physical Mitigation<\/div>
+10.33<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.37<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.25<\/span><\/div><\/div>
Slashing<\/div>
+6.55<\/span><\/div><\/div>
Piercing<\/div>
+6.18<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+14.17<\/span><\/div><\/div><\/div><\/div>"},"313257648":{"t":"Superior Plate Gauntlets of Warding","k":"28acc00978","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.5<\/div>
Physical Mitigation<\/div>
+8.63<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+8.43<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.10<\/span><\/div><\/div>
Slashing<\/div>
+6.18<\/span><\/div><\/div>
Piercing<\/div>
+6.81<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+12.60<\/span><\/div><\/div><\/div><\/div>"},"313512051":{"t":"Superior Plate Gauntlets of Warding","k":"fe93a14b1b","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 76%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.5<\/div>
Physical Mitigation<\/div>
+8.64<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+8.60<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.31<\/span><\/div><\/div>
Slashing<\/div>
+6.40<\/span><\/div><\/div>
Piercing<\/div>
+6.09<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.74<\/span><\/div><\/div>
Endurance<\/div>
+15.79<\/span><\/div><\/div><\/div><\/div>"},"313254877":{"t":"Superior Plate Gauntlets of Dampening","k":"839c5b7822","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 81%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.5<\/div>
Physical Mitigation<\/div>
+8.92<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.08<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+6.90<\/span><\/div><\/div>
Slashing<\/div>
+6.75<\/span><\/div><\/div>
Piercing<\/div>
+6.16<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+12.89<\/span><\/div><\/div><\/div><\/div>"},"313256510":{"t":"Superior Plate Gauntlets of the Fire-eater","k":"bbea7f7321","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.4<\/div>
Physical Mitigation<\/div>
+8.72<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.95<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.42<\/span><\/div><\/div>
Slashing<\/div>
+6.08<\/span><\/div><\/div>
Piercing<\/div>
+6.71<\/span><\/div><\/div>
Fire<\/div>
+14.74<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+14.27<\/span><\/div><\/div>
Endurance<\/div>
+19.97<\/span><\/div><\/div><\/div><\/div>"},"313509938":{"t":"Superior Plate Gauntlets of the Fire-eater","k":"f865b5b3e9","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.9     Interference: 20.6<\/div>
Physical Mitigation<\/div>
+8.86<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.10<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.82<\/span><\/div><\/div>
Slashing<\/div>
+6.44<\/span><\/div><\/div>
Piercing<\/div>
+6.30<\/span><\/div><\/div>
Fire<\/div>
+14.36<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+13.57<\/span><\/div><\/div>
Endurance<\/div>
+18.97<\/span><\/div><\/div><\/div><\/div>"},"313550873":{"t":"Superior Plate Gauntlets of the Frost-born","k":"c0c5a61d80","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 87%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.9     Interference: 20.6<\/div>
Physical Mitigation<\/div>
+8.98<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.16<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.02<\/span><\/div><\/div>
Slashing<\/div>
+6.29<\/span><\/div><\/div>
Piercing<\/div>
+6.13<\/span><\/div><\/div>
Cold<\/div>
+14.43<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+12.89<\/span><\/div><\/div>
Endurance<\/div>
+19.68<\/span><\/div><\/div><\/div><\/div>"},"313542227":{"t":"Superior Plate Gauntlets of the Thunder-child","k":"1a74a3b355","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 59%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.4<\/div>
Physical Mitigation<\/div>
+8.50<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.33<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.29<\/span><\/div><\/div>
Slashing<\/div>
+6.47<\/span><\/div><\/div>
Piercing<\/div>
+6.51<\/span><\/div><\/div>
Elec<\/div>
+14.66<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.64<\/span><\/div><\/div>
Endurance<\/div>
+16.17<\/span><\/div><\/div><\/div><\/div>"},"313542310":{"t":"Superior Plate Gauntlets of the Thunder-child","k":"9304ec6668","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 81%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.9     Interference: 20.6<\/div>
Physical Mitigation<\/div>
+8.70<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.54<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.82<\/span><\/div><\/div>
Slashing<\/div>
+6.65<\/span><\/div><\/div>
Piercing<\/div>
+6.40<\/span><\/div><\/div>
Elec<\/div>
+14.36<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+11.78<\/span><\/div><\/div>
Dexterity<\/div>
+13.66<\/span><\/div><\/div><\/div><\/div>"},"313509214":{"t":"Superior Plate Gauntlets of the Wind-waker","k":"58a1d456f7","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.9     Interference: 20.6<\/div>
Physical Mitigation<\/div>
+8.84<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.26<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.88<\/span><\/div><\/div>
Slashing<\/div>
+6.47<\/span><\/div><\/div>
Piercing<\/div>
+6.20<\/span><\/div><\/div>
Wind<\/div>
+14.36<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+13.47<\/span><\/div><\/div><\/div><\/div>"},"313509311":{"t":"Superior Plate Gauntlets of the Wind-waker","k":"05fa00f625","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 68%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.9     Interference: 20.7<\/div>
Physical Mitigation<\/div>
+8.84<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.89<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.10<\/span><\/div><\/div>
Slashing<\/div>
+6.21<\/span><\/div><\/div>
Piercing<\/div>
+6.16<\/span><\/div><\/div>
Wind<\/div>
+14.21<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+14.68<\/span><\/div><\/div><\/div><\/div>"},"313075019":{"t":"Superior Plate Gauntlets of the Thrice-blessed","k":"eb841afcac","q":4,"d":"
Heavy Armor     Level 27     Tradeable<\/span><\/div>
Condition: 90%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.9     Interference: 20.7<\/div>
Physical Mitigation<\/div>
+8.43<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.52<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.80<\/span><\/div><\/div>
Slashing<\/div>
+6.13<\/span><\/div><\/div>
Piercing<\/div>
+6.36<\/span><\/div><\/div>
Holy<\/div>
+14.28<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+4.59<\/span><\/div><\/div><\/div><\/div>"},"313509686":{"t":"Superior Plate Gauntlets of the Spirit-ward","k":"77f1c2c6e3","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 57%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.5<\/div>
Physical Mitigation<\/div>
+8.47<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.43<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.04<\/span><\/div><\/div>
Slashing<\/div>
+6.27<\/span><\/div><\/div>
Piercing<\/div>
+6.79<\/span><\/div><\/div>
Dark<\/div>
+14.51<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+17.87<\/span><\/div><\/div><\/div><\/div>"},"313292212":{"t":"Superior Shielding Plate Gauntlets of Warding","k":"f06b23e68b","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 56%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 6.8     Interference: 20.4<\/div>
Physical Mitigation<\/div>
+8.81<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.93<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+20.01<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.25<\/span><\/div><\/div>
Slashing<\/div>
+6.45<\/span><\/div><\/div>
Piercing<\/div>
+6.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+13.18<\/span><\/div><\/div>
Endurance<\/div>
+20.12<\/span><\/div><\/div><\/div><\/div>"},"313552074":{"t":"Exquisite Plate Sabatons of Protection","k":"46e9ae399c","q":5,"d":"
Heavy Armor     Level 156     Tradeable<\/span><\/div>
Condition: 82%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 9.5     Interference: 4.8<\/div>
Physical Mitigation<\/div>
+10.32<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.09<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.11<\/span><\/div><\/div>
Slashing<\/div>
+6.54<\/span><\/div><\/div>
Piercing<\/div>
+6.56<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.03<\/span><\/div><\/div>
Endurance<\/div>
+17.42<\/span><\/div><\/div><\/div><\/div>"},"313382113":{"t":"Exquisite Onyx Plate Sabatons of Protection","k":"fea7075c6f","q":5,"d":"
Heavy Armor     Level 119     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 9.7     Interference: 4.9<\/div>
Physical Mitigation<\/div>
+10.11<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.74<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.89<\/span><\/div><\/div>
Slashing<\/div>
+6.20<\/span><\/div><\/div>
Piercing<\/div>
+6.28<\/span><\/div><\/div>
Dark<\/div>
+14.76<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+11.43<\/span><\/div><\/div>
Endurance<\/div>
+14.86<\/span><\/div><\/div><\/div><\/div>"},"313421279":{"t":"Superior Plate Sabatons of Protection","k":"80f0bb9bc3","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 52%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.2     Interference: 5.1<\/div>
Physical Mitigation<\/div>
+9.50<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.70<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.72<\/span><\/div><\/div>
Slashing<\/div>
+5.52<\/span><\/div><\/div>
Piercing<\/div>
+6.04<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+12.96<\/span><\/div><\/div><\/div><\/div>"},"313552815":{"t":"Superior Plate Sabatons of Protection","k":"e8c705a8e7","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 65%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.3     Interference: 5.2<\/div>
Physical Mitigation<\/div>
+9.37<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.35<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.43<\/span><\/div><\/div>
Slashing<\/div>
+5.42<\/span><\/div><\/div>
Piercing<\/div>
+5.79<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+13.61<\/span><\/div><\/div>
Endurance<\/div>
+17.11<\/span><\/div><\/div><\/div><\/div>"},"313255400":{"t":"Superior Plate Sabatons of Warding","k":"ec411fcd3a","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 90%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.5     Interference: 5.2<\/div>
Physical Mitigation<\/div>
+7.51<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+6.83<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.87<\/span><\/div><\/div>
Slashing<\/div>
+5.51<\/span><\/div><\/div>
Piercing<\/div>
+5.57<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+11.88<\/span><\/div><\/div><\/div><\/div>"},"313257630":{"t":"Superior Plate Sabatons of Warding","k":"89303ebd81","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 59%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.4     Interference: 5.2<\/div>
Physical Mitigation<\/div>
+7.64<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.14<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.65<\/span><\/div><\/div>
Slashing<\/div>
+5.87<\/span><\/div><\/div>
Piercing<\/div>
+5.39<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+13.61<\/span><\/div><\/div>
Endurance<\/div>
+13.81<\/span><\/div><\/div><\/div><\/div>"},"313418933":{"t":"Superior Plate Sabatons of Warding","k":"b05458de14","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.4     Interference: 5.2<\/div>
Physical Mitigation<\/div>
+7.62<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.12<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.51<\/span><\/div><\/div>
Slashing<\/div>
+6.04<\/span><\/div><\/div>
Piercing<\/div>
+5.42<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+15.52<\/span><\/div><\/div><\/div><\/div>"},"313458121":{"t":"Superior Plate Sabatons of Warding","k":"89d684dc50","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.1     Interference: 5.1<\/div>
Physical Mitigation<\/div>
+8.02<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.30<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.00<\/span><\/div><\/div>
Slashing<\/div>
+5.60<\/span><\/div><\/div>
Piercing<\/div>
+5.79<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+13.81<\/span><\/div><\/div><\/div><\/div>"},"313575922":{"t":"Superior Plate Sabatons of Deflection","k":"52f008a265","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 94%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.1     Interference: 5.0<\/div>
Physical Mitigation<\/div>
+7.87<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.83<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.05<\/span><\/div><\/div>
Slashing<\/div>
+5.93<\/span><\/div><\/div>
Piercing<\/div>
+9.15<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+12.60<\/span><\/div><\/div><\/div><\/div>"},"313550882":{"t":"Superior Plate Sabatons of the Thunder-child","k":"9a256fabef","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.3     Interference: 5.1<\/div>
Physical Mitigation<\/div>
+7.99<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.36<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.77<\/span><\/div><\/div>
Slashing<\/div>
+5.87<\/span><\/div><\/div>
Piercing<\/div>
+5.40<\/span><\/div><\/div>
Elec<\/div>
+12.90<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+12.06<\/span><\/div><\/div>
Dexterity<\/div>
+12.59<\/span><\/div><\/div><\/div><\/div>"},"313417617":{"t":"Superior Plate Sabatons of the Thrice-blessed","k":"b6d6284464","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 93%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.3     Interference: 5.1<\/div>
Physical Mitigation<\/div>
+7.88<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.47<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.96<\/span><\/div><\/div>
Slashing<\/div>
+5.54<\/span><\/div><\/div>
Piercing<\/div>
+5.46<\/span><\/div><\/div>
Holy<\/div>
+12.90<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+11.97<\/span><\/div><\/div>
Endurance<\/div>
+17.49<\/span><\/div><\/div><\/div><\/div>"},"313291421":{"t":"Superior Plate Sabatons of the Spirit-ward","k":"b62cdc345f","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 84%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.5     Interference: 5.2<\/div>
Physical Mitigation<\/div>
+8.02<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.38<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+2.48<\/span><\/div><\/div>
Slashing<\/div>
+5.57<\/span><\/div><\/div>
Piercing<\/div>
+5.59<\/span><\/div><\/div>
Dark<\/div>
+12.24<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+10.54<\/span><\/div><\/div>
Dexterity<\/div>
+10.46<\/span><\/div><\/div><\/div><\/div>"},"313382050":{"t":"Exquisite Power Leggings of Protection","k":"3bdf25ce62","q":5,"d":"
Heavy Armor     Level 119     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: 100%<\/span><\/div>
Burden: 25.6     Interference: 9.9<\/div>
Attack Damage<\/div>
+93.64<\/span><\/div><\/div>
Attack Accuracy<\/div>
+13.40<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.05<\/span><\/div>
x<\/div><\/div>
Physical Mitigation<\/div>
+10.11<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.74<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.81<\/span><\/div><\/div>
Slashing<\/div>
+6.44<\/span><\/div><\/div>
Piercing<\/div>
+6.02<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+24.90<\/span><\/div><\/div>
Endurance<\/div>
+16.67<\/span><\/div><\/div><\/div><\/div>"},"313256509":{"t":"Superior Power Helmet of Warding","k":"9dbf5f0e9e","q":4,"d":"
Heavy Armor     Level Unassigned     Tradeable<\/span><\/div>
Condition: 53%<\/span>     Energy: 54%<\/span><\/div>
Burden: 6.8     Interference: 41.3<\/div>
Attack Damage<\/div>
+121.3<\/span><\/div><\/div>
Attack Accuracy<\/div>
+13.49<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.04<\/span><\/div>
x<\/div><\/div>
Physical Mitigation<\/div>
+6.63<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+7.76<\/span><\/div>
%<\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+3.26<\/span><\/div><\/div>
Slashing<\/div>
+5.11<\/span><\/div><\/div>
Piercing<\/div>
+5.69<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+21.55<\/span><\/div><\/div><\/div><\/div>"},"313320447":{"t":"Superior Shortsword of Slaughter","k":"0ed17e1620","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 55%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: 5.1<\/div>
Bleeding Wound<\/span>: 20.4% chance<\/span><\/div>
+435 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+74.85<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.16<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+88.09<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+23.06<\/span><\/div><\/div><\/div><\/div>"},"313551475":{"t":"Superior Shortsword of Slaughter","k":"ce9eecdb1f","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 73%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.5     Interference: 5.2<\/div>
Bleeding Wound<\/span>: 20.1% chance<\/span><\/div>
+428 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+86.80<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+93.11<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+20.28<\/span><\/div><\/div>
Agility<\/div>
+20.16<\/span><\/div><\/div><\/div><\/div>"},"313418511":{"t":"Superior Shortsword of Swiftness","k":"b28c395801","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 53%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: 5.1<\/div>
Bleeding Wound<\/span>: 20.4% chance<\/span><\/div>
+310 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+76.59<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+91.59<\/span><\/div><\/div>
Attack Speed<\/div>
+3.96<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+24.10<\/span><\/div><\/div><\/div><\/div>"},"313510328":{"t":"Superior Shortsword of the Raccoon","k":"ff359bdc6f","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: 5.1<\/div>
Bleeding Wound<\/span>: 20.5% chance<\/span><\/div>
+329 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+79.11<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+90.58<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+24.23<\/span><\/div><\/div>
Dexterity<\/div>
+36.78<\/span><\/div><\/div><\/div><\/div>"},"313325814":{"t":"Magnificent Dagger of Swiftness","k":"cd35aed186","q":6,"d":"
One-handed Weapon     Level 104     Tradeable<\/span><\/div>
Condition: 87%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 3.5     Interference: 3.5<\/div>
Bleeding Wound<\/span>: 23.3% chance<\/span><\/div>
+234 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+82.42<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.23<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+133.9<\/span><\/div><\/div>
Attack Speed<\/div>
+5.33<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+25.05<\/span><\/div><\/div>
Agility<\/div>
+27.61<\/span><\/div><\/div><\/div><\/div>"},"313512121":{"t":"Magnificent Dagger of the Nimble","k":"4d0d62fa5b","q":6,"d":"
One-handed Weapon     Level 150     Tradeable<\/span><\/div>
Condition: 92%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 3.5     Interference: 3.5<\/div>
Bleeding Wound<\/span>: 23.5% chance<\/span><\/div>
+305 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+109.7<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.26<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+206.0<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+37.08<\/span><\/div><\/div>
Agility<\/div>
+36.55<\/span><\/div><\/div><\/div><\/div>"},"313461207":{"t":"Exquisite Dagger of the Battlecaster","k":"829b6a9bd8","q":5,"d":"
One-handed Weapon     Level 143     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 3.9     Interference: None<\/div>
Bleeding Wound<\/span>: 21.9% chance<\/span><\/div>
+266 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+96.83<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.21<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+123.7<\/span><\/div><\/div>
Mana Conservation<\/div>
+19.63<\/span><\/div>
%<\/div><\/div>
Magic Accuracy<\/div>
+37.14<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+30.47<\/span><\/div><\/div>
Agility<\/div>
+28.68<\/span><\/div><\/div><\/div><\/div>"},"313509594":{"t":"Exquisite Shocking Dagger of Balance","k":"6661ff1e04","q":5,"d":"
One-handed Weapon     Level 147     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 3.9     Interference: 3.9<\/div>
Bleeding Wound<\/span>: 21.9% chance<\/span><\/div>
+248 Slashing Damage<\/span><\/div>
Elec Strike (50%)<\/span><\/div>
Attack Accuracy<\/div>
+139.4<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.35<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+119.5<\/span><\/div><\/div><\/div>
Spell Damage<\/div>
Elec<\/div>
+15.58<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+32.43<\/span><\/div><\/div>
Agility<\/div>
+27.71<\/span><\/div><\/div><\/div><\/div>"},"313576092":{"t":"Exquisite Hallowed Dagger of Swiftness","k":"d34792ed50","q":5,"d":"
One-handed Weapon     Level 168     Tradeable<\/span><\/div>
Condition: 64%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 3.8     Interference: 3.8<\/div>
Bleeding Wound<\/span>: 22.2% chance<\/span><\/div>
+285 Slashing Damage<\/span><\/div>
Holy Strike (50%)<\/span><\/div>
Attack Accuracy<\/div>
+111.7<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.22<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+137.6<\/span><\/div><\/div>
Attack Speed<\/div>
+4.80<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Holy<\/div>
+16.95<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+36.71<\/span><\/div><\/div>
Agility<\/div>
+34.75<\/span><\/div><\/div><\/div><\/div>"},"313417722":{"t":"Superior Dagger of Slaughter","k":"34716f6497","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 78%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.4     Interference: 4.4<\/div>
Bleeding Wound<\/span>: 20.5% chance<\/span><\/div>
+372 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+101.2<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.19<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+113.0<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+27.09<\/span><\/div><\/div>
Agility<\/div>
+31.99<\/span><\/div><\/div><\/div><\/div>"},"313382139":{"t":"Superior Dagger of Swiftness","k":"adba080ce2","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.3     Interference: 4.3<\/div>
Bleeding Wound<\/span>: 20.6% chance<\/span><\/div>
+283 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+97.21<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.18<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+113.0<\/span><\/div><\/div>
Attack Speed<\/div>
+4.04<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+31.02<\/span><\/div><\/div><\/div><\/div>"},"313382192":{"t":"Superior Dagger of Swiftness","k":"fa4658400a","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 94%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.2     Interference: 4.2<\/div>
Bleeding Wound<\/span>: 21% chance<\/span><\/div>
+288 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+97.50<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.20<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+124.8<\/span><\/div><\/div>
Attack Speed<\/div>
+4.22<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+30.87<\/span><\/div><\/div><\/div><\/div>"},"313542101":{"t":"Superior Dagger of Swiftness","k":"9ca4fc4335","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 95%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.3     Interference: 4.3<\/div>
Bleeding Wound<\/span>: 20.6% chance<\/span><\/div>
+244 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+102.4<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.17<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+128.7<\/span><\/div><\/div>
Attack Speed<\/div>
+4.07<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+31.34<\/span><\/div><\/div>
Agility<\/div>
+28.69<\/span><\/div><\/div><\/div><\/div>"},"313557584":{"t":"Superior Dagger of Swiftness","k":"7ef9b3f56c","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.4     Interference: 4.4<\/div>
Bleeding Wound<\/span>: 20.3% chance<\/span><\/div>
+231 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+101.8<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.18<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+128.0<\/span><\/div><\/div>
Attack Speed<\/div>
+3.94<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+26.81<\/span><\/div><\/div><\/div><\/div>"},"313459472":{"t":"Superior Dagger of Balance","k":"09b7a499a4","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.3     Interference: 4.3<\/div>
Bleeding Wound<\/span>: 20.7% chance<\/span><\/div>
+290 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+138.5<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.29<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+119.0<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+29.00<\/span><\/div><\/div><\/div><\/div>"},"313333864":{"t":"Superior Dagger of the Cheetah","k":"54875260cc","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 88%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.3     Interference: 4.3<\/div>
Bleeding Wound<\/span>: 20.7% chance<\/span><\/div>
+240 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+106.4<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.18<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+130.7<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+31.18<\/span><\/div><\/div>
Agility<\/div>
+38.95<\/span><\/div><\/div><\/div><\/div>"},"313509136":{"t":"Superior Dagger of the Nimble","k":"021fa1678e","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 81%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.4     Interference: 4.4<\/div>
Bleeding Wound<\/span>: 20.3% chance<\/span><\/div>
+246 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+100.6<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.17<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+169.1<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+30.06<\/span><\/div><\/div>
Agility<\/div>
+26.25<\/span><\/div><\/div><\/div><\/div>"},"313320729":{"t":"Superior Axe of Slaughter","k":"1e0240c2e1","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 73%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.4     Interference: 5.2<\/div>
Bleeding Wound<\/span>: 20.1% chance<\/span><\/div>
+561 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+33.28<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+63.18<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.74<\/span><\/div><\/div>
Agility<\/div>
+11.23<\/span><\/div><\/div><\/div><\/div>"},"313418658":{"t":"Superior Axe of Slaughter","k":"07cc50f57a","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 96%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.3     Interference: 5.2<\/div>
Bleeding Wound<\/span>: 20.3% chance<\/span><\/div>
+569 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+37.57<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.15<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+62.03<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+22.05<\/span><\/div><\/div>
Agility<\/div>
+11.09<\/span><\/div><\/div><\/div><\/div>"},"313254957":{"t":"Superior Axe of Balance","k":"ebac6af09b","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 87%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.4     Interference: 5.2<\/div>
Bleeding Wound<\/span>: 20.1% chance<\/span><\/div>
+464 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+64.54<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.25<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+58.99<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+11.75<\/span><\/div><\/div><\/div><\/div>"},"313459440":{"t":"Superior Axe of the Ox","k":"cf90f49d8b","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 50%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.4     Interference: 5.2<\/div>
Bleeding Wound<\/span>: 20.1% chance<\/span><\/div>
+432 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+32.00<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.16<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+62.01<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+32.62<\/span><\/div><\/div><\/div><\/div>"},"313459594":{"t":"Superior Wakizashi of Swiftness","k":"ea5d7fd8d7","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 94%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.4     Interference: 4.4<\/div>
Bleeding Wound<\/span>: 20.3% chance<\/span><\/div>
+232 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+81.54<\/span><\/div><\/div>
Attack Speed<\/div>
+12.05<\/span><\/div>
%<\/div><\/div>
Attack Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+116.6<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+29.44<\/span><\/div><\/div>
Agility<\/div>
+27.09<\/span><\/div><\/div><\/div><\/div>"},"313344041":{"t":"Exquisite Rapier of the Illithid","k":"4b4246047d","q":5,"d":"
One-handed Weapon     Level 117     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.0     Interference: 4.7<\/div>
Penetrated Armor<\/span>: 21.7% chance<\/span><\/div>
Siphon Magic<\/span>: 25.34% chance<\/span><\/div>
+214 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+51.71<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.17<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+84.87<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+21.14<\/span><\/div><\/div>
Agility<\/div>
+11.50<\/span><\/div><\/div><\/div><\/div>"},"313550954":{"t":"Exquisite Rapier of Slaughter","k":"ba3f9d3e82","q":5,"d":"
One-handed Weapon     Level 154     Tradeable<\/span><\/div>
Condition: 61%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.4     Interference: 4.3<\/div>
Penetrated Armor<\/span>: 22.6% chance<\/span><\/div>
+472 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+68.20<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.19<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+115.0<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+15.68<\/span><\/div><\/div>
Agility<\/div>
+15.60<\/span><\/div><\/div><\/div><\/div>"},"313510288":{"t":"Exquisite Rapier of Swiftness","k":"73749f7f22","q":5,"d":"
One-handed Weapon     Level 148     Tradeable<\/span><\/div>
Condition: 87%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.7     Interference: 4.5<\/div>
Penetrated Armor<\/span>: 22.2% chance<\/span><\/div>
+272 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+63.72<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.18<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+94.23<\/span><\/div><\/div>
Attack Speed<\/div>
+4.77<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+25.19<\/span><\/div><\/div>
Agility<\/div>
+16.69<\/span><\/div><\/div><\/div><\/div>"},"313550707":{"t":"Superior Rapier of Slaughter","k":"530a5fd9f9","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.7     Interference: 5.1<\/div>
Penetrated Armor<\/span>: 20.5% chance<\/span><\/div>
+384 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+60.64<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.12<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+92.11<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+23.31<\/span><\/div><\/div>
Agility<\/div>
+15.32<\/span><\/div><\/div><\/div><\/div>"},"313292075":{"t":"Superior Rapier of the Raccoon","k":"b6d6b485ef","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 8.8     Interference: 5.2<\/div>
Penetrated Armor<\/span>: 20.3% chance<\/span><\/div>
+241 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+65.83<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+88.08<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+13.24<\/span><\/div><\/div>
Dexterity<\/div>
+12.47<\/span><\/div><\/div><\/div><\/div>"},"313318752":{"t":"Exquisite Club of Slaughter","k":"f5776198cb","q":5,"d":"
One-handed Weapon     Level 99     Tradeable<\/span><\/div>
Condition: 53%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.0     Interference: 4.5<\/div>
Stunned<\/span>: 22.2% chance (4 turns)<\/span><\/div>
+355 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+28.26<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.20<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+71.01<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+10.85<\/span><\/div><\/div>
Agility<\/div>
+11.07<\/span><\/div><\/div><\/div><\/div>"},"313576416":{"t":"Exquisite Club of Slaughter","k":"299b7e3dce","q":5,"d":"
One-handed Weapon     Level 169     Tradeable<\/span><\/div>
Condition: 81%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.0     Interference: 4.5<\/div>
Stunned<\/span>: 22.2% chance (4 turns)<\/span><\/div>
+572 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+43.23<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.17<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+86.65<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+18.51<\/span><\/div><\/div>
Agility<\/div>
+15.20<\/span><\/div><\/div><\/div><\/div>"},"313416763":{"t":"Exquisite Demonic Club of Balance","k":"57c50c9603","q":5,"d":"
One-handed Weapon     Level 123     Tradeable<\/span><\/div>
Condition: 88%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.2     Interference: 4.6<\/div>
Stunned<\/span>: 21.8% chance (4 turns)<\/span><\/div>
+309 Crushing Damage<\/span><\/div>
Dark Strike (50%)<\/span><\/div>
Attack Accuracy<\/div>
+61.42<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.29<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+76.68<\/span><\/div><\/div><\/div>
Spell Damage<\/div>
Dark<\/div>
+14.39<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+11.95<\/span><\/div><\/div>
Agility<\/div>
+13.58<\/span><\/div><\/div><\/div><\/div>"},"313511053":{"t":"Superior Club of the Battlecaster","k":"3054b84764","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 86%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.2     Interference: None<\/div>
Stunned<\/span>: 20.4% chance (4 turns)<\/span><\/div>
+417 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+32.37<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+64.39<\/span><\/div><\/div>
Mana Conservation<\/div>
+17.33<\/span><\/div>
%<\/div><\/div>
Magic Accuracy<\/div>
+37.37<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+22.30<\/span><\/div><\/div>
Dexterity<\/div>
+13.66<\/span><\/div><\/div><\/div><\/div>"},"313552030":{"t":"Superior Club of the Vampire","k":"a60eb19402","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.2     Interference: 5.1<\/div>
Stunned<\/span>: 20.4% chance (4 turns)<\/span><\/div>
Siphon Health<\/span>: 23.88% chance<\/span><\/div>
+394 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+37.84<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+65.60<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+20.51<\/span><\/div><\/div>
Dexterity<\/div>
+13.81<\/span><\/div><\/div><\/div><\/div>"},"313292550":{"t":"Superior Club of the Illithid","k":"6b6a3a2c7e","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.9     Interference: 5.0<\/div>
Stunned<\/span>: 20.8% chance (4 turns)<\/span><\/div>
Siphon Magic<\/span>: 24.33% chance<\/span><\/div>
+362 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+33.94<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.15<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+70.21<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+24.77<\/span><\/div><\/div><\/div><\/div>"},"313417653":{"t":"Superior Club of the Illithid","k":"10eb304b30","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 54%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.2     Interference: 5.1<\/div>
Stunned<\/span>: 20.4% chance (4 turns)<\/span><\/div>
Siphon Magic<\/span>: 23.88% chance<\/span><\/div>
+396 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+31.71<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+62.04<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.08<\/span><\/div><\/div><\/div><\/div>"},"313461135":{"t":"Superior Club of the Banshee","k":"b4e5d53041","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 99%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.2     Interference: 5.1<\/div>
Stunned<\/span>: 20.5% chance (4 turns)<\/span><\/div>
Siphon Spirit<\/span>: 23.99% chance<\/span><\/div>
+392 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+33.76<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.12<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+66.01<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.16<\/span><\/div><\/div>
Agility<\/div>
+14.47<\/span><\/div><\/div><\/div><\/div>"},"313255191":{"t":"Superior Club of Slaughter","k":"f07010add8","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 85%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.3     Interference: 5.2<\/div>
Stunned<\/span>: 20.3% chance (4 turns)<\/span><\/div>
+468 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+31.21<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.16<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+69.75<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+13.11<\/span><\/div><\/div><\/div><\/div>"},"313382168":{"t":"Superior Club of Slaughter","k":"4e7fb8a3e4","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 52%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.2     Interference: 5.1<\/div>
Stunned<\/span>: 20.4% chance (4 turns)<\/span><\/div>
+507 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+36.87<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.12<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+68.49<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+20.86<\/span><\/div><\/div><\/div><\/div>"},"313551392":{"t":"Superior Club of Slaughter","k":"91c250257b","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 79%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.9     Interference: 4.9<\/div>
Stunned<\/span>: 20.9% chance (4 turns)<\/span><\/div>
+518 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+33.77<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+75.03<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+15.81<\/span><\/div><\/div><\/div><\/div>"},"313557763":{"t":"Superior Club of Slaughter","k":"2eb1f199f1","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 85%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.3     Interference: 5.2<\/div>
Stunned<\/span>: 20.3% chance (4 turns)<\/span><\/div>
+531 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+34.64<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+58.63<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+13.24<\/span><\/div><\/div><\/div><\/div>"},"313576556":{"t":"Superior Club of Swiftness","k":"182b8cb8fd","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 62%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.2     Interference: 5.1<\/div>
Stunned<\/span>: 20.5% chance (4 turns)<\/span><\/div>
+345 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+32.72<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.16<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+61.27<\/span><\/div><\/div>
Attack Speed<\/div>
+4.00<\/span><\/div>
%<\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+22.55<\/span><\/div><\/div>
Agility<\/div>
+15.96<\/span><\/div><\/div><\/div><\/div>"},"313255210":{"t":"Superior Club of the Nimble","k":"a89f8987f4","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 85%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 11.2     Interference: 5.1<\/div>
Stunned<\/span>: 20.4% chance (4 turns)<\/span><\/div>
+413 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+32.21<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+112.7<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+13.74<\/span><\/div><\/div><\/div><\/div>"},"313257751":{"t":"Superior Ethereal Club of Balance","k":"4c55dce9a6","q":4,"d":"
One-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 67%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: None<\/div>
Stunned<\/span>: 20.5% chance (4 turns)<\/span><\/div>
+340 Void Damage<\/span><\/div>
Void Strike (50%)<\/span><\/div>
Attack Accuracy<\/div>
+71.30<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.26<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+74.11<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+13.45<\/span><\/div><\/div><\/div><\/div>"},"313290757":{"t":"Exquisite Longsword of Slaughter","k":"d943458e11","q":5,"d":"
Two-handed Weapon     Level 88     Tradeable<\/span><\/div>
Condition: 110%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 22.2     Interference: 13.3<\/div>
Bleeding Wound<\/span>: 22.3% chance<\/span><\/div>
+476 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+23.09<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.32<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+52.37<\/span><\/div><\/div>
Block<\/div>
+95.55<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+36.87<\/span><\/div><\/div>
Agility<\/div>
+12.81<\/span><\/div><\/div><\/div><\/div>"},"313552763":{"t":"Superior Longsword of the Illithid","k":"af74607f9b","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 53%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.4     Interference: 15.2<\/div>
Bleeding Wound<\/span>: 20.5% chance<\/span><\/div>
Siphon Magic<\/span>: 37.98% chance<\/span><\/div>
+572 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+30.62<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.30<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+58.31<\/span><\/div><\/div>
Block<\/div>
+107.9<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+49.23<\/span><\/div><\/div>
Agility<\/div>
+17.74<\/span><\/div><\/div><\/div><\/div>"},"313508799":{"t":"Superior Longsword of Slaughter","k":"f901fd90b8","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 25.2     Interference: 15.1<\/div>
Bleeding Wound<\/span>: 20.6% chance<\/span><\/div>
+687 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+37.58<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.28<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+50.66<\/span><\/div><\/div>
Block<\/div>
+98.88<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+49.23<\/span><\/div><\/div>
Agility<\/div>
+19.90<\/span><\/div><\/div><\/div><\/div>"},"313508800":{"t":"Superior Longsword of Slaughter","k":"4bb4f0b631","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 24.9     Interference: 14.9<\/div>
Bleeding Wound<\/span>: 20.8% chance<\/span><\/div>
+708 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+32.56<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.30<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+58.68<\/span><\/div><\/div>
Block<\/div>
+106.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+50.22<\/span><\/div><\/div>
Agility<\/div>
+19.90<\/span><\/div><\/div><\/div><\/div>"},"313510181":{"t":"Superior Longsword of Slaughter","k":"a2b985da4d","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 56%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 24.9     Interference: 14.9<\/div>
Bleeding Wound<\/span>: 20.8% chance<\/span><\/div>
+704 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+36.37<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.30<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+54.23<\/span><\/div><\/div>
Block<\/div>
+105.4<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+52.26<\/span><\/div><\/div>
Agility<\/div>
+18.10<\/span><\/div><\/div><\/div><\/div>"},"313330199":{"t":"Magnificent Hallowed Katana of Slaughter","k":"6a6e23b298","q":6,"d":"
Two-handed Weapon     Level 478     Untradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 16.0     Interference: 8.0<\/div>
Bleeding Wound<\/span>: 23.6% chance<\/span><\/div>
+2270 Slashing Damage<\/span><\/div>
Holy Strike (50%)<\/span><\/div>
Attack Accuracy<\/div>
+265.2<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.35<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+133.6<\/span><\/div><\/div>
Block<\/div>
+104.4<\/span><\/div><\/div><\/div>
Spell Damage<\/div>
Holy<\/div>
+34.50<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+165.4<\/span><\/div><\/div>
Agility<\/div>
+55.37<\/span><\/div><\/div><\/div><\/div>"},"313508810":{"t":"Superior Scythe of the Battlecaster","k":"3c5c963e5c","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.2     Interference: None<\/div>
Bleeding Wound<\/span>: 20.6% chance<\/span><\/div>
+691 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+19.46<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.28<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+43.06<\/span><\/div><\/div>
Block<\/div>
+52.25<\/span><\/div><\/div>
Mana Conservation<\/div>
+17.68<\/span><\/div>
%<\/div><\/div>
Magic Accuracy<\/div>
+38.12<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+47.15<\/span><\/div><\/div><\/div><\/div>"},"313417495":{"t":"Superior Scythe of Slaughter","k":"eccfbb00ca","q":4,"d":"
Two-handed Weapon     Level 131     Tradeable<\/span><\/div>
Condition: 108%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.0     Interference: 20.0<\/div>
Bleeding Wound<\/span>: 20.7% chance<\/span><\/div>
+648 Slashing Damage<\/span><\/div>
Attack Accuracy<\/div>
+15.15<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.30<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+37.38<\/span><\/div><\/div>
Block<\/div>
+43.74<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+40.68<\/span><\/div><\/div>
Dexterity<\/div>
+32.81<\/span><\/div><\/div><\/div><\/div>"},"313508820":{"t":"Exquisite Estoc of Slaughter","k":"10d97ece43","q":5,"d":"
Two-handed Weapon     Level 145     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 18.3     Interference: 9.2<\/div>
Penetrated Armor<\/span>: 21.9% chance<\/span><\/div>
+614 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+29.24<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.31<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+57.81<\/span><\/div><\/div>
Block<\/div>
+109.5<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+43.61<\/span><\/div><\/div>
Agility<\/div>
+13.17<\/span><\/div><\/div><\/div><\/div>"},"313382054":{"t":"Superior Estoc of the Illithid","k":"a21dc68d0c","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 84%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.3     Interference: 10.2<\/div>
Penetrated Armor<\/span>: 20.5% chance<\/span><\/div>
Siphon Magic<\/span>: 37.98% chance<\/span><\/div>
+492 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+27.21<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.24<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+53.55<\/span><\/div><\/div>
Block<\/div>
+109.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+50.02<\/span><\/div><\/div>
Agility<\/div>
+13.27<\/span><\/div><\/div><\/div><\/div>"},"313326441":{"t":"Superior Estoc of Slaughter","k":"7c2baa778a","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.7     Interference: 10.4<\/div>
Penetrated Armor<\/span>: 20.2% chance<\/span><\/div>
+591 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+27.10<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.26<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+48.47<\/span><\/div><\/div>
Block<\/div>
+100.0<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.44<\/span><\/div><\/div><\/div><\/div>"},"313382172":{"t":"Superior Estoc of Slaughter","k":"3f90dee965","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.6     Interference: 10.3<\/div>
Penetrated Armor<\/span>: 20.3% chance<\/span><\/div>
+630 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+27.86<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.25<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+49.70<\/span><\/div><\/div>
Block<\/div>
+109.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+21.95<\/span><\/div><\/div>
Agility<\/div>
+11.94<\/span><\/div><\/div><\/div><\/div>"},"313508786":{"t":"Superior Estoc of Slaughter","k":"26510eec9e","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 19.9     Interference: 9.9<\/div>
Penetrated Armor<\/span>: 20.8% chance<\/span><\/div>
+623 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+29.46<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.24<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+56.25<\/span><\/div><\/div>
Block<\/div>
+110.5<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+23.39<\/span><\/div><\/div>
Agility<\/div>
+14.45<\/span><\/div><\/div><\/div><\/div>"},"313508792":{"t":"Superior Estoc of Slaughter","k":"31b7ba629b","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.2     Interference: 10.1<\/div>
Penetrated Armor<\/span>: 20.6% chance<\/span><\/div>
+608 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+27.54<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.27<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+57.27<\/span><\/div><\/div>
Block<\/div>
+107.9<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+12.48<\/span><\/div><\/div><\/div><\/div>"},"313576546":{"t":"Superior Estoc of Slaughter","k":"25d4cdf0d5","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 70%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.2     Interference: 10.1<\/div>
Penetrated Armor<\/span>: 20.6% chance<\/span><\/div>
+607 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+29.11<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.27<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+57.62<\/span><\/div><\/div>
Block<\/div>
+96.98<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+46.99<\/span><\/div><\/div>
Dexterity<\/div>
+23.50<\/span><\/div><\/div><\/div><\/div>"},"313075280":{"t":"Superior Estoc of Balance","k":"e74a2bbaec","q":4,"d":"
Two-handed Weapon     Level 27     Tradeable<\/span><\/div>
Condition: 99%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.4     Interference: 10.2<\/div>
Penetrated Armor<\/span>: 20.4% chance<\/span><\/div>
+116 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+21.30<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.37<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+36.64<\/span><\/div><\/div>
Block<\/div>
+64.10<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+13.58<\/span><\/div><\/div>
Agility<\/div>
+3.70<\/span><\/div><\/div><\/div><\/div>"},"313508803":{"t":"Superior Estoc of Balance","k":"1a8f0ca511","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.4     Interference: 10.2<\/div>
Penetrated Armor<\/span>: 20.4% chance<\/span><\/div>
+504 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+61.63<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.37<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+52.24<\/span><\/div><\/div>
Block<\/div>
+104.5<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+20.60<\/span><\/div><\/div><\/div><\/div>"},"313553019":{"t":"Superior Estoc of Balance","k":"9679b2df4f","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 82%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.3     Interference: 10.2<\/div>
Penetrated Armor<\/span>: 20.5% chance<\/span><\/div>
+512 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+61.78<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.39<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+48.49<\/span><\/div><\/div>
Block<\/div>
+106.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+21.15<\/span><\/div><\/div><\/div><\/div>"},"313331518":{"t":"Superior Estoc of the Ox","k":"80f3e96ee3","q":4,"d":"
Two-handed Weapon     Level 108     Untradeable<\/span><\/div>
Condition: 85%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.2     Interference: 10.1<\/div>
Penetrated Armor<\/span>: 20.6% chance<\/span><\/div>
+362 Piercing Damage<\/span><\/div>
Attack Accuracy<\/div>
+19.09<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.26<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+46.25<\/span><\/div><\/div>
Block<\/div>
+85.28<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+42.63<\/span><\/div><\/div>
Dexterity<\/div>
+15.90<\/span><\/div><\/div><\/div><\/div>"},"313508798":{"t":"Superior Great Mace of the Vampire","k":"911aec7a1c","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.6     Interference: 10.3<\/div>
Stunned<\/span>: 20.3% chance (5 turns)<\/span><\/div>
Siphon Health<\/span>: 37.54% chance<\/span><\/div>
+510 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+35.95<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.25<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+46.98<\/span><\/div><\/div>
Block<\/div>
+102.4<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+45.67<\/span><\/div><\/div><\/div><\/div>"},"313508801":{"t":"Superior Great Mace of the Vampire","k":"b90171f8b9","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.4     Interference: 10.2<\/div>
Stunned<\/span>: 20.4% chance (5 turns)<\/span><\/div>
Siphon Health<\/span>: 37.76% chance<\/span><\/div>
+504 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+32.10<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.25<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+57.95<\/span><\/div><\/div>
Block<\/div>
+101.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+31.17<\/span><\/div><\/div><\/div><\/div>"},"313254487":{"t":"Superior Great Mace of the Illithid","k":"21ede35ef5","q":4,"d":"
Two-handed Weapon     Level 68     Tradeable<\/span><\/div>
Condition: 82%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.2     Interference: 10.1<\/div>
Stunned<\/span>: 20.6% chance (5 turns)<\/span><\/div>
Siphon Magic<\/span>: 38.09% chance<\/span><\/div>
+234 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+16.48<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.28<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+35.35<\/span><\/div><\/div>
Block<\/div>
+76.30<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+24.70<\/span><\/div><\/div>
Dexterity<\/div>
+16.14<\/span><\/div><\/div><\/div><\/div>"},"313293233":{"t":"Superior Great Mace of the Illithid","k":"1f3a8638ef","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 54%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 19.7     Interference: 9.9<\/div>
Stunned<\/span>: 20.9% chance (5 turns)<\/span><\/div>
Siphon Magic<\/span>: 38.77% chance<\/span><\/div>
+535 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+33.24<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.28<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+55.24<\/span><\/div><\/div>
Block<\/div>
+105.8<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+50.05<\/span><\/div><\/div>
Agility<\/div>
+15.36<\/span><\/div><\/div><\/div><\/div>"},"313508809":{"t":"Superior Great Mace of the Illithid","k":"f84cdcc6c3","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.7     Interference: 10.4<\/div>
Stunned<\/span>: 20.2% chance (5 turns)<\/span><\/div>
Siphon Magic<\/span>: 37.32% chance<\/span><\/div>
+478 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+34.90<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.25<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+59.35<\/span><\/div><\/div>
Block<\/div>
+95.83<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.31<\/span><\/div><\/div><\/div><\/div>"},"313421512":{"t":"Superior Great Mace of Slaughter","k":"c3a6355deb","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 76%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 19.7     Interference: 9.9<\/div>
Stunned<\/span>: 20.9% chance (5 turns)<\/span><\/div>
+665 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+31.34<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.28<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+57.99<\/span><\/div><\/div>
Block<\/div>
+100.9<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+16.57<\/span><\/div><\/div><\/div><\/div>"},"313320498":{"t":"Superior Great Mace of Balance","k":"d3b58c95d2","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 52%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.4     Interference: 10.2<\/div>
Stunned<\/span>: 20.4% chance (5 turns)<\/span><\/div>
+508 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+65.55<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.37<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+54.54<\/span><\/div><\/div>
Block<\/div>
+104.1<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+31.54<\/span><\/div><\/div><\/div><\/div>"},"313330477":{"t":"Superior Great Mace of Balance","k":"4a5c5cb413","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.7     Interference: 10.4<\/div>
Stunned<\/span>: 20.2% chance (5 turns)<\/span><\/div>
+471 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+64.49<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.36<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+48.77<\/span><\/div><\/div>
Block<\/div>
+104.9<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+16.77<\/span><\/div><\/div><\/div><\/div>"},"313459372":{"t":"Superior Great Mace of Balance","k":"a048c93a49","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 86%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.0     Interference: 10.0<\/div>
Stunned<\/span>: 20.7% chance (5 turns)<\/span><\/div>
+475 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+68.15<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.40<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+50.98<\/span><\/div><\/div>
Block<\/div>
+109.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+33.49<\/span><\/div><\/div><\/div><\/div>"},"313552174":{"t":"Superior Great Mace of Balance","k":"eb031052b8","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 91%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 20.3     Interference: 10.2<\/div>
Stunned<\/span>: 20.5% chance (5 turns)<\/span><\/div>
+524 Crushing Damage<\/span><\/div>
Attack Accuracy<\/div>
+64.64<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.39<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+54.88<\/span><\/div><\/div>
Block<\/div>
+96.22<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+47.89<\/span><\/div><\/div><\/div><\/div>"},"313551972":{"t":"Superior Ethereal Great Mace of Balance","k":"a66f6b9ce6","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 58%<\/span>     Energy: N\/A<\/span><\/div>
Burden: None     Interference: None<\/div>
Stunned<\/span>: 20.3% chance (5 turns)<\/span><\/div>
+486 Void Damage<\/span><\/div>
Void Strike (50%)<\/span><\/div>
Attack Accuracy<\/div>
+66.30<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.39<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+48.17<\/span><\/div><\/div>
Block<\/div>
+107.4<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+14.49<\/span><\/div><\/div><\/div><\/div>"},"313508797":{"t":"Superior Arctic Great Mace of Balance","k":"39f3ae8320","q":4,"d":"
Two-handed Weapon     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 21.0     Interference: 10.5<\/div>
Stunned<\/span>: 20% chance (5 turns)<\/span><\/div>
+464 Crushing Damage<\/span><\/div>
Cold Strike (50%)<\/span><\/div>
Attack Accuracy<\/div>
+62.35<\/span><\/div><\/div>
Attack Crit Damage<\/div>
+0.40<\/span><\/div>
x<\/div><\/div>
Parry<\/div>
+46.96<\/span><\/div><\/div>
Block<\/div>
+96.56<\/span><\/div><\/div><\/div>
Spell Damage<\/div>
Cold<\/div>
+14.48<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+45.85<\/span><\/div><\/div><\/div><\/div>"},"313420744":{"t":"Superior Ebony Staff of Focus","k":"b7e6fec1cb","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.2     Interference: None<\/div>
Ether Tap<\/span>: 33.6% chance (5 turns)<\/span><\/div>
+227 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+173.2<\/span><\/div><\/div>
Magic Accuracy<\/div>
+82.94<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.24<\/span><\/div>
x<\/div><\/div>
Mana Conservation<\/div>
+19.20<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+8.26<\/span><\/div><\/div>
Cold<\/div>
+7.64<\/span><\/div><\/div>
Elec<\/div>
+9.95<\/span><\/div><\/div>
Wind<\/div>
+9.39<\/span><\/div><\/div>
Holy<\/div>
+8.26<\/span><\/div><\/div>
Dark<\/div>
+8.26<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+27.11<\/span><\/div><\/div>
Divine<\/div>
+24.25<\/span><\/div><\/div>
Forbidden<\/div>
+27.22<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+25.04<\/span><\/div><\/div>
Wisdom<\/div>
+21.22<\/span><\/div><\/div><\/div><\/div>"},"313542171":{"t":"Superior Ebony Staff of the Heaven-sent","k":"1d4ffb2db0","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 96%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.3% chance (5 turns)<\/span><\/div>
+190 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+163.5<\/span><\/div><\/div>
Magic Accuracy<\/div>
+49.95<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.12<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+10.16<\/span><\/div><\/div>
Cold<\/div>
+9.11<\/span><\/div><\/div>
Elec<\/div>
+8.19<\/span><\/div><\/div>
Wind<\/div>
+9.59<\/span><\/div><\/div>
Holy<\/div>
+9.52<\/span><\/div><\/div>
Dark<\/div>
+7.94<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+27.21<\/span><\/div><\/div>
Divine<\/div>
+58.19<\/span><\/div><\/div>
Forbidden<\/div>
+26.46<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+22.93<\/span><\/div><\/div>
Wisdom<\/div>
+20.86<\/span><\/div><\/div><\/div><\/div>"},"313326122":{"t":"Superior Ebony Staff of Freyr","k":"e89c254363","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.3% chance (5 turns)<\/span><\/div>
+210 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+184.4<\/span><\/div><\/div>
Magic Accuracy<\/div>
+47.16<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+9.11<\/span><\/div><\/div>
Cold<\/div>
+9.59<\/span><\/div><\/div>
Elec<\/div>
+8.45<\/span><\/div><\/div>
Wind<\/div>
+31.43<\/span><\/div><\/div>
Holy<\/div>
+8.19<\/span><\/div><\/div>
Dark<\/div>
+10.16<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+25.33<\/span><\/div><\/div>
Divine<\/div>
+25.63<\/span><\/div><\/div>
Forbidden<\/div>
+23.69<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+23.19<\/span><\/div><\/div><\/div><\/div>"},"313560398":{"t":"Superior Redwood Staff of the Fox","k":"e956ebf5bc","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 52%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.3% chance (5 turns)<\/span><\/div>
+203 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+183.4<\/span><\/div><\/div>
Magic Accuracy<\/div>
+54.58<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.13<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+10.11<\/span><\/div><\/div>
Cold<\/div>
+9.23<\/span><\/div><\/div>
Elec<\/div>
+12.60<\/span><\/div><\/div>
Wind<\/div>
+9.49<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+28.27<\/span><\/div><\/div>
Supportive<\/div>
+15.89<\/span><\/div><\/div>
Deprecating<\/div>
+16.06<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+35.11<\/span><\/div><\/div><\/div><\/div>"},"313457789":{"t":"Superior Redwood Staff of the Owl","k":"21429b70f7","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 63%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.2     Interference: None<\/div>
Ether Tap<\/span>: 33.4% chance (5 turns)<\/span><\/div>
+220 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+191.2<\/span><\/div><\/div>
Magic Accuracy<\/div>
+57.48<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+9.75<\/span><\/div><\/div>
Cold<\/div>
+10.29<\/span><\/div><\/div>
Elec<\/div>
+10.56<\/span><\/div><\/div>
Wind<\/div>
+12.70<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+29.53<\/span><\/div><\/div>
Supportive<\/div>
+15.30<\/span><\/div><\/div>
Deprecating<\/div>
+13.81<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+20.29<\/span><\/div><\/div>
Wisdom<\/div>
+12.78<\/span><\/div><\/div><\/div><\/div>"},"313553015":{"t":"Superior Redwood Staff of the Elementalist","k":"dfeab33f14","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 69%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.3% chance (5 turns)<\/span><\/div>
+183 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+190.2<\/span><\/div><\/div>
Magic Accuracy<\/div>
+53.73<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.15<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+9.32<\/span><\/div><\/div>
Cold<\/div>
+9.14<\/span><\/div><\/div>
Elec<\/div>
+12.20<\/span><\/div><\/div>
Wind<\/div>
+10.47<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+61.83<\/span><\/div><\/div>
Supportive<\/div>
+15.22<\/span><\/div><\/div>
Deprecating<\/div>
+14.97<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+20.29<\/span><\/div><\/div>
Wisdom<\/div>
+23.70<\/span><\/div><\/div><\/div><\/div>"},"313319586":{"t":"Superior Redwood Staff of Mjolnir","k":"13fa92b215","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 71%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.2     Interference: None<\/div>
Ether Tap<\/span>: 33.6% chance (5 turns)<\/span><\/div>
+215 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+187.3<\/span><\/div><\/div>
Magic Accuracy<\/div>
+52.08<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+12.30<\/span><\/div><\/div>
Cold<\/div>
+9.06<\/span><\/div><\/div>
Elec<\/div>
+33.79<\/span><\/div><\/div>
Wind<\/div>
+12.00<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+29.85<\/span><\/div><\/div>
Supportive<\/div>
+14.58<\/span><\/div><\/div>
Deprecating<\/div>
+15.47<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+20.75<\/span><\/div><\/div>
Wisdom<\/div>
+25.04<\/span><\/div><\/div><\/div><\/div>"},"313292058":{"t":"Superior Arctic Redwood Staff of Freyr","k":"060967678b","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 57%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.4     Interference: None<\/div>
Ether Tap<\/span>: 32.8% chance (5 turns)<\/span><\/div>
+186 Crushing Damage<\/span><\/div>
Cold Strike (50%)<\/span><\/div>
Magic Damage<\/div>
+174.1<\/span><\/div><\/div>
Magic Accuracy<\/div>
+47.90<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+10.19<\/span><\/div><\/div>
Cold<\/div>
+24.66<\/span><\/div><\/div>
Elec<\/div>
+9.48<\/span><\/div><\/div>
Wind<\/div>
+31.16<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+27.80<\/span><\/div><\/div>
Supportive<\/div>
+13.36<\/span><\/div><\/div>
Deprecating<\/div>
+16.31<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+23.57<\/span><\/div><\/div>
Wisdom<\/div>
+22.05<\/span><\/div><\/div><\/div><\/div>"},"313384917":{"t":"Superior Oak Staff of Destruction","k":"de68f441d6","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 81%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.2     Interference: None<\/div>
Ether Tap<\/span>: 33.6% chance (5 turns)<\/span><\/div>
+198 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+270.3<\/span><\/div><\/div>
Magic Accuracy<\/div>
+56.89<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Counter-resist<\/div>
+6.89<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+8.86<\/span><\/div><\/div>
Cold<\/div>
+9.17<\/span><\/div><\/div>
Holy<\/div>
+16.54<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+20.61<\/span><\/div><\/div>
Divine<\/div>
+20.72<\/span><\/div><\/div>
Supportive<\/div>
+49.97<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Wisdom<\/div>
+24.29<\/span><\/div><\/div><\/div><\/div>"},"313342765":{"t":"Superior Arctic Oak Staff of Destruction","k":"e1268cc676","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 50%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.1% chance (5 turns)<\/span><\/div>
+228 Crushing Damage<\/span><\/div>
Cold Strike (50%)<\/span><\/div>
Magic Damage<\/div>
+237.1<\/span><\/div><\/div>
Magic Accuracy<\/div>
+47.16<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.15<\/span><\/div>
x<\/div><\/div>
Counter-resist<\/div>
+7.29<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+7.97<\/span><\/div><\/div>
Cold<\/div>
+22.22<\/span><\/div><\/div>
Holy<\/div>
+16.67<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+20.83<\/span><\/div><\/div>
Divine<\/div>
+21.91<\/span><\/div><\/div>
Supportive<\/div>
+49.38<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+15.00<\/span><\/div><\/div>
Wisdom<\/div>
+23.62<\/span><\/div><\/div><\/div><\/div>"},"313458120":{"t":"Superior Arctic Oak Staff of Focus","k":"58de179967","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 67%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.1% chance (5 turns)<\/span><\/div>
+181 Crushing Damage<\/span><\/div>
Cold Strike (50%)<\/span><\/div>
Magic Damage<\/div>
+185.3<\/span><\/div><\/div>
Magic Accuracy<\/div>
+77.33<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.22<\/span><\/div>
x<\/div><\/div>
Counter-resist<\/div>
+7.00<\/span><\/div>
%<\/div><\/div>
Mana Conservation<\/div>
+18.46<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Fire<\/div>
+7.48<\/span><\/div><\/div>
Cold<\/div>
+23.51<\/span><\/div><\/div>
Holy<\/div>
+13.83<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+21.30<\/span><\/div><\/div>
Divine<\/div>
+24.47<\/span><\/div><\/div>
Supportive<\/div>
+45.85<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+15.96<\/span><\/div><\/div><\/div><\/div>"},"313291798":{"t":"Superior Katalox Staff of Fenrir","k":"a5a893360a","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 94%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.2     Interference: None<\/div>
Ether Tap<\/span>: 33.1% chance (5 turns)<\/span><\/div>
+242 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+171.9<\/span><\/div><\/div>
Magic Accuracy<\/div>
+51.96<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.21<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Holy<\/div>
+11.03<\/span><\/div><\/div>
Dark<\/div>
+34.12<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Divine<\/div>
+25.21<\/span><\/div><\/div>
Forbidden<\/div>
+25.83<\/span><\/div><\/div>
Deprecating<\/div>
+19.51<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+21.54<\/span><\/div><\/div>
Wisdom<\/div>
+15.09<\/span><\/div><\/div><\/div><\/div>"},"313510053":{"t":"Superior Katalox Staff of Fenrir","k":"0dde58f288","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 79%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 10.2     Interference: None<\/div>
Ether Tap<\/span>: 33.3% chance (5 turns)<\/span><\/div>
+193 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+171.0<\/span><\/div><\/div>
Magic Accuracy<\/div>
+49.54<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.20<\/span><\/div>
x<\/div><\/div><\/div>
Spell Damage<\/div>
Holy<\/div>
+11.32<\/span><\/div><\/div>
Dark<\/div>
+31.36<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Divine<\/div>
+30.19<\/span><\/div><\/div>
Forbidden<\/div>
+31.46<\/span><\/div><\/div>
Deprecating<\/div>
+19.04<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+25.67<\/span><\/div><\/div><\/div><\/div>"},"313419178":{"t":"Superior Willow Staff of Destruction","k":"1b552c2de9","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 100%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.1% chance (5 turns)<\/span><\/div>
+217 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+236.9<\/span><\/div><\/div>
Magic Accuracy<\/div>
+52.62<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Counter-resist<\/div>
+6.38<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Elec<\/div>
+7.86<\/span><\/div><\/div>
Wind<\/div>
+7.48<\/span><\/div><\/div>
Dark<\/div>
+13.83<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+25.01<\/span><\/div><\/div>
Forbidden<\/div>
+24.87<\/span><\/div><\/div>
Deprecating<\/div>
+47.85<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+15.38<\/span><\/div><\/div><\/div><\/div>"},"313417824":{"t":"Superior Willow Staff of Fenrir","k":"faca3ac40b","q":4,"d":"
Staff     Level Unassigned     Tradeable<\/span><\/div>
Condition: 50%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 7.3     Interference: None<\/div>
Ether Tap<\/span>: 33.3% chance (5 turns)<\/span><\/div>
+225 Crushing Damage<\/span><\/div>
Magic Damage<\/div>
+177.8<\/span><\/div><\/div>
Magic Accuracy<\/div>
+48.16<\/span><\/div><\/div>
Magic Crit Damage<\/div>
+0.14<\/span><\/div>
x<\/div><\/div>
Counter-resist<\/div>
+5.49<\/span><\/div>
%<\/div><\/div><\/div>
Spell Damage<\/div>
Elec<\/div>
+8.86<\/span><\/div><\/div>
Wind<\/div>
+7.86<\/span><\/div><\/div>
Dark<\/div>
+39.62<\/span><\/div><\/div><\/div>
Proficiency<\/div>
Elemental<\/div>
+22.03<\/span><\/div><\/div>
Forbidden<\/div>
+21.79<\/span><\/div><\/div>
Deprecating<\/div>
+48.42<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Intelligence<\/div>
+18.36<\/span><\/div><\/div>
Wisdom<\/div>
+22.01<\/span><\/div><\/div><\/div><\/div>"},"313511959":{"t":"Superior Buckler of Warding","k":"cddc16a9b9","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 94%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.5     Interference: 4.0<\/div>
Physical Mitigation<\/div>
+1.52<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+4.53<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+152.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+19.99<\/span><\/div><\/div>
Endurance<\/div>
+17.39<\/span><\/div><\/div><\/div><\/div>"},"313459561":{"t":"Superior Buckler of Stoneskin","k":"00b9c5cfa9","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 4.3     Interference: 3.7<\/div>
Physical Mitigation<\/div>
+1.57<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+1.48<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+154.1<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Slashing<\/div>
+4.13<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+21.87<\/span><\/div><\/div>
Agility<\/div>
+22.35<\/span><\/div><\/div><\/div><\/div>"},"313293444":{"t":"Superior Kite Shield of Protection","k":"4849c196eb","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 60%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.4     Interference: 13.4<\/div>
Physical Mitigation<\/div>
+4.51<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.32<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+196.0<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+22.35<\/span><\/div><\/div>
Agility<\/div>
+21.40<\/span><\/div><\/div><\/div><\/div>"},"313509605":{"t":"Superior Kite Shield of Warding","k":"fef55a99cb","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 99%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.4     Interference: 13.4<\/div>
Physical Mitigation<\/div>
+2.40<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.92<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+196.6<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+19.56<\/span><\/div><\/div><\/div><\/div>"},"313512175":{"t":"Superior Kite Shield of Warding","k":"02e697c2ad","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 83%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.7     Interference: 13.7<\/div>
Physical Mitigation<\/div>
+2.33<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.65<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+199.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+17.26<\/span><\/div><\/div>
Agility<\/div>
+19.25<\/span><\/div><\/div><\/div><\/div>"},"313551973":{"t":"Superior Kite Shield of Warding","k":"a5bd479667","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 89%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.4     Interference: 13.4<\/div>
Physical Mitigation<\/div>
+2.53<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+5.98<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+202.5<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+17.14<\/span><\/div><\/div><\/div><\/div>"},"313547179":{"t":"Superior Kite Shield of the Battlecaster","k":"019401b8ee","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 57%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.9     Interference: None<\/div>
Physical Mitigation<\/div>
+2.33<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.40<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+181.6<\/span><\/div><\/div>
Mana Conservation<\/div>
+16.99<\/span><\/div>
%<\/div><\/div>
Magic Accuracy<\/div>
+36.63<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Agility<\/div>
+17.12<\/span><\/div><\/div><\/div><\/div>"},"313332746":{"t":"Superior Kite Shield of the Barrier","k":"51ca3d32f6","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 58%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.9     Interference: 13.9<\/div>
Physical Mitigation<\/div>
+2.43<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.17<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+226.9<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+16.99<\/span><\/div><\/div>
Endurance<\/div>
+18.81<\/span><\/div><\/div><\/div><\/div>"},"313551336":{"t":"Superior Kite Shield of the Turtle","k":"e980d5f6b4","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 75%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.7     Interference: 13.7<\/div>
Physical Mitigation<\/div>
+2.22<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.34<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+193.4<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+21.87<\/span><\/div><\/div>
Agility<\/div>
+19.11<\/span><\/div><\/div>
Endurance<\/div>
+12.63<\/span><\/div><\/div><\/div><\/div>"},"313553027":{"t":"Superior Kite Shield of the Turtle","k":"a4199d0a0c","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 54%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 13.7     Interference: 13.7<\/div>
Physical Mitigation<\/div>
+2.46<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.45<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+189.2<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Dexterity<\/div>
+19.11<\/span><\/div><\/div>
Endurance<\/div>
+30.50<\/span><\/div><\/div><\/div><\/div>"},"313552835":{"t":"Exquisite Tower Shield of Protection","k":"0702e135b0","q":5,"d":"
Shield     Level 159     Tradeable<\/span><\/div>
Condition: 95%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 40.0     Interference: 19.8<\/div>
Physical Mitigation<\/div>
+5.47<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.92<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+239.6<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+22.42<\/span><\/div><\/div>
Endurance<\/div>
+24.03<\/span><\/div><\/div><\/div><\/div>"},"313542145":{"t":"Exquisite Tower Shield of Stoneskin","k":"18d07a3a82","q":5,"d":"
Shield     Level 152     Tradeable<\/span><\/div>
Condition: 65%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 40.0     Interference: 19.8<\/div>
Physical Mitigation<\/div>
+3.01<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+3.22<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+224.7<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Slashing<\/div>
+4.69<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+19.97<\/span><\/div><\/div>
Dexterity<\/div>
+24.29<\/span><\/div><\/div><\/div><\/div>"},"313557746":{"t":"Superior Tower Shield of Dampening","k":"6fd0baa77f","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 55%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 41.8     Interference: 20.7<\/div>
Physical Mitigation<\/div>
+2.82<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.92<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+226.1<\/span><\/div><\/div><\/div>
Damage Mitigation<\/div>
Crushing<\/div>
+4.03<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Strength<\/div>
+20.30<\/span><\/div><\/div>
Endurance<\/div>
+18.10<\/span><\/div><\/div><\/div><\/div>"},"313257124":{"t":"Superior Tower Shield of the Turtle","k":"4e4f1e6709","q":4,"d":"
Shield     Level Unassigned     Tradeable<\/span><\/div>
Condition: 56%<\/span>     Energy: N\/A<\/span><\/div>
Burden: 42.2     Interference: 20.9<\/div>
Physical Mitigation<\/div>
+2.87<\/span><\/div>
%<\/div><\/div>
Magical Mitigation<\/div>
+2.69<\/span><\/div>
%<\/div><\/div>
Block<\/div>
+229.1<\/span><\/div><\/div><\/div>
Primary Attributes<\/div>
Endurance<\/div>
+29.50<\/span><\/div><\/div><\/div><\/div>"}}; \ No newline at end of file diff --git a/references/The HentaiVerse - Equipment_files/hvc.js b/references/The HentaiVerse - Equipment_files/hvc.js new file mode 100644 index 0000000..76a31b7 --- /dev/null +++ b/references/The HentaiVerse - Equipment_files/hvc.js @@ -0,0 +1,47 @@ +function api_call(h,g,d){h.open("POST",MAIN_URL+"json");h.setRequestHeader("Content-Type","application/json");h.withCredentials=!0;h.onreadystatechange=d;h.send(JSON.stringify(g))}function api_response(h){if(4==h.readyState)if(200==h.status)if(h=JSON.parse(h.responseText),void 0!=h.login)top.location.href=login_url;else return h;else alert("Server communication failed: "+h.status+" ("+h.responseText+")"),document.location+="";return!1} +function number_format(h){return h.toString().replace(/\B(?=(\d{3})+(?!\d))/g," ")}var e=function(h){return document.getElementById(h)}; +function Common(){function h(a,f,l){a=a.getElementsByTagName("DIV");f=["f2l"+f,"f2r"+f,"f4l"+f,"f4r"+f];var r=["f2l"+l,"f2r"+l,"f4l"+l,"f4r"+l];l="a"==l?"#0030CB":"#5C0D11";for(var n=0;n"+D+"
"+H+"
"+F+"
";G.style.visibility="visible"}};this.hide_popup_box=function(){e("popup_box").removeAttribute("style")};this.show_itemc_box=function(a,f,l,r,n,w){this.show_popup_box(a, +f,398,75,l,r,n,dynjs_itemc[w].n,dynjs_itemc[w].q,"Consumable")};this.show_itemr_box=function(a,f,l,r,n,w,B,D){this.show_popup_box(a,f,398,85,l,r,n,w,B,D)};var g=void 0,d=0,m=0,q=0,u=function(){var a=g.scrollTop;g.scrollTop=0
';l+=v[n]}return'
'+f+"
"};this.apply_select=function(a){h(a,"b","a");a.style.color="#0030CB"};this.apply_unselect=function(a){h(a,"a","b");a.removeAttribute("style")};var y=void 0; +this.text_select=function(a){var f=y!=a;this.text_unselect();f&&(this.apply_select(a),y=a)};this.text_unselect=function(){void 0!=y&&(this.apply_unselect(y),y=void 0)}}var common=new Common; +function ItemShop(){function h(){y=!0;1>d||1>m?y=!1:"shop_pane"==g&&m*u>current_credits&&(y=!1);e("accept_button").src=IMG_URL+"shops/accept"+(y?"":"_d")+".png";e("cost_field").value=u;e("sum_field").value=(m*u).toLocaleString("en")}var g=void 0,d=0,m=0,q=void 0,u=0,v=0,y=!1;this.set_item=function(a,f,l,r,n){f==d&&a==g&&(a=void 0,r=l=f=0,n=void 0);g=a;d=f;u=r;q=f&&!n?dynjs_itemc[f].n:n;v=l;this.set_count(0v&&this.set_count(v);h()};this.commit_transaction=function(){y&&confirm("Are you sure you wish to "+("shop_pane"==g?"purchase":"sell")+" "+m+' "'+q.replace("'","'")+'" for '+common.number_format(m*u)+" credits ?")&&(e("select_mode").value=g,e("select_item").value=d,e("select_count").value=m,e("shopform").submit())}} +function Snowflake(){var h=e("shrine_info"),g=e("shrine_artifact"),d=e("shrine_trophy"),m=e("shrine_collectible"),q=e("shrine_offertext"),u=0,v=0,y=0,a="",f="",l=void 0,r=!1;this.set_shrine_item=function(n,w,B,D){n==u&&(B=w=n=0,D=void 0);u=n;v=w;y=B;l=D;r=!0;n=0;1>u?(e("accept_equip").style.display="none",r=!1,n=1):2E4<=u&&3E4>u?(r=!0,n=2):3E4<=u&&4E4>u?(r=y<=v,n=3):7E4<=u&&8E4>u&&(r=!0,n=4);if(3==n)for(e("accept_equip").style.display="",e("accept_reward").style.display="none",w=e("accept_equip").querySelectorAll(".accept_equip"), +B=0;Bv?"You have "+v+" / "+y+" items required for this offering.":"Offer "+y+"x "+l+" for :"};this.submit_shrine_reward=function(n,w){a=n;f=w;this.commit_transaction()};this.commit_transaction= +function(){r&&confirm("Are you sure you wish to offer Snowflake "+(1v?"0":"")+v;h.style.width=4*q+"px";m>=end_time&&(document.location= +reload_to,clearInterval(d))},ticktime)} +function ItemSelector(){var h=0,g=!1;this.set_item=function(q){h==q?this.commit_slot(0):h=q};var d=void 0,m=void 0;this.hover_slot=function(q){0!=h&&(void 0!=d&&this.unhover_slot(),common.suppress_popups=!0,d=q,m=q.innerHTML,q.innerHTML=dynjs_itemc[h].n,q.className="ss")};this.unhover_slot=function(){void 0!=d&&(d.innerHTML=m,d.removeAttribute("class"),d=void 0,common.suppress_popups=!1)};this.commit_slot=function(q){g||(g=!0,e("slot").value=q,e("item").value=h,e("selectionform").submit())}} +function MonsterLab(){this.create_monster=function(h){e("selected_patk").value=h;e("create_form").submit()}} +function Battle(){var h=e("infopane"),g=[void 0,void 0],d=[void 0,void 0],m="log",q=void 0,u=void 0,v=void 0,y=1,a=0,f=void 0,l=e("ta_monster_1"),r=e("ta_monster_2"),n=!1,w=function(b){void 0!=h&&(h.innerHTML=b)};this.set_infopane=function(b){switch(b){case "Attack":var k="Damages a single enemy. Depending on your equipped weapon, this can place certain status effects on the affected monster. To attack, click here, then click your target. Simply clicking an enemy will also perform a normal attack.";break; +case "Skillbook":k="Use special skills and magic. To use offensive spells and skills, first click it, then click your target. To use it on yourself, click it twice.";break;case "Items":k="Use various consumable items that can replenish your vitals or augment your power in various ways.";break;case "Spirit":k="Toggle Spirit Channeling.";break;case "Defend":k="Increases your defensive capabilities for the next turn.";break;case "Focus":k="Reduces the chance that your next spell will be resisted. Your defenses and evade chances are lowered for the next turn."; +break;default:k="Choose from the Battle Actions highlighted above, and use them to defeat your enemies listed to the right. When all enemies are reduced to zero Health, you win. If your Health reaches zero, you are defeated."}w('
'+b+"
"+k+"
")};this.set_infopane_spell=function(b,k,t,z,C,A){var E="";if(0'+ +b+'
'+k+'
'+E+'
')}; +this.set_infopane_effect=function(b,k,t){w('
'+b+'
'+k+'
'+("autocast"==t?"Expires if magic is depleted to below 10%":"permanent"==t?"Permanent until triggered":"decaying"==t?"Decays by 20% per turn":"Expires in "+t+" turn"+(1==t?"":"s"))+".
")};this.set_infopane_item=function(b){w('
'+dynjs_itemc[b].n+'
'+dynjs_itemc[b].q+"
")};this.lock_action= +function(b,k,t,z){if(!n)if(d[k]==b&&"skill"!=t?(g[k]=void 0,d[k]=void 0):(g[k]=h.innerHTML,d[k]=b),0==k&&(g[1]=void 0,d[1]=void 0),1==k)q!=t&&(this.clear_actions(),q=t,b.src=IMG_URL+"battle/"+q+"_s.png",this.set_mode(t)),this.set_selected_subaction(b,z);else switch(q==t?"skill"==t?this.set_selected_subaction(void 0):q=void 0:(this.clear_actions(),q=t),b.src=IMG_URL+"battle/"+t+"_"+(void 0==q?"n":"s")+".png",this.set_mode(t),t){case "attack":this.toggle_default_pane();break;case "skill":this.toggle_magic_pane(); +break;case "items":this.toggle_item_pane();break;default:this.touch_and_go()}};this.clear_actions=function(){if(void 0!=q){if("spirit"!=q){var b="magic"==q?"skill":q;e("ckey_"+b).src=IMG_URL+"battle/"+b+"_n.png"}q=void 0}};this.clear_infopane=function(){void 0!=g[1]?w(g[1]):void 0!=g[0]?w(g[0]):this.set_infopane("Battle Time")};var B=function(b){e("pane_"+b).style.display="none";m=void 0};this.toggle_pane=function(b){b==m?this.toggle_default_pane():(B(m),e("pane_"+b).style.display="",m=b)};this.toggle_default_pane= +function(){"log"!=m&&(B(m),e("pane_log").style.display="",m=m="log")};this.toggle_magic_pane=function(){"skill"==m?this.toggle_pane("magic"):"magic"==m?this.toggle_pane("skill"):this.toggle_pane(default_magic_pane)};this.toggle_skill_pane=function(){this.toggle_pane("skill")};this.toggle_item_pane=function(){this.toggle_pane("item")};var D="attack",H=0,F=0;this.set_mode=function(b){D=D==b&&"magic"!=b?"attack":b};this.reset_skill=function(){F=H=0;this.set_selected_subaction(void 0)};this.set_hostile_skill= +function(b){F=F==b?0:b};this.set_friendly_skill=function(b){F==b?(H=0,this.touch_and_go()):F=b};this.hover_target=function(b){if(void 0==v){var k=common.findPosWithScroll(b),t=common.findPosWithScroll(e("battle_right"));k[0]-=t[0];k[1]-=t[1];l.style.left=k[0]-7+"px";l.style.top=k[1]+b.offsetHeight/2-3+"px";r.style.left=k[0]+b.offsetWidth+2+"px";r.style.top=k[1]+b.offsetHeight/2-3+"px";l.style.visibility="visible";r.style.visibility="visible"}};this.unhover_target=function(){void 0==v&&(l.removeAttribute("style"), +r.removeAttribute("style"))};this.commit_target=function(b){n||void 0!=v||(H=v=b,this.touch_and_go())};var G=void 0,J=void 0,I=void 0;this.touch_and_go=function(){n||void 0!=f||(G=D,J=H,I=F,f=new XMLHttpRequest,api_call(f,{type:"battle",method:"action",token:battle_token,mode:D,target:H,skill:F},this.process_action))};this.recast=function(){n||void 0==G||(D=G,H=J,F=I,this.touch_and_go())};for(var L=0,O=!1,M="pane_completion pane_effects pane_action pane_vitals pane_quickbar table_skills table_magic pane_item pane_monster".split(" "), +Q=[],P=0;PA){0==A&&(A=10);E=!0;var K=e("qb"+A);K&&(K.onmouseover(),K.onclick())}}else{if(13==k||32==k)z="btcp";else if(-1=k||"G"==t||"P"==t)"item"!=m&&(z="ckey_items"),C="G"==t||"P"==t?"ikey_p":b.ctrlKey? +"ikey_n"+(k-111):b.shiftKey?"ikey_s"+(k-111):"ikey_"+(k-111);else if(!b.ctrlKey&&!b.shiftKey)switch(t){case "Q":z="ckey_attack";break;case "W":z="ckey_skill";break;case "E":z="ckey_items";break;case "S":z="ckey_spirit";break;case "D":z="ckey_defend";break;case "F":z="ckey_focus";break;case "R":z="recast"}if(z||C)E=!0;if(z)if("recast"==z)battle.recast();else if(K=e(z))K.onclick();if(C&&(K=e(C)))K.onclick()}if(E)return b.cancelBubble=!0,b.returnValue=!1,b.stopPropagation&&(b.stopPropagation(),b.preventDefault()), +!1}};this.clear_infopane();this.start_flash_loop();this.set_infopane("Battle Time")}function at_show_aux(h,g){h=e(h);g=e(g);for(var d="x"==g.at_position?h.offsetWidth+0:0;h;h=h.offsetParent)d+=h.offsetLeft;g.style.position="absolute";g.style.top="27px";g.style.left=d+"px";g.style.visibility="visible"}function at_show(){p=e(this.at_parent);c=e(this.at_child);at_show_aux(p.id,c.id)}function at_hide(){c=e(this.at_child);e(c.id).style.visibility="hidden"} +function at_click(){p=e(this.at_parent);c=e(this.at_child);"visible"!=c.style.visibility?at_show_aux(p.id,c.id):c.style.visibility="hidden";return!1} +function at_attach(h,g,d,m,q){p=e(h);c=e(g);p.at_parent=p.id;c.at_parent=p.id;p.at_child=c.id;c.at_child=c.id;p.at_position=m;c.at_position=m;c.style.position="absolute";c.style.visibility="hidden";switch(d){case "click":p.onclick=at_click;p.onmouseout=at_hide;c.onmouseover=at_show;c.onmouseout=at_hide;break;case "hover":p.onmouseover=at_show,p.onmouseout=at_hide,c.onmouseover=at_show,c.onmouseout=at_hide}}; diff --git a/references/The HentaiVerse - Equipment_files/hvg.css b/references/The HentaiVerse - Equipment_files/hvg.css new file mode 100644 index 0000000..c3d2ef8 --- /dev/null +++ b/references/The HentaiVerse - Equipment_files/hvg.css @@ -0,0 +1,188 @@ +:root{scrollbar-width:thin;scrollbar-color:#5C0D1169 transparent} +body{font-size:8pt;font-family:verdana;color:#5C0D11;background:#E3E0D1;padding:2px;margin:0;text-align:center} +div{margin:0;padding:0;scrollbar-width:thin;scrollbar-color:#5C0D1169 transparent} +a:link,a:visited,a:active{color:#5C0D11} +a:hover{color:#9B4E03} +p{padding:3px 1px;margin:1px} +hr{border:0;border-top:1px solid #5C0D11} +.emsg {color:#FF5555;font-weight:bold} +.c{clear:both} +.v{font-family:verdana;font-size:11pt;font-weight:bold} +input,textarea{outline:none} +input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0} +input[type=number]{-moz-appearance:textfield} +input[type="submit"],input[type="button"],button{font-family:verdana;font-size:9pt;font-weight:bold;color:#5C0D11BB;background:#EDEADA;border:2px solid #5C0D11;border-radius:14px;margin:2px 3px;padding:4px 9px} +input[type="submit"]:enabled:hover,input[type="submit"]:enabled:focus,input[type="button"]:enabled:hover,input[type="button"]:enabled:focus,button:enabled:hover,button:enabled:focus{color:#9B4E03;border-color:#9B4E03;background:#EEEDE5;cursor:pointer} +input[type="submit"]:enabled:active,input[type="submit"]:enabled:active,button:enabled:active{background:radial-gradient(#DFDACC,#F3F0E0);border-color:#9B4E03;cursor:pointer} +input[type="submit"]:disabled,input[type="button"]:disabled,button:disabled{color:#C2A8A4;border-color:#C2A8A4;background:#EDEADA} +input[type="text"],input[type="password"],input[type="number"],textarea,select,option{font-size:10pt;border-radius:5px;color:#5C0D11;background:#EDEADA;border:1px solid #5C0D11;margin:4px 0 0 0;padding:3px} +input[type="text"]:enabled:hover:not([readonly]),input[type="password"]:enabled:hover:not([readonly]),input[type="number"]:enabled:hover:not([readonly]),textarea:enabled:hover:not([readonly]),select:enabled:hover:not([readonly]){background:#F2EFDF} +input[type="text"]:enabled:focus:not([readonly]),input[type="password"]:enabled:focus:not([readonly]),input[type="number"]:enabled:focus:not([readonly]),textarea:enabled:focus:not([readonly]),select:enabled:focus:not([readonly]){color:#9B4E03;background:#F2EFDF} +input[type="text"]:disabled,input[type="password"]:disabled,input[type="number"]:disabled,textarea:disabled,select:disabled{color:#C2A8A4;background:#EDEADA;border-color:#C2A8A4} +img{border:0;margin:0;padding:0} +img[onclick],div[onclick]{cursor:pointer} +table{border-collapse:collapse} +.nosel{user-select:none;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;cursor:default} + +.lc,.lr{display:block;position:relative;padding:0 0 0 30px;margin:0;vertical-align:middle;height:24px;line-height:24px} +.lc:not([data-disabled]),.lr:not([data-disabled]),.lc:not([data-disabled]) *,.lr:not([data-disabled]) *{cursor:pointer} +.lc>input,.lr>input{position:absolute !important;opacity:0;width:1px;height:1px} +.lc:hover input:enabled ~ span,.lr:hover input:enabled ~ span,.lc input:enabled:focus ~ span,.lr input:enabled:focus ~ span{background-color:#F3F0E0 !important;border-color:#977273 !important} +.lc input:disabled ~ span,.lr input:disabled ~ span{border-color:#DBD4D3 !important} +.lc input:disabled ~ span::after,.lr input:disabled ~ span::after{border-color:#B5AEAD !important} +.lc>input:checked ~ span:after,.lr>input:checked ~ span:after{display:block} +.lc>span{position:absolute;top:0;left:0;height:20px;width:20px;background-color:#EDEADA;border:2px solid #B5A4A4;border-radius:3px} +.lc>span:after{content:"";position:absolute;display:none;left:6px;top:2px;width:5px;height:10px;border:solid #5C0D12;border-width:0 3px 3px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)} +.lr>span{position:absolute;top:0;left:0;height:20px;width:20px;background-color:#EDEADA;border:2px solid #B5A4A4;border-radius:50%} +.lr>span:after{content:"";position:absolute;display:none;top:5px;left:5px;width:10px;height:10px;border-radius:50%;background:#5C0D12} + +/* common global */ +#csp{background:#EDEBDF;border:1px solid #5C0D12;width:1236px;height:702px;position:relative} +#mainpane{width:1228px;height:670px;padding:2px 0 2px 8px;overflow:hidden} + +/* message box */ +#messagebox_outer{position:absolute;z-index:99;top:0;left:0;width:100%;height:100%;background-color:#EDEBDFCC;backdrop-filter:blur(1px);cursor:pointer} +#messagebox_inner{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;justify-content:center;flex-flow:column nowrap;border-radius:5px;min-width:500px;max-width:1150px;min-height:200px;max-height:600px;background:#EDEBDF;border:2px solid #5C0D11;font-size:10pt;font-weight:bold;font-family:verdana;overflow:hidden;overflow-y:auto;padding:10px 20px 20px} +#messagebox_inner>p{white-space:nowrap} +.messagebox_error{color:#FF2323} + +/* fonts and font colors */ +.fal{text-align:left} +.fac{text-align:center} +.far{text-align:right} +.fcb{color:#5C0D11} +.fcy{color:#FCFF00} +.fcg{color:#8A8A8A} +.fcr{color:#CB000A} +.fca{color:#0030CB} + +.fc{display:flex;flex-direction:row;align-items:center;justify-content:center} +.fl{display:flex;flex-direction:row;align-items:center;justify-content:left} +.fr{display:flex;flex-direction:row;align-items:center;justify-content:right} +.f2b,.f2g,.f2r,.f2y,.f2a{height:10px} +.f4b,.f4g,.f4r,.f4y,.f4a{height:12px} +.f2b>div,.f2g>div,.f2r>div,.f2y>div,.f2a>div{height:10px;background-color:transparent} +.f4b>div,.f4g>div,.f4r>div,.f4y>div,.f4a>div{height:12px;background-color:transparent} +.f2b>div{background-image:url(/y/font/10b.png)} +.f2g>div{background-image:url(/y/font/10g.png)} +.f2r>div{background-image:url(/y/font/10r.png)} +.f2y>div{background-image:url(/y/font/10y.png)} +.f2a>div{background-image:url(/y/font/10a.png)} +.f4b>div{background-image:url(/y/font/12b.png)} +.f4g>div{background-image:url(/y/font/12g.png)} +.f4r>div{background-image:url(/y/font/12r.png)} +.f4y>div{background-image:url(/y/font/12y.png)} +.f4a>div{background-image:url(/y/font/12a.png)} + +.c20{width:9px;background-position:0 -0px} +.c21{width:5px;background-position:0 -10px} +.c22{width:10px;background-position:0 -20px} +.c23{width:10px;background-position:0 -30px} +.c24{width:10px;background-position:0 -40px} +.c25{width:10px;background-position:0 -50px} +.c26{width:10px;background-position:0 -60px} +.c27{width:10px;background-position:0 -70px} +.c28{width:9px;background-position:0 -80px} +.c29{width:9px;background-position:0 -90px} +.c2a{width:4px;background-position:0 -100px} +.c2b{width:4px;background-position:0 -110px} +.c2c{width:5px;background-position:0 -120px} +.c2d{width:10px;background-position:0 -130px} +.c2e{width:11px;background-position:0 -140px} +.c2f{width:8px;background-position:0 -150px} +.c2g{width:8px;background-position:0 -160px} +.c2h{width:8px;background-position:0 -170px} +.c2i{width:11px;background-position:0 -180px} +.c2j{width:11px;background-position:0 -190px} +.c2k{width:4px;background-position:0 -200px} +.c2l{width:4px;background-position:0 -210px} +.c2m{width:4px;background-position:0 -220px} +.c2n{width:4px;background-position:0 -230px} +.c2o{width:6px;background-position:0 -240px} +.c2p{width:6px;background-position:0 -250px} +.c2q{width:6px;background-position:0 -260px} +.c2r{width:6px;background-position:0 -270px} +.c2s{width:8px;background-position:0 -280px} +.c39{width:4px;background-position:0 -390px} +.c3a{width:11px;background-position:0 -400px} +.c3b{width:9px;background-position:0 -410px} +.c3c{width:9px;background-position:0 -420px} +.c3d{width:9px;background-position:0 -430px} +.c3e{width:8px;background-position:0 -440px} +.c3f{width:8px;background-position:0 -450px} +.c3g{width:9px;background-position:0 -460px} +.c3h{width:10px;background-position:0 -470px} +.c3i{width:4px;background-position:0 -480px} +.c3j{width:6px;background-position:0 -490px} +.c3k{width:10px;background-position:0 -500px} +.c3l{width:6px;background-position:0 -510px} +.c3m{width:13px;background-position:0 -520px} +.c3n{width:9px;background-position:0 -530px} +.c3o{width:9px;background-position:0 -540px} +.c3p{width:10px;background-position:0 -550px} +.c3q{width:10px;background-position:0 -560px} +.c3r{width:11px;background-position:0 -570px} +.c3s{width:10px;background-position:0 -580px} +.c3t{width:8px;background-position:0 -590px} +.c3u{width:10px;background-position:0 -600px} +.c3v{width:11px;background-position:0 -610px} +.c3w{width:14px;background-position:0 -620px} +.c3x{width:11px;background-position:0 -630px} +.c3y{width:10px;background-position:0 -640px} +.c3z{width:10px;background-position:0 -650px} +.c40{width:10px;background-position:0 -0px} +.c41{width:6px;background-position:0 -12px} +.c42{width:11px;background-position:0 -24px} +.c43{width:11px;background-position:0 -36px} +.c44{width:11px;background-position:0 -48px} +.c45{width:11px;background-position:0 -60px} +.c46{width:11px;background-position:0 -72px} +.c47{width:11px;background-position:0 -84px} +.c48{width:10px;background-position:0 -96px} +.c49{width:10px;background-position:0 -108px} +.c4a{width:5px;background-position:0 -120px} +.c4b{width:5px;background-position:0 -132px} +.c4c{width:6px;background-position:0 -144px} +.c4d{width:11px;background-position:0 -156px} +.c4e{width:12px;background-position:0 -168px} +.c4f{width:9px;background-position:0 -180px} +.c4g{width:9px;background-position:0 -192px} +.c4h{width:9px;background-position:0 -204px} +.c4i{width:12px;background-position:0 -216px} +.c4j{width:12px;background-position:0 -228px} +.c4k{width:5px;background-position:0 -240px} +.c4l{width:5px;background-position:0 -252px} +.c4m{width:5px;background-position:0 -264px} +.c4n{width:5px;background-position:0 -276px} +.c4o{width:7px;background-position:0 -288px} +.c4p{width:7px;background-position:0 -300px} +.c4q{width:7px;background-position:0 -312px} +.c4r{width:7px;background-position:0 -324px} +.c4s{width:9px;background-position:0 -336px} +.c59{width:5px;background-position:0 -468px} +.c5a{width:12px;background-position:0 -480px} +.c5b{width:10px;background-position:0 -492px} +.c5c{width:10px;background-position:0 -504px} +.c5d{width:10px;background-position:0 -516px} +.c5e{width:9px;background-position:0 -528px} +.c5f{width:9px;background-position:0 -540px} +.c5g{width:10px;background-position:0 -552px} +.c5h{width:11px;background-position:0 -564px} +.c5i{width:5px;background-position:0 -576px} +.c5j{width:7px;background-position:0 -588px} +.c5k{width:11px;background-position:0 -600px} +.c5l{width:7px;background-position:0 -612px} +.c5m{width:15px;background-position:0 -624px} +.c5n{width:10px;background-position:0 -636px} +.c5o{width:10px;background-position:0 -648px} +.c5p{width:11px;background-position:0 -660px} +.c5q{width:11px;background-position:0 -672px} +.c5r{width:12px;background-position:0 -684px} +.c5s{width:12px;background-position:0 -696px} +.c5t{width:9px;background-position:0 -708px} +.c5u{width:11px;background-position:0 -720px} +.c5v{width:12px;background-position:0 -732px} +.c5w{width:16px;background-position:0 -744px} +.c5x{width:12px;background-position:0 -756px} +.c5y{width:11px;background-position:0 -768px} +.c5z{width:11px;background-position:0 -780px} diff --git a/references/The HentaiVerse - Equipment_files/hvo.css b/references/The HentaiVerse - Equipment_files/hvo.css new file mode 100644 index 0000000..557a61f --- /dev/null +++ b/references/The HentaiVerse - Equipment_files/hvo.css @@ -0,0 +1,665 @@ +tr[onclick]{cursor:pointer} +td[onclick]{cursor:pointer} +input[type="checkbox"]{position:relative;top:1px} + +/* navbar */ +#navbar{height:23px;border-bottom:1px solid #5C0D11;padding:3px 0 0 25px} +#navbar>div{float:left;width:150px;height:21px;text-align:left;margin-left:10px} +#navbar>div>div:first-child{height:21px} +.nc{text-align:left;position:absolute;visibility:hidden;background:#EDEBDF;z-index:99;opacity:0.95;width:180px;margin:-3px 0 0} +.nc>div{border:1px solid #5C0D11;border-top:0;margin:2px 0 0} +.nc>div>div{height:12px;padding:8px 3px 5px;background:#EDEBDF} +.nc>div>div:hover{background:#F2EFDF} +#stamina_readout{cursor:default} +#stamina_readout>div:nth-child(1){width:20px;float:left;position:relative;top:-3px;left:-3px;font-size:12pt;padding-left:15px} +#stamina_readout>div:nth-child(2){width:110px;padding-top:5px;float:left} +#stamina_readout>div:nth-child(3){width:25px;padding-left:5px;float:left} +#stamina_restore{width:180px} +#stamina_restore>div>div:first-child{padding:10px 0 10px 5px !important} +#stamina_restore img{width:135px;height:15px;padding-left:6px} +#level_readout{padding:5px 2px 0 0} +#level_details,#world_text{background:transparent !important;font-size:10pt;font-weight:bold;font-family:verdana;text-align:center} +#level_details>div{width:340px;margin-left:-90px;background:#EDEBDF;opacity:0.99;padding:5px 0 !important;height:48px} +#level_details>div>div:hover{background:inherit !important} +#world_readout{padding:5px 2px 0 0} +#world_text>div{width:250px;margin-left:-30px;background:#EDEBDF;opacity:0.99;padding:5px 0 !important} +#mail_img{padding:0 4px} +#nav_mail{padding-top:4px;float:right !important;width:44px !important} +#nav_mail>div:nth-child(1){float:left;width:20px} +#nav_mail>div:nth-child(2){float:left;width:24px} + +/* filter bar */ +#filterbar{padding:5px 15px;font-size:14px;font-family:verdana;font-weight:bold;display:flex;flex-direction:row;align-items:center;user-select:none} +#filterbar>a{flex-grow:1;text-decoration:none} +#filterbar>a>div{border-radius:9px 9px 0px 0px} +.cfb{padding:5px 1px;border-top:1px solid #EDEBDF;border-bottom:1px solid #5C0D11} +.cfb:hover{color:#9B4E03;} +.cfbs{padding:5px 0;border-top:1px solid #EDEBD !importantF;border:1px solid #5C0D11;border-bottom:1px solid #EDEBDF} + +/* forge */ +#forge_outer{width:1066px;height:600px;padding-top:4px;position:relative;margin:auto} + +/* common non-battle screens */ +#networth{position:absolute;top:675px;left:0px;height:19px;padding:3px;border:1px solid #5C0D12;border-bottom:0;border-left:0;font-size:10pt;font-weight:bold;font-family:verdana} + +/* scrollpane */ +.csps{height:19px;width:99%} +.csps>img{margin:2px} +.csps>img:first-child{float:left} +.csps>img:last-child{float:right} +.cspp{clear:both;overflow:hidden} + +/* equip/char shared */ +#eqch_outer{height:650px;text-align:center;padding-top:4px;position:relative} +#eqch_left{width:840px;height:648px;text-align:center;float:left;position:relative} +#eqch_stats{width:375px;height:748px;float:left;position:relative} +#stats_scrollable{height:641px;padding:0 10px 5px;overflow-y:scroll;scrollbar-gutter:stable;border:2px ridge #5C0D12;border-right:0;margin-top:3px;border-radius:9px 0 0 9px} +#stats_scrollable td:nth-child(1){text-align:right;padding-left:15px;padding-right:3px;min-width:40px} +#stats_scrollable td:nth-child(2){text-align:left} +#stats_scrollable table{margin-bottom:8px} +.spc{padding:10px 0 3px 10px;width:320px} + +/* character */ +#persona_outer{width:530px;text-align:center;padding-top:40px;margin:auto} +#persona_outer img{padding-top:2px} +#persona_outer select{font-family:verdana;font-size:11pt;font-weight:bold;width:280px;margin:auto} +#persona_outer select>option{font-family:verdana;font-size:10pt;font-weight:bold;width:280px} +#persona_select{margin:auto;height:28px} +#persona_select>div:nth-child(1){float:left;width:150px;padding-top:8px;height:20px} +#persona_select>div:nth-child(2){float:left;width:300px} +#persona_select>div:nth-child(3){float:left;width:75px;padding-top:4px} +#persona_new{margin:10px auto 0} +#persona_used{margin:10px auto 0;width:300px;height:10px} +#attr_outer{width:624px;text-align:center;padding-top:40px;margin:auto} +#attr_outer>div:first-child{height:12px} +#attr_table{border-top:1px solid #5C0D11;margin:auto} +#attr_table img{padding-top:2px} +#attr_table>tbody>tr>td{height:16px} +#attr_table>tbody>tr>td:nth-child(1){width:100px} +#attr_table>tbody>tr>td:nth-child(2){width:50px} +#attr_table>tbody>tr>td:nth-child(3){width:35px;padding-left:6px} +#attr_table>tbody>tr>td:nth-child(4){width:45px} +#attr_table>tbody>tr>td:nth-child(5){width:40px;text-align:right} +#attr_table>tbody>tr>td:nth-child(6){width:40px;padding:2px 5px 0 0} +#attr_table>tbody>tr>td:nth-child(7){width:40px;text-align:left} +#attr_table>tbody>tr>td:nth-child(8){width:160px} +#attr_table>tbody>tr:last-child>td:nth-child(2){width:auto;text-align:center} +#attr_table>tbody>tr:last-child>td:nth-child(3){width:auto;padding:0} +#pabonus{width:624px;margin:10px auto 0} +#prof_outer{width:524px;text-align:center;padding-top:40px;margin:auto} +#prof_outer>div{width:260px;float:left;height:150px} +#prof_outer>div>div{height:12px} +#prof_outer table{border-top:1px solid #5C0D11;margin:auto;height:135px} +#prof_outer table>tbody>tr>td:nth-child(1){width:150px;height:18px} +#prof_outer table>tbody>tr>td:nth-child(2){width:80px;height:18px} + +/* itemlist */ +.itemlist{font-family:verdana;font-size:9pt;font-weight:bold;text-align:right} +.itemlist>tbody>tr:first-child>td{padding-top:5px} +.itemlist>tbody>tr>td:first-child{width:300px !important;padding-left:5px} +.itemlist>tbody>tr>td:last-child{width:50px} +.itemlist>tbody>tr>td>div{padding:1px 5px 5px 18px;float:right} +.itemlist>tbody>tr>td>div[onclick]:not([style]):hover{opacity:0.6;color:#0030CB !important} +.it{padding-top:7px} + +/* item inventory */ +#item_outer{width:1066px;margin:auto;height:650px;padding-top:4px;position:relative} +#item_left{width:354px;height:648px;float:left;position:relative} +#item_right{width:650px;height:648px;float:left;position:relative;margin-left:50px} +#item_left>div:first-child,#item_right>div:first-child{height:20px;padding:5px 3px} +#item_list{height:620px;padding:0 3px} +#item_slots{height:620px;padding:0 2px;font-family:verdana;font-size:9pt;font-weight:bold} +#item_slots>div{float:left;width:320px} +.sa{width:300px;height:40px;margin:2px auto;clear:both;text-align:left;position:relative} +.sa>div:first-child{float:left;height:20px;width:24px;padding:13px 22px 8px 2px;text-align:right} +.sa>div:last-child{float:left;min-width:120px;height:40px} +.sa>div:last-child>div{min-width:120px;height:20px;padding:10px 0} +.sa>div:last-child>div:hover{text-decoration:line-through;color:#C2A8A4} +.sd>div:last-child>div{color:#C2A8A4} +.ss,.ss:hover{opacity:0.6;color:#0030CB !important;text-decoration:none !important} + +/* item shop */ +#itshop_outer{width:800px;height:620px;padding-top:4px;margin:auto} +.itshop_pane{width:400px;height:540px;float:left;position:relative;z-index:3} +.itshop_pane>div:first-child{width:350px;height:20px;position:absolute;top:5px;left:13px} +.itshop_pane>div:last-child{width:400px;height:520px;position:absolute;top:0px;left:0px} +#itshop_touter{clear:both;width:320px;height:60px;margin:auto;padding-top:8px} +#itshop_t1{padding-top:2px;height:20px;display:flex;flex-flow:row nowrap;justify-content:center} +#itshop_t1>div{margin:auto} +#itshop_t1>input{margin:auto;font-family:verdana;font-size:10pt;font-weight:bold;text-align:right;padding:1px 2px 2px;background:#F2EFDF !important;border:1px solid #9B4E03 !important;color:#5C0D11 !important} +#itshop_t1>input:nth-child(1),#itshop_t1>input:nth-child(3){width:75px} +#itshop_t1>input:nth-child(6){width:100px} +#itshop_t1>div:nth-child(2),#itshop_t1>div:nth-child(5){padding:4px 10px 0;width:25px} +#itshop_t1>div:nth-child(4),#itshop_t1>div:nth-child(7){padding:5px 2px 0 5px;width:10px} +#itshop_t2{padding:9px 10px 0 0;height:15px;display:flex;flex-flow:row nowrap;justify-content:center} +#itshop_t2>div{margin:auto;font-weight:bold;padding:2px} +#itshop_t2>div:nth-child(1){width:20px} +#itshop_t2>div:nth-child(2){width:30px} +#itshop_t2>div:nth-child(3){width:35px} +#itshop_t2>div:nth-child(4){width:45px} +#itshop_t2>div:nth-child(5){width:50px} +#itshop_t3{padding-top:11px} + +/* equiplist */ +.equiplist{font-family:verdana;font-size:9pt;font-weight:bold;text-align:left} +.eqp{clear:both;position:relative;height:22px;width:540px} +.eqp>div:last-child{padding:1px 5px 5px 0;float:left;position:absolute;top:0px;left:20px} +.eqp>div:last-child:not([onclick]){color:#C2A8A4} +.eqp>div:last-child[onclick]:not([data-locked="1"]):not([style]):hover{opacity:0.6;color:#0030CB !important} +.eqp>div:last-child[data-locked="1"]{cursor:default !important} +.tp{margin-top:7px} +.tp>div:first-child>img{top:8px} + +/* equipment stat readout */ +.showequip{margin:10px auto 0;width:420px;min-height:300px} +.showequip>div{margin:3px auto 0;text-align:center} +.showequip>div:first-child{border-bottom:1px solid #A47C78;font-size:10pt;font-weight:bold;padding:2px 0 4px} +.showequip>div:first-child>div:nth-child(2){font-size:9pt;font-weight:normal;padding:3px 0 2px} +.showequip a{text-decoration:none} +#equip_extended{margin:10px auto 0;border:1px solid #5C0D11;background:#EDEBDF;width:320px;height:400px;padding:3px} +#equip_extended>div:last-child{margin:7px auto 2px;text-align:center} +#equip_extended>div:last-child>div{font-weight:bold} +.eq>div{margin:1px auto;padding:1px;text-align:center;min-height:17px} +.eq span,.ep span{font-weight:bold} +.eq div[title],.ep div[title]{cursor:help} +.eqt,.eqr{font-size:110%;font-weight:bold} +.eqc{font-weight:bold} +.eqs{color:red} +.ex{display:grid;grid-template-columns:repeat(2,1fr);gap:2px 5px;text-align:center;justify-items:center;border-top:1px solid #A47C78;padding-top:2px;text-align:right !important} +.ex>div{width:165px;height:18px} +.ex>div>div:nth-child(1){float:left;width:99px;padding:2px;white-space:nowrap} +.ex>div>div:nth-child(2){float:left;width:45px;padding:2px 0 2px 2px} +.ex>div>div:nth-child(3){float:left;width:6px;padding:2px} +.ep>div:first-child{font-weight:bold;margin:4px auto 0 !important;width:320px !important;grid-column:1/-1} +.ep>div{width:115px;height:18px} +.ep>div>div:nth-child(1){float:left;width:60px;padding:2px;white-space:nowrap;text-align:right} +.ep>div>div:nth-child(2){float:left;width:45px;padding:2px 0 2px 2px;text-align:left} +.ep{display:grid;gap:2px 5px;justify-items:center} +.ep1{grid-template-columns:repeat(1,1fr)} +.ep2{grid-template-columns:repeat(2,1fr)} +.ep3{grid-template-columns:repeat(3,1fr)} +#eu>span{white-space:nowrap;color:red} +#ep>span{white-space:nowrap;color:blue} +#ee>span{white-space:nowrap;color:purple} +.fbr{flex-basis:100%;height:0 !important} + +/* equip popup */ +#popup_box{visibility:hidden;border:1px solid #5C0D11;background:#EDEBDF;opacity:0.95;text-align:left;padding:3px;z-index:5;position:absolute} +#popup_box>div:nth-child(1){text-align:center;font-weight:bold;padding-bottom:3px;margin-bottom:5px;font-size:120%;border-bottom:1px solid #A47C78} +#popup_box>div:nth-child(2){text-align:left;margin-bottom:5px} +#popup_box>div:nth-child(3){font-weight:bold} + +/* ability */ +#ability_outer{width:1066px;text-align:center;padding:4px 0 0 5px;position:relative;margin:auto} +#ability_top{width:99%;margin:10px auto 0;height:130px;position:relative} +#ability_top>div{position:absolute} +#ability_top>div:nth-child(1){height:32px;top:0px;left:6px} +#ability_top>div:nth-child(2){height:32px;top:42px;left:6px} +#ability_top>div:nth-child(3){height:32px;width:145px;top:84px;left:474px} +#ability_top>div:nth-child(4){height:30px;width:200px;left:10px;top:102px} +#ability_top>div:nth-child(5){height:30px;width:200px;left:190px;top:102px} +#ability_top>div:nth-child(6){height:30px;width:100px;left:370px;top:99px} +#ability_bot{width:100%;margin:auto;height:500px;clear:both} +#ability_treelist{float:left;width:145px;height:488px;padding-top:5px;border-right:1px solid #5C0D12} +#ability_treelist>div{height:31px} +#ability_treepane{float:left;width:906px;height:500px;padding:10px 0 0 10px} +#ability_treepane>div{position:relative;clear:both;padding:5px 0 0} +#ability_treepane>div>div{float:left} +#ability_treepane>div>div:nth-child(1){width:184px;padding-top:17px} +#ability_treepane>div>div:nth-child(2){width:48px;margin-left:5px} +#ability_treepane>div>div:nth-child(3){width:500px;margin-left:-3px;padding-top:6px} +#ability_treepane>div>div:nth-child(3)>div{float:left;height:30px} +#ability_treepane>div>div:nth-child(4){width:100px;padding-top:16px} +#ability_treepane>div>div:nth-child(5){width:60px;margin-left:8px;padding-top:13px} +#ability_info{position:absolute;visibility:hidden;left:400px;top:155px;width:680px;height:280px;background:#F2EFDF;border:1px solid #5C0D12;z-index:1;overflow:hidden} +#ability_info>div:nth-child(1){text-align:center;font-weight:bold;font-size:110%;margin:3px auto 0} +#ability_info>div:nth-child(2){margin:4px auto 6px} +#ability_info>div:nth-child(3){display:flex;flex-flow:row nowrap;justify-content:center} +#ability_info>div:nth-child(3)>div:first-child{border-right:1px solid #5C0D11} +#ability_info>div:nth-child(3)>div{flex:1;min-width:335px;height:250px;overflow:hidden} +#ability_info>div:nth-child(3)>div>div:first-child{margin:2px auto 2px;font-weight:bold;border-bottom:1px solid #5C0D11} +#ability_info>div:nth-child(3)>div>div:last-child{margin-top:6px} +#ability_info>div:nth-child(3)>div>div:last-child>div{margin-top:6px} +.ability_slotbar>div{float:left;width:44px;height:46px;position:relative;z-index:3;margin-left:8px} +.ability_slotbox>div{width:44px;height:46px;position:relative;z-index:3} +.ability_slotbar>div>div,div.ability_slotbox>div>div{opacity:1.0;width:34px;height:36px;position:absolute;top:3px;left:5px;z-index:4} +.aw1>div{width:500px} +.aw2>div{width:250px} +.aw3>div{width:166px} +.aw5>div{width:100px} +.aw7>div{width:71px} +.aw10>div{width:50px} + +/* lottery */ +#lottery_eqname{margin:5px auto 0;width:440px;font-family:verdana;font-size:10pt;font-weight:bold} +#lottery_eqstat{margin:10px auto 0;border:1px solid #5C0D11;background:#EDEBDF;width:420px;height:320px;opacity:0.9;text-align:left;padding:3px} + +/* monster lab */ +#monster_outer{width:1066px;height:650px;padding-top:4px;position:relative;margin:auto;font-family:verdana;font-size:10pt;font-weight:bold} +#monster_nav{width:1000px;height:32px;margin:auto} +#monster_nav>div:first-child,#monster_nav>div:last-child{width:100px;padding-top:9px;float:left} +#monster_nav>div:nth-child(2){width:795px;padding-top:8px;float:left} +#monster_head{width:1066px;padding-top:4px;} +.msl{border:2px ridge #5C0D12;width:996px;height:26px;margin:2px auto} +.msl:hover{background:#F2EFDF} +.msl>div:nth-child(1){float:left;width:25px;padding:8px 10px 0 0} +.msl>div:nth-child(2){float:left;width:300px;padding:8px 0 0 0} +.msl>div:nth-child(3){float:right;width:90px;padding:8px 0 0 6px} +.msl>div:nth-child(4){float:right;width:100px;padding:8px 0 0 0} +.msl>div:nth-child(5)>div{background-image:url(/y/monster/hungerbar.png)} +.msl>div:nth-child(6)>div{background-image:url(/y/monster/moralebar.png)} +.msn{float:right;width:200px;height:20px;position:relative} +.msn>div{position:absolute;top:2px;left:0px;z-index:2;height:22px;width:200px} +.msn>div>img{border:0;position:absolute;top:7px;left:64px;height:8px} +#monster_list{width:1076px;height:565px;margin:auto} +#monster_actions{width:1000px;margin:auto;font-size:10pt;font-family:verdana;font-weight:bold;display:flex;flex-flow:row nowrap;justify-content:center} +#monster_actions>div{width:300px;height:70px;margin:auto} +#monster_actions>div>div{margin:2px auto} +#monster_actions>div:nth-child(2)>div:last-child{padding-top:12px} +#monsterstats_outer{width:1066px;height:660px;padding-top:4px} +#monsterstats_rename{width:900px;padding-top:10px;height:10px;margin:auto} +#monsterstats_left{width:800px;float:left;padding-top:20px} +#monsterstats_top>div{width:200px;height:180px;float:left;margin:0 23px} +#monsterstats_top>div:first-child{display:flex;flex-flow:column nowrap;justify-content:center;align-items:center} +#monsterstats_top>div:first-child>div{padding-bottom:20px} +#monsterstats_rendel{height:16px;padding:0 !important} +#monsterstats_rendel>img:first-child{padding:0 5px 0 0} +#monsterstats_rendel>img:last-child{padding:0 0 0 5px} +.mcr>div{width:200px;height:12px;margin:0 auto 5px;border-bottom:1px solid #5C0D11} +.mcr>table{width:200px;height:160px;margin:auto} +.mcr>table>tbody>tr>td:nth-child(1){width:50px;height:18px;text-align:left} +.mcr>table>tbody>tr>td:nth-child(2){width:50px;height:18px;text-align:left} +.mcr>table>tbody>tr>td:nth-child(3){width:70px;height:18px} +#monsterstats_right{width:200px;float:right;margin-right:65px;padding-top:20px} +#monsterstats_right>div:first-child{width:200px;height:12px;margin:auto;border-bottom:1px solid #5C0D11;padding-bottom:1px} +.mst{width:195px;height:17px;padding-top:8px} +.mst>div:first-child{width:140px;float:left} +.mst>div:last-child{width:55px;float:left} +#upgrade_text{width:800px;padding-top:28px;margin:auto;height:14px;clear:both} +#monsterstats_chaos{width:800px;height:340px;margin:26px auto 0 20px} +#chaosupg{text-align:left;margin:auto} +#chaosupg>tbody>tr>td:nth-child(1){width:120px;padding:2px 10px 0 0} +#chaosupg>tbody>tr>td:nth-child(2){width:160px;padding:2px 0 0} +#chaosupg>tbody>tr>td:nth-child(3){width:20px;padding:3px 6px 0 0} +#chaosupg>tbody>tr>td:nth-child(4){width:400px;padding:0 0 1px} +.mcu0,.mcu1,.mcu2{float:left;width:8px;height:15px;background-repeat:no-repeat} +.mcu0{background-image:url(/y/monster/upg0.png)} +.mcu1{background-image:url(/y/monster/upg1.png)} +.mcu2{background-image:url(/y/monster/upg2.png)} +#monsterskills{text-align:left;margin:20px auto 10px} +#monsterskills th{border-bottom:1px solid #5C0D11} +#monsterskills>tbody>tr>td:nth-child(1){width:200px;height:20px} +#monsterskills>tbody>tr>td:nth-child(1)>input{border-color:#C2A8A4;font-size:11pt;font-weight:bold;width:190px;height:17px;margin-right:5px} +#monsterskills>tbody>tr>td:nth-child(3){width:125px;height:30px} +#monsterskills>tbody>tr>td:nth-child(2),#monsterskills>tbody>tr>td:nth-child(4){width:125px;height:30px;padding-top:5px} +#monsterskills>tbody>tr>td:nth-child(5),#monsterskills>tbody>tr>td:nth-child(6){width:75px;height:30px;padding-top:5px} +.msp{position:relative} +.msp>div:first-child{position:absolute;height:25px;top:-12px;border:1px solid #9B4E03;background:#F2EFDF;z-index:2} +.msp>div:first-child>div{width:125px;height:25px;float:left;padding-top:6px} +.msp>div:last-child{width:125px;height:25px;position:absolute;top:-5px} +#monstercreate_outer{width:808px;height:650px;padding-top:4px;position:relative;margin:auto;font-family:verdana;font-size:10pt;font-weight:bold} +#monstercreate_left{width:254px;height:640px;float:left} +#monstercreate_left>div{width:200px;height:20px;text-align:right;padding-top:28px} +#monstercreate_right{width:554px;height:640px;float:left} +#monstercreate_info{width:554px;text-align:left;padding-top:25px;height:370px} +#monstercreate_info>ul{margin:4px 0} +#monstercreate_stats{width:480px;padding-top:20px;padding-left:30px; height:140px} +#monstercreate_stats>div{width:158px;float:left;height:138px} +#monstercreate_stats>div>div:first-child{width:158px;margin:auto;height:12px;border-bottom:1px solid #9B4E03} +#monstercreate_stats>div:nth-child(1)>table{width:150px} +#monstercreate_stats>div:nth-child(2)>table{width:100px} +#monstercreate_stats>div:nth-child(3)>table{width:135px} +.mcs{margin:auto;padding-top:5px} +.mcs>tbody>tr>td{height:16px} +.mcs>tbody>tr>td:last-child{width:40px} +#monstercreate_patk{width:480px;padding:20px 0 0 30px;height:50px} +#monstercreate_patk>div:first-child{height:12px} +#monstercreate_patk>div:last-child{margin:auto;padding-top:10px} +#monstercreate_patk>div:last-child>div{float:left;width:90px} + +/* training */ +#train_outer{margin:25px auto 0} +#train_progress{text-align:center;width:465px;margin:auto} +#train_progress>div:nth-child(1)>div{float:left;height:20px} +#train_progress>div:nth-child(1)>div:nth-child(1){width:25px;text-align:right;padding:3px} +#train_progress>div:nth-child(1)>div:nth-child(2){width:400px;background-color:#E3E0D1;border:1px solid #5C0D12;text-align:left} +#train_progress>div:nth-child(1)>div:nth-child(3){width:25px;text-align:left;padding:3px} +#train_progress>div:nth-child(3){font-weight:bold;padding-top:6px} +#train_progbar{height:20px} +#train_progcnt{font-weight:bold} +#train_table{text-align:left;margin:15px auto 0;height:500px} +#train_table td{border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11} +#train_table>tbody>tr>td:nth-child(1){width:160px} +#train_table>tbody>tr>td:nth-child(2){width:300px;padding:0 5px 0 20px} +#train_table>tbody>tr>td:nth-child(3){width:120px} +#train_table>tbody>tr>td:nth-child(4){width:60px} +#train_table>tbody>tr>td:nth-child(5){width:35px} +#train_table>tbody>tr>td:nth-child(6){width:10px} +#train_table>tbody>tr>td:nth-child(7){width:35px} +#train_table>tbody>tr>td:nth-child(8){width:80px;text-align:center} + +/* settings */ +#settings_outer{height:668px;overflow:auto;font-size:9pt} +#settings_outer>div{width:650px;text-align:justify;margin:auto} +.settings_block{padding-top:20px;clear:both} +.settings_block>div:first-child{width:400px;height:12px} +.settings_block p{padding:2px 5px} +#settings_apply{padding-top:10px;text-align:center} +#settings_challenge,#settings_title{margin:10px auto 5px} +#settings_challenge td,#settings_title td{border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11;height:27px} +#settings_challenge>tbody>tr>td:nth-child(1){width:150px} +#settings_challenge>tbody>tr>td:nth-child(2){width:100px} +#settings_challenge>tbody>tr>td:nth-child(3){width:250px} +#settings_challenge>tbody>tr>td:nth-child(4){width:25px} +#settings_title>tbody>tr>td:nth-child(1){width:200px} +#settings_title>tbody>tr>td:nth-child(2){width:300px} +#settings_title>tbody>tr>td:nth-child(3){width:25px} +#settings_cfont{padding-left:30px} +#settings_quickbar{position:relative} +#settings_quickbar>table{width:260px;float:left;margin-left:40px} +#settings_autocast{margin-left:20px} +#settings_autosalvage{margin-left:20px} +#settings_autosalvage td,#settings_autocast td,#settings_quickbar td{padding:4px} +#settings_autosalvage td:first-child,#settings_autocast td:first-child,#settings_quickbar td:first-child{text-align:right;padding:4px 5px 0 0} + +/* shrine */ +#shrine_outer{width:910px;height:660px;padding-top:4px;margin:auto} +#shrine_left{width:404px;height:640px;float:left} +#shrine_left>div:first-child{height:20px;padding-top:10px} +#shrine_left>div:last-child{height:620px} +#shrine_right{width:504px;height:640px;float:left;font-family:verdana;font-size:10pt;font-weight:bold} +#shrine_right>div:first-child{padding:50px 0 10px 30px;text-align:left} +#shrine_right>div:last-child{padding:10px 0 0} +#accept_equip{padding:10px} +#accept_equip>div{padding:7px} + +/* mooglemail */ +#mmail_outer{width:1220px;height:650px;padding-top:10px;margin:auto} +#mmail_outer>div:first-child{height:20px;margin:2px auto 10px} +#mmail_left{width:604px;height:625px;float:left} +#mmail_left>table{margin:15px auto 5px} +#mmail_left>table>tbody>tr>td:first-child{text-align:right;width:100px;padding-top:3px} +#mmail_left>table input{border-color:#C2A8A4;height:17px;width:496px;font-family:verdana;font-size:10pt;font-weight:bold} +#mmail_left>textarea{border-color:#C2A8A4;width:585px;height:500px;font-family:verdana;font-size:10pt;font-weight:bold} +#mmail_showbuttons{height:20px;padding-top:8px} +#mmail_right{width:563px;height:625px;float:left;padding:5px 0 0 30px} +#mmail_attachpanes{height:585px;font-family:verdana;font-size:10pt;font-weight:bold} +#mmail_attachpanes input{font-family:verdana;font-size:10pt;font-weight:bold;width:100px;text-align:right} +#mmail_attachitem,#mmail_attachequip{height:570px;position:relative} +#mmail_attachequip>div:nth-child(1),#mmail_attachitem>div:nth-child(1){height:20px;width:450px;position:absolute;top:5px;left:50px} +#mmail_attachequip>div:nth-child(2){height:550px;width:550px;position:absolute;top:0px;left:0px} +#mmail_attachitem>div:nth-child(2){height:520px;width:550px;position:absolute;top:0px;left:0px} +#mmail_attachitem>div:nth-child(3){height:25px;width:550px;position:absolute;top:535px;left:0px} +#mmail_attachitem>div:nth-child(3)>img{position:relative;top:2px} +#mmail_attachinfo{text-align:justify} +#mmail_attachcount{width:540px;padding-top:10px;height:20px !important} +#mmail_attachremove{width:540px;text-align:center;padding-top:3px} +#mmail_attachlist{padding-top:5px;width:540px} +#mmail_attachlist>div{height:42px;display:flex;flex-flow:row nowrap;justify-content:center;align-items:center} +#mmail_currentcod{width:540px;height:20px;padding-top:20px} +#mmail_setcod{width:540px;height:20px;text-align:center;padding-left:40px} +#mmail_setcod>img{position:relative;top:2px} +#mmail_attachlist>div>div{cursor:default} +#mmail_attachlist>div>div:first-child{margin:auto;width:360px;padding:0 0 0 80px;text-align:center} +#mmail_attachlist>div>div:last-child{margin:auto;height:15px;width:80px;padding:1px 10px 0} +#mmail_attachcredits,#mmail_attachhath{padding-top:25px} +#mmail_attachcredits>div,#mmail_attachhath>div{height:30px} +#mmail_attachcredits img,#mmail_attachhath img{position:relative;top:2px} +#mmail_attachbuttons{height:20px;margin:15px auto 5px} +#mmail_attachhelp{padding:10px 30px} +#mmail_attachhelp>p{padding:5px 2px} +#mmail_fin{width:604px;height:625px;float:left;padding-top:215px} +#mmail_fin>div{height:30px} +#mmail_outerlist{height:580px} +#mmail_list{text-align:left;margin:25px auto 0;width:1000px} +#mmail_list>tbody>tr>th{border-bottom:1px solid #5C0D11;height:20px} +#mmail_list>tbody>tr>td{border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11;height:24px;font-size:10pt;font-weight:bold} +#mmail_list>tbody>tr>td:nth-child(1){width:150px} +#mmail_list>tbody>tr>td:nth-child(3){width:130px} +#mmail_list>tbody>tr>td:nth-child(4){width:120px} +#mmail_list>tbody>tr[onclick]:hover{background:#F2EFDF} +#mmail_nnm{padding-top:20px;border:0 !important} +#mmail_pager{height:20px;width:1000px;margin:auto;font:bold 12px verdana} +#mmail_pager>div:first-child{float:left;width:80px} +#mmail_pager>div:last-child{float:right;width:80px} +#mmail_pager>div>a{text-decoration:none} +#mmail_pager>div>span{color:#C2A8A4} + +/* battleinit */ +#arena_list{margin:20px auto 0px} +#arena_list>tbody>tr>td{height:33px;border-top:1px solid #5C0D11;border-bottom:1px solid #5C0D11;position:relative} +#arena_list>tbody>tr>td>div{height:20px} +#arena_list>tbody>tr>td>div:first-child,#grindfest>div>div:first-child{z-index:1} +#arena_list>tbody>tr>td>div:last-child,#grindfest>div>div:last-child{z-index:2} +#arena_list>tbody>tr>th{padding-bottom:6px} +#arena_list>tbody>tr>th:nth-child(1){width:375px} +#arena_list>tbody>tr>th:nth-child(2){width:120px} +#arena_list>tbody>tr>th:nth-child(3){width:95px} +#arena_list>tbody>tr>th:nth-child(4){width:85px} +#arena_list>tbody>tr>th:nth-child(5){width:90px} +#arena_list>tbody>tr>th:nth-child(6){width:115px} +#arena_list>tbody>tr>th:nth-child(7){width:117px} +#arena_list>tbody>tr>th:nth-child(8){width:90px} +#arena_tokens{margin:20px auto 0;width:500px;height:12px} +#grindfest{margin:200px auto 0;width:730px} +#grindfest>div{position:relative;width:233px;margin:5px auto} +#grindfest>div>img{position:absolute;top:2px;left:0px;width:233px;height:20px} +#itemworld_outer{width:1066px;height:660px;padding-top:10px;margin:auto} +#itemworld_left{width:604px;height:540px;float:left} +#itemworld_left>div{width:598px;height:580px} +#itemworld_right{width:460px;height:540px;float:left;text-align:justify} +#itemworld_right>div:first-child{padding:50px 20px 30px 10px} +#itemworld_right>div:last-child{text-align:center;padding-top:10px} +#towerstart{width:520px;margin:160px auto 0} +#towerstart>p{padding:5px 0} +#towerstart>div{padding:5px 0} + +/* market */ +#market_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:100%} +#market_left,#market_itemlist,#market_itempage,#market_itemfilter{user-select:none} +#market_left{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#market_left>div,#market_left>a>div{border-right:1px solid #5C0D11} +#market_left>div:last-of-type{flex-grow:1} +#market_left a,#market_right a{text-decoration:none} +#market_right{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;flex-grow:1} +#market_xfer{text-align:center;font-size:10pt;white-space:nowrap;padding:10px 10px 20px 0} +#market_xfer>form>div{margin:5px auto} +#market_xfer>form>div:nth-child(2){padding-left:5px;margin-bottom:9px} +#market_xfer input[type="submit"]{width:120px} +#market_xfer input[type="text"]{width:105px;font-size:12pt;font-weight:bold;text-align:right;border-radius:5px;margin-left:8px} +.credit_balance{margin-top:10px} +.credit_balance>div:last-child{padding:3px 0 5px} +.market_tab{padding:15px 5px;font-weight:bold;font-size:14px;font-family:verdana;cursor:pointer;border-radius:9px 0 0 9px;border:1px solid transparent} +.market_tab:hover{color:#9B4E03} +.market_cur{border:1px solid #5C0D11;border-right:1px solid transparent !important} +#market_itemlist{flex-grow:1;flex-shrink:1;overflow:auto} +#market_itemlist>table{min-width:800px;text-align:right;margin:auto;font-family:verdana;font-size:10pt;font-weight:bold;border-collapse:separate;border-spacing:0} +#market_itemlist tr:hover:not(:first-child),.market_itemorders tr[onclick]:hover{color:#9B4E03;background:linear-gradient(to right,#605A5A00 0%, #605A5A0A 5%, #605A5A0A 95%,#605A5A00 100%)} +#market_itemlist th{border-bottom:1px solid #5C0D11;padding:10px 0 10px 20px;position:sticky;top:0;background:#EDEBDF} +#market_itemlist th:first-child{min-width:200px} +#market_itemlist td{height:30px;border-bottom:1px solid #5C0D1136} +#market_itemlist td:nth-child(2), #market_itemlist td:nth-child(3){padding-right:20px} +#market_itemlist td:last-child,#market_itemlist th:last-child{padding-right:20px} +#market_itemlist td:not(:first-child){font-weight:normal} +#market_itemlist>p{font-size:9pt;font-style:italic;padding:10px} +#market_itemlist tr[data-orderdisabled="1"]{color:#e63e3e} +#market_itemfilter{padding:5px 20px;display:flex;flex-direction:row;align-items:center;justify-content:center;font-weight:bold;font-size:10pt} +#market_itemfilter>div{padding:0 20px} +#market_itempage{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;flex-grow:1;font-weight:bold} +#market_itempage>div:nth-child(4){padding:10px 0 5px;font-size:10pt;font-family:verdana} +#market_itempage>div:first-child,#market_itempage>div:last-child{padding:15px 0;font-size:10pt;font-family:verdana} +#market_itemheader{display:flex;flex-direction:row;align-items:center;justify-content:center} +#market_itemheader>div:nth-child(2){width:400px} +#market_iteminfo{padding:0 0 15px;font-weight:normal;font-size:9pt} +#market_iteminfo span{font-weight:bold} +#market_itembody{flex-grow:1;display:flex;flex-direction:row;align-items:stretch;justify-content:space-around;flex-wrap:nowrap} +#market_itemsell,#market_itembuy{display:flex;flex-direction:column;align-items:stretch;justify-content:start} +#market_itemhistory{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;font-size:9pt} +#market_itemhistory td,#market_itemhistory th{padding:4px 6px} +#market_itemhistory td{text-align:right;height:16px} +#market_itemhistory th{text-align:center;border-bottom:1px solid #5C0D1136} +#market_itemhistory td:not(:first-child){font-weight:normal} +#market_itemhistory p{font-weight:normal;font-style:italic;font-size:8pt;padding:6px} +#market_itemhistory>div:not(:first-child){padding-top:3px} +#buyorder_update[data-orderdisabled="1"]:enabled{color:#e63e3e;border-color:#e63e3e} +#buyorder_update[data-orderdisabled="1"]:disabled{color:#ec9999;border-color:#ec9999} +.market_placeorder{margin:10px;font-size:10pt} +.market_placeorder span{font-weight:bold} +.market_placeorder td{padding:5px 2px;min-width:50px} +.market_placeorder td:nth-child(1){padding-top:6px;text-align:right} +.market_placeorder td:nth-child(3){padding-top:6px;text-align:left} +.market_placeorder td:nth-child(2){text-align:center} +.market_placeorder tr:nth-child(3) td,.market_placeorder tr:nth-child(4) td,.market_placeorder tr:nth-child(5) td{text-align:center;padding:7px 0 2px} +.market_placeorder input[type=number],.market_placeorder input[type=text]{width:70px;height:18px;border-width:1px 0;padding:2px 4px;margin:0;border-radius:0;text-align:right;vertical-align:top} +.market_placeorder input[type=button]{width:24px;height:24px;border-width:1px;margin:0} +.market_placeorder input[type=button]:nth-child(1){border-radius:50% 0 0 50%;padding:0 0 0 2px} +.market_placeorder input[type=button]:nth-child(3){border-radius:0 50% 50% 0;padding:0 2px 0 0} +.market_itemorders{padding-top:10px} +.market_itemorders p{font-weight:normal;font-style:italic;padding:6px} +.market_itemorders table{min-width:100px;margin:5px auto 0;font-weight:normal;font-size:9pt;font-weight:bold} +.market_itemorders th{padding:4px 8px;text-align:right;border-bottom:1px solid #5C0D1136} +.market_itemorders td{padding:8px;text-align:right} +.market_itemorders tr[data-orderconflict="1"]{color:#e63e3e} +.market_itemorders tr[data-orderconflict="1"]:hover{color:#ce3131} +.market_itemorders tr[data-orderactive="1"]{font-style:italic} +.market_itemorders tr[data-orderinsufficient="1"]{font-weight:normal} +.market_itemorders span,#market_itemhistory span,#market_tradelog span{opacity:0.3} +#market_recent{margin:8px auto 0} +#market_recent td>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-align:left;max-width:100px} +#market_recent td>div>span,#market_tradelog td:nth-child(2)>span{font-style:italic} +#market_price{margin:8px auto} +#market_accountlog{overflow:auto} +#market_accountlog table,#market_tradelog table{margin:0 auto;text-align:left;font-size:9pt} +#market_accountlog td,#market_tradelog td{padding:3px 5px} +#market_accountlog th,#market_tradelog th{padding:5px 5px 3px;position:sticky;top:0;background:#EDEBDF} +#market_accountlog td:nth-child(1),#market_tradelog td:nth-child(1){font-weight:bold} +#market_accountlog td:nth-child(2),#market_accountlog td:nth-child(3){text-align:right} +#market_accountlog th:nth-child(2),#market_accountlog th:nth-child(3){text-align:center} +#market_tradelog_top,#market_tradelog_bot{font-weight:bold;font-size:10pt;font-family:verdana;padding:5px} +#market_tradelog{flex-grow:1;flex-shrink:1;overflow:auto} +#market_tradelog td:nth-last-child(1),#market_tradelog td:nth-last-child(2),#market_tradelog td:nth-last-child(3){text-align:right} +#market_tradelog th:nth-last-child(1),#market_tradelog th:nth-last-child(2),#market_tradelog th:nth-last-child(3){text-align:center} + +/* equipment */ +#eqsh{height:20px;text-align:center;padding-top:10px} +#eqsl{height:20px;margin:auto;position:relative} +#eqsl>div{float:left} +#eqsb{height:608px;overflow:auto;position:relative} +.eqb{width:650px;height:20px;margin:4px auto;padding:8px 0 14px;clear:both;text-align:left;position:relative;border:1px solid #5C0D11;border-radius:9px;user-select:none} +.eqb:not(.eqdisabled):hover{background:#F2EFDF;border:1px solid #9B4E03} +.eqb>div{clear:both;width:650px;margin:auto;text-align:center;font-size:10pt;font-weight:bold} +.eqb>div:last-child{padding-top:2px} +.eqempty{color:#9C9C9C} +.eqdisabled{border-color:#9C9C9C !important;color:#9C9C9C !important} +.eqselected{border:2px solid !important;padding:4px 0 !important} +.eqtplabel td{padding-left:10px !important;font-style:italic} + +/* armory */ +#armory_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:100%;user-select:none} +#armory_left{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;padding-top:50px} +#armory_left>div,#armory_left>a>div{border-right:1px solid #5C0D11} +#armory_left>div:last-of-type{flex-grow:1} +#armory_left a,#armory_right a{text-decoration:none} +#armory_right{display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap;flex-grow:1} +.armory_tab{padding:15px 5px;font-weight:bold;font-size:14px;font-family:verdana;cursor:pointer;border-radius:9px 0 0 9px;border:1px solid transparent} +.armory_tab:hover{color:#9B4E03} +.armory_cur{border:1px solid #5C0D11;border-right:1px solid transparent !important} +#equipselect_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:630px;width:100%} +#equipselect_left{padding:10px 20px;background:#EDEBDF;flex:1;display:flex;flex-direction:column;align-items:stretch} +#equiplist{overflow-y:scroll;scrollbar-gutter:stable;flex:1;padding-right:5px} +#equiplist tr[data-eqprotect]{opacity:0.5} +#equipselect_left table{width:100%;background:#EDEBDF} +#equipselect_left td,#equipselect_left th{padding:6px 2px;text-align:left} +#equipselect_left th{font-style:italic;font-weight:normal;font-size:9pt} +#equipselect_left td{font-size:10pt;font-weight:bold;border-top:1px solid #5C0D1136;border-bottom:1px solid #5C0D1136} +#equipselect_left tr:not(.eqselall):not(.eqtplabel):hover,tr[data-hover="1"]{color:#9B4E03;background:linear-gradient(to right,#605A5A00 0%, #605A5A0A 5%, #605A5A0A 95%,#605A5A00 100%)} +#equipselect_left td:not(:first-child){text-align:right;padding-right:5px} +#equipselect_right{width:440px;display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#eqback{font-weight:bold;text-align:left;font-size:9pt;margin:0 0 8px 2px} +#equipinfo{flex:1} +#equipblurb{text-align:justify;font-size:10pt;padding:0 10px 0 3px} +#equipblurb table{margin:10px 0 0 20px} +#equipblurb td{padding:3px;text-align:right} +#equipblurb td:not(:first-child){font-weight:bold} +#equipblurb a{font-weight:bold} +#equipaction{padding-bottom:7px} +#equipaction label{text-align:left;margin:5px 0 5px 15px;font-weight:bold;font-size:9pt} +#equipaction p{font-weight:bold;font-size:9pt} +#equipaction td:first-child{font-weight:bold;text-align:right} +#equipaction td[data-inactive="1"]{filter:saturate(0);opacity:0.5} +.eqaction{width:250px;margin:auto} +.eqorganize{margin:auto} +.eqorganize td{min-width:54px} +.eqorganize span{font-size:12pt} +.eqmodify td:first-child{font-size:12pt} +#equipsubmit{margin:10px auto 5px} +#itemlist{margin:5px auto;font-size:9pt;font-weight:bold;overflow-y:scroll;scrollbar-gutter:stable;flex-shrink:1} +#itemlist>table{margin:auto} +#itemlist th,.eqils td{padding:2px;text-align:center} +.eqilm td{padding:2px;text-align:left} +.eqilm td:first-child{min-width:40px;text-align:right;padding-left:0} +.eqilm td:last-child{min-width:50px} +#eqcredits{margin:auto} +#eqcredits td{width:100px;font-weight:bold;font-size:9pt} +#eqcredits td:nth-child(2){width:120px;text-align:center} +#eqcredits td:nth-child(3){text-align:left} +#equipmodify_outer{display:flex;flex-direction:row;align-items:stretch;justify-content:start;flex-wrap:nowrap;height:630px;width:100%} +#equipmodify_left{padding:10px 20px;flex:1} +#equipmodify_left>p{font-weight:bold;font-size:9pt} +#equipmodify_middle{padding:10px 20px;flex:1;display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#equipmodify_middle>div{flex:1} +#equipmodify_right{width:440px;display:flex;flex-direction:column;align-items:stretch;justify-content:start;flex-wrap:nowrap} +#equipmodify_right button{width:165px;margin:5px;white-space:nowrap} +#equipmodify_right table{margin:auto} +#charmslots{margin:-7px 0 -1px} +.eqcharm{width:300px;height:52px;margin:9px auto;padding:6px 1px 5px;border:1px solid #5C0D11;border-radius:9px;user-select:none} +.eqcharm:not(.eqdisabled):hover{background:#F2EFDF;border:1px solid #9B4E03} +.eqcharm>div{text-align:center;font-size:10pt;font-weight:bold} +.eqcharm>div:last-child{padding-top:2px} +.eqcharm p{padding:1px} +.eqcharm table{margin:2px auto 0;text-align:center;font-size:10pt;font-weight:bold;width:280px} +.eqcharm td:first-child{text-align:left;padding-left:50px} +.eqcharm td:last-child{text-align:right;padding-right:50px} +.chsel{border:2px solid !important;padding:5px 0 4px !important} +.chdmg{text-decoration:line-through} +.eqce{color:#9C9C9C;margin-top:7px} +#equpgrade>p,#eqbaserolls>p{font-weight:bold;font-size:9pt} +#equpgrade>p:first-child,#eqbaserolls>p:first-child{font-size:10pt} +#equpgrade>button,#eqbaserolls>button{width:175px;margin:5px} +.upgrmats,#eqbaserolls>table{margin:auto} +.upgrmats td,#eqbaserolls td{font-size:9pt;padding:3px 2px;text-align:left} +.upgrmats td:first-child,#eqbaserolls td:first-child{text-align:right} +.eqred{color:#FF0000} +#confirm_body .upgrmats{font-weight:bold} +#eqbaserolls td:last-child{text-align:left;padding-right:5px;font-weight:bold} +#confirm_outer{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#EDEBDFCC;z-index:9999;display:flex;flex-flow:column;justify-content:center;align-items:center;backdrop-filter:blur(1px)} +#confirm_inner{background:#EDEBDF;border:2px solid;border-radius:9px} +#confirm_inner>div{width:500px;padding:5px;text-align:center} +#confirm_header{display:flex;flex-flow:row;justify-content:start;border-bottom:1px solid} +#confirm_header>div:first-child{text-align:left;flex-grow:1;font-size:12pt;padding-top:3px} +#confirm_header>div:last-child{width:30px;text-align:right;font-size:14pt;padding-right:5px} +#confirm_body{font-size:10pt} +#confirm_body>input[type="text"]{width:95%;margin:5px 0} +#confirm_body>button{margin:10px} +#confirm_body>table{margin:auto} +#confirm_body label{position:relative;left:3px;margin:0 10px} +#eqselcharm{overflow-y:scroll;scrollbar-gutter:stable} +#eqselcharm table,#eqselpouch table{width:290px} +#eqselcharm td,#eqselpouch td{font-size:10pt;font-weight:bold;text-align:left;padding:5px 0} +#eqselcharm td:last-child,#eqselpouch td:last-child{text-align:right} +#eqselpouch{flex:0 !important} +#equipmodify_outer tr[data-disabled]{color:#9C9C9C !important;border-color:#9C9C9C !important} +#setcharm{margin-bottom:0} +#cdreason{font-weight:bold;padding:0;margin:0 0 3px} +#charmats td:first-child,#iwinfo td:first-child{text-align:right;padding-right:5px} +#charmats td:last-child{text-align:left} +#iwinfo{margin:0 auto 5px !important} +#iwinfo td{padding:3px} +#iwinfo td:last-child{text-align:left;font-weight:bold} +#armory_repaircosts{font-weight:bold;margin:0 auto 3px !important} +#armory_repaircosts td{padding:3px} +#fuseinfo{margin:3px auto 0 !important} +#fuseinfo td:nth-child(1){text-align:right} +#fuseinfo td:nth-child(2){padding:1px 2px 1px 5px} +#fuseinfo td:nth-child(3){font-weight:bold;padding:1px 5px 1px 2px} +#fuseinfo td:nth-child(4){text-align:left} \ No newline at end of file diff --git a/references/The HentaiVerse - Equipment_files/set1_on.png b/references/The HentaiVerse - Equipment_files/set1_on.png new file mode 100644 index 0000000000000000000000000000000000000000..7057bf45d05b3cbc36e5eb6a2a0e3062aa623aab GIT binary patch literal 4606 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 literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Equipment_files/set2_off.png b/references/The HentaiVerse - Equipment_files/set2_off.png new file mode 100644 index 0000000000000000000000000000000000000000..a2600bdee3fdc682739af76bca67546f4488db5e GIT binary patch literal 3175 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 N002ovPDHLkV1jHN1A_nn literal 0 HcmV?d00001 diff --git a/references/The HentaiVerse - Equipment_files/set3_off.png b/references/The HentaiVerse - Equipment_files/set3_off.png new file mode 100644 index 0000000000000000000000000000000000000000..9dd6efdc80e6105867a49ae81a009bde1713f62e GIT binary patch literal 3144 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 7) ? 0.60 : CFG.cureItemHP; + if (STATE.hp < reqHpItem) { + const gem = hasUsableGem('heal'); + if (gem) return { type: 'item', id: gem.id, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + // Check non-gem health items + for (const [slot, info] of Object.entries(STATE.itemsKnown)) { + if (slot === 'p') continue; + const def = ITEMS[parseInt(info)]; + if (def && def.t === 'heal') return { type: 'item', id: slot, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + } + } + + // 2. Cure / Full-Cure spell + if (STATE.hp < Math.max(0.55, CFG.cureHP)) { + const c = hasReadySpell('Full-Cure') ? 'Full-Cure' : hasReadySpell('Cure') ? 'Cure' : null; + if (c) return { type: 'spell', name: c, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + } + // 0. Mystic Gem for channeling — only use once per battle const gem = hasUsableGem('channel'); if (gem && !STATE.channeling && !STATE._mysticUsed) return { type: 'item', id: gem.id, selfTarget: true, _reason: 'mystic' }; // 0b. Spark of Life SP safety — Spark costs 50% SP when triggered. - // If SP < 55%, consume a spirit item before anything else. - // Also suppress Spark recast if SP is too low to survive a proc. - if (STATE.sp < 0.55) { + // If SP < 60%, consume a spirit item before anything else. + if (STATE.sp < 0.60) { for (const [slot, info] of Object.entries(STATE.itemsKnown)) { if (slot === 'p') continue; const def = ITEMS[parseInt(info)]; @@ -1430,42 +1448,32 @@ function strategyVeteran() { } // 0d. Spirit Stance for burst clear — toggle on for 7+ mob, off after one skill - // 3-state flag: 0=normal, 1=toggle-on sent, 2=skill-cast done (toggle-off pending) const is2H = STATE.skillsKnown.includes('Great Cleave') || STATE.skillsKnown.includes('Rending Blow'); if (is2H && STATE.monsters && STATE.monsters.length >= 7 && STATE.oc >= (CFG.skillOC || 60)) { if (STATE._spiritForSkill >= 1 && STATE.spiritStance) { - // Spirit is on for our burst — advance state and let weapon skills fire if (STATE._spiritForSkill === 1) { - // First press with spirit on — just let weapon skills fire STATE._spiritForSkill = 2; } else if (STATE._spiritForSkill === 2) { - // Skill was already cast — toggle off now STATE._spiritForSkill = 0; return { type: 'toggle_spirit', _reason: 'spirit_off_7' }; } } else if (!STATE.spiritStance && STATE._spiritForSkill === 0) { - // Toggle on first, mark to toggle off after skill STATE._spiritForSkill = 1; return { type: 'toggle_spirit', _reason: 'spirit_on_7' }; } } else { - // Reset if conditions no longer met STATE._spiritForSkill = 0; } - // 0e. HIGH-THREAT WEAPON SKILLS — before buffs/items/debuffs - // If enemies have high SP bars, kill/stun them NOW before they - // use special attacks. Don't waste turns buffing while monsters charge. - const SINGLE_THREAT = Math.round(120 * 90 / 100); // 108px = one monster about to special + // 0e. HIGH-THREAT WEAPON SKILLS — after survival items/cure + const SINGLE_THREAT = Math.round(120 * 90 / 100); const anyImminent = STATE.monsters.some((m, i) => (STATE.monsterSp[i] || 0) > SINGLE_THREAT); const isHighThreatEarly = hasHighThreat(THREAT_PX); if ((isHighThreatEarly || anyImminent) && STATE.oc >= 20) { - // Rending Blow: AoE armor pen vs 3+ enemies if (STATE.monsters.length >= 3 && STATE.skillsKnown.includes('Rending Blow')) { const t = findDangerousMonster(); if (t >= 0) return { type: 'skill', name: 'Rending Blow', target: t, _reason: 'threat_early' }; } - // Shatter Strike: AoE stun vs 3+ (needs Penetrated Armor) if (STATE.monsters.length >= 3 && STATE.skillsKnown.includes('Shatter Strike')) { const hasArmorBreak = STATE.monsters.some((m, i) => checkMonsterDebuff(i, 'penetrated_armor')); if (hasArmorBreak) { @@ -1473,25 +1481,12 @@ function strategyVeteran() { if (t >= 0) return { type: 'skill', name: 'Shatter Strike', target: t, _reason: 'stun_early' }; } } - // Great Cleave: single-target finisher if (STATE.skillsKnown.includes('Great Cleave')) { const t = findDangerousMonster(); if (t >= 0) return { type: 'skill', name: 'Great Cleave', target: t, _reason: 'cleave_early' }; } } - // 1. Health items — safe to use early - if (STATE.hp < CFG.cureItemHP) { - const gem = hasUsableGem('heal'); - if (gem) return { type: 'item', id: gem.id, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; - } - - // 2. Cure - if (STATE.hp < CFG.cureHP) { - const c = hasReadySpell('Full-Cure') ? 'Full-Cure' : hasReadySpell('Cure') ? 'Cure' : null; - if (c) return { type: 'spell', name: c, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; - } - // 2b. Spirit items — Spark of Life costs 50% SP. Keep SP above 55% so // Spark can actually save us. Use spirit draughts/potions proactively. if (STATE.sp < 0.55) { diff --git a/scripts/latest.user.js b/scripts/latest.user.js index 1d9a8b0..4bb7e84 100644 --- a/scripts/latest.user.js +++ b/scripts/latest.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name HV Unified // @namespace hvunified -// @version 0.14.21 +// @version 0.14.22 // @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse // @author GaboGG + Hermes // @match *://*.hentaiverse.org/* @@ -17,7 +17,7 @@ // CONFIG — default settings // ═══════════════════════════════════════════════════════════════════════ -const VERSION = '0.14.21'; +const VERSION = '0.14.22'; const CFG = { // — Battle automation @@ -1408,15 +1408,33 @@ function strategyAdept() { // ── Veteran (150-300) / Master (300+): full rotation ── function strategyVeteran() { + // 1. Health items — ALWAYS BEFORE ATTACKING OR SKILLS! + const reqHpItem = (STATE.monsters && STATE.monsters.length >= 7) ? 0.60 : CFG.cureItemHP; + if (STATE.hp < reqHpItem) { + const gem = hasUsableGem('heal'); + if (gem) return { type: 'item', id: gem.id, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + // Check non-gem health items + for (const [slot, info] of Object.entries(STATE.itemsKnown)) { + if (slot === 'p') continue; + const def = ITEMS[parseInt(info)]; + if (def && def.t === 'heal') return { type: 'item', id: slot, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + } + } + + // 2. Cure / Full-Cure spell + if (STATE.hp < Math.max(0.55, CFG.cureHP)) { + const c = hasReadySpell('Full-Cure') ? 'Full-Cure' : hasReadySpell('Cure') ? 'Cure' : null; + if (c) return { type: 'spell', name: c, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + } + // 0. Mystic Gem for channeling — only use once per battle const gem = hasUsableGem('channel'); if (gem && !STATE.channeling && !STATE._mysticUsed) return { type: 'item', id: gem.id, selfTarget: true, _reason: 'mystic' }; // 0b. Spark of Life SP safety — Spark costs 50% SP when triggered. - // If SP < 55%, consume a spirit item before anything else. - // Also suppress Spark recast if SP is too low to survive a proc. - if (STATE.sp < 0.55) { + // If SP < 60%, consume a spirit item before anything else. + if (STATE.sp < 0.60) { for (const [slot, info] of Object.entries(STATE.itemsKnown)) { if (slot === 'p') continue; const def = ITEMS[parseInt(info)]; @@ -1430,42 +1448,32 @@ function strategyVeteran() { } // 0d. Spirit Stance for burst clear — toggle on for 7+ mob, off after one skill - // 3-state flag: 0=normal, 1=toggle-on sent, 2=skill-cast done (toggle-off pending) const is2H = STATE.skillsKnown.includes('Great Cleave') || STATE.skillsKnown.includes('Rending Blow'); if (is2H && STATE.monsters && STATE.monsters.length >= 7 && STATE.oc >= (CFG.skillOC || 60)) { if (STATE._spiritForSkill >= 1 && STATE.spiritStance) { - // Spirit is on for our burst — advance state and let weapon skills fire if (STATE._spiritForSkill === 1) { - // First press with spirit on — just let weapon skills fire STATE._spiritForSkill = 2; } else if (STATE._spiritForSkill === 2) { - // Skill was already cast — toggle off now STATE._spiritForSkill = 0; return { type: 'toggle_spirit', _reason: 'spirit_off_7' }; } } else if (!STATE.spiritStance && STATE._spiritForSkill === 0) { - // Toggle on first, mark to toggle off after skill STATE._spiritForSkill = 1; return { type: 'toggle_spirit', _reason: 'spirit_on_7' }; } } else { - // Reset if conditions no longer met STATE._spiritForSkill = 0; } - // 0e. HIGH-THREAT WEAPON SKILLS — before buffs/items/debuffs - // If enemies have high SP bars, kill/stun them NOW before they - // use special attacks. Don't waste turns buffing while monsters charge. - const SINGLE_THREAT = Math.round(120 * 90 / 100); // 108px = one monster about to special + // 0e. HIGH-THREAT WEAPON SKILLS — after survival items/cure + const SINGLE_THREAT = Math.round(120 * 90 / 100); const anyImminent = STATE.monsters.some((m, i) => (STATE.monsterSp[i] || 0) > SINGLE_THREAT); const isHighThreatEarly = hasHighThreat(THREAT_PX); if ((isHighThreatEarly || anyImminent) && STATE.oc >= 20) { - // Rending Blow: AoE armor pen vs 3+ enemies if (STATE.monsters.length >= 3 && STATE.skillsKnown.includes('Rending Blow')) { const t = findDangerousMonster(); if (t >= 0) return { type: 'skill', name: 'Rending Blow', target: t, _reason: 'threat_early' }; } - // Shatter Strike: AoE stun vs 3+ (needs Penetrated Armor) if (STATE.monsters.length >= 3 && STATE.skillsKnown.includes('Shatter Strike')) { const hasArmorBreak = STATE.monsters.some((m, i) => checkMonsterDebuff(i, 'penetrated_armor')); if (hasArmorBreak) { @@ -1473,25 +1481,12 @@ function strategyVeteran() { if (t >= 0) return { type: 'skill', name: 'Shatter Strike', target: t, _reason: 'stun_early' }; } } - // Great Cleave: single-target finisher if (STATE.skillsKnown.includes('Great Cleave')) { const t = findDangerousMonster(); if (t >= 0) return { type: 'skill', name: 'Great Cleave', target: t, _reason: 'cleave_early' }; } } - // 1. Health items — safe to use early - if (STATE.hp < CFG.cureItemHP) { - const gem = hasUsableGem('heal'); - if (gem) return { type: 'item', id: gem.id, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; - } - - // 2. Cure - if (STATE.hp < CFG.cureHP) { - const c = hasReadySpell('Full-Cure') ? 'Full-Cure' : hasReadySpell('Cure') ? 'Cure' : null; - if (c) return { type: 'spell', name: c, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; - } - // 2b. Spirit items — Spark of Life costs 50% SP. Keep SP above 55% so // Spark can actually save us. Use spirit draughts/potions proactively. if (STATE.sp < 0.55) { diff --git a/src/config.js b/src/config.js index 56a5ae8..965e5c7 100644 --- a/src/config.js +++ b/src/config.js @@ -2,7 +2,7 @@ // CONFIG — default settings // ═══════════════════════════════════════════════════════════════════════ -const VERSION = '0.14.21'; +const VERSION = '0.14.22'; const CFG = { // — Battle automation diff --git a/src/header.user.js b/src/header.user.js index 51fda58..952f31a 100644 --- a/src/header.user.js +++ b/src/header.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name HV Unified // @namespace hvunified -// @version 0.14.21 +// @version 0.14.22 // @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse // @author GaboGG + Hermes // @match *://*.hentaiverse.org/* diff --git a/src/strategy-engine.js b/src/strategy-engine.js index 66af474..c7c76b0 100644 --- a/src/strategy-engine.js +++ b/src/strategy-engine.js @@ -682,15 +682,33 @@ function strategyAdept() { // ── Veteran (150-300) / Master (300+): full rotation ── function strategyVeteran() { + // 1. Health items — ALWAYS BEFORE ATTACKING OR SKILLS! + const reqHpItem = (STATE.monsters && STATE.monsters.length >= 7) ? 0.60 : CFG.cureItemHP; + if (STATE.hp < reqHpItem) { + const gem = hasUsableGem('heal'); + if (gem) return { type: 'item', id: gem.id, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + // Check non-gem health items + for (const [slot, info] of Object.entries(STATE.itemsKnown)) { + if (slot === 'p') continue; + const def = ITEMS[parseInt(info)]; + if (def && def.t === 'heal') return { type: 'item', id: slot, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + } + } + + // 2. Cure / Full-Cure spell + if (STATE.hp < Math.max(0.55, CFG.cureHP)) { + const c = hasReadySpell('Full-Cure') ? 'Full-Cure' : hasReadySpell('Cure') ? 'Cure' : null; + if (c) return { type: 'spell', name: c, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; + } + // 0. Mystic Gem for channeling — only use once per battle const gem = hasUsableGem('channel'); if (gem && !STATE.channeling && !STATE._mysticUsed) return { type: 'item', id: gem.id, selfTarget: true, _reason: 'mystic' }; // 0b. Spark of Life SP safety — Spark costs 50% SP when triggered. - // If SP < 55%, consume a spirit item before anything else. - // Also suppress Spark recast if SP is too low to survive a proc. - if (STATE.sp < 0.55) { + // If SP < 60%, consume a spirit item before anything else. + if (STATE.sp < 0.60) { for (const [slot, info] of Object.entries(STATE.itemsKnown)) { if (slot === 'p') continue; const def = ITEMS[parseInt(info)]; @@ -704,42 +722,32 @@ function strategyVeteran() { } // 0d. Spirit Stance for burst clear — toggle on for 7+ mob, off after one skill - // 3-state flag: 0=normal, 1=toggle-on sent, 2=skill-cast done (toggle-off pending) const is2H = STATE.skillsKnown.includes('Great Cleave') || STATE.skillsKnown.includes('Rending Blow'); if (is2H && STATE.monsters && STATE.monsters.length >= 7 && STATE.oc >= (CFG.skillOC || 60)) { if (STATE._spiritForSkill >= 1 && STATE.spiritStance) { - // Spirit is on for our burst — advance state and let weapon skills fire if (STATE._spiritForSkill === 1) { - // First press with spirit on — just let weapon skills fire STATE._spiritForSkill = 2; } else if (STATE._spiritForSkill === 2) { - // Skill was already cast — toggle off now STATE._spiritForSkill = 0; return { type: 'toggle_spirit', _reason: 'spirit_off_7' }; } } else if (!STATE.spiritStance && STATE._spiritForSkill === 0) { - // Toggle on first, mark to toggle off after skill STATE._spiritForSkill = 1; return { type: 'toggle_spirit', _reason: 'spirit_on_7' }; } } else { - // Reset if conditions no longer met STATE._spiritForSkill = 0; } - // 0e. HIGH-THREAT WEAPON SKILLS — before buffs/items/debuffs - // If enemies have high SP bars, kill/stun them NOW before they - // use special attacks. Don't waste turns buffing while monsters charge. - const SINGLE_THREAT = Math.round(120 * 90 / 100); // 108px = one monster about to special + // 0e. HIGH-THREAT WEAPON SKILLS — after survival items/cure + const SINGLE_THREAT = Math.round(120 * 90 / 100); const anyImminent = STATE.monsters.some((m, i) => (STATE.monsterSp[i] || 0) > SINGLE_THREAT); const isHighThreatEarly = hasHighThreat(THREAT_PX); if ((isHighThreatEarly || anyImminent) && STATE.oc >= 20) { - // Rending Blow: AoE armor pen vs 3+ enemies if (STATE.monsters.length >= 3 && STATE.skillsKnown.includes('Rending Blow')) { const t = findDangerousMonster(); if (t >= 0) return { type: 'skill', name: 'Rending Blow', target: t, _reason: 'threat_early' }; } - // Shatter Strike: AoE stun vs 3+ (needs Penetrated Armor) if (STATE.monsters.length >= 3 && STATE.skillsKnown.includes('Shatter Strike')) { const hasArmorBreak = STATE.monsters.some((m, i) => checkMonsterDebuff(i, 'penetrated_armor')); if (hasArmorBreak) { @@ -747,25 +755,12 @@ function strategyVeteran() { if (t >= 0) return { type: 'skill', name: 'Shatter Strike', target: t, _reason: 'stun_early' }; } } - // Great Cleave: single-target finisher if (STATE.skillsKnown.includes('Great Cleave')) { const t = findDangerousMonster(); if (t >= 0) return { type: 'skill', name: 'Great Cleave', target: t, _reason: 'cleave_early' }; } } - // 1. Health items — safe to use early - if (STATE.hp < CFG.cureItemHP) { - const gem = hasUsableGem('heal'); - if (gem) return { type: 'item', id: gem.id, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; - } - - // 2. Cure - if (STATE.hp < CFG.cureHP) { - const c = hasReadySpell('Full-Cure') ? 'Full-Cure' : hasReadySpell('Cure') ? 'Cure' : null; - if (c) return { type: 'spell', name: c, selfTarget: true, _reason: `hp${(STATE.hp*100).toFixed(0)}` }; - } - // 2b. Spirit items — Spark of Life costs 50% SP. Keep SP above 55% so // Spark can actually save us. Use spirit draughts/potions proactively. if (STATE.sp < 0.55) {