Skip to content

Commit

Permalink
Remove Duplicate Notaton
Browse files Browse the repository at this point in the history
  • Loading branch information
alxjrvs committed Dec 4, 2024
1 parent e8befdb commit 2e0e0ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 514 deletions.
8 changes: 4 additions & 4 deletions RANDSUM_DICE_NOTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Note: When using custom sides with Randsum Dice Notation, we can only mark sides
- for example, given the custom faces argument `[6, 5, 4, 3, 2, 1]`, `1` would be considered the "highest" number, and `6` the "lowest`, which would be silly!
- In light of this, modifiers are ignored (if provided in JS) or rejected (in TS) when providing custom sides.

### Plus
### add

---

Expand All @@ -118,11 +118,11 @@ roll('6d20+5')
roll({
sides: 20,
quantity: 6,
modifiers: { plus: 5 }
modifiers: { add: 5 }
})
```

### Minus
### subtract

**Key: `-`**

Expand All @@ -143,7 +143,7 @@ roll('6d20-5')
roll({
sides: 20,
quantity: 6,
modifiers: { minus: 5 }
modifiers: { subtract: 5 }
})
```

Expand Down
Loading

0 comments on commit 2e0e0ee

Please sign in to comment.