Advertisement
Guest User

Untitled

a guest
Aug 4th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.75 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <link rel="shortcut icon" href="/favicon.ico" />
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8. <meta http-equiv="X-UA-Compatible" content="IE=9" />
  9. <link href="https://www.dota2.com/public/css/global.css?v=b3494800" rel="stylesheet" type="text/css" >
  10. <link href="https://www.dota2.com/public/css/global_english.css?v=vBcKMZIqhOJW" rel="stylesheet" type="text/css" >
  11. <link href="https://www.dota2.com/public/css/publicheader.css?v=bu5q7Y6UKUgK" rel="stylesheet" type="text/css" >
  12. <link href="https://www.dota2.com/public/css/687.css?v=b3494800" rel="stylesheet" type="text/css" >
  13. <link href="https://www.dota2.com/public/css/font_goudytrajan.css?v=.zvTaeKqDJjHz" rel="stylesheet" type="text/css" >
  14. <script type="text/javascript" src="https://cdn.steamstatic.com/apps/dota2/javascript/static/jquery-1.7.1.min.js?v=3494800"></script>
  15. <script type="text/javascript">$J = jQuery;</script><script type="text/javascript" src="https://www.dota2.com/public/shared/javascript/shared_global.js?v=nfCHqEaxLwD7&amp;l=english"></script>
  16. <title>Dota 2 - Gameplay Update 6.89</title>
  17.  
  18. <script type="text/javascript">
  19.  
  20. var _gaq = _gaq || [];
  21. _gaq.push(['_setAccount', 'UA-33822635-2']);
  22. _gaq.push(['_setSampleRate', '1']); _gaq.push(['_setDomainName', 'dota2.com']);
  23. _gaq.push(['_trackPageview']);
  24.  
  25. (function() {
  26. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  27. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  28. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  29. })();
  30.  
  31. </script>
  32. <script>
  33. $( function () {
  34. var URL = ( location.protocol == 'https:' ) ? 'https://www.dota2.com/' : 'http://www.dota2.com/';
  35. URL = URL + 'jsfeed/heropediadata?feeds=herodata,itemdata';
  36. $.ajax(
  37. {
  38. type:'GET',
  39. cache:true,
  40. url: URL,
  41. dataType:'jsonp',
  42. success: function( data )
  43. {
  44. g_HeroData = data['herodata'];
  45. g_ItemData = data['itemdata'];
  46. formatHeroAndItemNotes();
  47. }
  48. }
  49. );
  50. } );
  51.  
  52. var g_HeroData = false;
  53. var g_ItemData = false;
  54. function formatHeroAndItemNotes()
  55. {
  56. $.each( ['items','heroes'], function( i, type ) {
  57. var containers = ['#Heroes','#Items'];
  58. for ( i = 0; i < containers.length; i++ )
  59. {
  60. container = containers[i];
  61. var strContents = $(container).html();
  62. if ( strContents )
  63. {
  64. var foundTags = strContents.match( /\[\[\w+\]\]/g );
  65. if ( foundTags )
  66. {
  67. for ( x = 0; x < foundTags.length; x++ )
  68. {
  69. tag = foundTags[x];
  70. tag = tag.substring( 2, tag.length-2 );
  71. bUnfound = false;
  72. if ( g_ItemData[tag] )
  73. {
  74. path = 'items/'+tag+'_lg.png';
  75. name = g_ItemData[tag].dname;
  76. hw = 'width="48" height="36"';
  77. }
  78. else if ( g_HeroData[tag] )
  79. {
  80. path = 'heroes/'+tag+'_sb.png';
  81. name = g_HeroData[tag].dname;
  82. hw = '';
  83. }
  84. else
  85. {
  86. bUnfound = true;
  87. }
  88. if ( !bUnfound )
  89. {
  90. var strHTML = '<div class="ChangeNoteImage"><img src="http://cdn.dota2.com/apps/dota2/images/'+path+'" '+hw+' /></div><br style="clear: left;"/>';
  91. strHTML += '<b>' + name + '</b>';
  92. strContents = strContents.replace( foundTags[x], strHTML );
  93. }
  94. }
  95. $(container).html( strContents );
  96. }
  97. }
  98. }
  99. });
  100.  
  101. var eCount = 0;
  102. $( '.ChangeDetailsExtended' ).each( function() {
  103. var $extended = $( this );
  104. $extended.attr( 'id', 'extended'+eCount );
  105. $extended.before( '<a href="#" class="ChangeDetailsEToggle" id="eToggle'+eCount+'" onclick="$(\'#extended'+eCount+'\').show();$(this).hide();return false;">+ Show Details</a>' );
  106. $extended.html( '<a href="#" id="eToggleHide'+eCount+'" class="ChangeDetailsEToggle HideButton" onclick="$(\'#extended'+eCount+'\').hide();$(\'#eToggle'+eCount+'\').show();return false;">- Hide Details</a>' + $extended.html() );
  107. eCount++;
  108. } );
  109. $( '.ChangeDetailsPopup' ).each( function() {
  110. var $popup = $( this );
  111. var $popupHoverButton = $( '<a href="#">[?]</a>' );
  112. $popup.before( $popupHoverButton );
  113. $popupHoverButton.hover( function() {
  114. $popup.css( "display", "block" );
  115. }, function() {
  116. $popup.css( "display", "none" );
  117. });
  118. $popupHoverButton.click( function() {
  119. // Suppress the click event
  120. return false;
  121. });
  122. } );
  123. }
  124. </script>
  125. </head>
  126. <body>
  127. <div class="Inner">
  128. <a href="http://www.dota2.com/"><img style="float:left; margin-right: 10px;" src="https://cdn.steamstatic.com/apps/dota2/images/springcleaning2016/logo.png" /></a><br>
  129. This page is not officially associated with Valve; I'm just making these for my own fun and predictions.
  130. </div>
  131.  
  132.  
  133. <a class="HiddenAnchor" name="GameplayHeader"> </a>
  134. <div class="Container" id="Header">
  135. <div class="Inner">
  136. <h1>Gameplay Update 6.89</h1>
  137. </div>
  138. </div>
  139.  
  140. <div class="Container RepeatY BGStyle1" id="Items">
  141. <div class="Inner">
  142.  
  143. <b></b>
  144.  
  145. <b>ITEM CHANGES</b>
  146. <br />
  147.  
  148. [[iron_talon]]
  149. <ul>
  150. <li>Chop damage reduced from 40% to 33%</li>
  151. <li>Chop cast range reduced from 350 to 150 <span class="ChangeDetailsPopup">Now matches melee range</span></li>
  152. </ul>
  153. [[necronomicon]]
  154. <ul>
  155. <li>Necronomicon Warrior Mana Break burned mana as damage reduced from 60% to 50%</li>
  156. <li>Necronomicon Archer magic resistance reduced from 40% to 25%</li>
  157. </ul>
  158.  
  159. [[bloodthorn]]
  160. <ul>
  161. <li>Mana regeneration increased from 150% to 200%</li>
  162. </ul>
  163.  
  164. [[blight_stone]]
  165. <ul>
  166. <li>Armor reduction duration reduced from 8 to 6</li>
  167. </ul>
  168.  
  169. [[echo_sabre]]
  170. <ul>
  171. <li>Echo Strike cooldown increased from 5 to 7</li>
  172. </ul>
  173.  
  174. [[infused_raindrop]]
  175. <ul>
  176. <li>Cooldown increased from 4 to 5</li>
  177. <li>Cost increased from 225 to 255</li>
  178. </ul>
  179.  
  180. [[radiance]]
  181. <ul>
  182. <li>Burn miss chance reduced from 17% to 15%</li>
  183. </ul>
  184.  
  185. [[heavens_halberd]]
  186. <ul>
  187. <li>Damage bonus increased from 25 to 40</li>
  188. </ul>
  189.  
  190. [[silver_edge]]
  191. <ul>
  192. <li>Bonus damage on hit reduced from 225 to 175</li>
  193. </ul>
  194.  
  195. [[tome_of_knowledge]]
  196. <ul>
  197. <li>Cost decreased from 150 to 100</li>
  198. <li>Experience granted reduced from 425 to 400</li>
  199. </ul>
  200.  
  201. [[sentry_wards]]
  202. <ul>
  203. <li>Cost reduced from 200 to 100</li>
  204. <li>Now only purchases 1 Sentry ward per stack</li>
  205. <li>Duration reduced from 240 seconds to 210 <span class="ChangeDetailsPopup">From 4 minutes to 3 minutes and 30 seconds</span></li>
  206. </ul>
  207.  
  208. <br><br>
  209. <br><br>
  210.  
  211. </div>
  212. </div>
  213.  
  214. <div class="Container RepeatY BGStyle2" id="Heroes">
  215. <div class="Inner">
  216. <h3>Heroes</h3>
  217.  
  218. [[alchemist]]
  219. <ul>
  220. <li>Acid Spray radius reduced from 625 to 550/575/600/625</li>
  221. <li>Acid Spray damage type changed from Phyiscal to Magical</li>
  222. </ul>
  223.  
  224. [[antimage]]
  225. <ul>
  226. <li>Strength growth increased from 1.2 to 1.5</li>
  227. <li>Mana Break mana burned increased from 28/40/52/64 to 35/45/55/65</li>
  228. <li>Mana Break mana burnt as damage rescaled from 60% to 52%/55%/58%/61%</li>
  229. </ul>
  230.  
  231. [[arc_warden]]
  232. <ul>
  233. <li>Magnetic Field now evades attacks from any position</li>
  234. <li>Magnetic Field evasion rescaled from 100% to 60/70/80/90%</li>
  235. <li>Magnetic Field duration reduced from 3.5/4.5/5.5/6.5 to 3/4/5/6</li>
  236. <li>Magnetic Field now provides 400 flying vision for its duration</li>
  237. <li>Base Strength reduced from 24 to 22</li>
  238. <li>Base attack time improved from 1.7 to 1.6</li>
  239. </ul>
  240.  
  241. [[batrider]]
  242. <ul>
  243. <li>Base Strength reduced from 23 to 21</li>
  244. <li>Firefly mana cost increased from 100 to 100/110/120/130</li>
  245. </ul>
  246.  
  247. [[beastmaster]]
  248. <ul>
  249. <li>Primal Roar knockback no longer slows</li>
  250. <li>Call of the Wild Hawk now requires level 4 before gaining Invisibility</li>
  251. <li>Call of the Wild cooldown increased from 42/38/34/30 to 45/40/35/30</li>
  252. </ul>
  253.  
  254. [[bloodseeker]]
  255. <ul>
  256. <li>Thirst max health threshold increased from 75% to 80%</li>
  257. </ul>
  258.  
  259. [[bounty_hunter]]
  260. <ul>
  261. <li>Shuriken Toss stun duration increased from 0.1 to 0.3</li>
  262. <li>Shadow Walk now has a 0.01 second cast point</li>
  263. </ul>
  264.  
  265. [[brewmaster]]
  266. <ul>
  267. <li>Base Intelligence increased from 14 + 1.25 to 15 + 1.5</li>
  268. </ul>
  269.  
  270. [[crystal_maiden]]
  271. <ul>
  272. <li>Freezing Field mana cost decreased from 200/400/600 to 200/350/500</li>
  273. </ul>
  274.  
  275. [[dark_seer]]
  276. <ul>
  277. <li>Vacuum radius rescaled from 250/350/450/550 to 300/350/400/450</li>
  278. <li>Vacuum now destroys trees in the same radius as the pull radius</li>
  279. <li>Vacuum no longer fully disables enemies <span class="ChangeDetailsPopup">Like Invoker's Deafening Blast</span></li>
  280. <li>Aghanim's Scepter now additionally causes Wall of Replica to ministun enemies when passed through</li>
  281. </ul>
  282.  
  283. [[death_prophet]]
  284. <ul>
  285. <li>Spirit Siphon cast point increased from 0.1 to 0.2</li>
  286. <li>Spirit Siphon no longer persists through Spell Immunity</li>
  287. <li>Spirit Siphon duration reduced from 6 to 5</li>
  288. </ul>
  289.  
  290. [[disruptor]]
  291. <ul>
  292. <li>Glimpse flying vision linger duration reduced from 3.34 to 1</li>
  293. <li>Glimpse no longer cancels Ball Lightning <span class="ChangeDetailsPopup">Still cancels other position chagning spells like Time Walk</span></li>
  294. </ul>
  295.  
  296. [[doom_bringer]]
  297. <ul>
  298. <li>Infernal Blade stun duration reduced from 0.3 to 0.15</li>
  299. </ul>
  300.  
  301. [[dragon_knight]]
  302. <ul>
  303. <li>Dragon Tail cooldown increased from 12/11/10/9 to 15</li>
  304. </ul>
  305.  
  306. [[drow_ranger]]
  307. <ul>
  308. <li></li>
  309. </ul>
  310.  
  311. [[earth_spirit]]
  312. <ul>
  313. <li>Boulder Smash stun duration rescaled from 0.75/1.25/1.75/2.25 to 0.9/1.3/1.6/1.9</li>
  314. </ul>
  315.  
  316. [[earthshaker]]
  317. <ul>
  318. <li></li>
  319. </ul>
  320.  
  321. [[enigma]]
  322. <ul>
  323. <li></li>
  324. </ul>
  325.  
  326. [[gyrocopter]]
  327. <ul>
  328. <li>Gyrocopter's Scepter Side Gunner attack interval improved from 1.2 to 1.0</li>
  329. </ul>
  330.  
  331. [[invoker]]
  332. <ul>
  333. <li>Forge Spirit damage decreased from 22/32/42/52/62/72/82 to 20/30/40/50/60/70/80</li>
  334. <li>Aghanim's Scepter no longer removes Invoke mana cost</li>
  335. </ul>
  336.  
  337. [[wisp]]
  338. <ul>
  339. <li>Overcharge health/mana cost increased from 4.25% to 4.5%</li>
  340. </ul>
  341.  
  342. [[jakiro]]
  343. <ul>
  344. <li></li>
  345. </ul>
  346.  
  347. [[juggernaut]]
  348. <ul>
  349. <li>Healing Ward cast range reduced from 350 to 275</li>
  350. </ul>
  351.  
  352. [[keeper_of_the_light]]
  353. <ul>
  354. <li>Base damage range rescaled from 18-32 to 25-31</li>
  355. </ul>
  356.  
  357. [[kunkka]]
  358. <ul>
  359. <li>X Marks the Spot sub-ability Return cast point removed</li>
  360. </ul>
  361.  
  362. [[leshrac]]
  363. <ul>
  364. <li>Lightning Storm mana cost reduced from 90/100/110/120 to 80/90/100/110</li>
  365. </ul>
  366.  
  367. [[life_stealer]]
  368. <ul>
  369. <li>Infest damage radius reduced from 700 to 500</li>
  370. <li>Rage cooldown increased from 16 to 22/20/18/16</li>
  371. </ul>
  372.  
  373. [[lina]]
  374. <ul>
  375. <li>Laguna Blade now mini-stuns its target</li>
  376. </ul>
  377.  
  378. [[luna]]
  379. <ul>
  380. <li>Scepter Upgraded Eclipse cast range is now global</li>
  381. </ul>
  382.  
  383. [[magnataur]]
  384. <ul>
  385. <li>Base movement speed increased from 315 to 320</li>
  386. </ul>
  387.  
  388. [[meepo]]
  389. <ul>
  390. <li>Aghanim's Scepter now additionally provides Meepo 10% respawn timer reduction</li>
  391. </ul>
  392.  
  393. [[morphling]]
  394. <ul>
  395. <li>Base movement speed increased from 280 to 285</li>
  396. </ul>
  397.  
  398. [[naga_siren]]
  399. <ul>
  400. <li>Ensnare cast point improved from 0.65 to 0.55</li>
  401. </ul>
  402.  
  403. [[necrolyte]]
  404. <ul>
  405. <li>Sadist mana regeneration increased from 2/4/6/12 to 3/6/9/12</li>
  406. </ul>
  407.  
  408. [[ogre_magi]]
  409. <ul>
  410. <li>Fire Blast cast range increased from 475 to 525</li>
  411. </ul>
  412.  
  413. [[omniknight]]
  414. <ul>
  415. <li><span class="Highlight">Purification can now be cast on Repelled allies</span> <span class="ChangeDetailsPopup">Not on allies affected by Avatar or other forms of Spell Immunity</span></li>
  416. </ul>
  417.  
  418. [[oracle]]
  419. <ul>
  420. <li>Aghanim's Scepter now additionally decreases Purifying Flames mana cost to 50</li>
  421. </ul>
  422.  
  423. [[phoenix]]
  424. <ul>
  425. <li>Sunray health drained per second increased from 6% to 8%</li>
  426. <li>Sunray cooldown increased from 26 to 30</li>
  427. <li>Supernova cooldown increased from 110 to 125</li>
  428. </ul>
  429.  
  430. [[pudge]]
  431. <ul>
  432. <li>Dismember mana cost reduced from 100/130/170 to 100/125/150</li>
  433. </ul>
  434.  
  435. [[pugna]]
  436. <ul>
  437. <li>Base magic resistance increased from 25% to 35%</li>
  438. </ul>
  439.  
  440. [[riki]]
  441. <ul>
  442. <li>Tricks of the Trade mana cost increased from 75 to 75/100/125</li>
  443. </ul>
  444.  
  445. [[sand_king]]
  446. <ul>
  447. <li>Epicenter cooldown reduced from 140/120/100 to 120/110/100</li>
  448. <li>Strength increased from 21 to 22</li>
  449. </ul>
  450.  
  451. [[shadow_demon]]
  452. <ul>
  453. <li>Disruption illusion duration increased from 6/8/10/12 to 8/10/12/14</li>
  454. </ul>
  455.  
  456. [[shadow_shaman]]
  457. <ul>
  458. <li>Base movement speed increased from 285 to 290</li>
  459. <li>Shackles cast range reduced from 400 to 350</li>
  460. </ul>
  461.  
  462. [[skywrath_mage]]
  463. <ul>
  464. <li>Mystic Flare Scepter cooldown decreased from 20/10/5 to 15/5/2</li>
  465. </ul>
  466.  
  467. [[slardar]]
  468. <ul>
  469. <li>Base armor reduced by 1</li>
  470. <li>Slithereen Crush radius reduced from 350 to 325</li>
  471. </ul>
  472.  
  473. [[slark]]
  474. <ul>
  475. <li>Dark Pact total pulses reduced from 10 to 8 <span class="ChangeDetailsPopup">Damage remains the same.</span></li>
  476. <li>Shadow Dance cooldown increased from 60 to 80/70/60</li>
  477. </ul>
  478.  
  479. [[sniper]]
  480. <ul>
  481. <li>Headshot damage rescaled from 15/40/65/90 to 25/45/65/85</li>
  482. <li>Assassinate mana cost reduced from 175/275/375 to 175/250/325</li>
  483. </ul>
  484.  
  485. [[spirit_breaker]]
  486. <ul>
  487. <li>Shift-queuing orders while charging no longer cancels it</li>
  488. <li>Empowering Hast cooldown reduced from 12 to 9</li>
  489. </ul>
  490.  
  491. [[storm_spirit]]
  492. <ul>
  493. <li>Ball Lightning activation mana cost reduced from 30 + 8% to 15 + 8%</li>
  494. <li>Ball Lightning travel mana cost rescaled from 12 + 0.7% to 11 + 0.8%</li>
  495. <li>Ball Lightning damage reduced from 8/12/16 to 5/10/15</li>
  496. </ul>
  497.  
  498. [[terrorblade]]
  499. <ul>
  500. <li>Metamorphisis attack range bonus reduced from 400 to 350</li>
  501. <li>Sunder cast point increased from 0.35 to 0.4</li>
  502. </ul>
  503.  
  504. [[tidehunter]]
  505. <ul>
  506. <li>Anchor Smash duration reduced from 6 to 5</li>
  507. </ul>
  508.  
  509. [[shredder]]
  510. <ul>
  511. <li>Chakram mana cost per second increased from 20/25/30 to 10 + 0.3% of his total mana per second</li>
  512. <li>Whirling Death mana cost increased from 70 to 70/80/90/100</li>
  513. </ul>
  514.  
  515. [[tiny]]
  516. <ul>
  517. <li>Craggy Exterior maximum radius increased from 300 to 420</li>
  518. </ul>
  519.  
  520. [[treant]]
  521. <ul>
  522. <li>Leech Seed pulse interval improved from 0.75 to 0.65</li>
  523. <li>Leech Seed cast range increased from 350 to 350/400/450/500</li>
  524. <li>Leech Seed radius increased from 500 to 600</li>
  525. </ul>
  526.  
  527. [[troll_warlord]]
  528. <ul>
  529. <li>Berserker's Rage now provides 4/8/12/16 damage block during melee form</li>
  530. <li>Melee Whirling Axes no longer interrupts Troll Warlord's channeling spells upon cast</li>
  531. </ul>
  532.  
  533. [[undying]]
  534. <ul>
  535. <li>Intelligence gain increased from 2.8 to 3</li>
  536. <li>Soul Rip cast point improved from 0.45 to 0.3</li>
  537. </ul>
  538.  
  539. [[ursa]]
  540. <ul>
  541. <li>Enrage duration rescaled from 4 to 3.5/4/4.5</li>
  542. </ul>
  543.  
  544. [[visage]]
  545. <ul>
  546. <li>Soul Assumption mana cost reduced from 170/160/150/140 to 130</li>
  547. <li>Soul Assumption can now be disjointed</li>
  548. <li>Soul Assumption cooldown increased from 4 to 5.5/5/4.5/4</li>
  549. <li>Soul Assumption projectile speed increased from 1000 to 1150</li>
  550. </ul>
  551.  
  552. [[warlock]]
  553. <ul>
  554. <li>Chaotic Offering cooldown decreased from 165 to 145/155/165</li>
  555. </ul>
  556.  
  557. [[windrunner]]
  558. <ul>
  559. <li>Windrun cooldown reduced from 15 to 14</li>
  560. </ul>
  561. </div>
  562. </div>
  563.  
  564. <div class="Container" id="Footer">
  565. <div class="Inner">
  566. <div style="text-align:center; padding-top: 15px; font-size: 12px">
  567. Disclaimer: This is just to have a page for my own predictions; I literally copy-pasta'd. pls don't sue me volvo.
  568. </div>
  569. </div>
  570. </div>
  571.  
  572. </body>
  573. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement