Skip to content

Commit

Permalink
Merge pull request #9271 from Booplicate/NoU
Browse files Browse the repository at this point in the history
NOU EnHaNcEmEnT
  • Loading branch information
ThePotatoGuy committed Jul 17, 2022
2 parents ac6bb6f + 757c784 commit 7b9c0d3
Show file tree
Hide file tree
Showing 19 changed files with 2,385 additions and 1,637 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4,005 changes: 2,368 additions & 1,637 deletions Monika After Story/game/zz_cardgames.rpy

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions Monika After Story/game/zz_dump.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,23 @@ init 999 python:
)
)

if mas_isGameUnlocked("NOU"):
_total_nou_games = float(store.mas_nou.get_total_games())
_var_data_file.write(
"NOU GAMES: {:.0f}\nMONIKA W/R: {:.1%}\nPLAYER W/R: {:.1%}\n\n".format(
_total_nou_games,
(
store.mas_nou.get_wins_for("Monika")/_total_nou_games
if _total_nou_games != 0 else "N/A"
),
(
store.mas_nou.get_wins_for("Player")/_total_nou_games
if _total_nou_games != 0 else "N/A"
)
)
)
del _total_nou_games

# add data lines here
#Consumables stuff
for consumable_id in persistent._mas_consumable_map.keys():
Expand Down

0 comments on commit 7b9c0d3

Please sign in to comment.