Closed Elerenard closed 1 month ago
This pull request implements several new features and improvements to the game, including new story content, character interactions, and bug fixes. The changes span multiple files and introduce new gameplay elements and dialogue options.
classDiagram
class Dictionary {
- _content: dict
+ content: dict
+ add_item(key: str, description: str)
}
note for Dictionary "The content property now returns a sorted dictionary, ensuring 'ch' is after 'h' and ignoring case."
classDiagram
class Person {
+ name: str
+ name_2p: str
+ name_4p: str
+ name_5p: str
+ name_7p: str
+ color: str
+ gender: str
+ duvera: bool
+ onenight: bool
}
note for Person "New attributes 'duvera' and 'onenight' added to the Person class."
Change | Details | Files |
---|---|---|
Added new story content for Act 8 |
|
game/story/akt8.rpy |
Updated dictionary functionality and content |
|
game/dictionary/dictionary_ren.py game/dictionary/screen.rpy |
Improved character definitions and attributes |
|
game/the_definitions.rpy |
Fixed typos and minor issues in existing story content |
|
game/story/akt6.rpy game/story/akt1.rpy game/story/tokio1_hotel_part2.rpy game/story/akt7.rpy |
Updated main script to include new story acts |
|
game/script.rpy |
Implemented initial structure for Act 9 |
|
game/story/akt9.rpy |
Summary by Sourcery
Add a new chapter to the story, enhance the Dictionary class with sorted entries, and fix a typo in a scene label.
New Features:
Bug Fixes:
Enhancements: