Skip to content

Commit

Permalink
Create trash.rpy
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilson-Smith authored Dec 17, 2022
1 parent 301981c commit f49a598
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions New-Stuff-to-Monika/game/Submods/dialogues/trash.rpy
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

init 5 python:
addEvent(
Event(
persistent.event_database,
eventlabel="monika_example", # event label (MUST BE UNIQUE)
category=["example", "topic"], # list of categories this topic belongs in (These are automatically capitalized)
prompt="Example Topic", # button text
random=True, # True if this topic should appear randomly
pool=True # True if this topic should appear in "Ask a Question"
)
)

label monika_example:
m 1esa "This is an example topic."
m 1sub "I feel like this doesn't actually belong here..."
m 6ltp "Why would somebody just add the example template directly into the mod?"
m 5ruu "They really shouldn't be allowed to contribute to this repository anymore."
return

init 5 python:
addEvent(
Event(
persistent.event_database,
eventlabel="monika_example_based", # event label (MUST BE UNIQUE)
category=["example", "topic"], # list of categories this topic belongs in (These are automatically capitalized)
prompt="Example Topic Based", # button text
random=True, # True if this topic should appear randomly
pool=True # True if this topic should appear in "Ask a Question"
)
)

label monika_example_based:
m 1a "."
m 3d ".."
m 2e "..."
m 5r "...."
return

0 comments on commit f49a598

Please sign in to comment.