-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3825213
commit 9ffeab1
Showing
14 changed files
with
66 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
monkestation/code/modules/storytellers/converted_events/solo/clockwork_cult.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
monkestation/code/modules/storytellers/converted_events/solo/clown_operative.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...station/code/modules/storytellers/converted_events/solo/ghosts/nuclear_operative_ghost.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
monkestation/code/modules/storytellers/converted_events/solo/ghosts/wizard.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
monkestation/code/modules/storytellers/converted_events/solo/nuclear_operative.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
monkestation/code/modules/storytellers/converted_events/solo/wizard.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
monkestation/code/modules/storytellers/storytellers/hermit.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/datum/storyteller/hermit | ||
name = "The Hermit" | ||
desc = "The Hermit will create mostly internal conflict around the station, and rarely any external threats." | ||
event_repetition_multiplier = 0.7 //Hermit has a smaller event pool, let it repeat a bit more | ||
point_gains_multipliers = list( | ||
EVENT_TRACK_MUNDANE = 1.2, | ||
EVENT_TRACK_MODERATE = 1.1, | ||
EVENT_TRACK_MAJOR = 0.9, | ||
EVENT_TRACK_ROLESET = 0.9, | ||
EVENT_TRACK_OBJECTIVES = 1 | ||
) | ||
tag_multipliers = list(TAG_EXTERNAL = 0.3) |
11 changes: 11 additions & 0 deletions
11
monkestation/code/modules/storytellers/storytellers/nobleman.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/datum/storyteller/nobleman | ||
name = "The Nobleman" | ||
desc = "The Nobleman enjoys a good fight but abhors senseless destruction. Prefers heavy hits on single targets." | ||
point_gains_multipliers = list( | ||
EVENT_TRACK_MUNDANE = 1, | ||
EVENT_TRACK_MODERATE = 1.2, | ||
EVENT_TRACK_MAJOR = 1.15, | ||
EVENT_TRACK_ROLESET = 1, | ||
EVENT_TRACK_OBJECTIVES = 1 | ||
) | ||
tag_multipliers = list(TAG_COMBAT = 1.4, TAG_DESTRUCTIVE = 0.4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters