Removed Adult Mode
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<script>
|
||||
<!-- <script>
|
||||
export let checked = false;
|
||||
</script>
|
||||
|
||||
@@ -55,4 +55,4 @@
|
||||
.toggle-switch.active .toggle-slider {
|
||||
transform: translateX(26px);
|
||||
}
|
||||
</style>
|
||||
</style> -->
|
||||
@@ -6,9 +6,8 @@ const xAxes = [
|
||||
{ values: ["Minimal", "Maximal"], adult: false },
|
||||
|
||||
// Adult axes
|
||||
{ values: ["Beer", "Cocktails"], adult: true },
|
||||
{ values: ["Swipe-happy", "Selective"], adult: true },
|
||||
{ values: ["Casual", "Serious"], adult: true },
|
||||
{ values: ["Beer", "Cocktails"], adult: false },
|
||||
{ values: ["Casual", "Serious"], adult: false },
|
||||
|
||||
// Add more X axes here...
|
||||
// Format: { values: ["Left extreme", "Right extreme"], adult: true/false }
|
||||
|
||||
@@ -6,9 +6,9 @@ const yAxes = [
|
||||
{ values: ["Solo", "Group"], adult: false },
|
||||
|
||||
// Adult axes
|
||||
{ values: ["Occasional", "Frequent"], adult: true },
|
||||
{ values: ["Hookups", "Relationships"], adult: true },
|
||||
{ values: ["Private", "Public"], adult: true },
|
||||
{ values: ["Occasional", "Frequent"], adult: false },
|
||||
{ values: ["Hookups", "Relationships"], adult: false },
|
||||
{ values: ["Private", "Public"], adult: false },
|
||||
|
||||
// Add more Y axes here...
|
||||
// Format: { values: ["Bottom extreme", "Top extreme"], adult: true/false }
|
||||
|
||||
@@ -46,15 +46,10 @@
|
||||
</div>
|
||||
|
||||
<div class="window-body">
|
||||
<fieldset>
|
||||
<legend>Theme Selector</legend>
|
||||
<ThemeSelector bind:currentTheme={$theme} />
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<!-- <fieldset>
|
||||
<legend>Adult Mode (18+)</legend>
|
||||
<Toggle bind:checked={adultMode} />
|
||||
</fieldset>
|
||||
</fieldset> -->
|
||||
|
||||
<fieldset>
|
||||
<legend>Chart Generator</legend>
|
||||
@@ -71,6 +66,11 @@
|
||||
<button on:click={rollDice}>Roll Dice</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Theme Selector</legend>
|
||||
<ThemeSelector bind:currentTheme={$theme} />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -24,16 +24,6 @@
|
||||
|
||||
<div class="rules-content">
|
||||
<h1>How to Play</h1>
|
||||
|
||||
<section>
|
||||
<h2>🎲 Setup</h2>
|
||||
<ol>
|
||||
<li>Gather 2+ players</li>
|
||||
<li>Each player needs paper and something to write with</li>
|
||||
<li>Choose a theme (optional but fun!)</li>
|
||||
<li>Decide if you want Adult Mode enabled (18+)</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>📊 Basic Gameplay</h2>
|
||||
@@ -46,25 +36,6 @@
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>🎮 Game Variants</h2>
|
||||
|
||||
<h3>Classic Mode</h3>
|
||||
<p>Players honestly plot their positions and discuss their reasoning. Great for getting to know each other!</p>
|
||||
|
||||
<h3>Dice Challenge</h3>
|
||||
<p>Click "Roll Dice" to get random coordinates (X and Y). Players must defend that position as if it were their true preference. First player to convince the group wins that round!</p>
|
||||
|
||||
<h3>Prediction Mode</h3>
|
||||
<p>Before revealing, each player predicts where another player will land. Earn points for accurate predictions!</p>
|
||||
|
||||
<h3>Debate Mode</h3>
|
||||
<p>Players on opposite extremes of a spectrum engage in a friendly debate. The group votes on the most convincing argument.</p>
|
||||
|
||||
<h3>Speed Round</h3>
|
||||
<p>Generate 5 spectrums. Players have only 10 seconds to plot each position. Quick thinking required!</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>📏 Understanding the Scale</h2>
|
||||
<p>Each axis uses a 1-10 scale:</p>
|
||||
@@ -75,42 +46,18 @@
|
||||
<li><strong>7-8:</strong> Prefer right/top, but not extremely</li>
|
||||
<li><strong>9-10:</strong> Strongly aligned with right/top option</li>
|
||||
</ul>
|
||||
<p><em>Note: You can land anywhere on the spectrum, including exactly in the middle!</em></p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>🏆 Scoring (Optional)</h2>
|
||||
<p>Want to make it competitive? Try these scoring systems:</p>
|
||||
<ul>
|
||||
<li><strong>Uniqueness Points:</strong> Award 1 point to the player whose position is most different from others</li>
|
||||
<li><strong>Prediction Points:</strong> 3 points for exact predictions, 1 point for being within 2 units on both axes</li>
|
||||
<li><strong>Debate Points:</strong> Winner of each debate gets 2 points</li>
|
||||
<li><strong>Dice Challenge:</strong> 3 points for successfully defending a random position</li>
|
||||
</ul>
|
||||
<p>First to 15 points wins!</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>🔞 Adult Mode</h2>
|
||||
<p>Toggle Adult Mode to include spectrums about:</p>
|
||||
<ul>
|
||||
<li>Relationships and dating</li>
|
||||
<li>Social drinking and nightlife</li>
|
||||
<li>Personal boundaries</li>
|
||||
<li>Other mature topics</li>
|
||||
</ul>
|
||||
<p><strong>Adult Mode is intended for players 18+ only.</strong> Make sure everyone is comfortable before enabling it.</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>💡 Pro Tips</h2>
|
||||
<ul>
|
||||
<li><strong>Be honest:</strong> The game is most fun when people share their real preferences</li>
|
||||
<li><strong>Ask questions:</strong> Don't just see where people land—ask them why!</li>
|
||||
<li><strong>No judgment:</strong> Remember, these are preferences, not right or wrong answers</li>
|
||||
<li><strong>Embrace extremes:</strong> Landing at 1 or 10 often leads to the best discussions</li>
|
||||
<li><strong>Change your mind:</strong> It's okay to revise your position after hearing others' perspectives</li>
|
||||
<li><strong>Keep it light:</strong> Even in debate mode, keep things fun and friendly</li>
|
||||
<li><strong>5 Points:</strong> On the Spectrum!</li>
|
||||
<li><strong>4 Points:</strong> 1 away</li>
|
||||
<li><strong>3 Points:</strong> 2 away</li>
|
||||
<li><strong>2 Points:</strong> 3 away</li>
|
||||
<li><strong>1 Points:</strong> 4 away</li>
|
||||
<li><strong>0 Points:</strong> 5+ away</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user