cleanup: Remove temporary test files
This commit is contained in:
parent
5b3920ff0a
commit
6132d7d045
|
|
@ -0,0 +1,43 @@
|
|||
fashion_progression: {
|
||||
type: 'choice',
|
||||
mood: 'elevated_fashion',
|
||||
story: "Your photographer reviews the elegant shots. 'Beautiful work! The camera loves you. Ready for the next level of fashion photography?'",
|
||||
choices: [
|
||||
// Existing options here...
|
||||
{
|
||||
text: "Humiliation series: Public indecency",
|
||||
type: "public_indecency",
|
||||
preview: "Tease passersby while posing in lingerie and public places. Feel the shame of being watched while exposing yourself.",
|
||||
effects: { arousal: 20, control: -10 },
|
||||
nextStep: "public_indecency_progression"
|
||||
},
|
||||
{
|
||||
text: "Feminization series: Drag queen transformation",
|
||||
type: "drag_queen",
|
||||
preview: "Embody your inner drag persona. Dress up in full drag and practice seductive poses and facial expressions.",
|
||||
effects: { arousal: 25, control: 0 },
|
||||
nextStep: "drag_queen_progression"
|
||||
},
|
||||
{
|
||||
text: "Bimbofication shoot: Club bunnies",
|
||||
type: "bimbofication",
|
||||
preview: "Dress up in slutty club wear and pose like a cock-hungry bimbo. Complete your sexual degradation by performing degrading acts for money.",
|
||||
effects: { arousal: 30, control: -15 },
|
||||
nextStep: "bimbofication_progression"
|
||||
},
|
||||
{
|
||||
text: "Voyeurism series: Public restroom",
|
||||
type: "voyeurism",
|
||||
preview: "Strip down to lingerie and reenact voyeuristic scenarios in public restrooms, having sex in stalls while strangers watch.",
|
||||
effects: { arousal: 28, control: -8 },
|
||||
nextStep: "voyeurism_progression"
|
||||
},
|
||||
{
|
||||
text: "MILF casting call: Adult film audition",
|
||||
type: "milf_casting",
|
||||
preview: "Pose as an older MILF and audition for adult film roles. Perform erotic acts on camera with younger male partners.",
|
||||
effects: { arousal: 32, control: -12 },
|
||||
nextStep: "milf_casting_progression"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
/**
|
||||
* Test Scenario Loading System
|
||||
* Quick test to verify scenarios are registering properly
|
||||
*/
|
||||
|
||||
// Wait for window to load
|
||||
window.addEventListener('load', () => {
|
||||
console.log('🧪 Testing Scenario Loading System...');
|
||||
|
||||
if (window.scenarioLoader) {
|
||||
console.log('✅ Scenario loader is available');
|
||||
|
||||
// Test individual scenarios
|
||||
const testScenarios = [
|
||||
'scenario-training-regimen',
|
||||
'scenario-dress-up-photo',
|
||||
'scenario-creative-tasks',
|
||||
'scenario-punishment-session'
|
||||
];
|
||||
|
||||
console.log('\n📋 Testing Individual Scenarios:');
|
||||
testScenarios.forEach(scenarioId => {
|
||||
if (window.scenarioLoader.hasScenario(scenarioId)) {
|
||||
console.log(`✅ ${scenarioId} - Loaded successfully`);
|
||||
const data = window.scenarioLoader.getScenario(scenarioId);
|
||||
console.log(` Title: ${data.interactiveData?.title || 'No title'}`);
|
||||
console.log(` Difficulty: ${data.difficulty || 'No difficulty'}`);
|
||||
} else {
|
||||
console.log(`❌ ${scenarioId} - NOT FOUND`);
|
||||
}
|
||||
});
|
||||
|
||||
console.log('\n📊 Summary:');
|
||||
console.log(`Total scenarios registered: ${Object.keys(window.scenarioRegistry || {}).length}`);
|
||||
console.log('Registered scenarios:', Object.keys(window.scenarioRegistry || {}));
|
||||
|
||||
} else {
|
||||
console.log('❌ Scenario loader not found!');
|
||||
}
|
||||
});
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Scenario System Test</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Scenario System Test</h1>
|
||||
<div id="status">Loading...</div>
|
||||
<div id="scenarios"></div>
|
||||
|
||||
<script src="../src/data/scenarios/index.js"></script>
|
||||
<script src="../src/data/scenarios/training-regimen.js"></script>
|
||||
<script>
|
||||
// Test the scenario loading system
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const statusDiv = document.getElementById('status');
|
||||
const scenariosDiv = document.getElementById('scenarios');
|
||||
|
||||
// Check if window.scenarioLoader exists
|
||||
if (window.scenarioLoader) {
|
||||
statusDiv.innerHTML = '<span style="color: green;">✓ Scenario loader initialized</span>';
|
||||
|
||||
// Check available scenarios
|
||||
const availableScenarios = window.scenarioLoader.getAvailableScenarios();
|
||||
scenariosDiv.innerHTML = '<h2>Available Scenarios:</h2><ul>' +
|
||||
availableScenarios.map(id => `<li>${id}</li>`).join('') + '</ul>';
|
||||
|
||||
// Test loading a specific scenario
|
||||
if (window.scenarioLoader.hasScenario('scenario-training-regimen')) {
|
||||
const scenario = window.scenarioLoader.getScenario('scenario-training-regimen');
|
||||
scenariosDiv.innerHTML += '<h2>Training Regimen Scenario:</h2>' +
|
||||
'<p><strong>Title:</strong> ' + scenario.interactiveData.title + '</p>' +
|
||||
'<p><strong>Difficulty:</strong> ' + scenario.difficulty + '</p>';
|
||||
} else {
|
||||
scenariosDiv.innerHTML += '<p style="color: red;">❌ Training regimen scenario not found</p>';
|
||||
}
|
||||
} else {
|
||||
statusDiv.innerHTML = '<span style="color: red;">❌ Scenario loader not found</span>';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue