Skip to content

Commit

Permalink
Revert "Add exploding dice to WoD"
Browse files Browse the repository at this point in the history
This reverts commit 0a0f500.

Exploding dice is not available in 4th edition. This was a mistake
  • Loading branch information
Humblemonk committed Feb 3, 2025
1 parent 0a0f500 commit a64293e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dice_maiden.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dice bot for Discord
# Author: Humblemonk
# Version: 9.2.0
# Version: 9.1.0
# Copyright (c) 2017. All rights reserved.
# !/usr/bin/ruby
# If you wish to run a single instance of this bot, please follow the "Manual Install" section of the readme!
Expand Down
4 changes: 0 additions & 4 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
## 9.2.0 - 01/14/2025
### Added
- Updated WoD command to support exploding dice

## 9.1.0 - 08-17-2024
### Added
- Exalted alias
Expand Down
2 changes: 1 addition & 1 deletion src/dice_maiden_logic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def alias_input_pass(input)
[/\b\d+dF\b/i, 'Fudge', /\b(\d+)dF\b/i, '\\1d3 f1 t3'], # Fate fudge dice
[/\bSNM\d+\b/i, 'Sunsails', /\bSNM(\d+)\b/i, '\\1d6 ie6 t4'], # Sunsails: New Milennium; Fourth Edition
[/\b\d+wh\d+\+/i, 'Warhammer', /\b(\d+)wh(\d+)\+/i, '\\1d6 t\\2'], # Warhammer (AoS/40k)
[/\b\d+WoD\d+\b/i, 'WoD', /\b(\d+)WoD(\d+)\b/i, '\\1d10 f1 ie10 t\\2'], # World of Darkness 4th edition
[/\b\d+WoD\d+\b/i, 'WoD', /\b(\d+)WoD(\d+)\b/i, '\\1d10 f1 t\\2'], # World of Darkness 4th edition (note: explosions are left off for now)
[/\bdd\d\d\b/i, 'Double Digit', /\bdd(\d)(\d)\b/i, '(1d\\1 * 10) + 1d\\2'], # Rolling one dice for each digit
[/\bage\b/i, 'AGE System Test', /\b(age)\b/i, '2d6 + 1d6'], # 2d6 plus one drama/dragon/stunt die
[/\B\+d\d+\b/i, 'Advantage', /\B\+d(\d+)\b/i, '2d\\1 d1'], # Roll two dice of the specified size and keep the highest
Expand Down

0 comments on commit a64293e

Please sign in to comment.