Skip to content

Commit 7b2d000

Browse files
committed
body examples
added short examples for what each body part is meant to do
1 parent 55e0880 commit 7b2d000

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

game/assets/prompts/reminder.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,10 @@
2020
"role": "assistant",
2121
"content": "[CONTENT] We're alone now. [END]"
2222
}
23-
]
23+
],
24+
"bodies": {
25+
"explain": " (used when {{char}} is explaining something)",
26+
"relaxed": " ({{char}}'s default body position)",
27+
"excited": " (used when {{char}} is excited)"
28+
}
2429
}

game/options.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ define gui.show_name = False
1212

1313

1414

15-
define config.version = "1.1.1-demo"
15+
define config.version = "1.1.2-demo"
1616

1717

1818

game/utils/data.rpy

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,14 @@ init python:
9898
name = name.title()
9999
raw_bodies = [b for b in self.characters[name]["left"]] + [b for b in self.characters[name]["right"]]
100100
bodies = []
101+
body_examples = []
101102
for part in raw_bodies:
102103
if part not in bodies:
104+
example = Info().getReminder["bodies"][part].replace("{{char}}", name)
103105
bodies.append(part)
106+
body_examples.append(part + example)
104107

105-
string = " and ".join(bodies)
108+
string = " and ".join(body_examples)
106109
return string
107110

108111

0 commit comments

Comments
 (0)