<<actions "hands" "sternum">>
version.extensions['timedreplaceMacro'] = {major:1, minor:0, revision:0};\n macros['timedreplace'] = {\n handler: function (g, e, f, b) {\n function tagcontents(starttag, endtag, k) {\n var a = b.source.slice(k);\n var l = 0;\n var c = "";\n for(var i = 0; i < a.length; i++) {\n var w = endtag.length;\n if(a.substr(i, w) == endtag) {\n if(l == 0) {\n b.nextMatch = k + i + w;\n return c;\n }\n else {\n l--;\n c += a.charAt(i);\n }\n }\n else {\n if(a.substr(i, starttag.length) == starttag) {\n l++;\n }\n c += a.charAt(i);\n }\n }\n return "";\n }\n var tr="<<timedreplace";\n var rw="<<replacewith>>";\n var k = b.source.indexOf('>>', b.matchStart) + 2;\n var c = tagcontents(tr, rw, k);\n var d = tagcontents((c ? rw : tr), "<<endtimedreplace>>", c ? b.nextMatch : k);\n var h = null;\n if(c) {\n h = insertElement(g, "span", null, "timedreplacement1");\n new Wikifier(h,c);\n }\n if(d) {\n var m = insertElement(g, "span", null, "timedreplacement2", d);\n m.style.display = "none";\n setTimeout(function() {\n if (m) { \n if (h && h.parentNode) h.parentNode.removeChild(h);\n var t = m.firstChild ? m.firstChild.nodeValue : "";\n removeChildren(m);\n new Wikifier(m,t);\n m.style.display = "inline";\n fade(m, { fade: "in" });\n }\n },(parseInt(f[0]) || 0)*500);\n }\n else {\n throwError(g, "can't find matching endtimedreplace");\n return;\n }\n }\n }\n macros['endtimedreplace']={handler: function () {} }\n macros['replacewith']={handler: function () {} }
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<timedreplace 24>>You leave his body seamlessly. Out into the cold, cold air. It's only now that you truly realize something that should've been obvious from the very beginning.\n<<replacewith>>\nYou, the monster, Kurt -- it's all the same thing.\n\n//Made with Twine.\nWords and illustrations: Michal Michalik (http://www.michalmichalik.com)\n\nMusic: KTL 'Eternal Winter'//\n<<endtimedreplace>>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nKurt shrugs. 'As you wish. It's your body.'\n\n<<display "examines">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nKurt picks up the gun and opens the magazine.\n'Don't bother,' you say. 'I fired four shots.'\nKurt clips the magazine. 'Did you hit it with any?' He asks with a smirk.\n'Fuck you.'\nKurt puts the gun in the pocket of his jacket and says: 'It's good that we found the gun 'cause I didn't take mine.'\nTake a look at:\n<<display "examines">>
(function () {\n version.extensions['timedloopMacro'] = {\n major: 1,\n minor: 1,\n revision: 0\n };\n macros['timedloop'] = {\n handler: function (g, e, f, b) {\n function cssTimeUnit(s) {\n if (typeof s == "string") {\n if (s.slice(-2).toLowerCase() == "ms") {\n return Number(s.slice(0, -2)) || 0;\n }\n else if (s.slice(-1).toLowerCase() == "s") {\n return Number(s.slice(0, -1)) * 1000 || 0;\n }\n }\n throwError(g, s + " isn't a CSS time unit");\n return 0;\n }\n\n function tagcontents(starttag, endtag, k) {\n var a = b.source.slice(k);\n var l = 0;\n var c = "";\n for (var i = 0; i < a.length; i++) {\n var w = endtag.length;\n if (a.substr(i, w) == endtag) {\n if (l == 0) {\n b.nextMatch = k + i + w;\n return c;\n }\n else {\n l--;\n c += a.charAt(i);\n }\n }\n else {\n if (a.substr(i, starttag.length) == starttag) {\n l++;\n }\n c += a.charAt(i);\n }\n }\n return "";\n }\n var tl = "<<" + e;\n var etl = "<<end" + e + ">>";\n var k = b.source.indexOf('>>', b.matchStart) + 2;\n var d = tagcontents(tl, etl, k);\n var tm;\n tm = cssTimeUnit(f[0]);\n var h;\n if (d) {\n var m = insertElement(g, "span", null, "timedloop", null);\n new Wikifier(m, d);\n setTimeout(function to() {\n if (m && elexists(m)) {\n var oldm = m;\n oldm.classList.add("replacement-out");\n setTimeout(function () {\n if (oldm) oldm.parentNode.removeChild(oldm);\n }, Math.min(tm, 1000));\n m = insertElement(null, "span", null, "timedloop replacement-in", null);\n new Wikifier(m, d);\n setTimeout(function () {\n if (m) m.classList.remove("replacement-in");\n }, 1);\n oldm.parentNode.insertBefore(m, oldm.nextSibling);\n scrollWindowTo(m);\n setTimeout(to, tm);\n }\n }, tm);\n }\n else {\n throwError(g, "can't find matching end" + e);\n return;\n }\n }\n }\n elexists = function (e) {\n while (e = e.parentNode) {\n if (e === document) return true;\n }\n }\n macros['endtimedloop'] = {\n handler: function () {}\n }\n scrollWindowTo = function (E) {\n var D = window.scrollY;\n var G = J(E);\n if (!G) return;\n var C = Math.abs(D - G);\n var B = 0;\n var I = (D > G) ? -1 : 1;\n var F = window.setInterval(H, 25);\n\n function H() {\n B += 0.1;\n window.scrollTo(0, D + I * (C * Math.easeInOut(B)));\n if (B >= 1) {\n window.clearInterval(F)\n }\n }\n\n function J(N) {\n var O = A(N);\n var P = O + N.offsetHeight;\n var L = window.innerHeight;\n var M = D + L;\n if (O >= D && P > M) {\n return ((N.offsetHeight < L) ? O - (L - N.offsetHeight) + 20 : O)\n }\n }\n\n function A(K) {\n var L = 0;\n while (K.offsetParent) {\n L += K.offsetTop;\n K = K.offsetParent;\n }\n return L\n }\n }\n}());
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou focus on the hand and suddenly it jerks a little. At the same time you start to feel it from the inside. Muscles warm up, the nerves resume transmitting a faint sensation of cold.\n\nYou see the hand from where you stand and feel it from the inside. \n\nYou raise a finger and point to Kurt.\n\n'There you go!' Says the detective.\n\n<<display "Body actions">>
@import url(http://fonts.googleapis.com/css?family=Junge);\nbody {\nfont-size: 1em;\ncolor: #333333;\nfont-family: Junge;\nbackground-image: url(http://24.media.tumblr.com/a22af6843ecb8d92c619abb8632d8963/tumblr_mj98kbTd0E1qlq2rwo1_100.png);}\n#sidebar { display: none; }\n.passage { width: 800px !important }\n#passages {width:800px;margin-left:auto; margin-right:auto;margin-top: 5em;border-left:none;!important}\na.internalLink, a.externalLink, a.back ,a.internalLink:hover, a.externalLink:hover, a.back:hover {\n font-size: 1em;\n font-style: italic;\n font-weight: normal;\n}\n[data-tags~=fb] {\n color: white;\n text-shadow: aqua 0 0 3px;\n font-size: 1.2em;\n}\n\n.transition-in {\n opacity:0;\n position:absolute;\n}\n.passage:not(.transition-out) {\n transition: 1s;\n -webkit-transition: 1s;\n}\n.transition-out {\n opacity:0;\n position:absolute;\n}\n\nbody[data-tags~=fb] .transition-in {\n color:transparent;\n text-shadow: #fff -4em 0 1em, #fff 4em 0 1em;\n position:absolute;\n}\nbody[data-tags~=fb] .passage:not(.transition-out) {\n transition: 0.5s;\n -webkit-transition: 1s;\n}\nbody[data-tags~=fb] .transition-out {\n opacity:0;\n position:absolute;\n}
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThe longer you remain inside the demon's head, the more his psyche draws you in. You start to see the world from his angle and it makes perfect sense. The universe is sick. Life is the disease disturbing the timeless balance. There's no other way, but to cleanse the universe and open the way for the //gnaiih//.\n\nCan anything be more obvious?\n\n[[Stop.|stop]]
(function(){ var render2 = Passage.prototype.render; Passage.prototype.render = function () { var b = render2.call(this); var t = this.tags.join(" "); document.body.setAttribute("data-tags", t); b.setAttribute("data-tags",t); return b; }; if(state) { var tgs = state.history[0].passage.tags.join(" "); var fc = $('passages').firstChild; fc.setAttribute("data-tags",tgs); }}());\n\nif(state) (function(){ var it = setInterval(function(){ var fd = $('passages').firstChild; if (fd!=fc) { clearInterval(it); fd.setAttribute("data-tags",tgs); } },0); }());
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n'Get up you fat fuck!' is what comes out of his mouth when you enter Kurt. These are your words.\n\nYou open his eyes at the last moment to dodge the drowner. He passes right through and tries to turn around while sliding in the opposite direction.\n\nYou sjump ahead towards the gun. You glide on your stomach and then you [[catch it|gun]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nAfter a while, Kurt breaks the silence: 'Come on, don't pity yourself. We still have to work the case. You want to try to enter the body? You know it might bring back the memories.'\n\n[[Enter the body]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n'Ok.' Says Kurt as he grabs the pistol and releases the magazine.\n\n'There are three bullets left.' He pulls the slide back. 'And one in the chamber. So you must've fired four shots.'\n\n<<display "examines">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nHe's mind is almost impenetrable. Dark, twisted and complicated. It shuts you off aggressively and with a disgust.\n\nOnce you enter, you might remain forever trapped in it.\n\n[[Enter anyway.|enter]]
<<timedreplace 3>>[img[http://25.media.tumblr.com/1d7580c985d0dbc20b52b4281c73acbe/tumblr_mnlzexCbOB1qlq2rwo1_1280.gif]]<<replacewith>>[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nIt's a drowner. \nBarely resembling a human being with its large head, long arms and sharp claws. \n\nYou unholster the gun. In a blink of an eye the creature is next to you.\n\nYou [[fire|shot1]].\n<<endtimedreplace>>\n\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThe ice around you cracks. The water bulges up and with a screech the drowner shoots into the air. \n\nSomewhere behind you Kurt [[fires]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<playsound "gunshot1.wav">> \nAnd you see the drowner's head exploding like a smashed watermelon. His legs stumble and the whole deadly machinery [[falls on the ground|breath]] like some elaborate, deadly origami.\n
''THE END.''\n\n\n\n\n\n//Made with Twine.\nWords and illustrations: Michal Michalik (http://www.michalmichalik.com)\n\nMusic: KTL 'Eternal Winter'//
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<timedreplace 7 >>\nSilence.\n\nSteaming breath.\n\nCold fingers.\n\nHeart beating.\n<<replacewith>>\n'What happened?' Asks Kurt as he regains consciousness.\n\n[['It's alright, Kurt. Time for me to go.'|time]]\n<<endtimedreplace>>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nWas it really three shots? Are you sure?\n\n[[Ask Kurt to release the magazine]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nA fallen tree with its roots up in the air like a frosted explosion.\n\nThere's something beneath it.\n\nIt howls to you.\n\nUnintentionally, you [[taste|howl]] it's nature.
<<timedreplace 9 >>[img[http://24.media.tumblr.com/b8ec3f05b6e03f64f07c91ea157e26ce/tumblr_mnlxqujjM71qlq2rwo1_1280.gif]]<<replacewith>> [img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\n\nAnd you say: [['Not really Kurt. I feel kind of strange this morning.'|sayno]]\n<<endtimedreplace>>\n\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou step on the ice and approach the hole. In the corner of the eye you notice a figure running out of the woods, then jumping on the ice and slipping. Your fur ruffles, but the other part knows it's Kurt so you [[calm down|edge]].\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nIt could have been five. But are you sure?\n\n[[Ask Kurt to release the magazine]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<playsound "gunshot.wav">> \nAnd [[shoot again|shot6]].\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\n\n<<playsound "gunshot3.wav">> \n\n<<timedreplace 6 >>And then it's over.\n\nYou're dead. <<replacewith>>\n[['Kurt, I just remembered something.'|tellkurt]]\n<<endtimedreplace>>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nA piece of your skin on the ground. As you come nearer the [[memories]] become brighter. \n\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<playsound "gunshot.wav">> \n\n\n \n\n\n\n@@text-shadow: 0.1em 0.1em #333;font-size:1.875em;You [[fire|shot2]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<playsound "gunshot2.wav">> \n\n \n\n\n\n\n\n\n\n\n\n\n You [[fire|shot4]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<playsound "gunshot1.wav">> \n\n\n\n\n\n\n\n\n\n@@text-shadow: 0.1em 0.1em #333;font-size:1.875em;You [[fire|shot3]].
A Cold Grave\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThe drowner jumps back out of the water and you sense his dark, twisted mind as something entirely foreign. You catch a glimpse of one useful fact though - he's badly wounded.\n\n[[Follow]] the demon.\n
String.prototype.unDash = function()\n{\n var s = this.split("-");\n if(s.length > 1)\n for(var t=1; t < s.length; t++)\n s[t] = s[t].substr(0,1).toUpperCase() + s[t].substr(1);\n return s.join("");\n};
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThe wolf moves forward with ruthless determination and in the quest for vengeance you are congruent.\n\nYou follow the trail silently out of the forest to a shore of a frozen [[lake]]. There's a hole in the ice and that's where the trail ends.
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\n//Then you slip and for a second you are suspended in midair. \n\nThe skin remembers the whole thing - the hurt of the fall and the scan and then the scar that you almost completely forgot.//\n\nSo yes, //he// was here.\n\n<<display "forest actions">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\n//The steam rising from the warm street and the wet t-shirt sticking to your back. The sound of [[flip flops]] flapping against your heels as you chase the straw until it disappears into the gutter.// \n
(function () {\n version.extensions['replaceMacro'] = {\n major: 1,\n minor: 3,\n revision: 0\n };\n macros['continue'] = macros['insert'] = macros['replace'] = {\n handler: function (g, e, f, b) {\n var h = insertElement(null, "span", null, "replacement");\n var k = b.source.indexOf('>>', b.matchStart) + 2;\n var a = b.source.slice(k);\n var d = -1;\n var c = '';\n var l = 0;\n var el = e.length\n if (e=="continue") {\n d=k+a.length;\n c=a;\n } else for(var i = 0; i < a.length; i++) {\n if(a.substr(i, 7 + el) == '<<end' + e + '>>') {\n if(l == 0) {\n d = k + i + 7 + el;\n break;\n }\n else {\n l--;\n c += a.charAt(i);\n }\n }\n else {\n if(a.substr(i, 2 + el) == '<<' + e) {\n l++;\n }\n c += a.charAt(i);\n }\n }\n if(d != -1) {\n var m = Wikifier.createInternalLink(g, null);\n m.className = "internalLink replaceLink";\n insertText(m, f[0]);\n insertText(h, c);\n g.appendChild(h);\n h.style.display = "none";\n m.onclick = function () {\n var n = this.nextSibling;\n if(n) {\n var t = n.firstChild ? n.firstChild.nodeValue : "";\n removeChildren(n);\n new Wikifier(n, t);\n n.style.display = "inline";\n n.classList.add("replacement-in");\n setTimeout(function () {\n n.classList.remove("replacement-in");\n }, 1);\n scrollWindowTo(n);\n }\n if(e == "insert") {\n var p = document.createElement("span");\n p.innerHTML = this.innerHTML;\n p.className = this.className + " disabled";\n this.parentNode.insertBefore(p, this.nextSibling);\n }\n this.parentNode.removeChild(this);\n }\n b.nextMatch = d;\n }\n else {\n throwError(g, "can't find matching end" + e);\n return;\n }\n }\n }\n macros['endinsert'] = macros['endreplace'] = {\n handler: function () {}\n }\n scrollWindowTo=function(E){var D=window.scrollY?window.scrollY:document.body.scrollTop;\n var G=J(E);if(!G){return;}var C=Math.abs(D-G);var B=0;var I=(D>G)?-1:1;var F=window.setInterval(H,25);\n function H(){B+=0.1;window.scrollTo(0,D+I*(C*Math.easeInOut(B)));if(B>=1){window.clearInterval(F);\n }}function J(N){var O=A(N);var P=O+N.offsetHeight;var K=window.scrollY?window.scrollY:document.body.scrollTop;\n var L=window.innerHeight?window.innerHeight:document.body.clientHeight;var M=K+L;\n if(O>=K){if(P>M){if(N.offsetHeight<L){return(O-(L-N.offsetHeight)+20);}else{return O;\n }}}}function A(K){var L=0;while(K.offsetParent){L+=K.offsetTop;K=K.offsetParent;}return L;\n }};\n}());
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nYou <<cyclinglink "go deeper into the woods." "go down into the hole." "let the river carry you.">> It seems to go on and on and with each step <<cyclinglink "everything feels so much clearer and simpler." "the sun shines through the branches more brightly." "it's harder to tell if you're really moving through it or becoming it.">> \n\nYou forget all the pain and drama. It would be so easy to just let go, but then you think of Kurt and you turn back.\n\n<<display "forest actions">>
History.prototype.display=function(d,b,a){var c=tale.get(d);this.history.unshift({passage:c,variables:clone(this.history[0].variables)});\nthis.history[0].hash=this.save();var e=c.render();e.style.visibility="visible";if(a!="offscreen"){var p=document.getElementById("passages");\nfor(var i=0;i<p.childNodes.length;i+=1){var q=p.childNodes[ i ];q.classList.add("transition-out");\nsetTimeout(function(){if (q.parentNode) q.parentNode.removeChild(q);},1000);}e.classList.add("transition-in");\nsetTimeout(function(){e.classList.remove("transition-in");},1);p.appendChild(e);}if((a=="quietly")||(a=="offscreen")){e.style.visibility="visible";\n}if(a!="offscreen"){document.title=tale.title;this.hash=this.save();document.title+=": "+c.title;\nwindow.location.hash=this.hash;window.scroll(0,0);}return e;};
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n'Hey.' Kurt stops you.\n\n'Just remember that you can only retain your identity close to the body. Go too far away and you start to dissolve. When you'll start to feel it, let me know, ok?'\n\n[[Ok, let's go.|trail3]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou cross the plain hovering over Kurt. Sometimes you go higher leaving Kurt brooding in snow down below you. You notice something that Kurt just walks by.\n\nThere. Another footprint. It's huge. The snow around it is slashed with claws.\n\n[[Here's another one. We're on track.|trail4]]\n\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n'Ok, be careful now. Can you see the trail anywhere? I can't find it.'\n\n<<display "forest actions">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] <<cyclinglink "ftaghu" "skin">> <<cyclinglink "gnaiih" father>> <<cyclinglink "syha'h" "eternity">> <<cyclinglink "orr'e" "soul">> <<cyclinglink "hupadgh" "born of">> <<cyclinglink "hafh'drn" "summoner">> <<cyclinglink "'bthnk" "body">> <<cyclinglink "vulgtm" "prayer">> <<cyclinglink "'bthnk" "body">> <<cyclinglink "'fhalma" "mother">> <<cyclinglink "lw'nafh" "dream">> <<cyclinglink "k'yarnak" "share">> <<cyclinglink "grah'n" "larva">> <<cyclinglink "n'gha" "death">> <<cyclinglink "hlirgh" "heretic">> <<cyclinglink "grah'n" "larva">> <<cyclinglink "goka" "grant">> <<cyclinglink "orr'e" "soul">> <<cyclinglink "ftaghu" "skin">> <<cyclinglink "hupadgh" "born of">> <<cyclinglink "geb" "here">> <<cyclinglink "mnahn'" "worthless">> <<replace "wgah'n">> [[RESIDE IN]] <<endreplace>> <<cyclinglink "hafh'drn" "priest">> <<cyclinglink "nw" "head">> <<cyclinglink "hrii" "followers">> <<cyclinglink "'bthnk" "body">> <<cyclinglink "n'gha" "death">> <<cyclinglink "lw'nafh" "dream">> <<cyclinglink "goka" "grant">> <<cyclinglink "li'hee" "on pain of">> <<cyclinglink "k'yarnak" "share">> <<cyclinglink "lloig" "mind">> <<cyclinglink "nglui" "threshold">> <<cyclinglink "gnaiih" "father">> <<cyclinglink "fhtagn" "wait">> <<cyclinglink "ee" "answers">> <<cyclinglink "chtenff" "brotherhood">> <<cyclinglink "athg" "sign">> <<cyclinglink "hai" "now">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou raise the demon's claw right up to his throat. His mind desperately throws visions and arguments at you. It is so tempting to pause and consider them, but you resist.\n\nWith a single slash you chop the [[head off]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nThe detective looks surprised. He smiles doubtfully.\n'Are you serious?' He asks and then laughs loud and hard. \nHe wheezes and coughs and his whole body shakes like a giant jelly.\n'You really haven't noticed?'\n\n[['Notice what?']] you ask.\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou go down the plain and into a <<timedreplace 8>>forest<<replacewith>>chirping<<endtimedreplace>>. It's here that <<timedreplace 10>>things<<replacewith>>sun<<endtimedreplace>> start to get weird. \n\nThoughts get <<cyclinglink "distracted" "recycled" "reenacted">>. It's harder to <<timedreplace 16>>remember <<replacewith>> flee<<endtimedreplace>> who <<cyclinglink "you" "brothers" "deerpeople">> are. ''What'' you are. But the question seems meaningless. You ''are'', what else is there? The branches of the trees and the birds with the ruffled feathers and the cold ground - you are all that. You always were. What else would you...\n\n'''Hey!''' Kurt shouts. 'You're slipping away! Come on, I need you here.'\n\n[['Ugh, sorry.'|for1]]\n
var b=document.getElementsByTagName("body")[0];var s=document.createElement("script");s.type="text/javascript";var loadfunc=function(){var e=document.getElementsByTagName("body")[0];var t=document.createElement("div");t.id="ytapiplayer";e.appendChild(t);var n={allowScriptAccess:"always",wmode:"transparent",modestbranding:"1",version:"3",loop:"1"};var r={id:"myytplayer",loop:"1"};swfobject.embedSWF("http://www.youtube.com/apiplayer?enablejsapi=1&playerapiid=ytplayer","ytapiplayer","1","1","8",null,{loop:"1"},n,r)};s.onreadystatechange=loadfunc;s.onload=loadfunc;s.src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject_src.js";b.appendChild(s);var jQUIcss=document.createElement("link");jQUIcss.setAttribute("rel","stylesheet")\njQUIcss.setAttribute("type","text/css")\njQUIcss.setAttribute("href","http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css");b.appendChild(jQUIcss);var jQL=document.createElement("script");jQL.src="http://code.jquery.com/jquery-1.8.3.js";jQL.type="text/javascript";var jloadfunc=function(){jQuery.noConflict();var e=document.getElementsByTagName("body")[0];var jQUIL=document.createElement("script");jQUIL.src="http://code.jquery.com/ui/1.9.2/jquery-ui.js";jQUIL.type="text/javascript";juiloadfunc=function(){var slidercontainer=jQuery('<li id="slidecontainer"></li>');var imager=jQuery('<img src="http://static.ak.crunchyroll.com/i/boxee_app/video_volume_icon.png" />');var slider=jQuery('<div id="slider"></div>');slidercontainer.append(slider);slidercontainer.append(imager);slidercontainer.insertAfter(jQuery('#share'));slider.width('60px');slider.css('float','right');slider.css('margin-top','3px');slider.css('margin-left','5px');imager.height('20px');imager.css('float','right');imager.css('opacity','0.6');imager.css('filter','alpha(opacity=60);');slider.css('background-image','none');slider.css('background-color','#666');slider.slider({range:"min",value:100,min:0,max:100,slide:function(event,ui){window.setvolume(ui.value);}});slider.find('div').css('background-image','none');slider.find('div').css('background-color','#999');slider.find('a').css('background-image','none');slider.find('a').css('background-color','#CCC');slidercontainer.css('height','1px');}\njQUIL.onreadystatechange=juiloadfunc;jQUIL.onload=juiloadfunc;e.appendChild(jQUIL);}\njQL.onreadystatechange=jloadfunc;jQL.onload=jloadfunc;b.appendChild(jQL);window.updateHTML=function(e,t){document.getElementById(e).innerHTML=t};window.setytplayerState=function(e){window.updateHTML("playerstate",e)};window.onYouTubePlayerReady=function(){window.ytplayer=document.getElementById("myytplayer");window.ytplayer.addEventListener("onStateChange","onytplayerStateChange");window.ytplayer.addEventListener("onStateChange","onytplayerStateChange");window.ytplayer.addEventListener("onError","onPlayerError")};window.onytplayerStateChange=function(e){window.setytplayerState(e)};window.onPlayerError=function(e){alert("An error occured: "+e)};window.loadNewVideo=function(e,t){if(window.ytplayer){window.ytplayer.setLoop(true);window.ytplayer.loadVideoById(e,parseInt(t))}play()};window.play=function(){if(window.ytplayer){window.ytplayer.playVideo()}};window.setvolume=function(v){if(window.ytplayer){window.ytplayer.setVolume(v)}};window.stop=function(){if(window.ytplayer){window.ytplayer.stopVideo()}};macros["playbgm"]={handler:function(e,t,n,r){window.LOOP=1;window.loadNewVideo(n[0],n[1])}}\nmacros["stopbgm"]={handler:function(e,t,n,r){window.stop()}}\nmacros["singlebgm"]={handler:function(e,t,n,r){window.LOOP=0;window.loadNewVideo(n[0],n[1])}}\nwindow.onytplayerStateChange=function(newState){if(newState==0){if(window.LOOP==1){window.ytplayer.playVideo();}}};
<<playbgm zHNUZRrvTHg>>\n[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n\nThe plain is wide and covered with snow. It's a cold place. Everything feels desaturated, washed out and ghostly. Three crows fly from a crooked utility pole and sit on the remnants of a wooden fence. \n\nIn the distance, a man broods in the snow and the crows watch his efforts indifferently. As he approaches the fence, he rests a while and then kneels down checking something on the ground. \n\nYou feel strangely drawn to this place.\n\n[[Come closer]]\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n'You think?' Asks Kurt and lights another cigarette. 'You shouldn't be so hard on yourself.'\n\n'Oh, that's funny!' You say wondering if the irony still works in your state. Then you add: 'I found a footprint. Next to my right hand.'\n\nKurt leans over the body, puffing a cloud of smoke.\n'Motherfucker.' He smiles and pulls the gun out of the coat. 'Well, let's go after him.'\n\n[['Yeah, let's do this.'|trail2]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nThe body is ripped open as if it burst out from the inside. Ribs point towards the sky embracing the red cacophony of what used to be somebody's internal organs.\n\nThe detective raises his head, tilts it, then turns it to the side. You can see his profile. He's old, worn out and tired. \n\n'You're here.' Says the man in a husky voice. 'Want to take a look?' He asks pointing the body.\nFor a second you aren't sure whether he's speaking to you. \n\nBut then a [[wave of memories]] floods in.\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nIt's a sorry sight. Your chest wide open, intestines hanging from frost covered ribs. In the splatters of blood around the body, you notice a footprint.\n\n[['I'll be damned'|trail]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou turn around just as the frustrated drowner sinks its claws into the ice and gets ready to jump.\n\nYou [[shoot|shot5]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThere's a Walther PP lying next to your hand. You try to remember how many shots you fired last night.\n\n[[Three?|3s]]\n[[Four?|4s]]\n[[Five?|5s]]\n\n\n
<<actions "Move your hand" "Try to speak" "Open your eyes">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThere's a small bush here. It informs you. It tells its own version of the events witnessed. Inarticulate, but clear. //He// was walking by. \n\nSome of the branches are broken. There's [[something|branches]] behind them.\n
[img[text|http://25.media.tumblr.com/76aed83aebb20fa1f4f563e53d129698/tumblr_ml6uxp13PN1qlq2rwo1_1280.jpg][The plain]]\n
version.extensions["cyclinglinkMacro"]={major:3,minor:2,revision:0};macros.cyclinglink={handler:function(a,b,c){var rl="cyclingLink";\nfunction toggleText(w){w.classList.toggle(rl+"Enabled");w.classList.toggle(rl+"Disabled");\nw.style.display=((w.style.display=="none")?"inline":"none");}switch(c[c.length-1]){case"end":var end=true;\nc.pop();break;case"out":var out=true;c.pop();break;}var v="";if(c.length&&c[0][0]=="$"){v=c[0].slice(1);\nc.shift();}var h=state.history[0].variables;if(out&&h[v]===""){return;}var l=Wikifier.createInternalLink(a,null);\nl.className="internalLink cyclingLink";l.setAttribute("data-cycle",0);for(var i=0;\ni<c.length;i++){var on=(i==Math.max(c.indexOf(h[v]),0));var d=insertElement(null,"span",null,"cyclingLink"+((on)?"En":"Dis")+"abled");\nif(on){h[v]=c[ i ];l.setAttribute("data-cycle",i);}else{d.style.display="none";}insertText(d,c[ i ]);\nif(on&&end&&i==c.length-1){l.parentNode.replaceChild(d,l);}else{l.appendChild(d);\n}}l.onclick=function(){var t=this.childNodes;var u=this.getAttribute("data-cycle")-0;\nvar m=t.length;toggleText(t[u]);u=(u+1);if(!(out&&u==m)){u%=m;if(v){h[v]=c[u];}}else{h[v]="";\n}if((end||out)&&u==m-(end?1:0)){if(end){var n=this.removeChild(t[u]);n.className=rl+"End";\nn.style.display="inline";this.parentNode.replaceChild(n,this);}else{this.parentNode.removeChild(this);\nreturn;}return;}toggleText(t[u]);this.setAttribute("data-cycle",u);};}};
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThe drowner follows you and cuts the wolf in half. He rips its body to pieces until there's nothing left.\n\nExcept [[you]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nYou're looking at your own face.\nEyes wide open. Mouth suspended in a silent scream. Body mutilated. \n\nYou. \n\nThe shell that served you for so many years with quiet obedience, now lays on the ground in an impressionist splatter of red. \n\n[[Weird feeling.|weird]]\n\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nThe man bursts out laughing again. \n\n'I can't believe it! A psychic detective, with... what? Ten years on the job? And you fell for it?'\nAnother flush of memories and you start to realize what he means.\n'Come, take a look.' He says kneeling over the body again.\n\n[[Take a look]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n//A glimpse of you as a boy. Chasing straws in the rainwater on a street of some exotic city. But why the memory? Why now?//\n\n[[Oh.|piece]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nAs you come closer, you realize that the man kneels over a body.\nHe has a pen in his hand, and with it he unwraps the dead man's coat.\nYou catch a glimpse of flesh.\nSomewhere, a church bell rings and the crows take flight.\n\n[[Come even closer]]\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\n'Ok, just relax and focus on the body.' Then he smiles. 'Remember how you always told them it wouldn't hurt? Well, now you can find out if it's true.'\n\n<<display "Body actions">>\n\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYour jaw moves up and down, but you can't do much more without the lungs or vocal cords.\n\n<<display "Body actions">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\n\n<<timedreplace 4>>BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT BRIGHT LIGHT\n<<replacewith>>Bright light.\nYour eyeballs are frozen so all you can see is a white, painful blur.\n\nWas it night when you died? Suddenly a [[flashback]] unlocks the memories.\n<<endtimedreplace>>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n'Yeah, maybe we should.' Says Kurt. \n\n[['Let's check the body first.'|clues]]\n
(function(){var r="";var s=Wikifier.formatters;for(var j=0;j<s.length;j++){if(s[j].name=="image"){r=s[j].lookahead;\nbreak;}}var div=$("storeArea").firstChild.nextSibling;while(div){if(r){k(new RegExp(r,"mg"),4);\n}var b=String.fromCharCode(92);var u=b+"s*['"+'"]?([^"'+"']+(jpe?g|a?png|gif|bmp))['"+'"]?'+b+"s*";\nk(new RegExp("url"+b+"("+u+b+")","mig"),1);k(new RegExp("src"+b+"s*="+u,"mig"),1);\ndiv=div.nextSibling;}function k(c,e){do{d=c.exec(div.innerHTML);if(d){var i=new Image();\ni.src=d[e];}}while(d);}}());
<<actions "Go east" "Go west">>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nThe smell becomes stronger. You stand on the edge of the ice and look down into the dark water. \n\nYou howl. \n\nIt's a long, painful howl. \n\nKurt runs towards you shouting something you don't understand. And then everything [[happens]] at once.
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<cyclinglink "The legs feel weak, but you force them to move" "The whole body slowly responds to your call" "On shaky legs you rise from beneath the tree." end>> \n\nThe wolf's head hangs down helplessly. You can twist it only to a certain degree, to see where you're going.\n \nBut seeing isn't necessary, when the [[smell]] is so overwhelming.
<<playsound "gunshot3.wav">>\n[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou see drops of water all around the creature as it flies through the air and then drops on you in a blink of an eye. \n\nMuscle memory wants you to jump, but the body isn't fast enough. You fall into the [[water]].
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \n<<timedreplace 24>> \nYou leave Kurt's body seamlessly. Out into the cold, cold air. It's only now that you truly realize something that should've been obvious from the very beginning. \n<<replacewith>>\nYou, the monster, Kurt -- it's all the same thing.\n\n//Made with Twine.\nWords and illustrations: Michal Michalik (http://www.michalmichalik.com)\n\nMusic: KTL 'Eternal Winter'//\n \n<<endtimedreplace>>
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nHe breaks through the ice directly below Kurt. The man is launched high into the air and then falls down with a dull thump. The gun whirls like a hockey puck and ice falls everywhere around.\n\nThere aren't many options left.\n\n[[Enter Kurt.|enter kurt]]\n\n[[Enter the drowner.|entdrowner]]
(function () {\n version.extensions['soundMacros'] = {\n major: 1,\n minor: 1,\n revision: 1\n };\n var p = macros['playsound'] = {\n soundtracks: {},\n handler: function (a, b, c, d) {\n var loop = function (m) {\n if (m.loop == undefined) {\n m.loopfn = function () {\n this.play();\n };\n m.addEventListener('ended', m.loopfn, 0);\n } else m.loop = true;\n m.play();\n };\n var s = eval(d.fullArgs());\n if (s) {\n s = s.toString();\n var m = this.soundtracks[s.slice(0, s.lastIndexOf("."))];\n if (m) {\n if (b == "playsound") {\n m.play();\n } else if (b == "loopsound") {\n loop(m);\n } else if (b == "pausesound") {\n m.pause();\n } else if (b == "unloopsound") {\n if (m.loop != undefined) {\n m.loop = false;\n } else if (m.loopfn) {\n m.removeEventListener('ended', m.loopfn);\n delete m.loopfn;\n }\n } else if (b == "stopsound") {\n m.pause();\n m.currentTime = 0;\n } else if (b == "fadeoutsound" || b == "fadeinsound") {\n if (m.interval) clearInterval(m.interval);\n if (b == "fadeinsound") {\n if (m.currentTime>0) return;\n m.volume = 0;\n loop(m);\n } else {\n if (!m.currentTime) return;\n m.play();\n }\n var v = m.volume;\n m.interval = setInterval(function () {\n v = Math.min(1, Math.max(0, v + 0.005 * (b == "fadeinsound" ? 1 : -1)));\n m.volume = Math.easeInOut(v);\n if (v == 0 || v == 1) clearInterval(m.interval);\n if (v == 0) {\n m.pause();\n m.currentTime = 0;\n m.volume = 1;\n }\n }, 10);\n }\n }\n }\n }\n }\n macros['fadeinsound'] = p;\n macros['fadeoutsound'] = p;\n macros['unloopsound'] = p;\n macros['loopsound'] = p;\n macros['pausesound'] = p;\n macros['stopsound'] = p;\n macros['stopallsound'] = {\n handler: function () {\n var s = macros.playsound.soundtracks;\n for (var j in s) {\n var i = s[j];\n i.pause();\n i.currentTime = 0;\n }\n }\n }\n var div = $("storeArea").firstChild;\n var fe = ["ogg", "mp3", "wav", "webm"];\n while (div) {\n var b = String.fromCharCode(92);\n var q = '"';\n var re = "['" + q + "]([^" + q + "']*?)" + b + ".(ogg|mp3|wav|webm)['" + q + "]";\n k(new RegExp(re, "gi"));\n div = div.nextSibling;\n }\n\n function k(c, e) {\n do {\n d = c.exec(div.innerHTML);\n if (d) {\n var a = new Audio();\n if (a.canPlayType) {\n for (var i = -1; i < fe.length; i += 1) {\n if (i >= 0) d[2] = fe[i];\n if (a.canPlayType("audio/" + d[2])) break;\n }\n if (i < fe.length) {\n a.setAttribute("src", d[1] + "." + d[2]);\n a.interval = null;\n macros.playsound.soundtracks[d[1]] = a;\n } else console.log("Browser can't play '" + d[1] + "'");\n }\n }\n } while (d);\n }\n}());
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\n\n'A drowner, huh?' Says Kurt and you notice that he nervously scans the hills around.\n\n'Well then, he must be somewhere around. Do you remember where he went?'\n\n[['Not really. Maybe we should look for the clues?'|examine]]\n
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou've found a way to control the demon. His mind slowly opens and you can give it orders. But its dark thought constructs entangle you in their impossible logic. \n\nMaybe you're controlling him, but he's indoctrinating you at the same time.\n\n[[Kill the drowner|kill]]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]]\nThe man sighs and stands up. He turns toward you, but his eyes look far into the distance.\n\n'Look, you have to speak louder.' He puts a cigarette in his mouth and fishes in a pocket for a lighter. 'I can't sense as clearly as I used to...' He adds lighting the cigarette.\n\n[['W-what?']]
[img[http://24.media.tumblr.com/31e2e29e03c33e45a3f2a8a1533c38b8/tumblr_ml6vj5g97a1qlq2rwo1_1280.png]] \nYou approach the tree and in the burrow beneath it, you see a wolf carcass. Its head twisted in a terminal turn. \n\nYou borrow its memories and now you understand the wrath and the astonishment.\n\nYou share these feelings, so you [[enter|wolf]] the wolf's body.