summaryrefslogtreecommitdiff
path: root/dice-lang/src/bjc/dicelang/v1/PolyhedralDice.java
diff options
context:
space:
mode:
Diffstat (limited to 'dice-lang/src/bjc/dicelang/v1/PolyhedralDice.java')
-rw-r--r--dice-lang/src/bjc/dicelang/v1/PolyhedralDice.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/dice-lang/src/bjc/dicelang/v1/PolyhedralDice.java b/dice-lang/src/bjc/dicelang/v1/PolyhedralDice.java
index e20a12a..402de18 100644
--- a/dice-lang/src/bjc/dicelang/v1/PolyhedralDice.java
+++ b/dice-lang/src/bjc/dicelang/v1/PolyhedralDice.java
@@ -2,14 +2,14 @@ package bjc.dicelang.v1;
/**
* Utility class that produces common polyhedral dice
- *
+ *
* @author ben
*
*/
public class PolyhedralDice {
/**
* Produce a single d10
- *
+ *
* @return A single d10
*/
public static IDiceExpression d10() {
@@ -18,7 +18,7 @@ public class PolyhedralDice {
/**
* Produce the specified number of 10-sided dice
- *
+ *
* @param nDice
* The number of ten-sided dice to produce
* @return A group of ten-sided dice of the specified size
@@ -29,7 +29,7 @@ public class PolyhedralDice {
/**
* Produce a single d100
- *
+ *
* @return A single d100
*/
public static IDiceExpression d100() {
@@ -38,7 +38,7 @@ public class PolyhedralDice {
/**
* Produce the specified number of 100-sided dice
- *
+ *
* @param nDice
* The number of hundred-sided dice to produce
* @return A group of hundred-sided dice of the specified size
@@ -49,7 +49,7 @@ public class PolyhedralDice {
/**
* Produce a single d12
- *
+ *
* @return A single d12
*/
public static IDiceExpression d12() {
@@ -58,7 +58,7 @@ public class PolyhedralDice {
/**
* Produce the specified number of 12-sided dice
- *
+ *
* @param nDice
* The number of twelve-sided dice to produce
* @return A group of twelve-sided dice of the specified size
@@ -69,7 +69,7 @@ public class PolyhedralDice {
/**
* Produce a single d20
- *
+ *
* @return A single d20
*/
public static IDiceExpression d20() {
@@ -78,7 +78,7 @@ public class PolyhedralDice {
/**
* Produce the specified number of 20-sided dice
- *
+ *
* @param nDice
* The number of twenty-sided dice to produce
* @return A group of twenty-sided dice of the specified size
@@ -89,7 +89,7 @@ public class PolyhedralDice {
/**
* Produce a single d4
- *
+ *
* @return A single d4
*/
public static IDiceExpression d4() {
@@ -98,7 +98,7 @@ public class PolyhedralDice {
/**
* Produce the specified number of 4-sided dice
- *
+ *
* @param nDice
* The number of four-sided dice to produce
* @return A group of four-sided dice of the specified size
@@ -109,7 +109,7 @@ public class PolyhedralDice {
/**
* Produce a single d6
- *
+ *
* @return A single d6
*/
public static IDiceExpression d6() {
@@ -118,7 +118,7 @@ public class PolyhedralDice {
/**
* Produce the specified number of 6-sided dice
- *
+ *
* @param nDice
* The number of six-sided dice to produce
* @return A group of six-sided dice of the specified size
@@ -129,7 +129,7 @@ public class PolyhedralDice {
/**
* Produce a single d8
- *
+ *
* @return A single d8
*/
public static IDiceExpression d8() {
@@ -138,7 +138,7 @@ public class PolyhedralDice {
/**
* Produce the specified number of 8-sided dice
- *
+ *
* @param nDice
* The number of eight-sided dice to produce
* @return A group of eight-sided dice of the specified size