add lemon
This commit is contained in:
parent
3aa8faf991
commit
5da94fafa0
|
@ -60,6 +60,13 @@ export const tokenizeMath = (cmd: string, modifiers: RollModifiers, previousResu
|
||||||
containsCrit: false,
|
containsCrit: false,
|
||||||
containsFail: false,
|
containsFail: false,
|
||||||
};
|
};
|
||||||
|
} else if (curMathConfStr.toLowerCase() === 'lemon' || curMathConfStr.toLowerCase() === '🍋') {
|
||||||
|
mathConf[i] = {
|
||||||
|
total: 5,
|
||||||
|
details: '🍋',
|
||||||
|
containsCrit: false,
|
||||||
|
containsFail: false,
|
||||||
|
};
|
||||||
} else if (curMathConfStr.toLowerCase() === 'fart' || curMathConfStr.toLowerCase() === '💩') {
|
} else if (curMathConfStr.toLowerCase() === 'fart' || curMathConfStr.toLowerCase() === '💩') {
|
||||||
mathConf[i] = {
|
mathConf[i] = {
|
||||||
total: 7,
|
total: 7,
|
||||||
|
@ -67,7 +74,7 @@ export const tokenizeMath = (cmd: string, modifiers: RollModifiers, previousResu
|
||||||
containsCrit: false,
|
containsCrit: false,
|
||||||
containsFail: false,
|
containsFail: false,
|
||||||
};
|
};
|
||||||
} else if (curMathConfStr.toLowerCase() === 'sex') {
|
} else if (curMathConfStr.toLowerCase() === 'sex' || curMathConfStr.toLowerCase() === '🍆🍑' || curMathConfStr.toLowerCase() === '🍑🍆') {
|
||||||
mathConf[i] = {
|
mathConf[i] = {
|
||||||
total: 69,
|
total: 69,
|
||||||
details: '( ͡° ͜ʖ ͡°)',
|
details: '( ͡° ͜ʖ ͡°)',
|
||||||
|
@ -90,7 +97,7 @@ export const tokenizeMath = (cmd: string, modifiers: RollModifiers, previousResu
|
||||||
containsCrit: false,
|
containsCrit: false,
|
||||||
containsFail: false,
|
containsFail: false,
|
||||||
};
|
};
|
||||||
} else if (curMathConfStr.toLowerCase() === 'pie') {
|
} else if (curMathConfStr.toLowerCase() === 'pie' || curMathConfStr.toLowerCase() === '🥧') {
|
||||||
// If the operand is pie, pi*e, create a SolvedStep for e and pi (and the multiplication symbol between them)
|
// If the operand is pie, pi*e, create a SolvedStep for e and pi (and the multiplication symbol between them)
|
||||||
mathConf[i] = {
|
mathConf[i] = {
|
||||||
total: Math.PI,
|
total: Math.PI,
|
||||||
|
|
Loading…
Reference in New Issue