<<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
<<set $firstplay == $firstplay>>\
<center><h1>【 Werewolf. 】</h1>
A card-based strategy game
Content Warning: ''Werewolves''
NSFW
Developed by [[Zen~|https://www.furaffinity.net/user/zen~/]] : v1.5
<h3>≋ [[𝗣𝗟𝗔𝗬|set_up]] ≋</h3>
[[ᴛʀᴏᴘʜɪᴇꜱ|statistics]]
[[ʀᴇꜱᴇᴛ ɢᴀᴍᴇ|reset]]
</center>
<!-- set trophies -->\
<<if $firstplay == 1>>
<<set $playthroughs +=1>>\
<!-- keep trophies-->\
<<else>>
<<set $playthroughs = 1>>\
<<set $firstplay = 1>>
<!-- set trophies to empty-->\
<<set $trophy = {
too_much_heat: 0,
too_much_rage: 0,
too_much_exposure: 0,
events_transpire: 0,
a_real_wolf: 0,
a_real_ranger: 0,
moon1: 0,
moon2: 0,
moon3: 0,
}>>
<</if>>
<!-- set traits -->\
<<set $trait = {
name: "Dave",
position: "Works in IT",
alignment: "Neutral",
}>>
<!-- set values -->\
<<set $value = {
rage: 10,
heat: 10,
intelligence: 20,
exposure: 0,
}>>
<!-- set branches -->\
<<set $branchA = 0>>
<<set $branchB = 0>>
<<set $branchC = 0>>
<!-- begin! -->\
<<goto [[_initialise_deck]]>> <!-- set max/min values -->\
\
<<if $value.rage > 99>><<set $value.rage = 100>><</if>>\
<<if $value.rage < 0>><<set $value.rage = 0>><</if>>\
<<if $value.heat > 99>><<set $value.heat = 100>><</if>>\
<<if $value.heat < 0>><<set $value.heat = 0>><</if>>\
<<if $value.intelligence > 99>><<set $value.intelligence = 100>><</if>>\
<<if $value.intelligence < 0>><<set $value.intelligence = 0>><</if>>\
<<if $value.exposure > 99>><<set $value.exposure = 100>><</if>>\
<<if $value.exposure < 0>><<set $value.exposure = 0>><</if>>\
\
<!-- header details -->\
\
<div style="text-align: center;">\
<span class = "bigfont"><b>WEREWOLF</b></span>
----
<table style="width:100%">
<tr>
<th>【Rage】</th>
<th>【Heat】</th>
<th>【Intelligence】</th>
<th>【Exposure】</th>
</tr>
<tr>
<td>$value.rage</td>
<td>$value.heat</td>
<td>$value.intelligence</td>
<td>$value.exposure</td>
</tr>\
</table>\
----
</div>\
𝙽𝚊𝚖𝚎: $trait.name
𝙿𝚘𝚜𝚒𝚝𝚒𝚘𝚗: $trait.position
𝙰𝚕𝚒𝚐𝚗𝚖𝚎𝚗𝚝: $trait.alignment<<set $cards = [0,1,2,3,4,5,6]>>\
<<set $turn = 1>>\
\
<<set $deck_alpha = ["d_alpha_1", "d_alpha_2", "d_alpha_3", "d_alpha_4", "d_alpha_5", "d_alpha_6","d_alpha_7",]>>\
\
<<set $deck = $deck_alpha>>\
<<set $moon = "_moon_alpha">>\
\
This story starts with one simple fact:
<center>You're a ''<span class="glitch" data-text="werewolf">werewolf</span>''.</center>
Each full moon you transform, growing into a huge furry beast! Sharp fangs, burning red eyes, and grey shaggy fur. You stalk the night, howling in rage at the curse you've acquired. Oh! And you can't forget the dick too. You grow a huge knotty dog cock. It's //massive//. As a werewolf, you can barely control yourself, fucking whatever gets in your way. Awrooo!
Or at least, that's the ''stereotype''.
You're actually a guy called Dave. You have a day job in IT.
It's boring work but you've got aspirations. Perhaps something with enough money to fix the shirts you tear every four weeks? Planning for your lycanthropic transformations takes effort — you can't be too angry, or things get out of hand. The <span class="glitch" data-text="choices">choices</span> you make are important to balance your feral instincts with more mundan, human life.
<center>[[𝗦𝗧𝗔𝗥𝗧|_draw]]</center><<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
<!-- choose card -->\
<<whileloop>>\
<<run $cards.delete($dice)>>\
<!-- print card in playzone-->\
<<include "stats">>
<<include $deck[$dice]>>
<<widget "whileloop">>\
<<silently>>\
<!-- tests random rolls until value is within array -->\
<<set $dice = random(0,9)>>
<<if $cards.includes($dice)>>
$dice
<<else>>
<!-- if outside array, repeat -->\
<<whileloop>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "draw">>\
<<silently>>\
<<set $turn +=1>>
<<if $turn>4>>
<<goto $moon>>
<<else>>
<<goto "_draw">>
<</if>>
<</silently>>\
<</widget>>\
<<set $active = "no">>\
<span id="text">You have a craving for steak. Nothing too expensive, as long as it's ''meaty'' and barely cooked, //oozing// blood and…okay, yep. This is one of those <span class="glitch" data-text="werewolf">werewolf</span> cravings. What should you eat? </span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Steak, of course!">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += 40>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Mmmph! Yes! You //needed// that. <</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "The vegetarian option.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += -20>>
<<set $value.intelligence += -10>>
<<set $value.exposure += 0>>
<<set $branchA += -1>>
<<set $branchB += 0>>
<<replace "#text">>Unsatisfying, but healthy.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Order in a pizza.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 10>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Because the topping 'Meat Feast' is all you need right now. <</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You've got some free time and honestly, you've always been told journalling is a relaxing and mindful hobby. Perhaps you can start your own blog? You have so many ideas to write about! </span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Personal dog grooming. ">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += 20>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 10>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Reviews of the best dog shampoos included. <</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Foodie visits to local steakhouses.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 20>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Mmmph! There's so many great cuts of beef. <</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "The difficulties of being a werewolf.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 40>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Personal and moving. People will want to hear your story. <</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You're having a busy day. So many computers to turn off and back on again! You grab a short break and hang around by the water cooler. Your friend Dan wanders over and asks for some help in a systems coding problem. Something about communication relays?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Turn the software off and back on again.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>This works ninety percent of the time!<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Double check the code for typos.">>
<<if $active !== "yes">>
<<set $value.rage += 40>>
<<set $value.heat += 0>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>Long and laborious, but the most likely solution. <</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Use a floating coordinate system so memory isn't overloaded.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 20>>
<<set $value.intelligence += 40>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 2>>
<<replace "#text">>It's not the code, it's his //method//. Show Dan how to do it.<</replace>>
<<set $active = "yes">>
<<timed 2.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Work keeps dragging on and on. It's only lunchtime? You grab some food but can only find a seat at the nerd table in the otherwise packed canteen. Debbie is showing pictures of NASA's newest moon base on her phone. She's clearly looking for some kind of reaction.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Nod along like everyone else.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += -30>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Yep. That's the moon alright. <</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Hide your small awoo.">>
<<if $active !== "yes">>
<<set $value.rage += 40>>
<<set $value.heat += 40>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 20>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>It's the moon! Your //favourite// thing!<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Comment on the article, testing her knowledge.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 20>>
<<set $value.exposure += -10>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>Is she really a space nerd or just showing off?<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You're struggling to focus at work. Staring out of the window, you see that one of your work colleagues has left their dog in the car. Seriously? Although the window is down and their favourite music playing, the annoying poodle won't stop barking!</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Find the culprit and scold them for leaving the dog. ">>
<<if $active !== "yes">>
<<set $value.rage += 30>>
<<set $value.heat += 0>>
<<set $value.intelligence += 20>>
<<set $value.exposure += -10>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>They don't know how hot it is to have fur!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Growl but do nothing.">>
<<if $active !== "yes">>
<<set $value.rage += 30>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 20>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Grumble grumble; irresponsible dog owners!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Howl to assert your dominance!">>
<<if $active !== "yes">>
<<set $value.rage += -30>>
<<set $value.heat += -30>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 50>>
<<set $branchA += 2>>
<<set $branchB += 0>>
<<replace "#text">>Make that poodle shut up!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Crap. Your last werewolf transformation ripped through your best shirt. All your other clothes are in the wash! What the heck are you supposed to wear to work?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "The ripped shirt.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += -20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 30>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Pretend it happened on the drive in.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Your thick winter coat.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 40>>
<<set $value.intelligence += -10>>
<<set $value.exposure += 20>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>In the middle of summer!?<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Pull a sickie. ">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 0>>
<<set $value.intelligence += -30>>
<<set $value.exposure += 10>>
<<set $branchA += 0>>
<<set $branchB += -2>>
<<replace "#text">>You can't risk anyone knowing about your curse.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Ah at last — it's the weekend! You've got popcorn, fizzy pop, and all the motivation to laze on the sofa in front of your favourite film. What should you watch?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "A sci-fi movie!">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 10>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>Spaceship goes brrrrrrRRRRRRR-!!!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "A romcom!">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 40>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += -1>>
<<set $branchB += 0>>
<<replace "#text">>Ahhh haha! She shouldn't have left him!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "A horror movie!">>
<<if $active !== "yes">>
<<set $value.rage += 30>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Ah yes, hello there fellow werewolves!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\ <!-- set character traits -->\
<<if $value.heat>79>>\
<<set $trait.alignment = "Horny">>\
<<elseif $value.intellegence > 79>>\
<<set $trait.alignment = "Nerd">>\
<<else>>\
<<set $trait.alignment = "Neutral">>\
<</if>>\
\
<!-- reset deck -->\
\
<<set $cards = [0,1,2,3,4,5,6]>>\
<<set $turn = 1>>\
\
<!-- print playzone-->\
<<include "moon">>
\
<!-- test for value-ending and print-->\
<!-- rage bad end-->\
<<if $value.rage > 90>>\
The full moon rises in the sky overhead…
This time, your transformation feels <span class="glitch" data-text="so angry!">different</span>. You don't have time to undress before you <span class="glitch" data-text="rawr!">tear</span> through your clothes. You can't control the beast within! The ''ANGRY'' werewolf is coming out!
<center><<link "Uh-Oh...">><<goto "bad_end_rage">><</link>></center>\
<!-- heat bad end-->\
<<elseif $value.heat > 90>>\
The full moon rises in the sky overhead…
This time, your transformation feels <span class="glitch" data-text="so angry!">different</span>. You don't have time to undress before you <span class="glitch" data-text="fuck!">tear</span> through your clothes. You can't control the beast within! The ''HORNY'' werewolf is coming out!
<center><<link "Uh-Oh...">><<goto "bad_end_heat">><</link>></center>\
<!-- exposure bad end-->\
<<elseif $value.exposure > 90>>\
The full moon rises in the sky overhead…
For this transformation, you are <span class="glitch" data-text="not alone">not alone</span>. You hear a loud knock on the door just as the changes begin. Then a bang! Someone is trying to break in! You panic, ''howling'' as you burst out of your clothes. A window smashes. People are shouting outside!
<center><<link "Uh-Oh...">><<goto "bad_end_exposure">><</link>></center>\
<!-- no bad end-->\
<!-- check for deck transition-->\
<!-- deck A-->\
<<elseif $branchA > 2>>\
<!-- set new deck-->\
<<set $deck_wood = ["d_wood_1", "d_wood_2", "d_wood_3", "d_wood_4", "d_wood_5", "d_wood_6","d_wood_7",]>>\
<<set $deck = $deck_wood>>\
<<set $moon = "_moon_wood">>\
<<set $branchA = 0>>\
<<set $next = 1>>
\
<!-- print text-->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_deckchange]]
<!-- deck B-->\
<<elseif $branchB > 2>>\
<!-- set new deck-->\
<<set $deck_seti = ["d_seti_1", "d_seti_2", "d_seti_3", "d_seti_4", "d_seti_5", "d_seti_6","d_seti_7",]>>\
<<set $deck = $deck_seti>>\
<<set $moon = "_moon_seti">>\
<<set $branchB = 0>>\
<<set $next = 2>>
\
<!-- print text-->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_deckchange]]
<<else>>\
<!-- reset value values-->\
<<set $value = {
rage: random(1,5)*10,
heat: random(1,5)*10,
intelligence: 20,
exposure: $value.exposure,
}>>\
\
<!-- no deck transition -->\
<!-- reset branches -->\
<!-- A | werewolf in woods | deck WOOD -->\
<<set $branchA = 0>>\
<!-- B | working for space starup | deck SETI -->\
<<set $branchB = 0>>\
\
<!-- no deck transition -->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
<<if $playthroughs > 3>>
Hint: Engage at work to win a promotion!
<</if>>
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
<</if>>\
\ <!-- set max/min values -->\
\
<<if $value.rage > 99>><<set $value.rage = 100>><</if>>\
<<if $value.rage < 0>><<set $value.rage = 0>><</if>>\
<<if $value.heat > 99>><<set $value.heat = 100>><</if>>\
<<if $value.heat < 0>><<set $value.heat = 0>><</if>>\
<<if $value.intelligence > 99>><<set $value.intelligence = 100>><</if>>\
<<if $value.intelligence < 0>><<set $value.intelligence = 0>><</if>>\
<<if $value.exposure > 99>><<set $value.exposure = 100>><</if>>\
<<if $value.exposure < 0>><<set $value.exposure = 0>><</if>>\
\
<!-- header details -->\
\
<div style="text-align: center;">\
<span class = "bigfont"><b>≋ <span class="glitch" data-text="FULL MOON">FULL MOON</span> ≋</b></span>
----
<table style="width:100%">
<tr>
<th>【Rage】</th>
<th>【Heat】</th>
<th>【Intelligence】</th>
<th>【Exposure】</th>
</tr>
<tr>
<td>$value.rage</td>
<td>$value.heat</td>
<td>$value.intelligence</td>
<td>$value.exposure</td>
</tr>\
</table>\
</div>\
----
<<script>>document.body.style.backgroundColor = "white";<</script>>\
<<timed 2s>>\
<<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
<</timed>>\
<<if $firstplay == 1>>\
<center>''Trophies Unlocked''</center>
''Too much heat!'': <<if $trophy.too_much_heat == 1>>AWOO!<<else>>Nay!<</if>>
''Too much rage!'': <<if $trophy.too_much_rage == 1>>AWOO!<<else>>Nay!<</if>>
''Too much exposure!'': <<if $trophy.too_much_exposure == 1>>AWOO!<<else>>Nay!<</if>>
''Events transpire!'': <<if $trophy.events_transpire == 1>>AWOO!<<else>>Nay!<</if>>
''A real wolf!'': <<if $trophy.a_real_wolf == 1>>AWOO!<<else>>Nay!<</if>>
''A real ranger!'': <<if $trophy.a_real_ranger == 1>>AWOO!<<else>>Nay!<</if>>
''Feral Moon!'': <<if $trophy.moonA == 1>>AWOO!<<else>>Nay!<</if>>
''Wolf Leader!'': <<if $trophy.moonB == 1>>AWOO!<<else>>Nay!<</if>>
''NASA Wolf!'': <<if $trophy.moonC == 1>>AWOO!<<else>>Nay!<</if>>
Number of playthroughs: $playthroughs
<<else>>\
<center>You have not completed a playthrough yet!</center>
<</if>>\
<center>[[𝗥𝗘𝗧𝗨𝗥𝗡|start]]</center>
<<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
\
<<set $outcome to ["You find yourself in the basement of some government lab. They run tests each full moon, trying to isolate the genetic source of your curse. Little do they know how contagious it really is! After a small lab accident, nobody returns to your secure containment cell for days. When they do, the scientists that arrive are furry anthropomorphic wolves. There's no point containing you anymore. Why? Because the virus got out, and now //everyone// is transforming into a werewolf!", "You're in the most unbelievable situation. A ''furry convention''. The line leading up to your booth wraps around the whole centre, bustling with those eager to meet a real life werewolf! They don't want an autograph or even a photo. They just want you to bite their wrist hard enough to draw blood. Who knew there were so many people willing to pay for the curse you have?",]>>\
\
Dozens of people are here! Police lights flash outside, angry yells at the monster that had been hiding in plain sight — but not longer! You're trapped in a state of panic and fear. Even after the transformation finishes and you evolve into a buff muscular wolf, you're whimpering like a puppy. You recognise these people! They're work colleagues, acquaintances, and friends! Don't they see! You're not-OUCH! It's not police invading your house but animal control. Dimly, you stare at the fluffy-tipped tranquiliser dart poking into your chest. Did they <span class="drunk">jussst…?</span> You shake your head to clear the fuzziness! <span class="drunk">H-hey!</span> What did <span class="drunk">theyyy</span> do that <span class="drunk">ffffor….! You're n-n-not aaaaa.....</span>
<span id="item"><center><<link "Six Months Later">><<replace "#item">>\
<<print either($outcome)>>
<center><<if $trophy.too_much_exposure == 1>><<else>><<set $trophy.too_much_exposure = 1>>Trophy Unlocked: ''Too much exposure!''<</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center>
<</replace>><</link>></center></span><<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
\
GRRAH! Why is THIS happening to YOU!? Growling the words, you feel the spit fly from between your fangs. Blood pounds in your ears. A potent heat rises through your chest, swelling under your meaty pectorals. You squeeze your fists together tighter and tighter until you feel blood under your new claws. Your chest heaves as you take in deeper and deeper breath. Nothing can calm you down. Nothing ever will.
You've never felt so <span class="glitch" data-text="ANGRY">ANGRY</span>. Like a huge injustice has been done — stuck with this curse, FORCED to be a werewolf, struggling with this HUGE ERECTION and with nothing to STICK it in. <span class="glitch" data-text="GRRAAHHHHH!!!">GRRAAHHHHH!!!</span> You rip off your remaining clothes in frustration, legs shaking as you tip back your head and <span class="glitch" data-text="HOWL">HOWL</span>!
You lose track of what happens next. The sweat beading across your brow. Sharp claws. Legs flexing, fangs showing as you search for something, ANYTHING to direct your RAGE. Why would you turn into a BEAST if you weren't supposed to DESTROY? <span class="glitch" data-text="GRRAAHH!!!">GRRAAHH!!!</span> Why would you evolve into this monstrosity if not to evoke <span class="glitch" data-text="HAVOC!!!">HAVOC!!!</span>! Your eyes glow red with the need to rip, crush, and shred something, anything, ANYONE!
<span id="item"><center><<link "Six Months Later">><<replace "#item">>\
There's no ''You'' left in this story. Nothing human could survive the rage-filled, muscular werewolf seeking to destroy anything in their path. The transformative energy of the full moon has been corrupted by your uncontrolled emotions. The results are //permanent//. The creature you've become is a clawed whirlwind of destruction who haunts the forest, leaving shredded trees as a warning to anything that comes near. As if you thought being a //werewolf// was the real monster!
<center><<if $trophy.too_much_rage == 1>><<else>><<set $trophy.too_much_rage = 1>>Trophy Unlocked: ''Trophy Unlocked: ''Too much rage!''<</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center>
<</replace>><</link>></center></span><<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
\
No thoughts. Not from your head, anyway. Your huge knotted boner does all the thinking, working out, and gives the final answer in one resounding solution. <span class="glitch" data-text="SEX">SEX</span>.
You've never felt so <span class="glitch" data-text="HORNY">HORNY</span>. You almost white-out from the lack of oxygen getting to your brain. Every ounce of blood is flushed into your gigantic boner, swelling bigger than you ever thought possible! Your growing balls ache as you stroke at your shaft but are unable to quench the raw ''stimulation'' your body needs. Fire explodes from your loins, legs quivering with the need to thrust your cock into something and pummel it into the ground! Nhhhh!
You lose track of what happens. The stench of hot fur and sweat, salty cum…the //taste// of it. Your tail wags hard above you as you rut, harder and HARDER. You've lost control over your hands, unable to grip. Clumsy paws. //Aching// balls. <span class="glitch" data-text="CUM">CUM</span>. Your thoughts blur because who needs to think? You're no longer human. Not even a werewolf anymore! Your uncontrollable <span class="glitch" data-text="HEAT">HEAT</span> has reverted you into something animalistic and feral. A wild wolf consumed by the need to fuck, FUCK! <span class="glitch" data-text="FUCK">FUCK</span>!
<span id="item"><center><<link "Six Months Later">><<replace "#item">>\
There's no ''You'' left in this story. Nothing human could survive the sex-addled, wolf in heat. The transformative energy of the full moon has been corrupted by your uncontrolled emotions. The results are //permanent//. The creature you've become is a cum-oozing sex demon who haunts the forest, fucking anything canine yet never able to satisfy the heat inside. As if you thought being a //werewolf// was the real monster!
<center><<if $trophy.too_much_heat == 1>><<else>><<set $trophy.too_much_heat = 1>>Trophy Unlocked: ''Too much heat!''<</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center>
<</replace>><</link>></center></span><<set $trophy = {
too_much_heat: 0,
too_much_rage: 0,
too_much_exposure: 0,
events_transpire: 0,
}>>
<<set $firstplay = 0>>\
<<set $playthroughs = 0>>\
<<goto [[start]]>><<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
<!-- WOOD-->\
<<if $next == 1>>\
<!-- set value values-->\
<<set $value = {
rage: random(1,6)*10,
heat: random(1,6)*10,
intelligence: 10,
exposure: 100,
}>>\
<!-- A | wolf badend -->\
<<set $branchA = 0>>\
<!-- B | park ranger badend -->\
<<set $branchB = 0 >>\
\
<<set $trait.name ="Wolfy Dave">>\
<<set $trait.position ="Lives in the Woods">>\
<<set $trait.alignment = "Wolfish">>\
\
This transformation isn't like the others. Changing into a werewolf feels homely — like returning to your more comfortable, more <span class="glitch" data-text="natural">natural</span> form. When you wake up the next morning, you're barely human. The shaggy grey fur, bushy tail, and canine ears you gained last night have remained. You've not changed back! You're still a werewolf.
Shock and disbelief feeds into more tedious, more //real// considerations. You can't go to work like this. You can't even go outside! What if people see you and…nhh shit. SHIT! Your curse has //never// done anything like this before!
What choices do you have? You skip so many days of work that your boss rings, telling you not to come back. Fired! You don't care as much as you should — why would you want to sit at a desk, engaging in small talk, when you could be outside! Roaming the woods. Sleeping under the moon. Without any way to pay your rent, you decide to do just that. Why be human when you can be a <span class="glitch" data-text="wolf">wolf</span>!
You've given into so many of you werewolf cravings that you've become one. <span class="glitch" data-text="Permanently">Permanently</span>. Unless you can change your lifestyle, this is your future now.
<center><<if $trophy.events_transpire == 1>><<else>><<set $trophy.events_transpire = 1>>Trophy Unlocked: ''Events transpire!''<</if>></center>
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
<!-- SETI-->\
<<elseif $next == 2>>\
<!-- set value values-->\
<<set $value = {
rage: random(1,3)*10,
heat: random(1,3)*10,
intelligence: 30,
exposure: 20,
}>>\
<<set $trait.name ="Dave">>\
<<set $trait.position ="NASA Intern">>\
<<set $trait.alignment = "Neutral">>\
\
You return to work the following day, still brushing dog hairs from your new shirt. Did you remember to use normal soap and not your doggy cleaning shampoo?
A memo left on your desk says that your boss wants to see you. Immediately.
You have to wait for fifteen minutes outside his office. Contrary to the worry that has you fidgety and sweaty, your manager is in a good mood. A //very// good mood. They are all smiles, congratulating you on completing your last project. What you believed to be casual code for some telecommunications company was in fact a completely new piece of software. You're a secret genius! NASA has applications for this code in their new Moon rovers and now they want to hire you!
You're on the phone an hour later, talking with the Johnson Space Centre; NASA's base for human spaceflight missions. They have cutting edge computers. Unseen technologies. Things they want you to test and troubleshoot.
How can you say no? You'll start your new job with the space agency immediately!
<center><<if $trophy.events_transpire == 1>><<else>><<set $trophy.events_transpire = 1>>Trophy Unlocked: ''Events transpire!''<</if>></center>
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
<!-- ALPHA-->\
<<elseif $next == 3>>\
<!-- set value values-->\
<<set $value = {
rage: 10,
heat: 10,
intelligence: 20,
exposure: 0,
}>>\
<<set $trait = {
name: "Dave",
position: "Works in IT",
alignment: "Neutral",
}>>\
\
Your line manager for the internship is waiting at your desk when you arrive the next morning. The look on their face says things aren't good.
And they aren't.
They manage to put a positive spin on the otherwise catastrophic news. You've got potential but you're not shining. You're a good technician but you're not a natural scientist. Hell, you're a nice guy, but you're just not NASA material. Multiple ways to say the same thing; we overestimated you and as such, we're terminating your contract. For whatever reason, you've made the wrong choices and now here you are. Goodbye dreams of working on future moon missions.
You ring up your old boss the following morning. They listen to your bad news with empathy. It's a tough job market and they respect that you tried. Besides! It was impossible to find somebody else who matched your skills. Do you want your old job back? Naturally, you say //yes//.
So here you are. Working minimum wage once again to pay for your ripped shirts. You should really take more care if you want to progress in life. Your choices are important. Both to control your lycanthropic transformations and also wherever your life might lead.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
\
<!-- LIFT-->\
<<elseif $next == 4>>\
<!-- set value values-->\
<<set $value = {
rage: 10,
heat: 10,
intelligence: 40,
exposure: 0,
}>>\
<<set $trait = {
name: "Dave",
position: "Trainee astronaut",
alignment: "Neutral",
}>>\
\
You're picked for astronaut training!
It was a long shot. Working at NASA, you heard about the job opportunity and a recommendation from the engineering team put you in a good place. A //really// good place. Because here you are! One out of ten. A member of a diverse team
And yes, it must be diverse, because they've got a werewolf in their midst. You're so proud of yourself! You've proven that you can control your curse, make the correct choices, and rocket through your career to this! An astronaut! Well…if you're selected for a mission. You've got an intense training period now. You'll need to learn //everything// about the mechanics of spaceflight, the technology you'll use, and how to work on the new lunar base. You've never been so excited to start!
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
\
<!-- SETI (DROP)-->\
<<elseif $next == 5>>\
<!-- set value values-->\
<<set $value = {
rage: random(1,3)*10,
heat: random(1,3)*10,
intelligence: 30,
exposure: 20,
}>>\
<<set $trait.name ="Dave">>\
<<set $trait.position ="NASA engineer">>\
<<set $trait.alignment = "Neutral">>\
\
You're not picked to fly to the moon.
It was always going to be a long shot. NASA knows you are hardworking but perhaps not as committed as you could be to the lunar project. Maybe you got unlucky? Perhaps you made some wrong decisions? Either way, their answer is simple: You're good, but you're not good //enough//. Being an astronaut isn't for you.
They still want you involved but as an engineer within the organisation. Somebody who now understands the technical challenges of the mission. They call it a sideways move and frankly, the pay //is// the same. But you see it as a demotion. You won't be flying to the moonbase in the hunt for water any time soon. Not until the next opening for another pool of astronauts.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
\
<!-- MON-->\
<<elseif $next == 6>>\
<!-- set value values-->\
<<set $value = {
rage: 20,
heat: 20,
intelligence: 60,
exposure: 100,
}>>\
<<set $trait = {
name: "Dave",
position: "Lunar astronaut!",
alignment: "Neutral",
}>>\
\
3 … 2 … 1 … <span class="drunk">LIFTOFF!!!</span>
You can't believe it! You were picked for the next moon mission and here you are! Sitting on the latest NASA spaceship as it BLASTS into space on a four-day journey to the moon! Along with five other crewmates and plenty of resources, you have one main objective: to contribute to the sustainability of a long-term base near the south pole. Returning to the moon. But this time to //stay//.
But there's one problem.
So. If you're standing on the moon…that //technically// means it always appears full to you? Like, it's always //there// and…okay okay, how do you explain this? Landing a werewolf on the moon must mess up with their biology. Something untested and unknown.
Because you've turned into a wolf. The big, muscular, grizzly, and big-cocked kind.
<center>[[And you can't turn back!|transition_mon]]</center>
<</if>>\<<set $active = "no">>\
<span id="text">Who's going to accept you like this? Not quite a wolf but not a human either. Running out into the woods is a good way to disappear, but you need some kind of shelter if to survive.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Steal camping equipment and a tent.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 5>>
<<replace "#text">>Modern comforts with warmth and shelter.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Create a home in a small cave.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 10>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 10>>
<<set $branchB += 0>>
<<replace "#text">>It's not warm but you're protected from the wind and rain.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Sleep under the trees.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 20>>
<<set $branchB += 0>>
<<replace "#text">>It's beautiful having the stars overhead whilst you sleep. <</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You've been living alone in the woods for a long time, and it's starting to show. You ''stink''! Coming across a small stream, you consider cleaning yourself up.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Wash.">>
<<if $active !== "yes">>
<<set $value.rage += -40>>
<<set $value.heat += -40>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += -10>>
<<set $branchB += 10>>
<<replace "#text">>Have a deep clean. Add some pinecones for a relaxing bath.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Dip your feet in.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -20>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Just enough water to wash off the grime.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Don't even get wet.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 10>>
<<set $branchB += 0>>
<<replace "#text">>You'll stay stinky. Who's around to care?<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">It's lonely out in the woods. You might be free of all responsibilities, with no bills to pay, but what are you supposed to do with your time?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Laze around in the sunshine.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 20>>
<<set $branchB += 0>>
<<replace "#text">>Sometimes it's nice to snooze and watch the world go by.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Scavenge for items to improve your basecamp.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += -10>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Productive work. It keeps the mind sharp and your camp homely.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Explore and learn more about the National Park.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 30>>
<<replace "#text">>There's so much to see! You want to know everything about the woodland and the animals that live here. <</replace>>
<<set $active = "yes">>
<<timed 3s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Your stomach rumbles. When was the last time you ate? Gah! What does it matter? You need food and you need it ''now''! </span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Catch, kill, and cook something fresh.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 20>>
<<set $branchB += 0>>
<<replace "#text">>Give into instinct. You //are// a wolf afterall!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Harvest something vegetarian.">>
<<if $active !== "yes">>
<<set $value.rage += 40>>
<<set $value.heat += 0>>
<<set $value.intelligence += -40>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>There's so much that the forest naturally provides.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Scavenge something from the bins behind the lodges.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence +=-10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 10>>
<<replace "#text">>Try not to get caught!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You wander the forest during a bright, blustering morning. A new landslide of small boulders block your normal route. The stones have knocked down some kind of…signpost? Of course! This is a popular trail through the National Park.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Clear the boulders from the trail.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -20>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>It's a good thing to do. For you and keen hikers in the National Park.<</replace>>
<<set $active = "yes">>
<<timed 2.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Scramble over the boulders.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += -20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>They aren't your problem.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Add more boulders to the pile.">>
<<if $active !== "yes">>
<<set $value.rage += 40>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 30>>
<<set $branchB += 0>>
<<replace "#text">>Fuck the humans. They never made it easy for //you//! They don't need a path here.<</replace>>
<<set $active = "yes">>
<<timed 3s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">It's been raining since last night and the thunderstorm shows no sign of stopping.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Sit and listen to the rain.">>
<<if $active !== "yes">>
<<set $value.rage += -30>>
<<set $value.heat += -30>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 10>>
<<set $branchB += -10>>
<<replace "#text">>No thoughts. Just living in the moment.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Listen to the raindrops and think about your future.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 10>>
<<set $branchB += 10>>
<<replace "#text">>What are you supposed to do?<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Let the pitter patter of rain remind you of home.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += -10>>
<<set $branchB +=10>>
<<replace "#text">>No. Not living out in the forest. Your //real// home.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Your ears prick up. It's the middle of the night but you're roused by the loud <span class="drunk">HOWL</span> of wolves in the distance. The animal sounds awakens a primal feeling deep inside.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Listen.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>The sound is warm and comforting.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Ignore.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>They call that howling?<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Howl with them.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += 30>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 30>>
<<set $branchB += 0>>
<<replace "#text">><span class="drunk">AWWWWROOOOOOO</span><</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\ <!-- set character traits -->\
<<if $value.heat>79>>\
<<set $trait.alignment = "Horny">>\
<<elseif $value.rage>79>>\
<<set $trait.alignment = "Angry">>\
<<else>>\
<<set $trait.alignment = "Wolfish">>\
<</if>>\
\
<!-- reset deck -->\
\
<<set $cards = [0,1,2,3,4,5,6]>>\
<<set $turn = 1>>\
\
<!-- print playzone-->\
<<include "moon">>
\
<!-- test for value-ending and print-->\
<!-- rage bad end-->\
<<if $value.rage > 90>>\
The full moon rises in the sky overhead…
You feel the power in the celestial light. A raw //energy// that floods your body. You're already a huge hairy werewolf, what's left to transform? Yet you feel something shifting inside. The crack of bones and the twitch of muscle as you lift your muzzle and <span class="glitch" data-text="howl">howl</span>! Your toes curl, unable to control the ''ANGER'' within!
<center><<link "Uh-Oh...">><<goto "bad_end_rage_wolf">><</link>></center>\
<!-- heat bad end-->\
<<elseif $value.heat > 90>>\
The full moon rises in the sky overhead…
You feel the power in the celestial light. A raw //energy// that floods your body. You're already a huge hairy werewolf, what's left to transform? Yet you feel something shifting inside. The crack of bones and the twitch of muscle as you lift your muzzle and <span class="glitch" data-text="howl">howl</span>! Your toes curl, unable to control the ''HEAT'' within!
<center><<link "Uh-Oh...">><<goto "bad_end_heat_wolf">><</link>></center>\
\
<!-- no bad end-->\
<!-- check for deck transition-->\
<!-- deck A-->\
<<elseif $branchA > 100 >>\
<!-- set bad end -->\
The full moon rises in the sky overhead…
You feel the power in the celestial light. A raw //energy// that floods your body. You're already a huge hairy werewolf, what's left to transform? Yet you feel something shifting inside. You've not been controlling your instincts and animalistic lusts so now this happens. A <span class="glitch" data-text="growl">growl</span> escapes your throat as you drop onto all four paws. Bones crack as you shift from anthropomorphic werewolf into a fully feral canine. Your claws dig into the turn as you raise your muzzle to <span class="glitch" data-text="Awrroooooo…!">Awoooooo…!</span>
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|wood_wolf_badend]]</center>\
<!-- deck B-->\
<<elseif $branchB > 100>>\
<!-- set bad end -->\
The full moon rises in the sky overhead…
You feel the power in the celestial light. A raw //energy// that floods your body. You're already a huge hairy werewolf, what's left to transform? Yet you feel something shifting inside. You've controlled your cravings and held onto your humanity, trying to clawback everything you lost. But you'll //never// escape the curse! Your tail curls as you drop to the floor, supporting yourself on all four paws! Bones crack as you shift from anthropomorphic werewolf into a fully feral canine.
</center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|wood_ranger_badend]]</center>
<<else>>\
<!-- reset value values-->\
<<set $value = {
rage: random(1,6)*10,
heat: random(1,6)*10,
intelligence: 10,
exposure: 100,
}>>\
\
<!-- no deck transition -->\
<!-- reset branches -->\
<!-- A | wolf badend -->\
<<set $branchA = $branchA>>\
<!-- B | park ranger badend -->\
<<set $branchB = $branchB >>\
\
The full moon rises in the sky overhead…
<<set $activities to ["snuffling around in the undergrowth", "howling at the moon", "chasing rabbits", "asleep on a rock", "chasing your tail",]>>
You feel the power in the celestial light. A raw //energy// that floods your body. You're already a huge hairy werewolf, what's left to transform? Yet you feel something shifting inside. You've controlled your cravings and held onto your humanity, yet a wolf is still a wolf! Your tail curls as you drop to the floor, supporting yourself on all four paws! Bones crack as you shift from anthropomorphic werewolf into a fully feral canine. You spend the night <<print either($activities)>>. You wake up the next morning naked on the forest floor, staring at the dawn sky.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
<</if>>\
\<<set $active = "no">>\
<span id="text">You get offered a tour around the NASA facilities. Supposedly this is a common occurrence to ensure collaboration and conversation between different research groups. You get shown the collection of Moon rocks. Cool! The expert guide asks if you have any questions?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Why does the rock make me feel tingly?">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 20>>
<<set $value.intelligence += -10>>
<<set $value.exposure += 20>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>You get some weird looks. You're the only one sensing the //attraction//...<</replace>>
<<set $active = "yes">>
<<timed 2.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Why is it grey?">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += -10>>
<<set $value.exposure += 20>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Stupid question. Because it's anorthositic, silly!<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Is there really any water in this?">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 10>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>The expert perks up. Technically no, but other rocks might have water in them! Great question!<</replace>>
<<set $active = "yes">>
<<timed 3s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Another weekly meeting with your line manager. Normally you discuss progress, work, and wider skill sharing. Sitting quietly and nodding along is standard procedure. However, they mention something interesting about remote space missions.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Hey! That sounds cool!">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += -20>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Showing enthusiasm will make up for your lack of knowledge.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Is that what you're working on?">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 20>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Okay, that makes it sound like you're not paying attention.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "I think I could code some software to make that work!">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += -10>>
<<set $value.intelligence += 20>>
<<set $value.exposure += -20>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>You might have offered something impossible. Your line manager is excited to see more!<</replace>>
<<set $active = "yes">>
<<timed 3s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You're coding a new computer system. Something about Earth to Moon rover communication. NASA requires multi-factor authentication and a strong password. You have a habit of using one of three.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Mooncheese1234.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Kinda nerdy but easy to recall.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "3cOpH*2^t60z">>
<<if $active !== "yes">>
<<set $value.rage += 40>>
<<set $value.heat += 0>>
<<set $value.intelligence += 30>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>Secure. But who the hell is going to remember this?<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Wolf-lover@w00f">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 30>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>That's going to raise some questions with the other staff.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">An engineer leaves a transceiver radio on your desk. Your task is to prove your software will run on the actual hardware. The issue? The battery is dead and buried deep under radiation-hardened casing. What are you supposed to do?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Call your line manager and ask for help.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 10>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>They don't like to be bothered, but you'll get the problem fixed.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Growl and wait for the engineer to come back.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += -2>>
<<replace "#text">>He's not happy about the delay. Why didn't you email?<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Borrow a screwdriver and open the casing yourself.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 20>>
<<set $value.intelligence += 30>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>The battery is an easy fix! The engineer is impressed that everything works as planned.<</replace>>
<<set $active = "yes">>
<<timed 3s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Wow! Today is super hot and you're struggling to stay chill. Sitting for lunch outside with the other interns was a bad idea. How are you supposed to cool off?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Sneak back inside to air conditioning.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += -40>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 20>>
<<set $branchA += 0>>
<<set $branchB += -2>>
<<replace "#text">>Not a great way to make friends, but at least you're not sweating. <</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Just sit and quietly pant.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 30>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 30>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Hey! No need to stare. It works!<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Melt.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 40>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>You're sitting in a pool of sweat, but you have a great conversation about insulating Moon bases.<</replace>>
<<set $active = "yes">>
<<timed 3s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You've been invited out to an after-work meal with the rest of your research group. They're all nerdy scientists who can't decide where to go. Your new friend Lucy asks you for food recommendations.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "A steakhouse. Obviously!">>
<<if $active !== "yes">>
<<set $value.rage += -40>>
<<set $value.heat += -40>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 10>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>You get some funny looks for ordering the rarest beef on offer.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Asian Fusion!">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += -20>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>There's a cool place that has nice noodles. Plenty of choices for everyone.<</replace>>
<<set $active = "yes">>
<<timed 2.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Whatever they want to do.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += -10>>
<<set $branchA += 0>>
<<set $branchB += -1>>
<<replace "#text">>You're not fussy. Nor are you good at making decisions.<</replace>>
<<set $active = "yes">>
<<timed 2.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You're at the canteen with friends from the research group. The conversation becomes embarrassing when your colleague Bryan not only admits he lives close to where you do, but that he hears loud //howling// some nights near his property.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Oh? Make a joke about werewolves.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 10>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Phew. Let's hope they don't see through your bluff.<</replace>>
<<set $active = "yes">>
<<timed 1.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Blame the sound on local coyotes.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 20>>
<<set $value.intelligence += -60>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>To be honest, coyotes can be blamed for most things.<</replace>>
<<set $active = "yes">>
<<timed 2s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Awoo! Maybe it really was you, haha!">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 30>>
<<set $branchA += 1>>
<<set $branchB += -1>>
<<replace "#text">>The joke doesn't go down as you expect. All you get are weird looks.<</replace>>
<<set $active = "yes">>
<<timed 2.5s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\ <!-- set character traits -->\
\
<!-- reset deck -->\
\
<<set $cards = [0,1,2,3,4,5,6]>>\
<<set $turn = 1>>\
\
<!-- print playzone-->\
<<include "moon">>
\
<!-- test for value-ending and print-->\
<!-- rage bad end-->\
<<if $value.rage > 90>>\
The full moon rises in the sky overhead…
This time, your transformation feels <span class="glitch" data-text="so angry!">different</span>. You don't have time to undress before you <span class="glitch" data-text="rawr!">tear</span> through your clothes. You can't control the beast within! The ''ANGRY'' werewolf is coming out!
<center><<link "Uh-Oh...">><<goto "bad_end_rage">><</link>></center>\
<!-- heat bad end-->\
<<elseif $value.heat > 90>>\
The full moon rises in the sky overhead…
This time, your transformation feels <span class="glitch" data-text="so angry!">different</span>. You don't have time to undress before you <span class="glitch" data-text="fuck!">tear</span> through your clothes. You can't control the beast within! The ''HORNY'' werewolf is coming out!
<center><<link "Uh-Oh...">><<goto "bad_end_heat">><</link>></center>\
<!-- exposure bad end-->\
<<elseif $value.exposure > 90>>\
The full moon rises in the sky overhead…
For this transformation, you are <span class="glitch" data-text="not alone">not alone</span>. You hear a loud knock on the door just as the changes begin. Then a bang! Someone is trying to break in! You panic, ''howling'' as you burst out of your clothes. A window smashes. People are shouting outside!
<center><<link "Uh-Oh...">><<goto "bad_end_exposure">><</link>></center>\
<<else>>\
<!-- no bad end-->\
<!-- reset value values-->\
<<set $value = {
rage: random(1,5)*10,
heat: random(1,5)*10,
intelligence: 30,
exposure: $value.exposure,
}>>\
\
<!-- check for deck transition-->\
<!-- deck A-->\
<<if $branchA > 2>>\
<!-- set new deck-->\
<<set $deck_alpha = ["d_alpha_1", "d_alpha_2", "d_alpha_3", "d_alpha_4", "d_alpha_5", "d_alpha_6","d_alpha_7",]>>\
<<set $deck = $deck_alpha>>\
<<set $moon = "_moon_alpha">>\
<<set $branchA = 0>>\
<<set $next = 3>>
\
<!-- print text-->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_deckchange]]</center>
<!-- deck B-->\
<<elseif $branchB > 2>>\
<!-- set new deck-->\
<<set $deck_lift = ["d_lift_1", "d_lift_2", "d_lift_3", "d_lift_4", "d_lift_5", "d_lift_6","d_lift_7",]>>\
<<set $deck = $deck_lift>>\
<<set $moon = "_moon_lift">>\
<<set $branchB = 0>>\
<<set $next = 4>>
\
<!-- print text-->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_deckchange]]</center>
<<else>>\
\
<!-- no deck transition -->\
<!-- reset branches -->\
<!-- A | Working in IT | deck ALPHA -->\
<<set $branchA = 0>>\
<!-- B | Astronaut Training | deck LIFT -->\
<<set $branchB = 0>>\
\
<!-- no deck transition -->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
<<if $playthroughs > 3>>
\
<</if>>
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
<</if>>\
<</if>>\
\<<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
You don't transform back in the morning. Why would you? You're a wolf. For years you've struggled with a curse, trying to hide this…but now you feel <span class="glitch" data-text="free">free</span>.
With a long //stretch//, you spread your paws and relax your muscles. It feels good to stand like this. Four paws on the ground. Tail wagging. Ears perked up, nose in the air and smelling the scents of the wilds. The choices you've made have led you here. And it's //here// that you know you <span class="glitch" data-text="belong">belong</span>. In the forest. A real wolf.
<center><<if $trophy.a_real_wolf == 1>><<else>><<set $trophy.a_real_wolf = 1>>Trophy Unlocked: ''Trophy Unlocked: ''A real wolf!'' <</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center><<script>>document.body.style.backgroundColor = "#262d30";<</script>>\
When you wake up the next morning, you know something is different. The smell of clean bedding, the sound of rain against glass. You're inside a cabin, curled up on a bed…back to being a…a human? You blink. Studying your hands, there's no denying it.
The woman next to your bed still seems concerned. You're the werewolf that's been seen stalking the forest? You come up with some kind of excuse…but how could you deny being naked under the duvet, covered in dog hair and bits of leaves? She actually laughs. You blush. Was she //actually// proposing you become a Park Ranger?
Of course, you can't turn down an offer like that!
Nobody knows the woodland within the National Park better than you. Mostly because nobody has lived in the woods themselves, seeing nature through the eyes of a wolf. //Experiencing// it like an animal should. So yeah…perhaps that's why you make such an excellent Park Ranger! You get to show around members of the public, identifying plants and animals, all whilst answering questions. You get to share your experiences with them. The choices that have led up to this moment might not have been ideal, but it's all worked out in the end. Who knew being a Park Ranger was your calling?
<center><<if $trophy.a_real_ranger == 1>><<else>><<set $trophy.a_real_ranger = 1>>Trophy Unlocked: ''Trophy Unlocked: ''A real ranger!'' <</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center><<goto [[bad_end_heat]]>>
<<goto [[bad_end_rage]]>>
<<set $active = "no">>\
<span id="text">Clive, a fellow trainee astronaut, has nobody to dogsit so is forced to bring their pet to work. You can't stop making eye contact with the alsatian, struggling to focus on your project about extracting water from the lunar regolith. He's sitting there like //he// is the alpha dog!</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Growl to assert your dominance.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 10>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>The astronauts look at you weirdly, but the dog has gone away.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Whine and submit to the alpha.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 10>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>The astronauts regard you oddly, at least the dog has stopped staring.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Ignore the dog and focus on your studies.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Don't give into instinct!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">High-G training simulates the stresses of launch and re-entry on your body by spinning you in a giant centrifuge. You need to perform tasks under the intense conditions. You can pick from a number of focus techniques to stop you losing consciousness.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Keep your head perfectly still.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>And it works! You survive up to seven-G before passing out.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Bite back a growl and fight through it.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += -10>>
<<set $value.exposure += 10>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>It works…Kinda? You survive up to six-G before passing out. <</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Take deep breaths and don't blink.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += -20>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Nope! That's not how you do it. You only survive up to four-G before passing out.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">There is so much to learn before becoming an astronaut. Today that's the layout of the three domed habitats placed near the south pole of the moon. There are so many pictures of the rocky grey surface…!</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Howl. Because WOW look it's the MOON!">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 20>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>//Awroooo!// Ignore the weird looks because it's your FAVOURITE THING!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Learn everything you can about the lunar base.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>This information will be useful for any future visits to space!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Research for permanently shady areas that might host water.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>Not your briefing, but maybe it will earn you extra brownie points?<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">More classes! Your training to be an astronaut is so intense, they want to teach during evening classes too! There is one problem. The planned class is during the night of a full moon. What excuse can you use to stay at home?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "No excuse. Just pull a sickie.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Ask for forgiveness, not permission.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Pretend you're away for a friend's wedding.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>A valid excuse, as long as they don't ask too many questions.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Joke that you're a werewolf and otherwise occupied that night.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 20>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>That wins you a laugh but also a serious meeting with your angry trainer.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Simulation time. You're timetabled hundreds of hours inside a mock-up of a space capsule, learning all the controls and commands to help pilot the ship. Three of you face a tough scenario when air starts to leak out into space. </span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Find the leak but risk suffocating the crew.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 10>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>It works! Nobody is harmed, the hole was the size of a pinprick!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Ignore the leak, it's too small to worry about.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>A risky but wise choice. You decide to cover the pinhole with duct tape.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Jettison part of the broken capsule, sacrificing the crew inside.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -20>>
<<set $value.intelligence += -20>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 0>>
<<replace "#text">>Why be a teamplayer when you can be //alive// instead?<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">Part of your training is adapting to space habitats. You must be able to relax and rest under unusual conditions inside a spaceship or even on the moon! In the simulated moonbase, you need to choose a place to sleep…</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "A hammock.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += -20>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>There are plenty to spare, and look comfy!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "A gel bed.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -30>>
<<set $value.intelligence += 0>>
<<set $value.exposure += -20>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>A modern comfort, but you'll never afford one on the moon.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "The cosy rug on the floor.">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 10>>
<<set $branchA += 1>>
<<set $branchB += 1>>
<<replace "#text">>Curl up and sleep where there is space. Like a dog.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<set $active = "no">>\
<span id="text">You've got a long break between rocket training in the morning, and a physics exam in the afternoon. With a few hours to kill, one of the trainee's suggests enjoying the sunshine with a quick game. But what to play?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Football.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += -10>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>A great team game for everyone!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Tennis.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += -10>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<replace "#text">>Not a team sport, but still fun to play!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Frisbee.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 10>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<replace "#text">>Yes! Hahaha this is your jam!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\ <!-- set character traits -->\
\
<!-- reset deck -->\
\
<<set $cards = [0,1,2,3,4,5,6]>>\
<<set $turn = 1>>\
\
<!-- print playzone-->\
<<include "moon">>
\
<!-- test for value-ending and print-->\
<!-- rage bad end-->\
<<if $value.rage > 90>>\
The full moon rises in the sky overhead…
This time, your transformation feels <span class="glitch" data-text="so angry!">different</span>. You don't have time to undress before you <span class="glitch" data-text="rawr!">tear</span> through your clothes. You can't control the beast within! The ''ANGRY'' werewolf is coming out!
<center><<link "Uh-Oh...">><<goto "bad_end_rage">><</link>></center>\
<!-- heat bad end-->\
<<elseif $value.heat > 90>>\
The full moon rises in the sky overhead…
This time, your transformation feels <span class="glitch" data-text="so angry!">different</span>. You don't have time to undress before you <span class="glitch" data-text="fuck!">tear</span> through your clothes. You can't control the beast within! The ''HORNY'' werewolf is coming out!
<center><<link "Uh-Oh...">><<goto "bad_end_heat">><</link>></center>\
<!-- exposure bad end-->\
<<elseif $value.exposure > 90>>\
The full moon rises in the sky overhead…
For this transformation, you are <span class="glitch" data-text="not alone">not alone</span>. You hear a loud knock on the door just as the changes begin. Then a bang! Someone is trying to break in! You panic, ''howling'' as you burst out of your clothes. A window smashes. People are shouting outside!
<center><<link "Uh-Oh...">><<goto "bad_end_exposure">><</link>></center>\
<<else>>\
<!-- no bad end-->\
<!-- reset value values-->\
<<set $value = {
rage: random(1,5)*10,
heat: random(1,5)*10,
intelligence: 40,
exposure: $value.exposure,
}>>\
\
<!-- check for deck transition-->\
<!-- deck A-->\
<<if $branchA > 2>>\
<!-- set new deck-->\
<<set $deck_seti = ["d_seti_1", "d_seti_2", "d_seti_3", "d_seti_4", "d_seti_5", "d_seti_6","d_seti_7",]>>\
<<set $deck = $deck_seti>>\
<<set $moon = "_moon_seti">>\
<<set $branchA = 0>>\
<<set $next = 5>>
\
<!-- print text-->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_deckchange]]</center>
<!-- deck B-->\
<<elseif $branchB > 2>>\
<!-- set new deck-->\
<<set $deck_mon = ["d_mon_1", "d_mon_2", "d_mon_3", "d_mon_4", ]>>\
<<set $cards = [0,1,2,3]>>\ <!-- important-->\
<<set $deck = $deck_mon>>\
<<set $moon = "_moon_mon">>\
<<set $branchB = 0>>\
<<set $next = 6>>
\
<!-- print text-->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_deckchange]]</center>
<<else>>\
\
<!-- no deck transition -->\
<!-- reset branches -->\
<!-- A | NASA Intern | deck SETI -->\
<<set $branchA = 0>>\
<!-- B | Moon Base | deck MON -->\
<<set $branchB = 0>>\
\
<!-- no deck transition -->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
<<if $playthroughs > 3>>
\
<</if>>
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center>
<</if>>\
<</if>>\
\<!-- set character traits -->\
\
<!-- reset deck -->\
\
<<set $cards = [0,1,2,3,4,5,6]>>\
<<set $turn = 1>>\
\
<!-- print playzone-->\
<<include "moon">>
<<timed 2s>><<script>>document.body.style.backgroundColor = "#4c5457";<</script>><</timed>>\
<<timed 2.1s>><<script>>document.body.style.backgroundColor = "#4c5457";<</script>><</timed>>\
\
\
<!-- deck A-->\
<<if $branchA >= $branchB && $branchA >= $branchC>>\
It's been four weeks since you landed, and things are progressing faster than you can control…
There's no transformation this time. You're already a werewolf! Trapped on the moon with no way to hide your curse. News hasn't leaked of you or the others you've bitten. The instincts inside you are too strong to handle and after four weeks, you've submitted to the inevitability of the curse…
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_ending_A]]</center>
<!-- deck B-->\
<<elseif $branchB >= $branchC>>\
It's been four weeks since you landed, and things are progressing faster than you can control…
There's no transformation this time. You're already a werewolf! Trapped on the moon with no way to hide your curse. News hasn't leaked beyond NASA ground control yet you know it's only a matter of time. Perhaps you should make the first move? You can announce yourself to the world as a success, never to be branded a monster again!
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_ending_B]]</center>
<!-- deck C-->\
<<else>>\
It's been four weeks since you landed, and your situation has developed…
There's no transformation this time. You're already a werewolf! Trapped on the moon with no way to hide your curse. Not even from the public! News has leaked and NASA are trying to furiously explain why there's an anthro canine working on their moonbase. This is a precarious, watershed moment and the outcome is out of your paws.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_ending_C]]</center>
<</if>>\<<script>>document.body.style.backgroundColor = "#4c5457";<</script>>\
\
<<set $active = "no">>\
<span id="text">The loader breaks down. A large, mechanical forklift is needed to unpack important supplies off your spacecraft and into the moonbase. An electrical short-circuit means the machine is out of action. None of your astronaut training can magically solve the issue you're faced with: running out of supplies that are trapped on the spaceship. The boxes are heavy to carry. At least, for a //normal// human. But maybe a strong werewolf like you has a chance?</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Offer to haul out the boxes.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 1>>
<<set $branchC += 0>>
<<replace "#text">>With your strength and power, you can contribute. You just need a spacesuit that fits.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Haul out the boxes anyway, whether that's allowed or not.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 2>>
<<set $branchC += 0>>
<<replace "#text">>Ask for forgiveness, not permission. Go and haul out the boxes anyhow.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Try to fix the loader out of desperation.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<set $branchC += 1>>
<<replace "#text">>It's useless, but you feel like you've contributed somewhat.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Wait for new parts to arrive from Earth.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += -1>>
<<set $branchB += -1>>
<<set $branchC += 1>>
<<replace "#text">>Like the rest of Shackleton Outpost, you'll have to wait for aid from Earth.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Ration your consumable intakes and wait for another shipment.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += -2>>
<<set $branchB += -2>>
<<set $branchC += 1>>
<<replace "#text">>It's a struggle, given your animal cravings, but you must face this issue together.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<script>>document.body.style.backgroundColor = "#4c5457";<</script>>\
\
<<set $active = "no">>\
<span id="text">NASA wants to test your mutation. Many of the tasks feel meaningless — there to prove your obedience and mental processing. They don't trust that you're able to control your feral instincts whilst trapped in this werewolf body. Exercise tasks have been set to test your speed, agility, and capacity on the moon. Biological experiments afterwards as standard; seeing what degradation has occurred due to the lack of gravity.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Refuse to be experimented on.">>
<<if $active !== "yes">>
<<set $value.rage += 40>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 1>>
<<set $branchC += -2>>
<<replace "#text">>You're not a test guinea pig! You have rights, even as a werewolf!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Do the experiments, but refuse to send the data.">>
<<if $active !== "yes">>
<<set $value.rage += 30>>
<<set $value.heat += 0>>
<<set $value.intelligence += -10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<set $branchC += -1>>
<<replace "#text">>Blame some upload error. You don't want to directly disobey orders, but this feels inhumane.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Partake in the basic exercise tasks like the rest of the crew.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<set $branchC += 1>>
<<replace "#text">>This is what you signed up for, as a werewolf or not.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Accept some extra medical checks, not that you like it.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<set $branchC += 2>>
<<replace "#text">>Grumble and growl, but so as you're told. Maybe they'll find something interesting?<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Do what NASA asks and undergo all their prescribed exercise tasks.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 30>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += -1>>
<<set $branchB += -1>>
<<set $branchC += 4>>
<<replace "#text">>So…as a werewolf, your body doesn't degrade or weaken under low gravity. In fact, you're far stronger and more well-adapted for the moon. <</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<script>>document.body.style.backgroundColor = "#4c5457";<</script>>\
\
<<set $active = "no">>\
<span id="text">The captain of Shackleton Outpost calls you into their office. It's little more than a cubical that you squeeze into, shoulders too wide for the doorway. Obviously, the woman has questions. It's only a matter of time until your condition is leaked to the public and already, there's some discontent on the base itself. This isn't a typical moon mission anymore and she needs to understand what your motives are for the future.</span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Just do as you're told.">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -20>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += -2>>
<<set $branchB += -2>>
<<set $branchC += 2>>
<<replace "#text">>You understand that you're an anomaly. Obey whatever NASA asks and don't create any conflicts in the outpost.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Keep your head down. Leave on the next shuttle without a problem.">>
<<if $active !== "yes">>
<<set $value.rage += -10>>
<<set $value.heat += -10>>
<<set $value.intelligence += 20>>
<<set $value.exposure += 0>>
<<set $branchA += -1>>
<<set $branchB += -1>>
<<set $branchC += 1>>
<<replace "#text">>This hasn't gone to plan. Head home before things get any worse.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Help where you can but leave when you have the chance. It's for the best.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 30>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<set $branchC += 1>>
<<replace "#text">>Do what is asked of you and then go home. That's the best way to stop conflict and keep everyone safe. <</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Work hard and contribute everything to the mission.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence += 30>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<set $branchC += 2>>
<<replace "#text">>Even as a werewolf, you have a lot to give! Strive for every opportunity in the mission whilst you're still allowed. You're still an astronaut!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Don't respond. Bite her instead.">>
<<if $active !== "yes">>
<<set $value.rage += 40>>
<<set $value.heat += 0>>
<<set $value.intelligence += -40>>
<<set $value.exposure += 0>>
<<set $branchA += 5>>
<<set $branchB += 1>>
<<set $branchC += 0>>
<<replace "#text">>You don't like what the captain is suggesting. Show her you're in control of your own destiny.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\<<script>>document.body.style.backgroundColor = "#4c5457";<</script>>\
\
<<set $active = "no">>\
<span id="text">NASA has kept your big reveal top secret. Nothing has leaked to the public, nobody knows outside of the small dome of the moon base. There's forty five people in total working at Shackleton Outpost. And unlike your crew, some aren't as friendly to a tall werewolf in misfitted clothing bumbling around. Ground control is aware of the problem. They want to get you shipped home as soon as possible, but offer a compromise in the meantime: forcing you to wear an improvised shock collar. </span>
<div id="passage-footer">
<div style="text-align: center;">\
<<link "Reject the Collar: No WAY! Bite anyone who tries.">>
<<if $active !== "yes">>
<<set $value.rage += 20>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 2>>
<<set $branchB += 1>>
<<set $branchC += -1>>
<<replace "#text">>You might be a werewolf but that doesn't make you an animal!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "It's inhumane! You'll accept a //normal// collar as a trade-off…">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 10>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 1>>
<<set $branchB += 1>>
<<set $branchC += 1>>
<<replace "#text">>You understand their concerns but let's be reasonable here!<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "If it ensures stability, you'll do as you're told. Not that you like it.">>
<<if $active !== "yes">>
<<set $value.rage += 10>>
<<set $value.heat += 0>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<set $branchC += 2>>
<<replace "#text">>Your situation is unstable. Best not do anything to threaten your personal safety. <</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "Sure? It depends on who has the remote?">>
<<if $active !== "yes">>
<<set $value.rage += 0>>
<<set $value.heat += 0>>
<<set $value.intelligence += 10>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 1>>
<<set $branchC += 0>>
<<replace "#text">>You have one condition: your crew leader has the control. You trust your friend will never use it.<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
<<link "It's a good idea. How long can you control your instincts for?">>
<<if $active !== "yes">>
<<set $value.rage += -20>>
<<set $value.heat += -20>>
<<set $value.intelligence += 0>>
<<set $value.exposure += 0>>
<<set $branchA += 0>>
<<set $branchB += 0>>
<<set $branchC += 1>>
<<replace "#text">>Fuck. You don't know why you transformed. Maybe you really //are// a danger?<</replace>>
<<set $active = "yes">>
<<timed 2.0s>><<draw>><</timed>>
<</if>>
\
<</link>>
</div>\
</div>\You don't transform back when the night is over.
Why would you? The days last longer here and the sun barely dips below the featureless grey hills on the horizon. You've made your move, revealing yourself to the world the way //you// want to. An ultimate power play because here, you are untouchable.
The whole base has been converted now. Some by you, some have been bitten by others. Wolves that are eager to serve their and delirious with power. Compared to the weak human body, being a werewolf is deeply satisfying. Whilst the transformation is permanent on the moon, that orgasmic high doesn't seem to end. You've worked your way to this moment only to ruin all prospects of redemption. Pirating all of NASAs tech for your own goal means the future looks bright.
The first permanent colony on the moon. Not humans, but <span class="glitch" data-text="werewolves">werewolves</span>.
<center><<if $trophy.moonA == 1>><<else>><<set $trophy.moonA = 1>>Trophy Unlocked: ''Feral Moon''<</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center><center><<link "ᴇxɪᴛ">><<script>>window.close()<</script>><</link>></center>
You don't transform back when the night is over.
The days last longer here and the sun barely dips below the featureless grey hills on the horizon. It's a strange existence. Here on the moon, the rules seem different. Although trapped within the highly-controlled environmental dome of Shackleton Outpost, you feel oddly free outside the jurisdiction of Earth.
Which is why you made you move. Triggering a public leak yourself, albeit with the relay of images and videos you want the world to see. Snapshots of you helping around the base, adorable media that portrays you as man's best friend. Not a monster but a valued member of the moon base. For once in your life, the bonus strength and physical prowess gives you the advantage. Maybe this isn't a curse afterall? NASA doesn't even try to cover it up. How could they, now the word is out?
You're worked your way to the top. And now here you are, using your small voice on a remote rock in space to make your case. Werewolves are people too.
<center><<if $trophy.moonB == 1>><<else>><<set $trophy.moonB = 1>>Trophy Unlocked: ''Wolf Leader''<</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center><center><<link "ᴇxɪᴛ">><<script>>window.close()<</script>><</link>></center>NASA makes the public release and the feedback is surprising. Sure, all types of images begin to leak — but they're all positive. You're not a monster anymore. Though what you've become may be considered something worse. An //asset//.
You translate that to //friend// because that is a much nicer thought. Continued medical tests have proven that your permanent mutation makes you unaffected by low gravity and a high-protein diet. It's almost like being a werewolf means you're adapted to the lunar environment. So much so that NASA wants you to stay for a full six-month duration. The longest anyone has ever stayed on the moon. Better yet, they're openly calling for more werewolf applicants. It's hard to believe so much can change in so little time.
You're worked your way to the top. And now here you are, proving to the world that werewolves are people too.
<center><<if $trophy.moonC == 1>><<else>><<set $trophy.moonC = 1>>Trophy Unlocked: ''NASA Wolf''<</if>></center>
<center>[[ᴘʟᴀʏ ᴀɢᴀɪɴ|start]]</center><center><<link "ᴇxɪᴛ">><<script>>window.close()<</script>><</link>></center>You can only hide in the cabin for so long. Claim that you're ill, make something up about diarrhoea…anything! But the excuses can only last so long. You're cramped. Hungry. You'll have to reveal soon and-gah! The moon base wasn't designed for a seven-foot tall, furry monster like you. Your clothes don't fit and besides, no disguise could hide your thick pelt, sharp fangs, and your //huge// cock and balls.
But you have to come out eventually. First to the captain, and then the crew. Werewolves are ''real''. Under the barrage of questions, you try to control the frustration and fear you're feeling. Yes! //Normally//, you can control this! //No!// GAH! It's never happened like this before!
You're on the moon. There's no way they can just send you back. You're expecting to be captured, quarantined, or even //vented//. Nothing should threaten the mission after all. And yet, you've earnt a level of respect. You're a hardworking NASA intern who worked up the ranks, joining the astronaut training team and eventually being chosen. Each member of the crew knows you. They might not understand, but they trust you. Even as a big, hairy werewolf.
<center>[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_draw]]</center> <!-- set trophies -->\
<<if $firstplay == 1>>
<<set $playthroughs +=1>>\
<!-- keep trophies-->\
<<else>>
<<set $playthroughs = 1>>\
<<set $firstplay = 1>>
<!-- set trophies to empty-->\
<<set $trophy = {
too_much_heat: 0,
too_much_rage: 0,
too_much_exposure: 0,
events_transpire: 0,
a_real_wolf: 0,
a_real_ranger: 0,
moon1: 0,
moon2: 0,
moon3: 0,
}>>
<</if>>
<!-- set traits -->\
<<set $trait = {
name: "Dave",
position: "Works in IT",
alignment: "Neutral",
}>>
<!-- set values -->\
<<set $value = {
rage: 10,
heat: 10,
intelligence: 20,
exposure: 0,
}>>
<!-- set branches -->\
<<set $branchA = 0>>
<<set $branchB = 0>>
<<set $branchC = 0>>
<!-- set new deck-->\
<<set $deck_wood = ["d_wood_1", "d_wood_2", "d_wood_3", "d_wood_4", "d_wood_5", "d_wood_6","d_wood_7",]>>\
<<set $deck = $deck_wood>>\
<<set $moon = "_moon_wood">>\
<<set $branchA = 0>>\
<<set $next = 1>>
\
<!-- print text-->\
The full moon rises in the sky overhead…
<<set $activities to ["chewing on a bone", "chasing your tail", "asleep on the sofa", "impulse buying collars online", "playing with a ball",]>>
When the werewolf transformation starts, you're in a good state of mind. You've controlled your cravings and hidden unusual perks, keeping your curse a secret. The changes happen peacefully in your home and you spend the night <<print either($activities)>>. You wake up human the next morning and life goes on as normal.
[[𝗖𝗢𝗡𝗧𝗜𝗡𝗨𝗘|_deckchange]]
【 Werewolf. 】
A card-based strategy game
Content Warning: Werewolves
NSFW
Developed by Zen~ : v1.5
ᴛʀᴏᴘʜɪᴇꜱ
ʀᴇꜱᴇᴛ ɢᴀᴍᴇ