diff --git a/index.html b/index.html
index aaaa747..5b74fa0 100644
--- a/index.html
+++ b/index.html
@@ -17,6 +17,9 @@
UCP
+
+ Reborn
+
diff --git a/reborn/assassin.html b/reborn/assassin.html
new file mode 100644
index 0000000..af10eaf
--- /dev/null
+++ b/reborn/assassin.html
@@ -0,0 +1,215 @@
+
+
+
+ " + $(this).children("div.description").html().replace("
","").replace("
", " " + p + ":
") + "
";
+ }
+ });
+ $("div.descriptionContainer").html(descriptions);
+ var url = window.location.href.split("#")[0] + "#" + getHash();
+ $("a.permalink").attr("href",url);
+ window.location.replace(url);
+}
+
+function loadHash(hash) {
+ var h = hash.replace("#","");
+ $("div.skill").each(function(index) {
+ $(this).attr("data-points", Math.min(h.charAt(index),parseInt($(this).attr("data-max"))));
+ });
+ updateStats();
+}
+
+function getHash() {
+ var hash = "";
+ $("div.skill").each(function(index) {
+ hash += $(this).attr("data-points");
+ });
+ return hash;
+}
+
+$(document).ready(function () {
+ $('div.skill').mousedown(handleMousedown);
+ $('div.skill').mouseup(handleMouseup);
+ $("div.treewrapper").bind("contextmenu", function() { return false; });
+ if (window.location.hash != "") {
+ loadHash(window.location.hash);
+ }
+
+ $("div.tree").each(function(index) {
+ updateTree($(this));
+ });
+ updateStats();
+});