Quote Originally Posted by Lix Lorn View Post
Oh... wow, it's a lovely... service?
...
I got nothing.
Welllll, if you use something like Firebug (for Firefox) or use Chrome (with Chrome's developers tools)... you can go to console and do neat things like (on pages that use this service, like that preseason page):

Riot.DDragon.useModel('champion');
(Wait for champions.json to finish loading)

Riot.DDragon.useModel('champion').collect({key:'st ats.l1hp'});

You now have an ordered list of all champions sorted by their 1st level hit points.



Or you can make an htm file on your local computer (and open it in a browser) with:
Code:
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">
	rg_force_manifest = 'http://ddragon.leagueoflegends.com/realms/s3.js';
</script>
</head>
<body style="padding-bottom:100px;">
	<div data-rg-name="champion" data-rg-id="Ahri" data-rg-aux="img=full"></div>
	<div data-rg-name="item" data-rg-id="3057" data-rg-aux="img=sprite size=tiny"></div>
	<script type="text/javascript" src="http://ddragon.leagueoflegends.com/cdn/dragonhead.js"></script>
</body>
</html>
And see some other fancy things.

I turned the LoL gameplay data in to a service, basically.