Added new plan

This commit is contained in:
2026-05-30 14:38:55 +03:00
parent d53ca8e56b
commit a7a61bd60e
2 changed files with 78 additions and 9 deletions
+6 -5
View File
@@ -116,7 +116,7 @@ On loss:
The player chooses how they level up but is not locked into one path. **XP is a single shared pool** — every commission, mission, and stream feeds the same number. The player decides which path's attribute pool to spend it on. Given enough XP, every attribute on every path can be upgraded; there is no requirement to earn "Slut XP" before buying a Slut-path upgrade.
### 5.1 Slut
- **Unlocks:** revealing clothing (mini skirts, high heels, lingerie variants), masturbation action, masturbation-related missions.
- **Unlocks:** revealing clothing (mini skirts, high heels, lingerie variants), **public masturbation** (masturbating during a session, outside the apartment), masturbation-related missions. *Home masturbation is always available to every player regardless of path — see §7.2.*
- **Attribute access:** lust-related attributes (max lust, lust gain rate modifiers, masturbation energy efficiency).
- **Playstyle:** pushes lust as a resource. Risks blackout effects (§7.2).
@@ -321,7 +321,7 @@ Food items live in the `UItemInstance` system (§6.1). They come from two source
**Instant effects** (one-shot on consumption, no timer, per-food authored):
- **Energy restore** — adds a fixed amount of current energy (§7.3), clamped to the (just-restored) effective max.
- **Lust decrease** — subtracts a fixed amount of lust. Particularly relevant for non-Slut players who cannot masturbate to reset lust (§7.2).
- **Lust decrease** — subtracts a fixed amount of lust. Particularly relevant for non-Slut players who cannot masturbate to reset lust *during a session* (§7.2).
**Timed buffs** (run for a per-item duration):
- **Stamina regen +** — raises `staminaRecoveryRate` above baseline (§7.4). The original ramen example.
@@ -368,7 +368,7 @@ All attributes update in real time. Indoor and outdoor behavior is identical —
- Blurred peripheral vision.
- Player cannot tell whether NPCs are calling police or taking photos.
- No indicator of which NPCs noticed them.
- Reset by **masturbating** (consumes more energy than usual, modified by `energyDrainMasturbateModifier`). Masturbation is a Slut-path unlock (§5.1) players who haven't taken that path cannot reset lust within a session and must accept the max-lust handicaps above until they go home and masturbate in home before sleep.
- Reset by **masturbating** (consumes more energy than usual, modified by `energyDrainMasturbateModifier`). **Home masturbation — performed in the apartment — is always available to every player, regardless of path.** Masturbating *during a session* (outside the apartment) is a Slut-path unlock (§5.1); players who haven't taken that path cannot reset lust mid-session and must accept the max-lust handicaps above until they return home, where masturbation is always available.
### 7.3 Energy
- Drained by all activity. Base rate plus modifiers:
@@ -736,7 +736,7 @@ Typed objective steps (initial set):
- `BeFullyNakedNearNPCs(count, durationSeconds)`
- `WalkNakedDistance(meters)`
- `MoveDistanceFromClothing(meters)`
- `PerformAction(actionId)` (e.g., masturbate) — actions with path gating are only used in templates whose `pathRequirement` matches; generator filter enforces this.
- `PerformAction(actionId)` (e.g., masturbate) — actions with path gating are only used in templates whose `pathRequirement` matches; generator filter enforces this. (Commission masturbation objectives are public / in-session, so they require the Slut path; the always-available home masturbation is never a commission objective.)
- `BeObservedByNPCType(type, durationOrCount)`
- `TakePhotoAtLocation(locationTag)`
- `DeliverItemTo(npcOrLocation)` — the player must **source the item from their own inventory**. The commission does not auto-issue items on accept. Worn-underwear sales (§15.1) are the canonical use case. "Deliver this pre-issued package to X" is intentionally not supported by this primitive — if that flavor is needed later, add a separate `DeliverIssuedItemTo` step rather than overloading this one.
@@ -771,7 +771,7 @@ Radial or hotbar accessible mid-session. Actions:
- Expose body part (per garment with `canExpose`).
- Open phone.
- Drop bag / pick up bag.
- Masturbate (Slut-path unlock, §5.1 — entry hidden until unlocked).
- Masturbate. Always available at the apartment (home). During a session (outside the apartment) it is a Slut-path unlock (§5.1) the in-session entry is hidden until unlocked.
- Crouch / stand.
- Open emote wheel (§14.5).
@@ -974,6 +974,7 @@ Decisions previously open, now fixed:
22. **Restraint-removal unlock minigame.** DBD-style skill-check minigame (rotating pointer + target zone). Successful hits **speed up** the removal. Missed checks have **no penalty** — they just don't grant the speed bonus. The restraint always comes off when the baseline timer expires. No noise alerts, no key loss, no fail state. See §10.4.1.
23. **Commission rewards land on completion, not on return home.** Money wires to the bank instantly, XP credits to the shared pool, followers update on the profile. No "collect rewards" step at the apartment. See §13.1 / §13.2 / §4.3 / §3.1.
24. **Hunger via max-energy decay.** Effective max energy decays over time (a hunger rate); eating any food restores effective max to base max as a built-in universal effect (no per-food authoring). Sleep restores current energy but does NOT reset hunger — only eating does. Floors at a TBD fraction of base max so the player can't be starved into a forced game-over. See §7.3 / §6.7.
25. **Masturbation gating — home vs. public.** Home masturbation (in the apartment) is **always available to every player, regardless of path**. Masturbating *during a session* (outside the apartment) is a **Slut-path unlock** (§5.1). The §14.1 quick-action shows the masturbate entry unconditionally at home; in-session it is hidden until the player has Slut-path investment. Non-Slut players therefore cannot reset lust mid-session and rely on lust-decrease food (§6.7) or returning home. Commission `PerformAction(masturbate)` objectives are public and thus Slut-gated by the generator (§13.4). Resolves the prior §5.1 ↔ §7.2 contradiction. See §7.2 / §5.1 / §14.1.
## 21. Open Design Questions