gameState.player.cash = 999999; updateDisplay(); [ Gives player $999,999 cash ]
gameState.player.currentEnergy = 50; gameState.player.endurance = 50; updateDisplay(); [ Sets Max Energy and Current Energy to 50 ]
gameState.player.sexskill = 10; updateDisplay(); [ Sets Sexual Skill to Max Level (10) ]
gameState.roommate.lust = 100; updateDisplay(); [ Sets Roommate's Lust to 100 (Max) ]
gameState.roommate.corruption = 100; updateDisplay(); [ Sets Roommate's Corruption to 100 ]
gameState.roommate.relationship = 100; updateDisplay(); [ Sets Roommate's Relationship to 100 ]
gameState.roommate.ovulation = "risky day"; updateDisplay(); [ Sets Roommate's cycle to Risky Day (High pregnancy chance) ]
gameState.landlady.lust = 100; updateDisplay(); [ Sets Landlady's Lust to 100 (Max) ]
gameState.landlady.corruption = 100; updateDisplay(); [ Sets Landlady's Corruption to 100 ]
gameState.landlady.relationship = 100; updateDisplay(); [ Sets Landlady's Relationship to 100 ]
gameState.landlady.ovulation = "risky day"; updateDisplay(); [ Sets Landlady's cycle to Risky Day (High pregnancy chance) ]
gameState.landlord.trust = 900; updateDisplay(); [ Sets Landlord's Trust to 900 (Prevents getting caught/Game Over) ]
gameState.player.inventory.push('playing-pills', 'aphrodisiak', 'porn-magazine', 'dvd-porn'); updateDisplay(); [ Adds useful items to inventory (Pills, Aphrodisiac, etc.) ]
gameState.time.hour = 21; updateDisplay(); [ Sets time to 21:00 (Just before sleep/night events) ]