From 0cabf0e3266429400d5ae22ea7db7c7d44cd8985 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 17 Jun 2025 00:52:25 -0600 Subject: [PATCH] Add an indicator into the macro that specifies what upgrades the gun has in that roll --- Axolotl-with-a-Gun/guns/AK-47/base.mjs | 2 +- Axolotl-with-a-Gun/guns/glock/2-not-1.mjs | 2 +- Axolotl-with-a-Gun/guns/glock/base.mjs | 2 +- Axolotl-with-a-Gun/guns/gunsword/base.mjs | 2 +- Axolotl-with-a-Gun/guns/gunsword/inertia-and-pause-buffer.mjs | 2 +- Axolotl-with-a-Gun/guns/gunsword/inertia.mjs | 2 +- Axolotl-with-a-Gun/guns/hand-cannon/base.mjs | 2 +- Axolotl-with-a-Gun/guns/mini-gun/base.mjs | 2 +- Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Axolotl-with-a-Gun/guns/AK-47/base.mjs b/Axolotl-with-a-Gun/guns/AK-47/base.mjs index 6a2f868..55c6842 100644 --- a/Axolotl-with-a-Gun/guns/AK-47/base.mjs +++ b/Axolotl-with-a-Gun/guns/AK-47/base.mjs @@ -124,7 +124,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: AK-47)`, + flavor: `(Gun: AK-47 (Type: Base))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs b/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs index e247fe7..ed6d256 100644 --- a/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs +++ b/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs @@ -118,7 +118,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Glock)`, + flavor: `(Gun: Glock (Type: Steady))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/glock/base.mjs b/Axolotl-with-a-Gun/guns/glock/base.mjs index 70b2310..f829b0d 100644 --- a/Axolotl-with-a-Gun/guns/glock/base.mjs +++ b/Axolotl-with-a-Gun/guns/glock/base.mjs @@ -117,7 +117,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Glock)`, + flavor: `(Gun: Glock (Type: Base))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/gunsword/base.mjs b/Axolotl-with-a-Gun/guns/gunsword/base.mjs index 6fab6e9..9228fc5 100644 --- a/Axolotl-with-a-Gun/guns/gunsword/base.mjs +++ b/Axolotl-with-a-Gun/guns/gunsword/base.mjs @@ -127,7 +127,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Gunsword)`, + flavor: `(Gun: Gunsword (Type: Base))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/gunsword/inertia-and-pause-buffer.mjs b/Axolotl-with-a-Gun/guns/gunsword/inertia-and-pause-buffer.mjs index 3995962..18ad30c 100644 --- a/Axolotl-with-a-Gun/guns/gunsword/inertia-and-pause-buffer.mjs +++ b/Axolotl-with-a-Gun/guns/gunsword/inertia-and-pause-buffer.mjs @@ -133,7 +133,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Gunsword)`, + flavor: `(Gun: Gunsword (Type: I + PB))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/gunsword/inertia.mjs b/Axolotl-with-a-Gun/guns/gunsword/inertia.mjs index 73b9c7c..29a654f 100644 --- a/Axolotl-with-a-Gun/guns/gunsword/inertia.mjs +++ b/Axolotl-with-a-Gun/guns/gunsword/inertia.mjs @@ -127,7 +127,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Gunsword)`, + flavor: `(Gun: Gunsword (Type: Base))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs b/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs index 8ea1d75..4899104 100644 --- a/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs +++ b/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs @@ -117,7 +117,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Hand Cannon 0x000)`, + flavor: `(Gun: Hand Cannon (Type: Base))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/mini-gun/base.mjs b/Axolotl-with-a-Gun/guns/mini-gun/base.mjs index 2457714..657fbd8 100644 --- a/Axolotl-with-a-Gun/guns/mini-gun/base.mjs +++ b/Axolotl-with-a-Gun/guns/mini-gun/base.mjs @@ -180,7 +180,7 @@ async function main() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Mini-Gun)`, + flavor: `(Gun: Mini-Gun (Type: Base))`, content, }, rollMode, diff --git a/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs b/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs index 0a52a20..84218f7 100644 --- a/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs +++ b/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs @@ -110,7 +110,7 @@ async function rollDice() { const chatData = ChatMessage.applyRollMode( { - flavor: `(Gun: Rocket Launcher)`, + flavor: `(Gun: Rocket Launcher (Type: Base))`, content, }, rollMode,