diff --git a/data/packs/macros.db/roll_random_beastmen_npc__zNYDtS7XcT3IaQ4t.json b/data/packs/macros.db/roll_random_beastmen_npc__zNYDtS7XcT3IaQ4t.json deleted file mode 100644 index 2bd95da2..00000000 --- a/data/packs/macros.db/roll_random_beastmen_npc__zNYDtS7XcT3IaQ4t.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "_id": "zNYDtS7XcT3IaQ4t", - "_key": "!macros!zNYDtS7XcT3IaQ4t", - "author": "mu8H7NbWc0seFWcA", - "command": "// Macro to create a random NPC, being sent in a whisper to GMs on the server.\n\nconst namesTableID = game.tables.find(o => o.name === \"The Lost Citadel: Beastmen Names\")._id;\nconst namesTable = await game.tables.get(namesTableID);\nconst namesResult = await namesTable.draw({displayChat: false});\nconst names = namesResult.results.pop().getChatText();\n\nconst appearanceTableID = game.tables.find(o => o.name === \"The Lost Citadel: Beastmen Appearances\")._id;\nconst appearanceTable = await game.tables.get(appearanceTableID);\nconst appearanceResult = await appearanceTable.draw({displayChat: false});\nconst appearance = appearanceResult.results.pop().getChatText();\n\nconst behaviorTableID = game.tables.find(o => o.name === \"The Lost Citadel: Beastmen Behaviors\")._id;\nconst behaviorTable = await game.tables.get(behaviorTableID);\nconst behaviorResult = await behaviorTable.draw({displayChat: false});\nconst behavior = behaviorResult.results.pop().getChatText();\n\nconst message = `

A ${appearance} Beastman named ${names} \nis ${behavior}.

`;\n\nconst chatData = {\n user: game.user._id,\n speaker: ChatMessage.getSpeaker(),\n content: message,\n whisper: game.users.filter(u => u.isGM).map(u => u._id),\n};\n\nChatMessage.create(chatData, {});", - "folder": null, - "img": "icons/environment/creatures/gargoyle-grey-blue.webp", - "name": "Roll Random Beastmen NPC", - "scope": "global", - "type": "script" -} diff --git a/data/packs/macros.db/roll_random_ettercap_npc__EropDDFL0DKcW8I6.json b/data/packs/macros.db/roll_random_ettercap_npc__EropDDFL0DKcW8I6.json deleted file mode 100644 index d1418302..00000000 --- a/data/packs/macros.db/roll_random_ettercap_npc__EropDDFL0DKcW8I6.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "_id": "EropDDFL0DKcW8I6", - "_key": "!macros!EropDDFL0DKcW8I6", - "author": "mu8H7NbWc0seFWcA", - "command": "// Macro to create a random NPC, being sent in a whisper to GMs on the server.\n\nconst namesTableID = game.tables.find(o => o.name === \"The Lost Citadel: Ettercap Names\")._id;\nconst namesTable = await game.tables.get(namesTableID);\nconst namesResult = await namesTable.draw({displayChat: false});\nconst names = namesResult.results.pop().getChatText();\n\nconst appearanceTableID = game.tables.find(o => o.name === \"The Lost Citadel: Ettercap Appearances\")._id;\nconst appearanceTable = await game.tables.get(appearanceTableID);\nconst appearanceResult = await appearanceTable.draw({displayChat: false});\nconst appearance = appearanceResult.results.pop().getChatText();\n\nconst behaviorTableID = game.tables.find(o => o.name === \"The Lost Citadel: Ettercap Behaviors\")._id;\nconst behaviorTable = await game.tables.get(behaviorTableID);\nconst behaviorResult = await behaviorTable.draw({displayChat: false});\nconst behavior = behaviorResult.results.pop().getChatText();\n\nconst message = `

A ${appearance} Ettercap named ${names} \nis ${behavior}.

`;\n\nconst chatData = {\n user: game.user._id,\n speaker: ChatMessage.getSpeaker(),\n content: message,\n whisper: game.users.filter(u => u.isGM).map(u => u._id),\n};\n\nChatMessage.create(chatData, {});", - "folder": null, - "img": "icons/creatures/unholy/demon-winged-cyclops-drooling.webp", - "name": "Roll Random Ettercap NPC", - "scope": "global", - "type": "script" -} diff --git a/data/packs/macros.db/the_lost_citadel__random_encounter_check__C0TN1X2LOAPYWJmD.json b/data/packs/macros.db/the_lost_citadel__random_encounter_check__C0TN1X2LOAPYWJmD.json deleted file mode 100644 index 8b86caac..00000000 --- a/data/packs/macros.db/the_lost_citadel__random_encounter_check__C0TN1X2LOAPYWJmD.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "_id": "C0TN1X2LOAPYWJmD", - "_key": "!macros!C0TN1X2LOAPYWJmD", - "author": "mu8H7NbWc0seFWcA", - "command": "// Macro to draw for encounter in The Lost Citadel and only show it to the GM.;\n\nconst tableID = game.tables.find(o => o.name === \"The Lost Citadel: Random Encounter Check\")._id;\nconst table = await game.tables.get(tableID);\nawait table.draw({ rollMode: CONST.DICE_ROLL_MODES.PRIVATE});", - "folder": null, - "img": "icons/creatures/unholy/demons-horned-glowing-pink.webp", - "name": "The Lost Citadel: Random Encounter Check", - "scope": "global", - "type": "script" -}